blob: c284e4341c7c2a9aaa0a1287553edb92ba921fb6 [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"
Singhai, Anjali6633d382015-12-03 23:49:31 -080030#ifdef CONFIG_I40E_VXLAN
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000031#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
Catherine Sullivanc9c9f1b2015-11-19 11:34:25 -080042#define DRV_VERSION_BUILD 8
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 Kirsherb40c82e2015-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/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000795 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000796 * @vsi: the VSI to be updated
797 *
798 * There are a few instances where we store the same stat in a
799 * couple of different structs. This is partly because we have
800 * the netdev stats that need to be filled out, which is slightly
801 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000802 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000803 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000804static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000805{
806 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000807 struct rtnl_link_stats64 *ons;
808 struct rtnl_link_stats64 *ns; /* netdev stats */
809 struct i40e_eth_stats *oes;
810 struct i40e_eth_stats *es; /* device's eth stats */
811 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000812 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000813 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000814 u64 bytes, packets;
815 unsigned int start;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400816 u64 tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400817 u64 tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000818 u64 rx_p, rx_b;
819 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000820 u16 q;
821
822 if (test_bit(__I40E_DOWN, &vsi->state) ||
823 test_bit(__I40E_CONFIG_BUSY, &pf->state))
824 return;
825
826 ns = i40e_get_vsi_stats_struct(vsi);
827 ons = &vsi->net_stats_offsets;
828 es = &vsi->eth_stats;
829 oes = &vsi->eth_stats_offsets;
830
831 /* Gather up the netdev and vsi stats that the driver collects
832 * on the fly during packet processing
833 */
834 rx_b = rx_p = 0;
835 tx_b = tx_p = 0;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400836 tx_restart = tx_busy = tx_linearize = tx_force_wb = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000837 rx_page = 0;
838 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000839 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000840 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000841 /* locate Tx ring */
842 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000843
Alexander Duyck980e9b12013-09-28 06:01:03 +0000844 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700845 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000846 packets = p->stats.packets;
847 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700848 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000849 tx_b += bytes;
850 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000851 tx_restart += p->tx_stats.restart_queue;
852 tx_busy += p->tx_stats.tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400853 tx_linearize += p->tx_stats.tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400854 tx_force_wb += p->tx_stats.tx_force_wb;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000855
856 /* Rx queue is part of the same block as Tx queue */
857 p = &p[1];
858 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700859 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000860 packets = p->stats.packets;
861 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700862 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000863 rx_b += bytes;
864 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000865 rx_buf += p->rx_stats.alloc_buff_failed;
866 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000867 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000868 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000869 vsi->tx_restart = tx_restart;
870 vsi->tx_busy = tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400871 vsi->tx_linearize = tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400872 vsi->tx_force_wb = tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000873 vsi->rx_page_failed = rx_page;
874 vsi->rx_buf_failed = rx_buf;
875
876 ns->rx_packets = rx_p;
877 ns->rx_bytes = rx_b;
878 ns->tx_packets = tx_p;
879 ns->tx_bytes = tx_b;
880
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000881 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000882 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000883 ons->tx_errors = oes->tx_errors;
884 ns->tx_errors = es->tx_errors;
885 ons->multicast = oes->rx_multicast;
886 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000887 ons->rx_dropped = oes->rx_discards;
888 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000889 ons->tx_dropped = oes->tx_discards;
890 ns->tx_dropped = es->tx_discards;
891
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000892 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000893 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000894 ns->rx_crc_errors = pf->stats.crc_errors;
895 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
896 ns->rx_length_errors = pf->stats.rx_length_errors;
897 }
898}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000899
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000900/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000901 * i40e_update_pf_stats - Update the PF statistics counters.
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000902 * @pf: the PF to be updated
903 **/
904static void i40e_update_pf_stats(struct i40e_pf *pf)
905{
906 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
907 struct i40e_hw_port_stats *nsd = &pf->stats;
908 struct i40e_hw *hw = &pf->hw;
909 u32 val;
910 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000911
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000912 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
913 I40E_GLPRT_GORCL(hw->port),
914 pf->stat_offsets_loaded,
915 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
916 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
917 I40E_GLPRT_GOTCL(hw->port),
918 pf->stat_offsets_loaded,
919 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
920 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
921 pf->stat_offsets_loaded,
922 &osd->eth.rx_discards,
923 &nsd->eth.rx_discards);
Shannon Nelson532d2832014-04-23 04:50:09 +0000924 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
925 I40E_GLPRT_UPRCL(hw->port),
926 pf->stat_offsets_loaded,
927 &osd->eth.rx_unicast,
928 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000929 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
930 I40E_GLPRT_MPRCL(hw->port),
931 pf->stat_offsets_loaded,
932 &osd->eth.rx_multicast,
933 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000934 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
935 I40E_GLPRT_BPRCL(hw->port),
936 pf->stat_offsets_loaded,
937 &osd->eth.rx_broadcast,
938 &nsd->eth.rx_broadcast);
939 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
940 I40E_GLPRT_UPTCL(hw->port),
941 pf->stat_offsets_loaded,
942 &osd->eth.tx_unicast,
943 &nsd->eth.tx_unicast);
944 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
945 I40E_GLPRT_MPTCL(hw->port),
946 pf->stat_offsets_loaded,
947 &osd->eth.tx_multicast,
948 &nsd->eth.tx_multicast);
949 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
950 I40E_GLPRT_BPTCL(hw->port),
951 pf->stat_offsets_loaded,
952 &osd->eth.tx_broadcast,
953 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000954
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000955 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
956 pf->stat_offsets_loaded,
957 &osd->tx_dropped_link_down,
958 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000959
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000960 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
961 pf->stat_offsets_loaded,
962 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000963
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000964 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
965 pf->stat_offsets_loaded,
966 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000967
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000968 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
969 pf->stat_offsets_loaded,
970 &osd->mac_local_faults,
971 &nsd->mac_local_faults);
972 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
973 pf->stat_offsets_loaded,
974 &osd->mac_remote_faults,
975 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000976
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000977 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
978 pf->stat_offsets_loaded,
979 &osd->rx_length_errors,
980 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000981
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000982 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
983 pf->stat_offsets_loaded,
984 &osd->link_xon_rx, &nsd->link_xon_rx);
985 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
986 pf->stat_offsets_loaded,
987 &osd->link_xon_tx, &nsd->link_xon_tx);
Neerav Parikh95db2392015-11-06 15:26:09 -0800988 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
989 pf->stat_offsets_loaded,
990 &osd->link_xoff_rx, &nsd->link_xoff_rx);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000991 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
992 pf->stat_offsets_loaded,
993 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000994
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000995 for (i = 0; i < 8; i++) {
Neerav Parikh95db2392015-11-06 15:26:09 -0800996 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
997 pf->stat_offsets_loaded,
998 &osd->priority_xoff_rx[i],
999 &nsd->priority_xoff_rx[i]);
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001000 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001001 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001002 &osd->priority_xon_rx[i],
1003 &nsd->priority_xon_rx[i]);
1004 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001005 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001006 &osd->priority_xon_tx[i],
1007 &nsd->priority_xon_tx[i]);
1008 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001009 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001010 &osd->priority_xoff_tx[i],
1011 &nsd->priority_xoff_tx[i]);
1012 i40e_stat_update32(hw,
1013 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001014 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001015 &osd->priority_xon_2_xoff[i],
1016 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001017 }
1018
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001019 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1020 I40E_GLPRT_PRC64L(hw->port),
1021 pf->stat_offsets_loaded,
1022 &osd->rx_size_64, &nsd->rx_size_64);
1023 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1024 I40E_GLPRT_PRC127L(hw->port),
1025 pf->stat_offsets_loaded,
1026 &osd->rx_size_127, &nsd->rx_size_127);
1027 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1028 I40E_GLPRT_PRC255L(hw->port),
1029 pf->stat_offsets_loaded,
1030 &osd->rx_size_255, &nsd->rx_size_255);
1031 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1032 I40E_GLPRT_PRC511L(hw->port),
1033 pf->stat_offsets_loaded,
1034 &osd->rx_size_511, &nsd->rx_size_511);
1035 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1036 I40E_GLPRT_PRC1023L(hw->port),
1037 pf->stat_offsets_loaded,
1038 &osd->rx_size_1023, &nsd->rx_size_1023);
1039 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1040 I40E_GLPRT_PRC1522L(hw->port),
1041 pf->stat_offsets_loaded,
1042 &osd->rx_size_1522, &nsd->rx_size_1522);
1043 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1044 I40E_GLPRT_PRC9522L(hw->port),
1045 pf->stat_offsets_loaded,
1046 &osd->rx_size_big, &nsd->rx_size_big);
1047
1048 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1049 I40E_GLPRT_PTC64L(hw->port),
1050 pf->stat_offsets_loaded,
1051 &osd->tx_size_64, &nsd->tx_size_64);
1052 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1053 I40E_GLPRT_PTC127L(hw->port),
1054 pf->stat_offsets_loaded,
1055 &osd->tx_size_127, &nsd->tx_size_127);
1056 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1057 I40E_GLPRT_PTC255L(hw->port),
1058 pf->stat_offsets_loaded,
1059 &osd->tx_size_255, &nsd->tx_size_255);
1060 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1061 I40E_GLPRT_PTC511L(hw->port),
1062 pf->stat_offsets_loaded,
1063 &osd->tx_size_511, &nsd->tx_size_511);
1064 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1065 I40E_GLPRT_PTC1023L(hw->port),
1066 pf->stat_offsets_loaded,
1067 &osd->tx_size_1023, &nsd->tx_size_1023);
1068 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1069 I40E_GLPRT_PTC1522L(hw->port),
1070 pf->stat_offsets_loaded,
1071 &osd->tx_size_1522, &nsd->tx_size_1522);
1072 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1073 I40E_GLPRT_PTC9522L(hw->port),
1074 pf->stat_offsets_loaded,
1075 &osd->tx_size_big, &nsd->tx_size_big);
1076
1077 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_undersize, &nsd->rx_undersize);
1080 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1081 pf->stat_offsets_loaded,
1082 &osd->rx_fragments, &nsd->rx_fragments);
1083 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1084 pf->stat_offsets_loaded,
1085 &osd->rx_oversize, &nsd->rx_oversize);
1086 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1087 pf->stat_offsets_loaded,
1088 &osd->rx_jabber, &nsd->rx_jabber);
1089
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001090 /* FDIR stats */
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001091 i40e_stat_update32(hw,
1092 I40E_GLQF_PCNT(I40E_FD_ATR_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001093 pf->stat_offsets_loaded,
1094 &osd->fd_atr_match, &nsd->fd_atr_match);
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001095 i40e_stat_update32(hw,
1096 I40E_GLQF_PCNT(I40E_FD_SB_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001097 pf->stat_offsets_loaded,
1098 &osd->fd_sb_match, &nsd->fd_sb_match);
Anjali Singhai Jain60ccd452015-04-16 20:06:01 -04001099 i40e_stat_update32(hw,
1100 I40E_GLQF_PCNT(I40E_FD_ATR_TUNNEL_STAT_IDX(pf->hw.pf_id)),
1101 pf->stat_offsets_loaded,
1102 &osd->fd_atr_tunnel_match, &nsd->fd_atr_tunnel_match);
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001103
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001104 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1105 nsd->tx_lpi_status =
1106 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1107 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1108 nsd->rx_lpi_status =
1109 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1110 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1111 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1112 pf->stat_offsets_loaded,
1113 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1114 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1115 pf->stat_offsets_loaded,
1116 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1117
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001118 if (pf->flags & I40E_FLAG_FD_SB_ENABLED &&
1119 !(pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED))
1120 nsd->fd_sb_status = true;
1121 else
1122 nsd->fd_sb_status = false;
1123
1124 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED &&
1125 !(pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1126 nsd->fd_atr_status = true;
1127 else
1128 nsd->fd_atr_status = false;
1129
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001130 pf->stat_offsets_loaded = true;
1131}
1132
1133/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001134 * i40e_update_stats - Update the various statistics counters.
1135 * @vsi: the VSI to be updated
1136 *
1137 * Update the various stats for this VSI and its related entities.
1138 **/
1139void i40e_update_stats(struct i40e_vsi *vsi)
1140{
1141 struct i40e_pf *pf = vsi->back;
1142
1143 if (vsi == pf->vsi[pf->lan_vsi])
1144 i40e_update_pf_stats(pf);
1145
1146 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001147#ifdef I40E_FCOE
1148 i40e_update_fcoe_stats(vsi);
1149#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001150}
1151
1152/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001153 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1154 * @vsi: the VSI to be searched
1155 * @macaddr: the MAC address
1156 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001157 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001158 * @is_netdev: make sure its a netdev filter, else doesn't matter
1159 *
1160 * Returns ptr to the filter object or NULL
1161 **/
1162static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1163 u8 *macaddr, s16 vlan,
1164 bool is_vf, bool is_netdev)
1165{
1166 struct i40e_mac_filter *f;
1167
1168 if (!vsi || !macaddr)
1169 return NULL;
1170
1171 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1172 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1173 (vlan == f->vlan) &&
1174 (!is_vf || f->is_vf) &&
1175 (!is_netdev || f->is_netdev))
1176 return f;
1177 }
1178 return NULL;
1179}
1180
1181/**
1182 * i40e_find_mac - Find a mac addr in the macvlan filters list
1183 * @vsi: the VSI to be searched
1184 * @macaddr: the MAC address we are searching for
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001185 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001186 * @is_netdev: make sure its a netdev filter, else doesn't matter
1187 *
1188 * Returns the first filter with the provided MAC address or NULL if
1189 * MAC address was not found
1190 **/
1191struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1192 bool is_vf, bool is_netdev)
1193{
1194 struct i40e_mac_filter *f;
1195
1196 if (!vsi || !macaddr)
1197 return NULL;
1198
1199 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1200 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1201 (!is_vf || f->is_vf) &&
1202 (!is_netdev || f->is_netdev))
1203 return f;
1204 }
1205 return NULL;
1206}
1207
1208/**
1209 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1210 * @vsi: the VSI to be searched
1211 *
1212 * Returns true if VSI is in vlan mode or false otherwise
1213 **/
1214bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1215{
1216 struct i40e_mac_filter *f;
1217
1218 /* Only -1 for all the filters denotes not in vlan mode
1219 * so we have to go through all the list in order to make sure
1220 */
1221 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Greg Rosed9b68f82015-07-23 16:54:31 -04001222 if (f->vlan >= 0 || vsi->info.pvid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001223 return true;
1224 }
1225
1226 return false;
1227}
1228
1229/**
1230 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1231 * @vsi: the VSI to be searched
1232 * @macaddr: the mac address to be filtered
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001233 * @is_vf: true if it is a VF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001234 * @is_netdev: true if it is a netdev
1235 *
1236 * Goes through all the macvlan filters and adds a
1237 * macvlan filter for each unique vlan that already exists
1238 *
1239 * Returns first filter found on success, else NULL
1240 **/
1241struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1242 bool is_vf, bool is_netdev)
1243{
1244 struct i40e_mac_filter *f;
1245
1246 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Mitch Williamsecbb44e2015-07-10 19:35:56 -04001247 if (vsi->info.pvid)
1248 f->vlan = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001249 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1250 is_vf, is_netdev)) {
1251 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001252 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001253 return NULL;
1254 }
1255 }
1256
1257 return list_first_entry_or_null(&vsi->mac_filter_list,
1258 struct i40e_mac_filter, list);
1259}
1260
1261/**
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001262 * i40e_del_mac_all_vlan - Remove a MAC filter from all VLANS
1263 * @vsi: the VSI to be searched
1264 * @macaddr: the mac address to be removed
1265 * @is_vf: true if it is a VF
1266 * @is_netdev: true if it is a netdev
1267 *
1268 * Removes a given MAC address from a VSI, regardless of VLAN
1269 *
1270 * Returns 0 for success, or error
1271 **/
1272int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1273 bool is_vf, bool is_netdev)
1274{
1275 struct i40e_mac_filter *f = NULL;
1276 int changed = 0;
1277
1278 WARN(!spin_is_locked(&vsi->mac_filter_list_lock),
1279 "Missing mac_filter_list_lock\n");
1280 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1281 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1282 (is_vf == f->is_vf) &&
1283 (is_netdev == f->is_netdev)) {
1284 f->counter--;
1285 f->changed = true;
1286 changed = 1;
1287 }
1288 }
1289 if (changed) {
1290 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1291 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1292 return 0;
1293 }
1294 return -ENOENT;
1295}
1296
1297/**
Greg Rose8c27d422014-05-22 06:31:56 +00001298 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1299 * @vsi: the PF Main VSI - inappropriate for any other VSI
1300 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001301 *
1302 * Some older firmware configurations set up a default promiscuous VLAN
1303 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001304 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001305static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001306{
1307 struct i40e_aqc_remove_macvlan_element_data element;
1308 struct i40e_pf *pf = vsi->back;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001309 i40e_status ret;
Greg Rose8c27d422014-05-22 06:31:56 +00001310
1311 /* Only appropriate for the PF main VSI */
1312 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001313 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001314
Shannon Nelson30650cc2014-07-29 04:01:50 +00001315 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001316 ether_addr_copy(element.mac_addr, macaddr);
1317 element.vlan_tag = 0;
1318 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1319 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001320 ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1321 if (ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001322 return -ENOENT;
1323
1324 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001325}
1326
1327/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001328 * i40e_add_filter - Add a mac/vlan filter to the VSI
1329 * @vsi: the VSI to be searched
1330 * @macaddr: the MAC address
1331 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001332 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001333 * @is_netdev: make sure its a netdev filter, else doesn't matter
1334 *
1335 * Returns ptr to the filter object or NULL when no memory available.
Kiran Patil21659032015-09-30 14:09:03 -04001336 *
1337 * NOTE: This function is expected to be called with mac_filter_list_lock
1338 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001339 **/
1340struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1341 u8 *macaddr, s16 vlan,
1342 bool is_vf, bool is_netdev)
1343{
1344 struct i40e_mac_filter *f;
1345
1346 if (!vsi || !macaddr)
1347 return NULL;
1348
1349 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1350 if (!f) {
1351 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1352 if (!f)
1353 goto add_filter_out;
1354
Greg Rose9a173902014-05-22 06:32:02 +00001355 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001356 f->vlan = vlan;
1357 f->changed = true;
1358
1359 INIT_LIST_HEAD(&f->list);
1360 list_add(&f->list, &vsi->mac_filter_list);
1361 }
1362
1363 /* increment counter and add a new flag if needed */
1364 if (is_vf) {
1365 if (!f->is_vf) {
1366 f->is_vf = true;
1367 f->counter++;
1368 }
1369 } else if (is_netdev) {
1370 if (!f->is_netdev) {
1371 f->is_netdev = true;
1372 f->counter++;
1373 }
1374 } else {
1375 f->counter++;
1376 }
1377
1378 /* changed tells sync_filters_subtask to
1379 * push the filter down to the firmware
1380 */
1381 if (f->changed) {
1382 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1383 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1384 }
1385
1386add_filter_out:
1387 return f;
1388}
1389
1390/**
1391 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1392 * @vsi: the VSI to be searched
1393 * @macaddr: the MAC address
1394 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001395 * @is_vf: make sure it's a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001396 * @is_netdev: make sure it's a netdev filter, else doesn't matter
Kiran Patil21659032015-09-30 14:09:03 -04001397 *
1398 * NOTE: This function is expected to be called with mac_filter_list_lock
1399 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001400 **/
1401void i40e_del_filter(struct i40e_vsi *vsi,
1402 u8 *macaddr, s16 vlan,
1403 bool is_vf, bool is_netdev)
1404{
1405 struct i40e_mac_filter *f;
1406
1407 if (!vsi || !macaddr)
1408 return;
1409
1410 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1411 if (!f || f->counter == 0)
1412 return;
1413
1414 if (is_vf) {
1415 if (f->is_vf) {
1416 f->is_vf = false;
1417 f->counter--;
1418 }
1419 } else if (is_netdev) {
1420 if (f->is_netdev) {
1421 f->is_netdev = false;
1422 f->counter--;
1423 }
1424 } else {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001425 /* make sure we don't remove a filter in use by VF or netdev */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001426 int min_f = 0;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001427
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001428 min_f += (f->is_vf ? 1 : 0);
1429 min_f += (f->is_netdev ? 1 : 0);
1430
1431 if (f->counter > min_f)
1432 f->counter--;
1433 }
1434
1435 /* counter == 0 tells sync_filters_subtask to
1436 * remove the filter from the firmware's list
1437 */
1438 if (f->counter == 0) {
1439 f->changed = true;
1440 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1441 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1442 }
1443}
1444
1445/**
1446 * i40e_set_mac - NDO callback to set mac address
1447 * @netdev: network interface device structure
1448 * @p: pointer to an address structure
1449 *
1450 * Returns 0 on success, negative on failure
1451 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001452#ifdef I40E_FCOE
1453int i40e_set_mac(struct net_device *netdev, void *p)
1454#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001455static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001456#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001457{
1458 struct i40e_netdev_priv *np = netdev_priv(netdev);
1459 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001460 struct i40e_pf *pf = vsi->back;
1461 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001462 struct sockaddr *addr = p;
1463 struct i40e_mac_filter *f;
1464
1465 if (!is_valid_ether_addr(addr->sa_data))
1466 return -EADDRNOTAVAIL;
1467
Shannon Nelson30650cc2014-07-29 04:01:50 +00001468 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1469 netdev_info(netdev, "already using mac address %pM\n",
1470 addr->sa_data);
1471 return 0;
1472 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001473
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001474 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1475 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1476 return -EADDRNOTAVAIL;
1477
Shannon Nelson30650cc2014-07-29 04:01:50 +00001478 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1479 netdev_info(netdev, "returning to hw mac address %pM\n",
1480 hw->mac.addr);
1481 else
1482 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1483
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001484 if (vsi->type == I40E_VSI_MAIN) {
1485 i40e_status ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001486
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001487 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001488 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001489 addr->sa_data, NULL);
1490 if (ret) {
1491 netdev_info(netdev,
1492 "Addr change for Main VSI failed: %d\n",
1493 ret);
1494 return -EADDRNOTAVAIL;
1495 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001496 }
1497
Shannon Nelson30650cc2014-07-29 04:01:50 +00001498 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1499 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001500
Shannon Nelson30650cc2014-07-29 04:01:50 +00001501 memset(&element, 0, sizeof(element));
1502 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1503 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1504 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1505 } else {
Kiran Patil21659032015-09-30 14:09:03 -04001506 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001507 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1508 false, false);
Kiran Patil21659032015-09-30 14:09:03 -04001509 spin_unlock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001510 }
1511
Shannon Nelson30650cc2014-07-29 04:01:50 +00001512 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1513 struct i40e_aqc_add_macvlan_element_data element;
1514
1515 memset(&element, 0, sizeof(element));
1516 ether_addr_copy(element.mac_addr, hw->mac.addr);
1517 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1518 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1519 } else {
Kiran Patil21659032015-09-30 14:09:03 -04001520 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001521 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1522 false, false);
1523 if (f)
1524 f->is_laa = true;
Kiran Patil21659032015-09-30 14:09:03 -04001525 spin_unlock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001526 }
1527
Shannon Nelson30650cc2014-07-29 04:01:50 +00001528 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Mitch Williamsea02e902015-11-09 15:35:50 -08001529
1530 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001531}
1532
1533/**
1534 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1535 * @vsi: the VSI being setup
1536 * @ctxt: VSI context structure
1537 * @enabled_tc: Enabled TCs bitmap
1538 * @is_add: True if called before Add VSI
1539 *
1540 * Setup VSI queue mapping for enabled traffic classes.
1541 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001542#ifdef I40E_FCOE
1543void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1544 struct i40e_vsi_context *ctxt,
1545 u8 enabled_tc,
1546 bool is_add)
1547#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001548static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1549 struct i40e_vsi_context *ctxt,
1550 u8 enabled_tc,
1551 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001552#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001553{
1554 struct i40e_pf *pf = vsi->back;
1555 u16 sections = 0;
1556 u8 netdev_tc = 0;
1557 u16 numtc = 0;
1558 u16 qcount;
1559 u8 offset;
1560 u16 qmap;
1561 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001562 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001563
1564 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1565 offset = 0;
1566
1567 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1568 /* Find numtc from enabled TC bitmap */
1569 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001570 if (enabled_tc & BIT(i)) /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001571 numtc++;
1572 }
1573 if (!numtc) {
1574 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1575 numtc = 1;
1576 }
1577 } else {
1578 /* At least TC0 is enabled in case of non-DCB case */
1579 numtc = 1;
1580 }
1581
1582 vsi->tc_config.numtc = numtc;
1583 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001584 /* Number of queues per enabled TC */
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001585 /* In MFP case we can have a much lower count of MSIx
1586 * vectors available and so we need to lower the used
1587 * q count.
1588 */
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001589 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
1590 qcount = min_t(int, vsi->alloc_queue_pairs, pf->num_lan_msix);
1591 else
1592 qcount = vsi->alloc_queue_pairs;
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001593 num_tc_qps = qcount / numtc;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001594 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001595
1596 /* Setup queue offset/count for all TCs for given VSI */
1597 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1598 /* See if the given TC is enabled for the given VSI */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001599 if (vsi->tc_config.enabled_tc & BIT(i)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001600 /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001601 int pow, num_qps;
1602
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001603 switch (vsi->type) {
1604 case I40E_VSI_MAIN:
Helin Zhangacd65442015-10-26 19:44:28 -04001605 qcount = min_t(int, pf->alloc_rss_size,
1606 num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001607 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001608#ifdef I40E_FCOE
1609 case I40E_VSI_FCOE:
1610 qcount = num_tc_qps;
1611 break;
1612#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001613 case I40E_VSI_FDIR:
1614 case I40E_VSI_SRIOV:
1615 case I40E_VSI_VMDQ2:
1616 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001617 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001618 WARN_ON(i != 0);
1619 break;
1620 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001621 vsi->tc_config.tc_info[i].qoffset = offset;
1622 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001623
Shannon Nelson1e200e42015-02-27 09:15:24 +00001624 /* find the next higher power-of-2 of num queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001625 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001626 pow = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001627 while (num_qps && (BIT_ULL(pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001628 pow++;
1629 num_qps >>= 1;
1630 }
1631
1632 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1633 qmap =
1634 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1635 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1636
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001637 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001638 } else {
1639 /* TC is not enabled so set the offset to
1640 * default queue and allocate one queue
1641 * for the given TC.
1642 */
1643 vsi->tc_config.tc_info[i].qoffset = 0;
1644 vsi->tc_config.tc_info[i].qcount = 1;
1645 vsi->tc_config.tc_info[i].netdev_tc = 0;
1646
1647 qmap = 0;
1648 }
1649 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1650 }
1651
1652 /* Set actual Tx/Rx queue pairs */
1653 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001654 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1655 if (vsi->req_queue_pairs > 0)
1656 vsi->num_queue_pairs = vsi->req_queue_pairs;
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001657 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001658 vsi->num_queue_pairs = pf->num_lan_msix;
1659 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001660
1661 /* Scheduler section valid can only be set for ADD VSI */
1662 if (is_add) {
1663 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1664
1665 ctxt->info.up_enable_bits = enabled_tc;
1666 }
1667 if (vsi->type == I40E_VSI_SRIOV) {
1668 ctxt->info.mapping_flags |=
1669 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1670 for (i = 0; i < vsi->num_queue_pairs; i++)
1671 ctxt->info.queue_mapping[i] =
1672 cpu_to_le16(vsi->base_queue + i);
1673 } else {
1674 ctxt->info.mapping_flags |=
1675 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1676 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1677 }
1678 ctxt->info.valid_sections |= cpu_to_le16(sections);
1679}
1680
1681/**
1682 * i40e_set_rx_mode - NDO callback to set the netdev filters
1683 * @netdev: network interface device structure
1684 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001685#ifdef I40E_FCOE
1686void i40e_set_rx_mode(struct net_device *netdev)
1687#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001688static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001689#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001690{
1691 struct i40e_netdev_priv *np = netdev_priv(netdev);
1692 struct i40e_mac_filter *f, *ftmp;
1693 struct i40e_vsi *vsi = np->vsi;
1694 struct netdev_hw_addr *uca;
1695 struct netdev_hw_addr *mca;
1696 struct netdev_hw_addr *ha;
1697
Kiran Patil21659032015-09-30 14:09:03 -04001698 spin_lock_bh(&vsi->mac_filter_list_lock);
1699
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001700 /* add addr if not already in the filter list */
1701 netdev_for_each_uc_addr(uca, netdev) {
1702 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1703 if (i40e_is_vsi_in_vlan(vsi))
1704 i40e_put_mac_in_vlan(vsi, uca->addr,
1705 false, true);
1706 else
1707 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1708 false, true);
1709 }
1710 }
1711
1712 netdev_for_each_mc_addr(mca, netdev) {
1713 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1714 if (i40e_is_vsi_in_vlan(vsi))
1715 i40e_put_mac_in_vlan(vsi, mca->addr,
1716 false, true);
1717 else
1718 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1719 false, true);
1720 }
1721 }
1722
1723 /* remove filter if not in netdev list */
1724 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001725
1726 if (!f->is_netdev)
1727 continue;
1728
Shannon Nelson2f41f332015-08-26 15:14:20 -04001729 netdev_for_each_mc_addr(mca, netdev)
1730 if (ether_addr_equal(mca->addr, f->macaddr))
1731 goto bottom_of_search_loop;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001732
Shannon Nelson2f41f332015-08-26 15:14:20 -04001733 netdev_for_each_uc_addr(uca, netdev)
1734 if (ether_addr_equal(uca->addr, f->macaddr))
1735 goto bottom_of_search_loop;
1736
1737 for_each_dev_addr(netdev, ha)
1738 if (ether_addr_equal(ha->addr, f->macaddr))
1739 goto bottom_of_search_loop;
1740
1741 /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
1742 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1743
1744bottom_of_search_loop:
1745 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001746 }
Kiran Patil21659032015-09-30 14:09:03 -04001747 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001748
1749 /* check for other flag changes */
1750 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1751 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1752 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1753 }
1754}
1755
1756/**
Kiran Patil21659032015-09-30 14:09:03 -04001757 * i40e_mac_filter_entry_clone - Clones a MAC filter entry
1758 * @src: source MAC filter entry to be clones
1759 *
1760 * Returns the pointer to newly cloned MAC filter entry or NULL
1761 * in case of error
1762 **/
1763static struct i40e_mac_filter *i40e_mac_filter_entry_clone(
1764 struct i40e_mac_filter *src)
1765{
1766 struct i40e_mac_filter *f;
1767
1768 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1769 if (!f)
1770 return NULL;
1771 *f = *src;
1772
1773 INIT_LIST_HEAD(&f->list);
1774
1775 return f;
1776}
1777
1778/**
1779 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
1780 * @vsi: pointer to vsi struct
1781 * @from: Pointer to list which contains MAC filter entries - changes to
1782 * those entries needs to be undone.
1783 *
1784 * MAC filter entries from list were slated to be removed from device.
1785 **/
1786static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1787 struct list_head *from)
1788{
1789 struct i40e_mac_filter *f, *ftmp;
1790
1791 list_for_each_entry_safe(f, ftmp, from, list) {
1792 f->changed = true;
1793 /* Move the element back into MAC filter list*/
1794 list_move_tail(&f->list, &vsi->mac_filter_list);
1795 }
1796}
1797
1798/**
1799 * i40e_undo_add_filter_entries - Undo the changes made to MAC filter entries
1800 * @vsi: pointer to vsi struct
1801 *
1802 * MAC filter entries from list were slated to be added from device.
1803 **/
1804static void i40e_undo_add_filter_entries(struct i40e_vsi *vsi)
1805{
1806 struct i40e_mac_filter *f, *ftmp;
1807
1808 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1809 if (!f->changed && f->counter)
1810 f->changed = true;
1811 }
1812}
1813
1814/**
1815 * i40e_cleanup_add_list - Deletes the element from add list and release
1816 * memory
1817 * @add_list: Pointer to list which contains MAC filter entries
1818 **/
1819static void i40e_cleanup_add_list(struct list_head *add_list)
1820{
1821 struct i40e_mac_filter *f, *ftmp;
1822
1823 list_for_each_entry_safe(f, ftmp, add_list, list) {
1824 list_del(&f->list);
1825 kfree(f);
1826 }
1827}
1828
1829/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001830 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1831 * @vsi: ptr to the VSI
1832 *
1833 * Push any outstanding VSI filter changes through the AdminQ.
1834 *
1835 * Returns 0 or error value
1836 **/
Jesse Brandeburg17652c62015-11-05 17:01:02 -08001837int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001838{
Kiran Patil21659032015-09-30 14:09:03 -04001839 struct list_head tmp_del_list, tmp_add_list;
1840 struct i40e_mac_filter *f, *ftmp, *fclone;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001841 bool promisc_forced_on = false;
1842 bool add_happened = false;
1843 int filter_list_len = 0;
1844 u32 changed_flags = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08001845 i40e_status aq_ret = 0;
Kiran Patil21659032015-09-30 14:09:03 -04001846 bool err_cond = false;
Mitch Williamsea02e902015-11-09 15:35:50 -08001847 int retval = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001848 struct i40e_pf *pf;
1849 int num_add = 0;
1850 int num_del = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001851 int aq_err = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001852 u16 cmd_flags;
1853
1854 /* empty array typed pointers, kcalloc later */
1855 struct i40e_aqc_add_macvlan_element_data *add_list;
1856 struct i40e_aqc_remove_macvlan_element_data *del_list;
1857
1858 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1859 usleep_range(1000, 2000);
1860 pf = vsi->back;
1861
1862 if (vsi->netdev) {
1863 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1864 vsi->current_netdev_flags = vsi->netdev->flags;
1865 }
1866
Kiran Patil21659032015-09-30 14:09:03 -04001867 INIT_LIST_HEAD(&tmp_del_list);
1868 INIT_LIST_HEAD(&tmp_add_list);
1869
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001870 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1871 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1872
Kiran Patil21659032015-09-30 14:09:03 -04001873 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001874 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1875 if (!f->changed)
1876 continue;
1877
1878 if (f->counter != 0)
1879 continue;
1880 f->changed = false;
Kiran Patil21659032015-09-30 14:09:03 -04001881
1882 /* Move the element into temporary del_list */
1883 list_move_tail(&f->list, &tmp_del_list);
1884 }
1885
1886 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1887 if (!f->changed)
1888 continue;
1889
1890 if (f->counter == 0)
1891 continue;
1892 f->changed = false;
1893
1894 /* Clone MAC filter entry and add into temporary list */
1895 fclone = i40e_mac_filter_entry_clone(f);
1896 if (!fclone) {
1897 err_cond = true;
1898 break;
1899 }
1900 list_add_tail(&fclone->list, &tmp_add_list);
1901 }
1902
1903 /* if failed to clone MAC filter entry - undo */
1904 if (err_cond) {
1905 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
1906 i40e_undo_add_filter_entries(vsi);
1907 }
1908 spin_unlock_bh(&vsi->mac_filter_list_lock);
1909
Mitch Williamsea02e902015-11-09 15:35:50 -08001910 if (err_cond) {
Kiran Patil21659032015-09-30 14:09:03 -04001911 i40e_cleanup_add_list(&tmp_add_list);
Mitch Williamsea02e902015-11-09 15:35:50 -08001912 retval = -ENOMEM;
1913 goto out;
1914 }
Kiran Patil21659032015-09-30 14:09:03 -04001915 }
1916
1917 /* Now process 'del_list' outside the lock */
1918 if (!list_empty(&tmp_del_list)) {
Shannon Nelsonf1199992015-11-19 11:34:23 -08001919 int del_list_size;
1920
Kiran Patil21659032015-09-30 14:09:03 -04001921 filter_list_len = pf->hw.aq.asq_buf_size /
1922 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Shannon Nelsonf1199992015-11-19 11:34:23 -08001923 del_list_size = filter_list_len *
1924 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1925 del_list = kzalloc(del_list_size, GFP_KERNEL);
Kiran Patil21659032015-09-30 14:09:03 -04001926 if (!del_list) {
1927 i40e_cleanup_add_list(&tmp_add_list);
1928
1929 /* Undo VSI's MAC filter entry element updates */
1930 spin_lock_bh(&vsi->mac_filter_list_lock);
1931 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
1932 i40e_undo_add_filter_entries(vsi);
1933 spin_unlock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsea02e902015-11-09 15:35:50 -08001934 retval = -ENOMEM;
1935 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04001936 }
1937
1938 list_for_each_entry_safe(f, ftmp, &tmp_del_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001939 cmd_flags = 0;
1940
1941 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001942 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001943 del_list[num_del].vlan_tag =
1944 cpu_to_le16((u16)(f->vlan ==
1945 I40E_VLAN_ANY ? 0 : f->vlan));
1946
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001947 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1948 del_list[num_del].flags = cmd_flags;
1949 num_del++;
1950
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001951 /* flush a full buffer */
1952 if (num_del == filter_list_len) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001953 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
1954 vsi->seid,
1955 del_list,
1956 num_del,
1957 NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001958 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001959 num_del = 0;
Shannon Nelsonf1199992015-11-19 11:34:23 -08001960 memset(del_list, 0, del_list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001961
Mitch Williamsea02e902015-11-09 15:35:50 -08001962 if (aq_ret && aq_err != I40E_AQ_RC_ENOENT) {
1963 retval = -EIO;
Kiran Patil21659032015-09-30 14:09:03 -04001964 dev_err(&pf->pdev->dev,
1965 "ignoring delete macvlan error, err %s, aq_err %s while flushing a full buffer\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08001966 i40e_stat_str(&pf->hw, aq_ret),
Kiran Patil21659032015-09-30 14:09:03 -04001967 i40e_aq_str(&pf->hw, aq_err));
Mitch Williamsea02e902015-11-09 15:35:50 -08001968 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001969 }
Kiran Patil21659032015-09-30 14:09:03 -04001970 /* Release memory for MAC filter entries which were
1971 * synced up with HW.
1972 */
1973 list_del(&f->list);
1974 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001975 }
Kiran Patil21659032015-09-30 14:09:03 -04001976
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001977 if (num_del) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001978 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
1979 del_list, num_del,
1980 NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001981 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001982 num_del = 0;
1983
Mitch Williamsea02e902015-11-09 15:35:50 -08001984 if (aq_ret && aq_err != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001985 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001986 "ignoring delete macvlan error, err %s aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08001987 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001988 i40e_aq_str(&pf->hw, aq_err));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001989 }
1990
1991 kfree(del_list);
1992 del_list = NULL;
Kiran Patil21659032015-09-30 14:09:03 -04001993 }
1994
1995 if (!list_empty(&tmp_add_list)) {
Shannon Nelsonf1199992015-11-19 11:34:23 -08001996 int add_list_size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001997
1998 /* do all the adds now */
1999 filter_list_len = pf->hw.aq.asq_buf_size /
2000 sizeof(struct i40e_aqc_add_macvlan_element_data),
Shannon Nelsonf1199992015-11-19 11:34:23 -08002001 add_list_size = filter_list_len *
2002 sizeof(struct i40e_aqc_add_macvlan_element_data);
2003 add_list = kzalloc(add_list_size, GFP_KERNEL);
Kiran Patil21659032015-09-30 14:09:03 -04002004 if (!add_list) {
2005 /* Purge element from temporary lists */
2006 i40e_cleanup_add_list(&tmp_add_list);
2007
2008 /* Undo add filter entries from VSI MAC filter list */
2009 spin_lock_bh(&vsi->mac_filter_list_lock);
2010 i40e_undo_add_filter_entries(vsi);
2011 spin_unlock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsea02e902015-11-09 15:35:50 -08002012 retval = -ENOMEM;
2013 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04002014 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002015
Kiran Patil21659032015-09-30 14:09:03 -04002016 list_for_each_entry_safe(f, ftmp, &tmp_add_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002017
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002018 add_happened = true;
2019 cmd_flags = 0;
2020
2021 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00002022 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002023 add_list[num_add].vlan_tag =
2024 cpu_to_le16(
2025 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
2026 add_list[num_add].queue_number = 0;
2027
2028 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002029 add_list[num_add].flags = cpu_to_le16(cmd_flags);
2030 num_add++;
2031
2032 /* flush a full buffer */
2033 if (num_add == filter_list_len) {
Mitch Williamsea02e902015-11-09 15:35:50 -08002034 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
2035 add_list, num_add,
2036 NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002037 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002038 num_add = 0;
2039
Mitch Williamsea02e902015-11-09 15:35:50 -08002040 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002041 break;
Shannon Nelsonf1199992015-11-19 11:34:23 -08002042 memset(add_list, 0, add_list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002043 }
Kiran Patil21659032015-09-30 14:09:03 -04002044 /* Entries from tmp_add_list were cloned from MAC
2045 * filter list, hence clean those cloned entries
2046 */
2047 list_del(&f->list);
2048 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002049 }
Kiran Patil21659032015-09-30 14:09:03 -04002050
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002051 if (num_add) {
Mitch Williamsea02e902015-11-09 15:35:50 -08002052 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
2053 add_list, num_add, NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002054 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002055 num_add = 0;
2056 }
2057 kfree(add_list);
2058 add_list = NULL;
2059
Mitch Williamsea02e902015-11-09 15:35:50 -08002060 if (add_happened && aq_ret && aq_err != I40E_AQ_RC_EINVAL) {
2061 retval = i40e_aq_rc_to_posix(aq_ret, aq_err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002062 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002063 "add filter failed, err %s aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002064 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002065 i40e_aq_str(&pf->hw, aq_err));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002066 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
2067 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2068 &vsi->state)) {
2069 promisc_forced_on = true;
2070 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2071 &vsi->state);
2072 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
2073 }
2074 }
2075 }
2076
2077 /* check for changes in promiscuous modes */
2078 if (changed_flags & IFF_ALLMULTI) {
2079 bool cur_multipromisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002080
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002081 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Mitch Williamsea02e902015-11-09 15:35:50 -08002082 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
2083 vsi->seid,
2084 cur_multipromisc,
2085 NULL);
2086 if (aq_ret) {
2087 retval = i40e_aq_rc_to_posix(aq_ret,
2088 pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002089 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002090 "set multi promisc failed, err %s aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002091 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002092 i40e_aq_str(&pf->hw,
2093 pf->hw.aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002094 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002095 }
2096 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
2097 bool cur_promisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002098
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002099 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
2100 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2101 &vsi->state));
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002102 if (vsi->type == I40E_VSI_MAIN && pf->lan_veb != I40E_NO_VEB) {
2103 /* set defport ON for Main VSI instead of true promisc
2104 * this way we will get all unicast/multicast and VLAN
2105 * promisc behavior but will not get VF or VMDq traffic
2106 * replicated on the Main VSI.
2107 */
2108 if (pf->cur_promisc != cur_promisc) {
2109 pf->cur_promisc = cur_promisc;
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002110 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002111 }
2112 } else {
Mitch Williamsea02e902015-11-09 15:35:50 -08002113 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002114 &vsi->back->hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002115 vsi->seid,
2116 cur_promisc, NULL);
Mitch Williamsea02e902015-11-09 15:35:50 -08002117 if (aq_ret) {
2118 retval =
2119 i40e_aq_rc_to_posix(aq_ret,
2120 pf->hw.aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002121 dev_info(&pf->pdev->dev,
2122 "set unicast promisc failed, err %d, aq_err %d\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002123 aq_ret, pf->hw.aq.asq_last_status);
2124 }
2125 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002126 &vsi->back->hw,
2127 vsi->seid,
2128 cur_promisc, NULL);
Mitch Williamsea02e902015-11-09 15:35:50 -08002129 if (aq_ret) {
2130 retval =
2131 i40e_aq_rc_to_posix(aq_ret,
2132 pf->hw.aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002133 dev_info(&pf->pdev->dev,
2134 "set multicast promisc failed, err %d, aq_err %d\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002135 aq_ret, pf->hw.aq.asq_last_status);
2136 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002137 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002138 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2139 vsi->seid,
2140 cur_promisc, NULL);
2141 if (aq_ret) {
2142 retval = i40e_aq_rc_to_posix(aq_ret,
2143 pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00002144 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002145 "set brdcast promisc failed, err %s, aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002146 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002147 i40e_aq_str(&pf->hw,
2148 pf->hw.aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002149 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002150 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002151out:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002152 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
Mitch Williamsea02e902015-11-09 15:35:50 -08002153 return retval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002154}
2155
2156/**
2157 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2158 * @pf: board private structure
2159 **/
2160static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2161{
2162 int v;
2163
2164 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2165 return;
2166 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2167
Mitch Williams505682c2014-05-20 08:01:37 +00002168 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002169 if (pf->vsi[v] &&
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002170 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
2171 int ret = i40e_sync_vsi_filters(pf->vsi[v]);
2172
2173 if (ret) {
2174 /* come back and try again later */
2175 pf->flags |= I40E_FLAG_FILTER_SYNC;
2176 break;
2177 }
2178 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002179 }
2180}
2181
2182/**
2183 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2184 * @netdev: network interface device structure
2185 * @new_mtu: new value for maximum frame size
2186 *
2187 * Returns 0 on success, negative on failure
2188 **/
2189static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2190{
2191 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00002192 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002193 struct i40e_vsi *vsi = np->vsi;
2194
2195 /* MTU < 68 is an error and causes problems on some kernels */
2196 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
2197 return -EINVAL;
2198
2199 netdev_info(netdev, "changing MTU from %d to %d\n",
2200 netdev->mtu, new_mtu);
2201 netdev->mtu = new_mtu;
2202 if (netif_running(netdev))
2203 i40e_vsi_reinit_locked(vsi);
2204
2205 return 0;
2206}
2207
2208/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002209 * i40e_ioctl - Access the hwtstamp interface
2210 * @netdev: network interface device structure
2211 * @ifr: interface request data
2212 * @cmd: ioctl command
2213 **/
2214int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2215{
2216 struct i40e_netdev_priv *np = netdev_priv(netdev);
2217 struct i40e_pf *pf = np->vsi->back;
2218
2219 switch (cmd) {
2220 case SIOCGHWTSTAMP:
2221 return i40e_ptp_get_ts_config(pf, ifr);
2222 case SIOCSHWTSTAMP:
2223 return i40e_ptp_set_ts_config(pf, ifr);
2224 default:
2225 return -EOPNOTSUPP;
2226 }
2227}
2228
2229/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002230 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2231 * @vsi: the vsi being adjusted
2232 **/
2233void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2234{
2235 struct i40e_vsi_context ctxt;
2236 i40e_status ret;
2237
2238 if ((vsi->info.valid_sections &
2239 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2240 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2241 return; /* already enabled */
2242
2243 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2244 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2245 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2246
2247 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002248 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002249 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2250 if (ret) {
2251 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002252 "update vlan stripping failed, err %s aq_err %s\n",
2253 i40e_stat_str(&vsi->back->hw, ret),
2254 i40e_aq_str(&vsi->back->hw,
2255 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002256 }
2257}
2258
2259/**
2260 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2261 * @vsi: the vsi being adjusted
2262 **/
2263void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2264{
2265 struct i40e_vsi_context ctxt;
2266 i40e_status ret;
2267
2268 if ((vsi->info.valid_sections &
2269 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2270 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2271 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2272 return; /* already disabled */
2273
2274 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2275 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2276 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2277
2278 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002279 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002280 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2281 if (ret) {
2282 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002283 "update vlan stripping failed, err %s aq_err %s\n",
2284 i40e_stat_str(&vsi->back->hw, ret),
2285 i40e_aq_str(&vsi->back->hw,
2286 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002287 }
2288}
2289
2290/**
2291 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2292 * @netdev: network interface to be adjusted
2293 * @features: netdev features to test if VLAN offload is enabled or not
2294 **/
2295static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2296{
2297 struct i40e_netdev_priv *np = netdev_priv(netdev);
2298 struct i40e_vsi *vsi = np->vsi;
2299
2300 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2301 i40e_vlan_stripping_enable(vsi);
2302 else
2303 i40e_vlan_stripping_disable(vsi);
2304}
2305
2306/**
2307 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2308 * @vsi: the vsi being configured
2309 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2310 **/
2311int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2312{
2313 struct i40e_mac_filter *f, *add_f;
2314 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002315
2316 is_vf = (vsi->type == I40E_VSI_SRIOV);
2317 is_netdev = !!(vsi->netdev);
2318
Kiran Patil21659032015-09-30 14:09:03 -04002319 /* Locked once because all functions invoked below iterates list*/
2320 spin_lock_bh(&vsi->mac_filter_list_lock);
2321
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002322 if (is_netdev) {
2323 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2324 is_vf, is_netdev);
2325 if (!add_f) {
2326 dev_info(&vsi->back->pdev->dev,
2327 "Could not add vlan filter %d for %pM\n",
2328 vid, vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002329 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002330 return -ENOMEM;
2331 }
2332 }
2333
2334 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2335 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2336 if (!add_f) {
2337 dev_info(&vsi->back->pdev->dev,
2338 "Could not add vlan filter %d for %pM\n",
2339 vid, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002340 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002341 return -ENOMEM;
2342 }
2343 }
2344
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002345 /* Now if we add a vlan tag, make sure to check if it is the first
2346 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2347 * with 0, so we now accept untagged and specified tagged traffic
2348 * (and not any taged and untagged)
2349 */
2350 if (vid > 0) {
2351 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2352 I40E_VLAN_ANY,
2353 is_vf, is_netdev)) {
2354 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2355 I40E_VLAN_ANY, is_vf, is_netdev);
2356 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2357 is_vf, is_netdev);
2358 if (!add_f) {
2359 dev_info(&vsi->back->pdev->dev,
2360 "Could not add filter 0 for %pM\n",
2361 vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002362 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002363 return -ENOMEM;
2364 }
2365 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002366 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002367
Greg Rose8d82a7c2014-01-13 16:13:04 -08002368 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2369 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002370 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Kiran Patil21659032015-09-30 14:09:03 -04002371 if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2372 is_vf, is_netdev))
2373 continue;
2374 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2375 is_vf, is_netdev);
2376 add_f = i40e_add_filter(vsi, f->macaddr,
2377 0, is_vf, is_netdev);
2378 if (!add_f) {
2379 dev_info(&vsi->back->pdev->dev,
2380 "Could not add filter 0 for %pM\n",
2381 f->macaddr);
2382 spin_unlock_bh(&vsi->mac_filter_list_lock);
2383 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002384 }
2385 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002386 }
2387
Kiran Patil21659032015-09-30 14:09:03 -04002388 spin_unlock_bh(&vsi->mac_filter_list_lock);
2389
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002390 /* schedule our worker thread which will take care of
2391 * applying the new filter changes
2392 */
2393 i40e_service_event_schedule(vsi->back);
2394 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002395}
2396
2397/**
2398 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2399 * @vsi: the vsi being configured
2400 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002401 *
2402 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002403 **/
2404int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2405{
2406 struct net_device *netdev = vsi->netdev;
2407 struct i40e_mac_filter *f, *add_f;
2408 bool is_vf, is_netdev;
2409 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002410
2411 is_vf = (vsi->type == I40E_VSI_SRIOV);
2412 is_netdev = !!(netdev);
2413
Kiran Patil21659032015-09-30 14:09:03 -04002414 /* Locked once because all functions invoked below iterates list */
2415 spin_lock_bh(&vsi->mac_filter_list_lock);
2416
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002417 if (is_netdev)
2418 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2419
2420 list_for_each_entry(f, &vsi->mac_filter_list, list)
2421 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2422
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002423 /* go through all the filters for this VSI and if there is only
2424 * vid == 0 it means there are no other filters, so vid 0 must
2425 * be replaced with -1. This signifies that we should from now
2426 * on accept any traffic (with any tag present, or untagged)
2427 */
2428 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2429 if (is_netdev) {
2430 if (f->vlan &&
2431 ether_addr_equal(netdev->dev_addr, f->macaddr))
2432 filter_count++;
2433 }
2434
2435 if (f->vlan)
2436 filter_count++;
2437 }
2438
2439 if (!filter_count && is_netdev) {
2440 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2441 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2442 is_vf, is_netdev);
2443 if (!f) {
2444 dev_info(&vsi->back->pdev->dev,
2445 "Could not add filter %d for %pM\n",
2446 I40E_VLAN_ANY, netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002447 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002448 return -ENOMEM;
2449 }
2450 }
2451
2452 if (!filter_count) {
2453 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2454 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2455 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
Kiran Patil21659032015-09-30 14:09:03 -04002456 is_vf, is_netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002457 if (!add_f) {
2458 dev_info(&vsi->back->pdev->dev,
2459 "Could not add filter %d for %pM\n",
2460 I40E_VLAN_ANY, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002461 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002462 return -ENOMEM;
2463 }
2464 }
2465 }
2466
Kiran Patil21659032015-09-30 14:09:03 -04002467 spin_unlock_bh(&vsi->mac_filter_list_lock);
2468
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002469 /* schedule our worker thread which will take care of
2470 * applying the new filter changes
2471 */
2472 i40e_service_event_schedule(vsi->back);
2473 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002474}
2475
2476/**
2477 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2478 * @netdev: network interface to be adjusted
2479 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002480 *
2481 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002482 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002483#ifdef I40E_FCOE
2484int i40e_vlan_rx_add_vid(struct net_device *netdev,
2485 __always_unused __be16 proto, u16 vid)
2486#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002487static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2488 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002489#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002490{
2491 struct i40e_netdev_priv *np = netdev_priv(netdev);
2492 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002493 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002494
2495 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002496 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002497
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002498 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2499
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002500 /* If the network stack called us with vid = 0 then
2501 * it is asking to receive priority tagged packets with
2502 * vlan id 0. Our HW receives them by default when configured
2503 * to receive untagged packets so there is no need to add an
2504 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002505 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002506 if (vid)
2507 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002508
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002509 if (!ret && (vid < VLAN_N_VID))
2510 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002511
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002512 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002513}
2514
2515/**
2516 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2517 * @netdev: network interface to be adjusted
2518 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002519 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002520 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002521 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002522#ifdef I40E_FCOE
2523int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2524 __always_unused __be16 proto, u16 vid)
2525#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002526static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2527 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002528#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002529{
2530 struct i40e_netdev_priv *np = netdev_priv(netdev);
2531 struct i40e_vsi *vsi = np->vsi;
2532
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002533 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2534
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002535 /* return code is ignored as there is nothing a user
2536 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002537 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002538 */
2539 i40e_vsi_kill_vlan(vsi, vid);
2540
2541 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002542
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002543 return 0;
2544}
2545
2546/**
2547 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2548 * @vsi: the vsi being brought back up
2549 **/
2550static void i40e_restore_vlan(struct i40e_vsi *vsi)
2551{
2552 u16 vid;
2553
2554 if (!vsi->netdev)
2555 return;
2556
2557 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2558
2559 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2560 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2561 vid);
2562}
2563
2564/**
2565 * i40e_vsi_add_pvid - Add pvid for the VSI
2566 * @vsi: the vsi being adjusted
2567 * @vid: the vlan id to set as a PVID
2568 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002569int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002570{
2571 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002572 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002573
2574 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2575 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002576 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2577 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002578 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002579
2580 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002581 ctxt.info = vsi->info;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002582 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2583 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002584 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002585 "add pvid failed, err %s aq_err %s\n",
2586 i40e_stat_str(&vsi->back->hw, ret),
2587 i40e_aq_str(&vsi->back->hw,
2588 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002589 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002590 }
2591
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002592 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002593}
2594
2595/**
2596 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2597 * @vsi: the vsi being adjusted
2598 *
2599 * Just use the vlan_rx_register() service to put it back to normal
2600 **/
2601void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2602{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002603 i40e_vlan_stripping_disable(vsi);
2604
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002605 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002606}
2607
2608/**
2609 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2610 * @vsi: ptr to the VSI
2611 *
2612 * If this function returns with an error, then it's possible one or
2613 * more of the rings is populated (while the rest are not). It is the
2614 * callers duty to clean those orphaned rings.
2615 *
2616 * Return 0 on success, negative on failure
2617 **/
2618static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2619{
2620 int i, err = 0;
2621
2622 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002623 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002624
2625 return err;
2626}
2627
2628/**
2629 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2630 * @vsi: ptr to the VSI
2631 *
2632 * Free VSI's transmit software resources
2633 **/
2634static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2635{
2636 int i;
2637
Greg Rose8e9dca52013-12-18 13:45:53 +00002638 if (!vsi->tx_rings)
2639 return;
2640
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002641 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002642 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002643 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002644}
2645
2646/**
2647 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2648 * @vsi: ptr to the VSI
2649 *
2650 * If this function returns with an error, then it's possible one or
2651 * more of the rings is populated (while the rest are not). It is the
2652 * callers duty to clean those orphaned rings.
2653 *
2654 * Return 0 on success, negative on failure
2655 **/
2656static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2657{
2658 int i, err = 0;
2659
2660 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002661 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002662#ifdef I40E_FCOE
2663 i40e_fcoe_setup_ddp_resources(vsi);
2664#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002665 return err;
2666}
2667
2668/**
2669 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2670 * @vsi: ptr to the VSI
2671 *
2672 * Free all receive software resources
2673 **/
2674static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2675{
2676 int i;
2677
Greg Rose8e9dca52013-12-18 13:45:53 +00002678 if (!vsi->rx_rings)
2679 return;
2680
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002681 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002682 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002683 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002684#ifdef I40E_FCOE
2685 i40e_fcoe_free_ddp_resources(vsi);
2686#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002687}
2688
2689/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002690 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2691 * @ring: The Tx ring to configure
2692 *
2693 * This enables/disables XPS for a given Tx descriptor ring
2694 * based on the TCs enabled for the VSI that ring belongs to.
2695 **/
2696static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2697{
2698 struct i40e_vsi *vsi = ring->vsi;
2699 cpumask_var_t mask;
2700
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002701 if (!ring->q_vector || !ring->netdev)
2702 return;
2703
2704 /* Single TC mode enable XPS */
2705 if (vsi->tc_config.numtc <= 1) {
2706 if (!test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002707 netif_set_xps_queue(ring->netdev,
2708 &ring->q_vector->affinity_mask,
2709 ring->queue_index);
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002710 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2711 /* Disable XPS to allow selection based on TC */
2712 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2713 netif_set_xps_queue(ring->netdev, mask, ring->queue_index);
2714 free_cpumask_var(mask);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002715 }
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002716
2717 /* schedule our worker thread which will take care of
2718 * applying the new filter changes
2719 */
2720 i40e_service_event_schedule(vsi->back);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002721}
2722
2723/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002724 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2725 * @ring: The Tx ring to configure
2726 *
2727 * Configure the Tx descriptor ring in the HMC context.
2728 **/
2729static int i40e_configure_tx_ring(struct i40e_ring *ring)
2730{
2731 struct i40e_vsi *vsi = ring->vsi;
2732 u16 pf_q = vsi->base_queue + ring->queue_index;
2733 struct i40e_hw *hw = &vsi->back->hw;
2734 struct i40e_hmc_obj_txq tx_ctx;
2735 i40e_status err = 0;
2736 u32 qtx_ctl = 0;
2737
2738 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002739 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002740 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2741 ring->atr_count = 0;
2742 } else {
2743 ring->atr_sample_rate = 0;
2744 }
2745
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002746 /* configure XPS */
2747 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002748
2749 /* clear the context structure first */
2750 memset(&tx_ctx, 0, sizeof(tx_ctx));
2751
2752 tx_ctx.new_context = 1;
2753 tx_ctx.base = (ring->dma / 128);
2754 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002755 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2756 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002757#ifdef I40E_FCOE
2758 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2759#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002760 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002761 /* FDIR VSI tx ring can still use RS bit and writebacks */
2762 if (vsi->type != I40E_VSI_FDIR)
2763 tx_ctx.head_wb_ena = 1;
2764 tx_ctx.head_wb_addr = ring->dma +
2765 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002766
2767 /* As part of VSI creation/update, FW allocates certain
2768 * Tx arbitration queue sets for each TC enabled for
2769 * the VSI. The FW returns the handles to these queue
2770 * sets as part of the response buffer to Add VSI,
2771 * Update VSI, etc. AQ commands. It is expected that
2772 * these queue set handles be associated with the Tx
2773 * queues by the driver as part of the TX queue context
2774 * initialization. This has to be done regardless of
2775 * DCB as by default everything is mapped to TC0.
2776 */
2777 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2778 tx_ctx.rdylist_act = 0;
2779
2780 /* clear the context in the HMC */
2781 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2782 if (err) {
2783 dev_info(&vsi->back->pdev->dev,
2784 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2785 ring->queue_index, pf_q, err);
2786 return -ENOMEM;
2787 }
2788
2789 /* set the context in the HMC */
2790 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2791 if (err) {
2792 dev_info(&vsi->back->pdev->dev,
2793 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2794 ring->queue_index, pf_q, err);
2795 return -ENOMEM;
2796 }
2797
2798 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002799 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002800 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002801 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2802 I40E_QTX_CTL_VFVM_INDX_MASK;
2803 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002804 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002805 }
2806
Shannon Nelson13fd977492013-09-28 07:14:19 +00002807 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2808 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002809 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2810 i40e_flush(hw);
2811
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002812 /* cache tail off for easier writes later */
2813 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2814
2815 return 0;
2816}
2817
2818/**
2819 * i40e_configure_rx_ring - Configure a receive ring context
2820 * @ring: The Rx ring to configure
2821 *
2822 * Configure the Rx descriptor ring in the HMC context.
2823 **/
2824static int i40e_configure_rx_ring(struct i40e_ring *ring)
2825{
2826 struct i40e_vsi *vsi = ring->vsi;
2827 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2828 u16 pf_q = vsi->base_queue + ring->queue_index;
2829 struct i40e_hw *hw = &vsi->back->hw;
2830 struct i40e_hmc_obj_rxq rx_ctx;
2831 i40e_status err = 0;
2832
2833 ring->state = 0;
2834
2835 /* clear the context structure first */
2836 memset(&rx_ctx, 0, sizeof(rx_ctx));
2837
2838 ring->rx_buf_len = vsi->rx_buf_len;
2839 ring->rx_hdr_len = vsi->rx_hdr_len;
2840
2841 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2842 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2843
2844 rx_ctx.base = (ring->dma / 128);
2845 rx_ctx.qlen = ring->count;
2846
2847 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2848 set_ring_16byte_desc_enabled(ring);
2849 rx_ctx.dsize = 0;
2850 } else {
2851 rx_ctx.dsize = 1;
2852 }
2853
2854 rx_ctx.dtype = vsi->dtype;
2855 if (vsi->dtype) {
2856 set_ring_ps_enabled(ring);
2857 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2858 I40E_RX_SPLIT_IP |
2859 I40E_RX_SPLIT_TCP_UDP |
2860 I40E_RX_SPLIT_SCTP;
2861 } else {
2862 rx_ctx.hsplit_0 = 0;
2863 }
2864
2865 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2866 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002867 if (hw->revision_id == 0)
2868 rx_ctx.lrxqthresh = 0;
2869 else
2870 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002871 rx_ctx.crcstrip = 1;
2872 rx_ctx.l2tsel = 1;
Jesse Brandeburgc4bbac32015-09-28 11:21:48 -07002873 /* this controls whether VLAN is stripped from inner headers */
2874 rx_ctx.showiv = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07002875#ifdef I40E_FCOE
2876 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2877#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002878 /* set the prefena field to 1 because the manual says to */
2879 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002880
2881 /* clear the context in the HMC */
2882 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2883 if (err) {
2884 dev_info(&vsi->back->pdev->dev,
2885 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2886 ring->queue_index, pf_q, err);
2887 return -ENOMEM;
2888 }
2889
2890 /* set the context in the HMC */
2891 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2892 if (err) {
2893 dev_info(&vsi->back->pdev->dev,
2894 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2895 ring->queue_index, pf_q, err);
2896 return -ENOMEM;
2897 }
2898
2899 /* cache tail for quicker writes, and clear the reg before use */
2900 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2901 writel(0, ring->tail);
2902
Mitch Williamsa132af22015-01-24 09:58:35 +00002903 if (ring_is_ps_enabled(ring)) {
2904 i40e_alloc_rx_headers(ring);
2905 i40e_alloc_rx_buffers_ps(ring, I40E_DESC_UNUSED(ring));
2906 } else {
2907 i40e_alloc_rx_buffers_1buf(ring, I40E_DESC_UNUSED(ring));
2908 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002909
2910 return 0;
2911}
2912
2913/**
2914 * i40e_vsi_configure_tx - Configure the VSI for Tx
2915 * @vsi: VSI structure describing this set of rings and resources
2916 *
2917 * Configure the Tx VSI for operation.
2918 **/
2919static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2920{
2921 int err = 0;
2922 u16 i;
2923
Alexander Duyck9f65e152013-09-28 06:00:58 +00002924 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2925 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002926
2927 return err;
2928}
2929
2930/**
2931 * i40e_vsi_configure_rx - Configure the VSI for Rx
2932 * @vsi: the VSI being configured
2933 *
2934 * Configure the Rx VSI for operation.
2935 **/
2936static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2937{
2938 int err = 0;
2939 u16 i;
2940
2941 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2942 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2943 + ETH_FCS_LEN + VLAN_HLEN;
2944 else
2945 vsi->max_frame = I40E_RXBUFFER_2048;
2946
2947 /* figure out correct receive buffer length */
2948 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2949 I40E_FLAG_RX_PS_ENABLED)) {
2950 case I40E_FLAG_RX_1BUF_ENABLED:
2951 vsi->rx_hdr_len = 0;
2952 vsi->rx_buf_len = vsi->max_frame;
2953 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2954 break;
2955 case I40E_FLAG_RX_PS_ENABLED:
2956 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2957 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2958 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2959 break;
2960 default:
2961 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2962 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2963 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2964 break;
2965 }
2966
Vasu Dev38e00432014-08-01 13:27:03 -07002967#ifdef I40E_FCOE
2968 /* setup rx buffer for FCoE */
2969 if ((vsi->type == I40E_VSI_FCOE) &&
2970 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2971 vsi->rx_hdr_len = 0;
2972 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2973 vsi->max_frame = I40E_RXBUFFER_3072;
2974 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2975 }
2976
2977#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002978 /* round up for the chip's needs */
2979 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002980 BIT_ULL(I40E_RXQ_CTX_HBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002981 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002982 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002983
2984 /* set up individual rings */
2985 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002986 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002987
2988 return err;
2989}
2990
2991/**
2992 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2993 * @vsi: ptr to the VSI
2994 **/
2995static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2996{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002997 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002998 u16 qoffset, qcount;
2999 int i, n;
3000
Parikh, Neeravcd238a32015-02-21 06:43:37 +00003001 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
3002 /* Reset the TC information */
3003 for (i = 0; i < vsi->num_queue_pairs; i++) {
3004 rx_ring = vsi->rx_rings[i];
3005 tx_ring = vsi->tx_rings[i];
3006 rx_ring->dcb_tc = 0;
3007 tx_ring->dcb_tc = 0;
3008 }
3009 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003010
3011 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04003012 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003013 continue;
3014
3015 qoffset = vsi->tc_config.tc_info[n].qoffset;
3016 qcount = vsi->tc_config.tc_info[n].qcount;
3017 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003018 rx_ring = vsi->rx_rings[i];
3019 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003020 rx_ring->dcb_tc = n;
3021 tx_ring->dcb_tc = n;
3022 }
3023 }
3024}
3025
3026/**
3027 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
3028 * @vsi: ptr to the VSI
3029 **/
3030static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
3031{
3032 if (vsi->netdev)
3033 i40e_set_rx_mode(vsi->netdev);
3034}
3035
3036/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003037 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
3038 * @vsi: Pointer to the targeted VSI
3039 *
3040 * This function replays the hlist on the hw where all the SB Flow Director
3041 * filters were saved.
3042 **/
3043static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
3044{
3045 struct i40e_fdir_filter *filter;
3046 struct i40e_pf *pf = vsi->back;
3047 struct hlist_node *node;
3048
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003049 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3050 return;
3051
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003052 hlist_for_each_entry_safe(filter, node,
3053 &pf->fdir_filter_list, fdir_node) {
3054 i40e_add_del_fdir(vsi, filter, true);
3055 }
3056}
3057
3058/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003059 * i40e_vsi_configure - Set up the VSI for action
3060 * @vsi: the VSI being configured
3061 **/
3062static int i40e_vsi_configure(struct i40e_vsi *vsi)
3063{
3064 int err;
3065
3066 i40e_set_vsi_rx_mode(vsi);
3067 i40e_restore_vlan(vsi);
3068 i40e_vsi_config_dcb_rings(vsi);
3069 err = i40e_vsi_configure_tx(vsi);
3070 if (!err)
3071 err = i40e_vsi_configure_rx(vsi);
3072
3073 return err;
3074}
3075
3076/**
3077 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3078 * @vsi: the VSI being configured
3079 **/
3080static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3081{
3082 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003083 struct i40e_hw *hw = &pf->hw;
3084 u16 vector;
3085 int i, q;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003086 u32 qp;
3087
3088 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3089 * and PFINT_LNKLSTn registers, e.g.:
3090 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3091 */
3092 qp = vsi->base_queue;
3093 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00003094 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003095 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3096
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003097 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003098 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
3099 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3100 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3101 q_vector->rx.itr);
3102 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
3103 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3104 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3105 q_vector->tx.itr);
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003106 wr32(hw, I40E_PFINT_RATEN(vector - 1),
3107 INTRL_USEC_TO_REG(vsi->int_rate_limit));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003108
3109 /* Linked list for the queuepairs assigned to this vector */
3110 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3111 for (q = 0; q < q_vector->num_ringpairs; q++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003112 u32 val;
3113
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003114 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3115 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3116 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3117 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
3118 (I40E_QUEUE_TYPE_TX
3119 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
3120
3121 wr32(hw, I40E_QINT_RQCTL(qp), val);
3122
3123 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3124 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3125 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3126 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
3127 (I40E_QUEUE_TYPE_RX
3128 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3129
3130 /* Terminate the linked list */
3131 if (q == (q_vector->num_ringpairs - 1))
3132 val |= (I40E_QUEUE_END_OF_LIST
3133 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3134
3135 wr32(hw, I40E_QINT_TQCTL(qp), val);
3136 qp++;
3137 }
3138 }
3139
3140 i40e_flush(hw);
3141}
3142
3143/**
3144 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3145 * @hw: ptr to the hardware info
3146 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00003147static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003148{
Jacob Kellerab437b52014-12-14 01:55:08 +00003149 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003150 u32 val;
3151
3152 /* clear things first */
3153 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3154 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3155
3156 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3157 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3158 I40E_PFINT_ICR0_ENA_GRST_MASK |
3159 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3160 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003161 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3162 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3163 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3164
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003165 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3166 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3167
Jacob Kellerab437b52014-12-14 01:55:08 +00003168 if (pf->flags & I40E_FLAG_PTP)
3169 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3170
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003171 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3172
3173 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00003174 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3175 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003176
3177 /* OTHER_ITR_IDX = 0 */
3178 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3179}
3180
3181/**
3182 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3183 * @vsi: the VSI being configured
3184 **/
3185static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3186{
Alexander Duyck493fb302013-09-28 07:01:44 +00003187 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003188 struct i40e_pf *pf = vsi->back;
3189 struct i40e_hw *hw = &pf->hw;
3190 u32 val;
3191
3192 /* set the ITR configuration */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003193 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003194 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
3195 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3196 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
3197 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
3198 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3199 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3200
Jacob Kellerab437b52014-12-14 01:55:08 +00003201 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003202
3203 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3204 wr32(hw, I40E_PFINT_LNKLST0, 0);
3205
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00003206 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003207 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3208 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3209 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3210
3211 wr32(hw, I40E_QINT_RQCTL(0), val);
3212
3213 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3214 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3215 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3216
3217 wr32(hw, I40E_QINT_TQCTL(0), val);
3218 i40e_flush(hw);
3219}
3220
3221/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00003222 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3223 * @pf: board private structure
3224 **/
3225void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3226{
3227 struct i40e_hw *hw = &pf->hw;
3228
3229 wr32(hw, I40E_PFINT_DYN_CTL0,
3230 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3231 i40e_flush(hw);
3232}
3233
3234/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003235 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3236 * @pf: board private structure
3237 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00003238void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003239{
3240 struct i40e_hw *hw = &pf->hw;
3241 u32 val;
3242
3243 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
3244 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
3245 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3246
3247 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3248 i40e_flush(hw);
3249}
3250
3251/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00003252 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
3253 * @vsi: pointer to a vsi
Greg Rose03147772015-01-24 09:58:29 +00003254 * @vector: disable a particular Hw Interrupt vector
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00003255 **/
3256void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
3257{
3258 struct i40e_pf *pf = vsi->back;
3259 struct i40e_hw *hw = &pf->hw;
3260 u32 val;
3261
3262 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
3263 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
3264 i40e_flush(hw);
3265}
3266
3267/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003268 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3269 * @irq: interrupt number
3270 * @data: pointer to a q_vector
3271 **/
3272static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3273{
3274 struct i40e_q_vector *q_vector = data;
3275
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003276 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003277 return IRQ_HANDLED;
3278
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003279 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003280
3281 return IRQ_HANDLED;
3282}
3283
3284/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003285 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3286 * @vsi: the VSI being configured
3287 * @basename: name for the vector
3288 *
3289 * Allocates MSI-X vectors and requests interrupts from the kernel.
3290 **/
3291static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3292{
3293 int q_vectors = vsi->num_q_vectors;
3294 struct i40e_pf *pf = vsi->back;
3295 int base = vsi->base_vector;
3296 int rx_int_idx = 0;
3297 int tx_int_idx = 0;
3298 int vector, err;
3299
3300 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003301 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003302
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003303 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003304 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3305 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3306 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003307 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003308 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3309 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003310 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003311 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3312 "%s-%s-%d", basename, "tx", tx_int_idx++);
3313 } else {
3314 /* skip this unused q_vector */
3315 continue;
3316 }
3317 err = request_irq(pf->msix_entries[base + vector].vector,
3318 vsi->irq_handler,
3319 0,
3320 q_vector->name,
3321 q_vector);
3322 if (err) {
3323 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003324 "MSIX request_irq failed, error: %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003325 goto free_queue_irqs;
3326 }
3327 /* assign the mask for this irq */
3328 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3329 &q_vector->affinity_mask);
3330 }
3331
Shannon Nelson63741842014-04-23 04:50:16 +00003332 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003333 return 0;
3334
3335free_queue_irqs:
3336 while (vector) {
3337 vector--;
3338 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3339 NULL);
3340 free_irq(pf->msix_entries[base + vector].vector,
3341 &(vsi->q_vectors[vector]));
3342 }
3343 return err;
3344}
3345
3346/**
3347 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3348 * @vsi: the VSI being un-configured
3349 **/
3350static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3351{
3352 struct i40e_pf *pf = vsi->back;
3353 struct i40e_hw *hw = &pf->hw;
3354 int base = vsi->base_vector;
3355 int i;
3356
3357 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00003358 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3359 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003360 }
3361
3362 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3363 for (i = vsi->base_vector;
3364 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3365 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3366
3367 i40e_flush(hw);
3368 for (i = 0; i < vsi->num_q_vectors; i++)
3369 synchronize_irq(pf->msix_entries[i + base].vector);
3370 } else {
3371 /* Legacy and MSI mode - this stops all interrupt handling */
3372 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3373 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3374 i40e_flush(hw);
3375 synchronize_irq(pf->pdev->irq);
3376 }
3377}
3378
3379/**
3380 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3381 * @vsi: the VSI being configured
3382 **/
3383static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3384{
3385 struct i40e_pf *pf = vsi->back;
3386 int i;
3387
3388 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Jesse Brandeburg78455482015-07-23 16:54:41 -04003389 for (i = 0; i < vsi->num_q_vectors; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003390 i40e_irq_dynamic_enable(vsi, i);
3391 } else {
3392 i40e_irq_dynamic_enable_icr0(pf);
3393 }
3394
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003395 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003396 return 0;
3397}
3398
3399/**
3400 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3401 * @pf: board private structure
3402 **/
3403static void i40e_stop_misc_vector(struct i40e_pf *pf)
3404{
3405 /* Disable ICR 0 */
3406 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3407 i40e_flush(&pf->hw);
3408}
3409
3410/**
3411 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3412 * @irq: interrupt number
3413 * @data: pointer to a q_vector
3414 *
3415 * This is the handler used for all MSI/Legacy interrupts, and deals
3416 * with both queue and non-queue interrupts. This is also used in
3417 * MSIX mode to handle the non-queue interrupts.
3418 **/
3419static irqreturn_t i40e_intr(int irq, void *data)
3420{
3421 struct i40e_pf *pf = (struct i40e_pf *)data;
3422 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003423 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003424 u32 icr0, icr0_remaining;
3425 u32 val, ena_mask;
3426
3427 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003428 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003429
Shannon Nelson116a57d2013-09-28 07:13:59 +00003430 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3431 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003432 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003433
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003434 /* if interrupt but no bits showing, must be SWINT */
3435 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3436 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3437 pf->sw_int_count++;
3438
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003439 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
3440 (ena_mask & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
3441 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3442 icr0 &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3443 dev_info(&pf->pdev->dev, "cleared PE_CRITERR\n");
3444 }
3445
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003446 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3447 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003448 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3449 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003450
3451 /* temporarily disable queue cause for NAPI processing */
3452 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003453
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003454 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3455 wr32(hw, I40E_QINT_RQCTL(0), qval);
3456
3457 qval = rd32(hw, I40E_QINT_TQCTL(0));
3458 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3459 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003460
3461 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003462 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003463 }
3464
3465 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3466 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3467 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3468 }
3469
3470 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3471 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3472 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3473 }
3474
3475 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3476 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3477 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3478 }
3479
3480 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3481 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3482 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3483 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3484 val = rd32(hw, I40E_GLGEN_RSTAT);
3485 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3486 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003487 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003488 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003489 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003490 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003491 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003492 pf->empr_count++;
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00003493 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003494 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003495 }
3496
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003497 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3498 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3499 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
Anjali Singhai Jain25fc0e62015-03-31 00:45:01 -07003500 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3501 rd32(hw, I40E_PFHMC_ERRORINFO),
3502 rd32(hw, I40E_PFHMC_ERRORDATA));
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003503 }
3504
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003505 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3506 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3507
3508 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003509 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003510 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003511 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003512 }
3513
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003514 /* If a critical error is pending we have no choice but to reset the
3515 * device.
3516 * Report and mask out any remaining unexpected interrupts.
3517 */
3518 icr0_remaining = icr0 & ena_mask;
3519 if (icr0_remaining) {
3520 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3521 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003522 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003523 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003524 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003525 dev_info(&pf->pdev->dev, "device will be reset\n");
3526 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3527 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003528 }
3529 ena_mask &= ~icr0_remaining;
3530 }
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003531 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003532
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003533enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003534 /* re-enable interrupt causes */
3535 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003536 if (!test_bit(__I40E_DOWN, &pf->state)) {
3537 i40e_service_event_schedule(pf);
3538 i40e_irq_dynamic_enable_icr0(pf);
3539 }
3540
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003541 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003542}
3543
3544/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003545 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3546 * @tx_ring: tx ring to clean
3547 * @budget: how many cleans we're allowed
3548 *
3549 * Returns true if there's any budget left (e.g. the clean is finished)
3550 **/
3551static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3552{
3553 struct i40e_vsi *vsi = tx_ring->vsi;
3554 u16 i = tx_ring->next_to_clean;
3555 struct i40e_tx_buffer *tx_buf;
3556 struct i40e_tx_desc *tx_desc;
3557
3558 tx_buf = &tx_ring->tx_bi[i];
3559 tx_desc = I40E_TX_DESC(tx_ring, i);
3560 i -= tx_ring->count;
3561
3562 do {
3563 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3564
3565 /* if next_to_watch is not set then there is no work pending */
3566 if (!eop_desc)
3567 break;
3568
3569 /* prevent any other reads prior to eop_desc */
3570 read_barrier_depends();
3571
3572 /* if the descriptor isn't done, no work yet to do */
3573 if (!(eop_desc->cmd_type_offset_bsz &
3574 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3575 break;
3576
3577 /* clear next_to_watch to prevent false hangs */
3578 tx_buf->next_to_watch = NULL;
3579
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003580 tx_desc->buffer_addr = 0;
3581 tx_desc->cmd_type_offset_bsz = 0;
3582 /* move past filter desc */
3583 tx_buf++;
3584 tx_desc++;
3585 i++;
3586 if (unlikely(!i)) {
3587 i -= tx_ring->count;
3588 tx_buf = tx_ring->tx_bi;
3589 tx_desc = I40E_TX_DESC(tx_ring, 0);
3590 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003591 /* unmap skb header data */
3592 dma_unmap_single(tx_ring->dev,
3593 dma_unmap_addr(tx_buf, dma),
3594 dma_unmap_len(tx_buf, len),
3595 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003596 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3597 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003598
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003599 tx_buf->raw_buf = NULL;
3600 tx_buf->tx_flags = 0;
3601 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003602 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003603 tx_desc->buffer_addr = 0;
3604 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003605
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003606 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003607 tx_buf++;
3608 tx_desc++;
3609 i++;
3610 if (unlikely(!i)) {
3611 i -= tx_ring->count;
3612 tx_buf = tx_ring->tx_bi;
3613 tx_desc = I40E_TX_DESC(tx_ring, 0);
3614 }
3615
3616 /* update budget accounting */
3617 budget--;
3618 } while (likely(budget));
3619
3620 i += tx_ring->count;
3621 tx_ring->next_to_clean = i;
3622
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003623 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
Jesse Brandeburg78455482015-07-23 16:54:41 -04003624 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003625
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003626 return budget > 0;
3627}
3628
3629/**
3630 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3631 * @irq: interrupt number
3632 * @data: pointer to a q_vector
3633 **/
3634static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3635{
3636 struct i40e_q_vector *q_vector = data;
3637 struct i40e_vsi *vsi;
3638
3639 if (!q_vector->tx.ring)
3640 return IRQ_HANDLED;
3641
3642 vsi = q_vector->tx.ring->vsi;
3643 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3644
3645 return IRQ_HANDLED;
3646}
3647
3648/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003649 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003650 * @vsi: the VSI being configured
3651 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003652 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003653 **/
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003654static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003655{
Alexander Duyck493fb302013-09-28 07:01:44 +00003656 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e152013-09-28 06:00:58 +00003657 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3658 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003659
3660 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003661 tx_ring->next = q_vector->tx.ring;
3662 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003663 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003664
3665 rx_ring->q_vector = q_vector;
3666 rx_ring->next = q_vector->rx.ring;
3667 q_vector->rx.ring = rx_ring;
3668 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003669}
3670
3671/**
3672 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3673 * @vsi: the VSI being configured
3674 *
3675 * This function maps descriptor rings to the queue-specific vectors
3676 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3677 * one vector per queue pair, but on a constrained vector budget, we
3678 * group the queue pairs as "efficiently" as possible.
3679 **/
3680static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3681{
3682 int qp_remaining = vsi->num_queue_pairs;
3683 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003684 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003685 int v_start = 0;
3686 int qp_idx = 0;
3687
3688 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3689 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003690 * It is also important to go through all the vectors available to be
3691 * sure that if we don't use all the vectors, that the remaining vectors
3692 * are cleared. This is especially important when decreasing the
3693 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003694 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003695 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003696 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3697
3698 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3699
3700 q_vector->num_ringpairs = num_ringpairs;
3701
3702 q_vector->rx.count = 0;
3703 q_vector->tx.count = 0;
3704 q_vector->rx.ring = NULL;
3705 q_vector->tx.ring = NULL;
3706
3707 while (num_ringpairs--) {
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003708 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003709 qp_idx++;
3710 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003711 }
3712 }
3713}
3714
3715/**
3716 * i40e_vsi_request_irq - Request IRQ from the OS
3717 * @vsi: the VSI being configured
3718 * @basename: name for the vector
3719 **/
3720static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3721{
3722 struct i40e_pf *pf = vsi->back;
3723 int err;
3724
3725 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3726 err = i40e_vsi_request_irq_msix(vsi, basename);
3727 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3728 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003729 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003730 else
3731 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003732 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003733
3734 if (err)
3735 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3736
3737 return err;
3738}
3739
3740#ifdef CONFIG_NET_POLL_CONTROLLER
3741/**
3742 * i40e_netpoll - A Polling 'interrupt'handler
3743 * @netdev: network interface device structure
3744 *
3745 * This is used by netconsole to send skbs without having to re-enable
3746 * interrupts. It's not called while the normal interrupt routine is executing.
3747 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003748#ifdef I40E_FCOE
3749void i40e_netpoll(struct net_device *netdev)
3750#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003751static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003752#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003753{
3754 struct i40e_netdev_priv *np = netdev_priv(netdev);
3755 struct i40e_vsi *vsi = np->vsi;
3756 struct i40e_pf *pf = vsi->back;
3757 int i;
3758
3759 /* if interface is down do nothing */
3760 if (test_bit(__I40E_DOWN, &vsi->state))
3761 return;
3762
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003763 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3764 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003765 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003766 } else {
3767 i40e_intr(pf->pdev->irq, netdev);
3768 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003769}
3770#endif
3771
3772/**
Neerav Parikh23527302014-06-03 23:50:15 +00003773 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3774 * @pf: the PF being configured
3775 * @pf_q: the PF queue
3776 * @enable: enable or disable state of the queue
3777 *
3778 * This routine will wait for the given Tx queue of the PF to reach the
3779 * enabled or disabled state.
3780 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3781 * multiple retries; else will return 0 in case of success.
3782 **/
3783static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3784{
3785 int i;
3786 u32 tx_reg;
3787
3788 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3789 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3790 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3791 break;
3792
Neerav Parikhf98a2002014-09-13 07:40:44 +00003793 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003794 }
3795 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3796 return -ETIMEDOUT;
3797
3798 return 0;
3799}
3800
3801/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003802 * i40e_vsi_control_tx - Start or stop a VSI's rings
3803 * @vsi: the VSI being configured
3804 * @enable: start or stop the rings
3805 **/
3806static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3807{
3808 struct i40e_pf *pf = vsi->back;
3809 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003810 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003811 u32 tx_reg;
3812
3813 pf_q = vsi->base_queue;
3814 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499ab2014-04-23 04:50:03 +00003815
3816 /* warn the TX unit of coming changes */
3817 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3818 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003819 usleep_range(10, 20);
Matt Jared351499ab2014-04-23 04:50:03 +00003820
Mitch Williams6c5ef622014-02-20 19:29:16 -08003821 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003822 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003823 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3824 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3825 break;
3826 usleep_range(1000, 2000);
3827 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003828 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c1220072014-03-14 07:32:29 +00003829 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003830 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003831
3832 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003833 if (enable) {
3834 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003835 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003836 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003837 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003838 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003839
3840 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003841 /* No waiting for the Tx queue to disable */
3842 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3843 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003844
3845 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003846 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3847 if (ret) {
3848 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003849 "VSI seid %d Tx ring %d %sable timeout\n",
3850 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003851 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003852 }
3853 }
3854
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003855 if (hw->revision_id == 0)
3856 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003857 return ret;
3858}
3859
3860/**
3861 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3862 * @pf: the PF being configured
3863 * @pf_q: the PF queue
3864 * @enable: enable or disable state of the queue
3865 *
3866 * This routine will wait for the given Rx queue of the PF to reach the
3867 * enabled or disabled state.
3868 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3869 * multiple retries; else will return 0 in case of success.
3870 **/
3871static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3872{
3873 int i;
3874 u32 rx_reg;
3875
3876 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3877 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3878 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3879 break;
3880
Neerav Parikhf98a2002014-09-13 07:40:44 +00003881 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003882 }
3883 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3884 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003885
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003886 return 0;
3887}
3888
3889/**
3890 * i40e_vsi_control_rx - Start or stop a VSI's rings
3891 * @vsi: the VSI being configured
3892 * @enable: start or stop the rings
3893 **/
3894static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3895{
3896 struct i40e_pf *pf = vsi->back;
3897 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003898 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003899 u32 rx_reg;
3900
3901 pf_q = vsi->base_queue;
3902 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003903 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003904 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003905 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3906 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3907 break;
3908 usleep_range(1000, 2000);
3909 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003910
Catherine Sullivan7c1220072014-03-14 07:32:29 +00003911 /* Skip if the queue is already in the requested state */
3912 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3913 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003914
3915 /* turn on/off the queue */
3916 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003917 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003918 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003919 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003920 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3921
3922 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003923 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3924 if (ret) {
3925 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003926 "VSI seid %d Rx ring %d %sable timeout\n",
3927 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003928 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003929 }
3930 }
3931
Neerav Parikh23527302014-06-03 23:50:15 +00003932 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003933}
3934
3935/**
3936 * i40e_vsi_control_rings - Start or stop a VSI's rings
3937 * @vsi: the VSI being configured
3938 * @enable: start or stop the rings
3939 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003940int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003941{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003942 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003943
3944 /* do rx first for enable and last for disable */
3945 if (request) {
3946 ret = i40e_vsi_control_rx(vsi, request);
3947 if (ret)
3948 return ret;
3949 ret = i40e_vsi_control_tx(vsi, request);
3950 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003951 /* Ignore return value, we need to shutdown whatever we can */
3952 i40e_vsi_control_tx(vsi, request);
3953 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003954 }
3955
3956 return ret;
3957}
3958
3959/**
3960 * i40e_vsi_free_irq - Free the irq association with the OS
3961 * @vsi: the VSI being configured
3962 **/
3963static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3964{
3965 struct i40e_pf *pf = vsi->back;
3966 struct i40e_hw *hw = &pf->hw;
3967 int base = vsi->base_vector;
3968 u32 val, qp;
3969 int i;
3970
3971 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3972 if (!vsi->q_vectors)
3973 return;
3974
Shannon Nelson63741842014-04-23 04:50:16 +00003975 if (!vsi->irqs_ready)
3976 return;
3977
3978 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003979 for (i = 0; i < vsi->num_q_vectors; i++) {
3980 u16 vector = i + base;
3981
3982 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003983 if (!vsi->q_vectors[i] ||
3984 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003985 continue;
3986
3987 /* clear the affinity_mask in the IRQ descriptor */
3988 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3989 NULL);
3990 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003991 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003992
3993 /* Tear down the interrupt queue link list
3994 *
3995 * We know that they come in pairs and always
3996 * the Rx first, then the Tx. To clear the
3997 * link list, stick the EOL value into the
3998 * next_q field of the registers.
3999 */
4000 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
4001 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4002 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4003 val |= I40E_QUEUE_END_OF_LIST
4004 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4005 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
4006
4007 while (qp != I40E_QUEUE_END_OF_LIST) {
4008 u32 next;
4009
4010 val = rd32(hw, I40E_QINT_RQCTL(qp));
4011
4012 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4013 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4014 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4015 I40E_QINT_RQCTL_INTEVENT_MASK);
4016
4017 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4018 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4019
4020 wr32(hw, I40E_QINT_RQCTL(qp), val);
4021
4022 val = rd32(hw, I40E_QINT_TQCTL(qp));
4023
4024 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
4025 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
4026
4027 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4028 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4029 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4030 I40E_QINT_TQCTL_INTEVENT_MASK);
4031
4032 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4033 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4034
4035 wr32(hw, I40E_QINT_TQCTL(qp), val);
4036 qp = next;
4037 }
4038 }
4039 } else {
4040 free_irq(pf->pdev->irq, pf);
4041
4042 val = rd32(hw, I40E_PFINT_LNKLST0);
4043 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4044 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4045 val |= I40E_QUEUE_END_OF_LIST
4046 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4047 wr32(hw, I40E_PFINT_LNKLST0, val);
4048
4049 val = rd32(hw, I40E_QINT_RQCTL(qp));
4050 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4051 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4052 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4053 I40E_QINT_RQCTL_INTEVENT_MASK);
4054
4055 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4056 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4057
4058 wr32(hw, I40E_QINT_RQCTL(qp), val);
4059
4060 val = rd32(hw, I40E_QINT_TQCTL(qp));
4061
4062 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4063 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4064 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4065 I40E_QINT_TQCTL_INTEVENT_MASK);
4066
4067 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4068 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4069
4070 wr32(hw, I40E_QINT_TQCTL(qp), val);
4071 }
4072}
4073
4074/**
Alexander Duyck493fb302013-09-28 07:01:44 +00004075 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4076 * @vsi: the VSI being configured
4077 * @v_idx: Index of vector to be freed
4078 *
4079 * This function frees the memory allocated to the q_vector. In addition if
4080 * NAPI is enabled it will delete any references to the NAPI struct prior
4081 * to freeing the q_vector.
4082 **/
4083static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4084{
4085 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004086 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00004087
4088 if (!q_vector)
4089 return;
4090
4091 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004092 i40e_for_each_ring(ring, q_vector->tx)
4093 ring->q_vector = NULL;
4094
4095 i40e_for_each_ring(ring, q_vector->rx)
4096 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00004097
4098 /* only VSI w/ an associated netdev is set up w/ NAPI */
4099 if (vsi->netdev)
4100 netif_napi_del(&q_vector->napi);
4101
4102 vsi->q_vectors[v_idx] = NULL;
4103
4104 kfree_rcu(q_vector, rcu);
4105}
4106
4107/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004108 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4109 * @vsi: the VSI being un-configured
4110 *
4111 * This frees the memory allocated to the q_vectors and
4112 * deletes references to the NAPI struct.
4113 **/
4114static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4115{
4116 int v_idx;
4117
Alexander Duyck493fb302013-09-28 07:01:44 +00004118 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4119 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004120}
4121
4122/**
4123 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4124 * @pf: board private structure
4125 **/
4126static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4127{
4128 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4129 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4130 pci_disable_msix(pf->pdev);
4131 kfree(pf->msix_entries);
4132 pf->msix_entries = NULL;
Shannon Nelson3b444392015-02-26 16:15:57 +00004133 kfree(pf->irq_pile);
4134 pf->irq_pile = NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004135 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4136 pci_disable_msi(pf->pdev);
4137 }
4138 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4139}
4140
4141/**
4142 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4143 * @pf: board private structure
4144 *
4145 * We go through and clear interrupt specific resources and reset the structure
4146 * to pre-load conditions
4147 **/
4148static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4149{
4150 int i;
4151
Shannon Nelsone1477582015-02-21 06:44:33 +00004152 i40e_stop_misc_vector(pf);
4153 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4154 synchronize_irq(pf->msix_entries[0].vector);
4155 free_irq(pf->msix_entries[0].vector, pf);
4156 }
4157
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004158 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00004159 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004160 if (pf->vsi[i])
4161 i40e_vsi_free_q_vectors(pf->vsi[i]);
4162 i40e_reset_interrupt_capability(pf);
4163}
4164
4165/**
4166 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4167 * @vsi: the VSI being configured
4168 **/
4169static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4170{
4171 int q_idx;
4172
4173 if (!vsi->netdev)
4174 return;
4175
4176 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004177 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004178}
4179
4180/**
4181 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4182 * @vsi: the VSI being configured
4183 **/
4184static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4185{
4186 int q_idx;
4187
4188 if (!vsi->netdev)
4189 return;
4190
4191 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004192 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004193}
4194
4195/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004196 * i40e_vsi_close - Shut down a VSI
4197 * @vsi: the vsi to be quelled
4198 **/
4199static void i40e_vsi_close(struct i40e_vsi *vsi)
4200{
4201 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
4202 i40e_down(vsi);
4203 i40e_vsi_free_irq(vsi);
4204 i40e_vsi_free_tx_resources(vsi);
4205 i40e_vsi_free_rx_resources(vsi);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04004206 vsi->current_netdev_flags = 0;
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004207}
4208
4209/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004210 * i40e_quiesce_vsi - Pause a given VSI
4211 * @vsi: the VSI being paused
4212 **/
4213static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4214{
4215 if (test_bit(__I40E_DOWN, &vsi->state))
4216 return;
4217
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004218 /* No need to disable FCoE VSI when Tx suspended */
4219 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
4220 vsi->type == I40E_VSI_FCOE) {
4221 dev_dbg(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004222 "VSI seid %d skipping FCoE VSI disable\n", vsi->seid);
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004223 return;
4224 }
4225
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004226 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004227 if (vsi->netdev && netif_running(vsi->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004228 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004229 else
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004230 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004231}
4232
4233/**
4234 * i40e_unquiesce_vsi - Resume a given VSI
4235 * @vsi: the VSI being resumed
4236 **/
4237static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4238{
4239 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
4240 return;
4241
4242 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
4243 if (vsi->netdev && netif_running(vsi->netdev))
4244 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4245 else
Shannon Nelson8276f752014-03-14 07:32:27 +00004246 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004247}
4248
4249/**
4250 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4251 * @pf: the PF
4252 **/
4253static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4254{
4255 int v;
4256
Mitch Williams505682c2014-05-20 08:01:37 +00004257 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004258 if (pf->vsi[v])
4259 i40e_quiesce_vsi(pf->vsi[v]);
4260 }
4261}
4262
4263/**
4264 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4265 * @pf: the PF
4266 **/
4267static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4268{
4269 int v;
4270
Mitch Williams505682c2014-05-20 08:01:37 +00004271 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004272 if (pf->vsi[v])
4273 i40e_unquiesce_vsi(pf->vsi[v]);
4274 }
4275}
4276
Neerav Parikh69129dc2014-11-12 00:18:46 +00004277#ifdef CONFIG_I40E_DCB
4278/**
4279 * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled
4280 * @vsi: the VSI being configured
4281 *
4282 * This function waits for the given VSI's Tx queues to be disabled.
4283 **/
4284static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi)
4285{
4286 struct i40e_pf *pf = vsi->back;
4287 int i, pf_q, ret;
4288
4289 pf_q = vsi->base_queue;
4290 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4291 /* Check and wait for the disable status of the queue */
4292 ret = i40e_pf_txq_wait(pf, pf_q, false);
4293 if (ret) {
4294 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004295 "VSI seid %d Tx ring %d disable timeout\n",
4296 vsi->seid, pf_q);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004297 return ret;
4298 }
4299 }
4300
4301 return 0;
4302}
4303
4304/**
4305 * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled
4306 * @pf: the PF
4307 *
4308 * This function waits for the Tx queues to be in disabled state for all the
4309 * VSIs that are managed by this PF.
4310 **/
4311static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf)
4312{
4313 int v, ret = 0;
4314
4315 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004316 /* No need to wait for FCoE VSI queues */
4317 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh69129dc2014-11-12 00:18:46 +00004318 ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]);
4319 if (ret)
4320 break;
4321 }
4322 }
4323
4324 return ret;
4325}
4326
4327#endif
Kiran Patilb03a8c12015-09-24 18:13:15 -04004328
4329/**
4330 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4331 * @q_idx: TX queue number
4332 * @vsi: Pointer to VSI struct
4333 *
4334 * This function checks specified queue for given VSI. Detects hung condition.
4335 * Sets hung bit since it is two step process. Before next run of service task
4336 * if napi_poll runs, it reset 'hung' bit for respective q_vector. If not,
4337 * hung condition remain unchanged and during subsequent run, this function
4338 * issues SW interrupt to recover from hung condition.
4339 **/
4340static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4341{
4342 struct i40e_ring *tx_ring = NULL;
4343 struct i40e_pf *pf;
4344 u32 head, val, tx_pending;
4345 int i;
4346
4347 pf = vsi->back;
4348
4349 /* now that we have an index, find the tx_ring struct */
4350 for (i = 0; i < vsi->num_queue_pairs; i++) {
4351 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4352 if (q_idx == vsi->tx_rings[i]->queue_index) {
4353 tx_ring = vsi->tx_rings[i];
4354 break;
4355 }
4356 }
4357 }
4358
4359 if (!tx_ring)
4360 return;
4361
4362 /* Read interrupt register */
4363 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4364 val = rd32(&pf->hw,
4365 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4366 tx_ring->vsi->base_vector - 1));
4367 else
4368 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4369
Kiran Patil9c6c1252015-11-06 15:26:02 -08004370 /* Bail out if interrupts are disabled because napi_poll
4371 * execution in-progress or will get scheduled soon.
4372 * napi_poll cleans TX and RX queues and updates 'next_to_clean'.
4373 */
4374 if (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))
4375 return;
4376
Kiran Patilb03a8c12015-09-24 18:13:15 -04004377 head = i40e_get_head(tx_ring);
4378
4379 tx_pending = i40e_get_tx_pending(tx_ring);
4380
Kiran Patil9c6c1252015-11-06 15:26:02 -08004381 /* HW is done executing descriptors, updated HEAD write back,
4382 * but SW hasn't processed those descriptors. If interrupt is
4383 * not generated from this point ON, it could result into
4384 * dev_watchdog detecting timeout on those netdev_queue,
4385 * hence proactively trigger SW interrupt.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004386 */
Kiran Patil9c6c1252015-11-06 15:26:02 -08004387 if (tx_pending) {
4388 /* NAPI Poll didn't run and clear since it was set */
4389 if (test_and_clear_bit(I40E_Q_VECTOR_HUNG_DETECT,
4390 &tx_ring->q_vector->hung_detected)) {
4391 netdev_info(vsi->netdev, "VSI_seid %d, Hung TX queue %d, tx_pending: %d, NTC:0x%x, HWB: 0x%x, NTU: 0x%x, TAIL: 0x%x\n",
4392 vsi->seid, q_idx, tx_pending,
4393 tx_ring->next_to_clean, head,
4394 tx_ring->next_to_use,
4395 readl(tx_ring->tail));
4396 netdev_info(vsi->netdev, "VSI_seid %d, Issuing force_wb for TX queue %d, Interrupt Reg: 0x%x\n",
4397 vsi->seid, q_idx, val);
4398 i40e_force_wb(vsi, tx_ring->q_vector);
4399 } else {
4400 /* First Chance - detected possible hung */
4401 set_bit(I40E_Q_VECTOR_HUNG_DETECT,
4402 &tx_ring->q_vector->hung_detected);
4403 }
4404 }
Kiran Patilb03a8c12015-09-24 18:13:15 -04004405}
4406
4407/**
4408 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4409 * @pf: pointer to PF struct
4410 *
4411 * LAN VSI has netdev and netdev has TX queues. This function is to check
4412 * each of those TX queues if they are hung, trigger recovery by issuing
4413 * SW interrupt.
4414 **/
4415static void i40e_detect_recover_hung(struct i40e_pf *pf)
4416{
4417 struct net_device *netdev;
4418 struct i40e_vsi *vsi;
4419 int i;
4420
4421 /* Only for LAN VSI */
4422 vsi = pf->vsi[pf->lan_vsi];
4423
4424 if (!vsi)
4425 return;
4426
4427 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
4428 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
4429 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4430 return;
4431
4432 /* Make sure type is MAIN VSI */
4433 if (vsi->type != I40E_VSI_MAIN)
4434 return;
4435
4436 netdev = vsi->netdev;
4437 if (!netdev)
4438 return;
4439
4440 /* Bail out if netif_carrier is not OK */
4441 if (!netif_carrier_ok(netdev))
4442 return;
4443
4444 /* Go thru' TX queues for netdev */
4445 for (i = 0; i < netdev->num_tx_queues; i++) {
4446 struct netdev_queue *q;
4447
4448 q = netdev_get_tx_queue(netdev, i);
4449 if (q)
4450 i40e_detect_recover_hung_queue(i, vsi);
4451 }
4452}
4453
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004454/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004455 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00004456 * @pf: pointer to PF
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004457 *
4458 * Get TC map for ISCSI PF type that will include iSCSI TC
4459 * and LAN TC.
4460 **/
4461static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4462{
4463 struct i40e_dcb_app_priority_table app;
4464 struct i40e_hw *hw = &pf->hw;
4465 u8 enabled_tc = 1; /* TC0 is always enabled */
4466 u8 tc, i;
4467 /* Get the iSCSI APP TLV */
4468 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4469
4470 for (i = 0; i < dcbcfg->numapps; i++) {
4471 app = dcbcfg->app[i];
4472 if (app.selector == I40E_APP_SEL_TCPIP &&
4473 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4474 tc = dcbcfg->etscfg.prioritytable[app.priority];
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004475 enabled_tc |= BIT(tc);
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004476 break;
4477 }
4478 }
4479
4480 return enabled_tc;
4481}
4482
4483/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004484 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4485 * @dcbcfg: the corresponding DCBx configuration structure
4486 *
4487 * Return the number of TCs from given DCBx configuration
4488 **/
4489static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4490{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004491 u8 num_tc = 0;
4492 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004493
4494 /* Scan the ETS Config Priority Table to find
4495 * traffic class enabled for a given priority
4496 * and use the traffic class index to get the
4497 * number of traffic classes enabled
4498 */
4499 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4500 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
4501 num_tc = dcbcfg->etscfg.prioritytable[i];
4502 }
4503
4504 /* Traffic class index starts from zero so
4505 * increment to return the actual count
4506 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004507 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004508}
4509
4510/**
4511 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4512 * @dcbcfg: the corresponding DCBx configuration structure
4513 *
4514 * Query the current DCB configuration and return the number of
4515 * traffic classes enabled from the given DCBX config
4516 **/
4517static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4518{
4519 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4520 u8 enabled_tc = 1;
4521 u8 i;
4522
4523 for (i = 0; i < num_tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004524 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004525
4526 return enabled_tc;
4527}
4528
4529/**
4530 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4531 * @pf: PF being queried
4532 *
4533 * Return number of traffic classes enabled for the given PF
4534 **/
4535static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4536{
4537 struct i40e_hw *hw = &pf->hw;
4538 u8 i, enabled_tc;
4539 u8 num_tc = 0;
4540 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4541
4542 /* If DCB is not enabled then always in single TC */
4543 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4544 return 1;
4545
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004546 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004547 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4548 return i40e_dcb_get_num_tc(dcbcfg);
4549
4550 /* MFP mode return count of enabled TCs for this PF */
4551 if (pf->hw.func_caps.iscsi)
4552 enabled_tc = i40e_get_iscsi_tc_map(pf);
4553 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004554 return 1; /* Only TC0 */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004555
4556 /* At least have TC0 */
4557 enabled_tc = (enabled_tc ? enabled_tc : 0x1);
4558 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004559 if (enabled_tc & BIT(i))
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004560 num_tc++;
4561 }
4562 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004563}
4564
4565/**
4566 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4567 * @pf: PF being queried
4568 *
4569 * Return a bitmap for first enabled traffic class for this PF.
4570 **/
4571static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4572{
4573 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4574 u8 i = 0;
4575
4576 if (!enabled_tc)
4577 return 0x1; /* TC0 */
4578
4579 /* Find the first enabled TC */
4580 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004581 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004582 break;
4583 }
4584
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004585 return BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004586}
4587
4588/**
4589 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4590 * @pf: PF being queried
4591 *
4592 * Return a bitmap for enabled traffic classes for this PF.
4593 **/
4594static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4595{
4596 /* If DCB is not enabled for this PF then just return default TC */
4597 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4598 return i40e_pf_get_default_tc(pf);
4599
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004600 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004601 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4602 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4603
Neerav Parikhfc51de92015-02-24 06:58:53 +00004604 /* MFP enabled and iSCSI PF type */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004605 if (pf->hw.func_caps.iscsi)
4606 return i40e_get_iscsi_tc_map(pf);
4607 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004608 return i40e_pf_get_default_tc(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004609}
4610
4611/**
4612 * i40e_vsi_get_bw_info - Query VSI BW Information
4613 * @vsi: the VSI being queried
4614 *
4615 * Returns 0 on success, negative value on failure
4616 **/
4617static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4618{
4619 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4620 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4621 struct i40e_pf *pf = vsi->back;
4622 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004623 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004624 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004625 int i;
4626
4627 /* Get the VSI level BW configuration */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004628 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4629 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004630 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004631 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4632 i40e_stat_str(&pf->hw, ret),
4633 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004634 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004635 }
4636
4637 /* Get the VSI level BW configuration per TC */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004638 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4639 NULL);
4640 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004641 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004642 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4643 i40e_stat_str(&pf->hw, ret),
4644 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004645 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004646 }
4647
4648 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4649 dev_info(&pf->pdev->dev,
4650 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4651 bw_config.tc_valid_bits,
4652 bw_ets_config.tc_valid_bits);
4653 /* Still continuing */
4654 }
4655
4656 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4657 vsi->bw_max_quanta = bw_config.max_bw;
4658 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4659 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4660 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4661 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4662 vsi->bw_ets_limit_credits[i] =
4663 le16_to_cpu(bw_ets_config.credits[i]);
4664 /* 3 bits out of 4 for each TC */
4665 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4666 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004667
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004668 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004669}
4670
4671/**
4672 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4673 * @vsi: the VSI being configured
4674 * @enabled_tc: TC bitmap
4675 * @bw_credits: BW shared credits per TC
4676 *
4677 * Returns 0 on success, negative value on failure
4678 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004679static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004680 u8 *bw_share)
4681{
4682 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004683 i40e_status ret;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004684 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004685
4686 bw_data.tc_valid_bits = enabled_tc;
4687 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4688 bw_data.tc_bw_credits[i] = bw_share[i];
4689
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004690 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4691 NULL);
4692 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004693 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004694 "AQ command Config VSI BW allocation per TC failed = %d\n",
4695 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004696 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004697 }
4698
4699 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4700 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4701
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004702 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004703}
4704
4705/**
4706 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4707 * @vsi: the VSI being configured
4708 * @enabled_tc: TC map to be enabled
4709 *
4710 **/
4711static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4712{
4713 struct net_device *netdev = vsi->netdev;
4714 struct i40e_pf *pf = vsi->back;
4715 struct i40e_hw *hw = &pf->hw;
4716 u8 netdev_tc = 0;
4717 int i;
4718 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4719
4720 if (!netdev)
4721 return;
4722
4723 if (!enabled_tc) {
4724 netdev_reset_tc(netdev);
4725 return;
4726 }
4727
4728 /* Set up actual enabled TCs on the VSI */
4729 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4730 return;
4731
4732 /* set per TC queues for the VSI */
4733 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4734 /* Only set TC queues for enabled tcs
4735 *
4736 * e.g. For a VSI that has TC0 and TC3 enabled the
4737 * enabled_tc bitmap would be 0x00001001; the driver
4738 * will set the numtc for netdev as 2 that will be
4739 * referenced by the netdev layer as TC 0 and 1.
4740 */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004741 if (vsi->tc_config.enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004742 netdev_set_tc_queue(netdev,
4743 vsi->tc_config.tc_info[i].netdev_tc,
4744 vsi->tc_config.tc_info[i].qcount,
4745 vsi->tc_config.tc_info[i].qoffset);
4746 }
4747
4748 /* Assign UP2TC map for the VSI */
4749 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4750 /* Get the actual TC# for the UP */
4751 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4752 /* Get the mapped netdev TC# for the UP */
4753 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4754 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4755 }
4756}
4757
4758/**
4759 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4760 * @vsi: the VSI being configured
4761 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4762 **/
4763static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4764 struct i40e_vsi_context *ctxt)
4765{
4766 /* copy just the sections touched not the entire info
4767 * since not all sections are valid as returned by
4768 * update vsi params
4769 */
4770 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4771 memcpy(&vsi->info.queue_mapping,
4772 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4773 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4774 sizeof(vsi->info.tc_mapping));
4775}
4776
4777/**
4778 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4779 * @vsi: VSI to be configured
4780 * @enabled_tc: TC bitmap
4781 *
4782 * This configures a particular VSI for TCs that are mapped to the
4783 * given TC bitmap. It uses default bandwidth share for TCs across
4784 * VSIs to configure TC for a particular VSI.
4785 *
4786 * NOTE:
4787 * It is expected that the VSI queues have been quisced before calling
4788 * this function.
4789 **/
4790static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4791{
4792 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4793 struct i40e_vsi_context ctxt;
4794 int ret = 0;
4795 int i;
4796
4797 /* Check if enabled_tc is same as existing or new TCs */
4798 if (vsi->tc_config.enabled_tc == enabled_tc)
4799 return ret;
4800
4801 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4802 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004803 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004804 bw_share[i] = 1;
4805 }
4806
4807 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4808 if (ret) {
4809 dev_info(&vsi->back->pdev->dev,
4810 "Failed configuring TC map %d for VSI %d\n",
4811 enabled_tc, vsi->seid);
4812 goto out;
4813 }
4814
4815 /* Update Queue Pairs Mapping for currently enabled UPs */
4816 ctxt.seid = vsi->seid;
4817 ctxt.pf_num = vsi->back->hw.pf_id;
4818 ctxt.vf_num = 0;
4819 ctxt.uplink_seid = vsi->uplink_seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07004820 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004821 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4822
4823 /* Update the VSI after updating the VSI queue-mapping information */
4824 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4825 if (ret) {
4826 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004827 "Update vsi tc config failed, err %s aq_err %s\n",
4828 i40e_stat_str(&vsi->back->hw, ret),
4829 i40e_aq_str(&vsi->back->hw,
4830 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004831 goto out;
4832 }
4833 /* update the local VSI info with updated queue map */
4834 i40e_vsi_update_queue_map(vsi, &ctxt);
4835 vsi->info.valid_sections = 0;
4836
4837 /* Update current VSI BW information */
4838 ret = i40e_vsi_get_bw_info(vsi);
4839 if (ret) {
4840 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004841 "Failed updating vsi bw info, err %s aq_err %s\n",
4842 i40e_stat_str(&vsi->back->hw, ret),
4843 i40e_aq_str(&vsi->back->hw,
4844 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004845 goto out;
4846 }
4847
4848 /* Update the netdev TC setup */
4849 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4850out:
4851 return ret;
4852}
4853
4854/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004855 * i40e_veb_config_tc - Configure TCs for given VEB
4856 * @veb: given VEB
4857 * @enabled_tc: TC bitmap
4858 *
4859 * Configures given TC bitmap for VEB (switching) element
4860 **/
4861int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4862{
4863 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4864 struct i40e_pf *pf = veb->pf;
4865 int ret = 0;
4866 int i;
4867
4868 /* No TCs or already enabled TCs just return */
4869 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4870 return ret;
4871
4872 bw_data.tc_valid_bits = enabled_tc;
4873 /* bw_data.absolute_credits is not set (relative) */
4874
4875 /* Enable ETS TCs with equal BW Share for now */
4876 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004877 if (enabled_tc & BIT(i))
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004878 bw_data.tc_bw_share_credits[i] = 1;
4879 }
4880
4881 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4882 &bw_data, NULL);
4883 if (ret) {
4884 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004885 "VEB bw config failed, err %s aq_err %s\n",
4886 i40e_stat_str(&pf->hw, ret),
4887 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004888 goto out;
4889 }
4890
4891 /* Update the BW information */
4892 ret = i40e_veb_get_bw_info(veb);
4893 if (ret) {
4894 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004895 "Failed getting veb bw config, err %s aq_err %s\n",
4896 i40e_stat_str(&pf->hw, ret),
4897 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004898 }
4899
4900out:
4901 return ret;
4902}
4903
4904#ifdef CONFIG_I40E_DCB
4905/**
4906 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4907 * @pf: PF struct
4908 *
4909 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4910 * the caller would've quiesce all the VSIs before calling
4911 * this function
4912 **/
4913static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4914{
4915 u8 tc_map = 0;
4916 int ret;
4917 u8 v;
4918
4919 /* Enable the TCs available on PF to all VEBs */
4920 tc_map = i40e_pf_get_tc_map(pf);
4921 for (v = 0; v < I40E_MAX_VEB; v++) {
4922 if (!pf->veb[v])
4923 continue;
4924 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4925 if (ret) {
4926 dev_info(&pf->pdev->dev,
4927 "Failed configuring TC for VEB seid=%d\n",
4928 pf->veb[v]->seid);
4929 /* Will try to configure as many components */
4930 }
4931 }
4932
4933 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004934 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004935 if (!pf->vsi[v])
4936 continue;
4937
4938 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004939#ifdef I40E_FCOE
4940 * - For FCoE VSI only enable the TC configured
4941 * as per the APP TLV
4942#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004943 * - For all others keep them at TC0 for now
4944 */
4945 if (v == pf->lan_vsi)
4946 tc_map = i40e_pf_get_tc_map(pf);
4947 else
4948 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004949#ifdef I40E_FCOE
4950 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4951 tc_map = i40e_get_fcoe_tc_map(pf);
4952#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004953
4954 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4955 if (ret) {
4956 dev_info(&pf->pdev->dev,
4957 "Failed configuring TC for VSI seid=%d\n",
4958 pf->vsi[v]->seid);
4959 /* Will try to configure as many components */
4960 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004961 /* Re-configure VSI vectors based on updated TC map */
4962 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004963 if (pf->vsi[v]->netdev)
4964 i40e_dcbnl_set_all(pf->vsi[v]);
4965 }
4966 }
4967}
4968
4969/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004970 * i40e_resume_port_tx - Resume port Tx
4971 * @pf: PF struct
4972 *
4973 * Resume a port's Tx and issue a PF reset in case of failure to
4974 * resume.
4975 **/
4976static int i40e_resume_port_tx(struct i40e_pf *pf)
4977{
4978 struct i40e_hw *hw = &pf->hw;
4979 int ret;
4980
4981 ret = i40e_aq_resume_port_tx(hw, NULL);
4982 if (ret) {
4983 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004984 "Resume Port Tx failed, err %s aq_err %s\n",
4985 i40e_stat_str(&pf->hw, ret),
4986 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004987 /* Schedule PF reset to recover */
4988 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4989 i40e_service_event_schedule(pf);
4990 }
4991
4992 return ret;
4993}
4994
4995/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004996 * i40e_init_pf_dcb - Initialize DCB configuration
4997 * @pf: PF being configured
4998 *
4999 * Query the current DCB configuration and cache it
5000 * in the hardware structure
5001 **/
5002static int i40e_init_pf_dcb(struct i40e_pf *pf)
5003{
5004 struct i40e_hw *hw = &pf->hw;
5005 int err = 0;
5006
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005007 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
5008 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
5009 (pf->hw.aq.fw_maj_ver < 4))
5010 goto out;
5011
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005012 /* Get the initial DCB configuration */
5013 err = i40e_init_dcb(hw);
5014 if (!err) {
5015 /* Device/Function is not DCBX capable */
5016 if ((!hw->func_caps.dcb) ||
5017 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
5018 dev_info(&pf->pdev->dev,
5019 "DCBX offload is not supported or is disabled for this PF.\n");
5020
5021 if (pf->flags & I40E_FLAG_MFP_ENABLED)
5022 goto out;
5023
5024 } else {
5025 /* When status is not DISABLED then DCBX in FW */
5026 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
5027 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005028
5029 pf->flags |= I40E_FLAG_DCB_CAPABLE;
5030 /* Enable DCB tagging only when more than one TC */
5031 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5032 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005033 dev_dbg(&pf->pdev->dev,
5034 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005035 }
Neerav Parikh014269f2014-04-01 07:11:48 +00005036 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00005037 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005038 "Query for DCB configuration failed, err %s aq_err %s\n",
5039 i40e_stat_str(&pf->hw, err),
5040 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005041 }
5042
5043out:
5044 return err;
5045}
5046#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005047#define SPEED_SIZE 14
5048#define FC_SIZE 8
5049/**
5050 * i40e_print_link_message - print link up or down
5051 * @vsi: the VSI for which link needs a message
5052 */
Matt Jaredc156f852015-08-27 11:42:39 -04005053void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005054{
Shannon Nelsona9165492015-09-03 17:19:00 -04005055 char *speed = "Unknown";
5056 char *fc = "Unknown";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005057
Matt Jaredc156f852015-08-27 11:42:39 -04005058 if (vsi->current_isup == isup)
5059 return;
5060 vsi->current_isup = isup;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005061 if (!isup) {
5062 netdev_info(vsi->netdev, "NIC Link is Down\n");
5063 return;
5064 }
5065
Greg Rose148c2d82014-12-11 07:06:27 +00005066 /* Warn user if link speed on NPAR enabled partition is not at
5067 * least 10GB
5068 */
5069 if (vsi->back->hw.func_caps.npar_enable &&
5070 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5071 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
5072 netdev_warn(vsi->netdev,
5073 "The partition detected link speed that is less than 10Gbps\n");
5074
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005075 switch (vsi->back->hw.phy.link_info.link_speed) {
5076 case I40E_LINK_SPEED_40GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005077 speed = "40 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005078 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005079 case I40E_LINK_SPEED_20GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005080 speed = "20 G";
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005081 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005082 case I40E_LINK_SPEED_10GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005083 speed = "10 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005084 break;
5085 case I40E_LINK_SPEED_1GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005086 speed = "1000 M";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005087 break;
Mitch Williams5960d332014-09-13 07:40:47 +00005088 case I40E_LINK_SPEED_100MB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005089 speed = "100 M";
Mitch Williams5960d332014-09-13 07:40:47 +00005090 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005091 default:
5092 break;
5093 }
5094
5095 switch (vsi->back->hw.fc.current_mode) {
5096 case I40E_FC_FULL:
Shannon Nelsona9165492015-09-03 17:19:00 -04005097 fc = "RX/TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005098 break;
5099 case I40E_FC_TX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005100 fc = "TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005101 break;
5102 case I40E_FC_RX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005103 fc = "RX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005104 break;
5105 default:
Shannon Nelsona9165492015-09-03 17:19:00 -04005106 fc = "None";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005107 break;
5108 }
5109
Shannon Nelsona9165492015-09-03 17:19:00 -04005110 netdev_info(vsi->netdev, "NIC Link is Up %sbps Full Duplex, Flow Control: %s\n",
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005111 speed, fc);
5112}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005113
5114/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005115 * i40e_up_complete - Finish the last steps of bringing up a connection
5116 * @vsi: the VSI being configured
5117 **/
5118static int i40e_up_complete(struct i40e_vsi *vsi)
5119{
5120 struct i40e_pf *pf = vsi->back;
5121 int err;
5122
5123 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5124 i40e_vsi_configure_msix(vsi);
5125 else
5126 i40e_configure_msi_and_legacy(vsi);
5127
5128 /* start rings */
5129 err = i40e_vsi_control_rings(vsi, true);
5130 if (err)
5131 return err;
5132
5133 clear_bit(__I40E_DOWN, &vsi->state);
5134 i40e_napi_enable_all(vsi);
5135 i40e_vsi_enable_irq(vsi);
5136
5137 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5138 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005139 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005140 netif_tx_start_all_queues(vsi->netdev);
5141 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00005142 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005143 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005144 /* need to check for qualified module here*/
5145 if ((pf->hw.phy.link_info.link_info &
5146 I40E_AQ_MEDIA_AVAILABLE) &&
5147 (!(pf->hw.phy.link_info.an_info &
5148 I40E_AQ_QUALIFIED_MODULE)))
5149 netdev_err(vsi->netdev,
5150 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005151 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005152
5153 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005154 if (vsi->type == I40E_VSI_FDIR) {
5155 /* reset fd counters */
5156 pf->fd_add_err = pf->fd_atr_cnt = 0;
5157 if (pf->fd_tcp_rule > 0) {
5158 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005159 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5160 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005161 pf->fd_tcp_rule = 0;
5162 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005163 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005164 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005165 i40e_service_event_schedule(pf);
5166
5167 return 0;
5168}
5169
5170/**
5171 * i40e_vsi_reinit_locked - Reset the VSI
5172 * @vsi: the VSI being configured
5173 *
5174 * Rebuild the ring structs after some configuration
5175 * has changed, e.g. MTU size.
5176 **/
5177static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5178{
5179 struct i40e_pf *pf = vsi->back;
5180
5181 WARN_ON(in_interrupt());
5182 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
5183 usleep_range(1000, 2000);
5184 i40e_down(vsi);
5185
5186 /* Give a VF some time to respond to the reset. The
5187 * two second wait is based upon the watchdog cycle in
5188 * the VF driver.
5189 */
5190 if (vsi->type == I40E_VSI_SRIOV)
5191 msleep(2000);
5192 i40e_up(vsi);
5193 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
5194}
5195
5196/**
5197 * i40e_up - Bring the connection back up after being down
5198 * @vsi: the VSI being configured
5199 **/
5200int i40e_up(struct i40e_vsi *vsi)
5201{
5202 int err;
5203
5204 err = i40e_vsi_configure(vsi);
5205 if (!err)
5206 err = i40e_up_complete(vsi);
5207
5208 return err;
5209}
5210
5211/**
5212 * i40e_down - Shutdown the connection processing
5213 * @vsi: the VSI being stopped
5214 **/
5215void i40e_down(struct i40e_vsi *vsi)
5216{
5217 int i;
5218
5219 /* It is assumed that the caller of this function
5220 * sets the vsi->state __I40E_DOWN bit.
5221 */
5222 if (vsi->netdev) {
5223 netif_carrier_off(vsi->netdev);
5224 netif_tx_disable(vsi->netdev);
5225 }
5226 i40e_vsi_disable_irq(vsi);
5227 i40e_vsi_control_rings(vsi, false);
5228 i40e_napi_disable_all(vsi);
5229
5230 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00005231 i40e_clean_tx_ring(vsi->tx_rings[i]);
5232 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005233 }
5234}
5235
5236/**
5237 * i40e_setup_tc - configure multiple traffic classes
5238 * @netdev: net device to configure
5239 * @tc: number of traffic classes to enable
5240 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005241#ifdef I40E_FCOE
5242int i40e_setup_tc(struct net_device *netdev, u8 tc)
5243#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005244static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07005245#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005246{
5247 struct i40e_netdev_priv *np = netdev_priv(netdev);
5248 struct i40e_vsi *vsi = np->vsi;
5249 struct i40e_pf *pf = vsi->back;
5250 u8 enabled_tc = 0;
5251 int ret = -EINVAL;
5252 int i;
5253
5254 /* Check if DCB enabled to continue */
5255 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5256 netdev_info(netdev, "DCB is not enabled for adapter\n");
5257 goto exit;
5258 }
5259
5260 /* Check if MFP enabled */
5261 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5262 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5263 goto exit;
5264 }
5265
5266 /* Check whether tc count is within enabled limit */
5267 if (tc > i40e_pf_get_num_tc(pf)) {
5268 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5269 goto exit;
5270 }
5271
5272 /* Generate TC map for number of tc requested */
5273 for (i = 0; i < tc; i++)
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005274 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005275
5276 /* Requesting same TC configuration as already enabled */
5277 if (enabled_tc == vsi->tc_config.enabled_tc)
5278 return 0;
5279
5280 /* Quiesce VSI queues */
5281 i40e_quiesce_vsi(vsi);
5282
5283 /* Configure VSI for enabled TCs */
5284 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5285 if (ret) {
5286 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5287 vsi->seid);
5288 goto exit;
5289 }
5290
5291 /* Unquiesce VSI */
5292 i40e_unquiesce_vsi(vsi);
5293
5294exit:
5295 return ret;
5296}
5297
5298/**
5299 * i40e_open - Called when a network interface is made active
5300 * @netdev: network interface device structure
5301 *
5302 * The open entry point is called when a network interface is made
5303 * active by the system (IFF_UP). At this point all resources needed
5304 * for transmit and receive operations are allocated, the interrupt
5305 * handler is registered with the OS, the netdev watchdog subtask is
5306 * enabled, and the stack is notified that the interface is ready.
5307 *
5308 * Returns 0 on success, negative value on failure
5309 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005310int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005311{
5312 struct i40e_netdev_priv *np = netdev_priv(netdev);
5313 struct i40e_vsi *vsi = np->vsi;
5314 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005315 int err;
5316
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005317 /* disallow open during test or if eeprom is broken */
5318 if (test_bit(__I40E_TESTING, &pf->state) ||
5319 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005320 return -EBUSY;
5321
5322 netif_carrier_off(netdev);
5323
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005324 err = i40e_vsi_open(vsi);
5325 if (err)
5326 return err;
5327
Jesse Brandeburg059dab62014-04-01 09:07:20 +00005328 /* configure global TSO hardware offload settings */
5329 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5330 TCP_FLAG_FIN) >> 16);
5331 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5332 TCP_FLAG_FIN |
5333 TCP_FLAG_CWR) >> 16);
5334 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5335
Singhai, Anjali6633d382015-12-03 23:49:31 -08005336#ifdef CONFIG_I40E_VXLAN
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005337 vxlan_get_rx_port(netdev);
5338#endif
5339
5340 return 0;
5341}
5342
5343/**
5344 * i40e_vsi_open -
5345 * @vsi: the VSI to open
5346 *
5347 * Finish initialization of the VSI.
5348 *
5349 * Returns 0 on success, negative value on failure
5350 **/
5351int i40e_vsi_open(struct i40e_vsi *vsi)
5352{
5353 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00005354 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005355 int err;
5356
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005357 /* allocate descriptors */
5358 err = i40e_vsi_setup_tx_resources(vsi);
5359 if (err)
5360 goto err_setup_tx;
5361 err = i40e_vsi_setup_rx_resources(vsi);
5362 if (err)
5363 goto err_setup_rx;
5364
5365 err = i40e_vsi_configure(vsi);
5366 if (err)
5367 goto err_setup_rx;
5368
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005369 if (vsi->netdev) {
5370 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5371 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5372 err = i40e_vsi_request_irq(vsi, int_name);
5373 if (err)
5374 goto err_setup_rx;
5375
5376 /* Notify the stack of the actual queue counts. */
5377 err = netif_set_real_num_tx_queues(vsi->netdev,
5378 vsi->num_queue_pairs);
5379 if (err)
5380 goto err_set_queues;
5381
5382 err = netif_set_real_num_rx_queues(vsi->netdev,
5383 vsi->num_queue_pairs);
5384 if (err)
5385 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005386
5387 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00005388 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005389 dev_driver_string(&pf->pdev->dev),
5390 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005391 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005392
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005393 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00005394 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005395 goto err_setup_rx;
5396 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005397
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005398 err = i40e_up_complete(vsi);
5399 if (err)
5400 goto err_up_complete;
5401
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005402 return 0;
5403
5404err_up_complete:
5405 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005406err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005407 i40e_vsi_free_irq(vsi);
5408err_setup_rx:
5409 i40e_vsi_free_rx_resources(vsi);
5410err_setup_tx:
5411 i40e_vsi_free_tx_resources(vsi);
5412 if (vsi == pf->vsi[pf->lan_vsi])
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005413 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005414
5415 return err;
5416}
5417
5418/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005419 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00005420 * @pf: Pointer to PF
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005421 *
5422 * This function destroys the hlist where all the Flow Director
5423 * filters were saved.
5424 **/
5425static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5426{
5427 struct i40e_fdir_filter *filter;
5428 struct hlist_node *node2;
5429
5430 hlist_for_each_entry_safe(filter, node2,
5431 &pf->fdir_filter_list, fdir_node) {
5432 hlist_del(&filter->fdir_node);
5433 kfree(filter);
5434 }
5435 pf->fdir_pf_active_filters = 0;
5436}
5437
5438/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005439 * i40e_close - Disables a network interface
5440 * @netdev: network interface device structure
5441 *
5442 * The close entry point is called when an interface is de-activated
5443 * by the OS. The hardware is still under the driver's control, but
5444 * this netdev interface is disabled.
5445 *
5446 * Returns 0, this is not allowed to fail
5447 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005448#ifdef I40E_FCOE
5449int i40e_close(struct net_device *netdev)
5450#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005451static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07005452#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005453{
5454 struct i40e_netdev_priv *np = netdev_priv(netdev);
5455 struct i40e_vsi *vsi = np->vsi;
5456
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005457 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005458
5459 return 0;
5460}
5461
5462/**
5463 * i40e_do_reset - Start a PF or Core Reset sequence
5464 * @pf: board private structure
5465 * @reset_flags: which reset is requested
5466 *
5467 * The essential difference in resets is that the PF Reset
5468 * doesn't clear the packet buffers, doesn't reset the PE
5469 * firmware, and doesn't bother the other PFs on the chip.
5470 **/
5471void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5472{
5473 u32 val;
5474
5475 WARN_ON(in_interrupt());
5476
Mitch Williams263fc482014-04-23 04:50:11 +00005477 if (i40e_check_asq_alive(&pf->hw))
5478 i40e_vc_notify_reset(pf);
5479
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005480 /* do the biggest reset indicated */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005481 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005482
5483 /* Request a Global Reset
5484 *
5485 * This will start the chip's countdown to the actual full
5486 * chip reset event, and a warning interrupt to be sent
5487 * to all PFs, including the requestor. Our handler
5488 * for the warning interrupt will deal with the shutdown
5489 * and recovery of the switch setup.
5490 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005491 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005492 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5493 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5494 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5495
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005496 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005497
5498 /* Request a Core Reset
5499 *
5500 * Same as Global Reset, except does *not* include the MAC/PHY
5501 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005502 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005503 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5504 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5505 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5506 i40e_flush(&pf->hw);
5507
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005508 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005509
5510 /* Request a PF Reset
5511 *
5512 * Resets only the PF-specific registers
5513 *
5514 * This goes directly to the tear-down and rebuild of
5515 * the switch, since we need to do all the recovery as
5516 * for the Core Reset.
5517 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005518 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005519 i40e_handle_reset_warning(pf);
5520
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005521 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005522 int v;
5523
5524 /* Find the VSI(s) that requested a re-init */
5525 dev_info(&pf->pdev->dev,
5526 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005527 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005528 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005529
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005530 if (vsi != NULL &&
5531 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5532 i40e_vsi_reinit_locked(pf->vsi[v]);
5533 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5534 }
5535 }
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005536 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005537 int v;
5538
5539 /* Find the VSI(s) that needs to be brought down */
5540 dev_info(&pf->pdev->dev, "VSI down requested\n");
5541 for (v = 0; v < pf->num_alloc_vsi; v++) {
5542 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005543
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005544 if (vsi != NULL &&
5545 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5546 set_bit(__I40E_DOWN, &vsi->state);
5547 i40e_down(vsi);
5548 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5549 }
5550 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005551 } else {
5552 dev_info(&pf->pdev->dev,
5553 "bad reset request 0x%08x\n", reset_flags);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005554 }
5555}
5556
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005557#ifdef CONFIG_I40E_DCB
5558/**
5559 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5560 * @pf: board private structure
5561 * @old_cfg: current DCB config
5562 * @new_cfg: new DCB config
5563 **/
5564bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5565 struct i40e_dcbx_config *old_cfg,
5566 struct i40e_dcbx_config *new_cfg)
5567{
5568 bool need_reconfig = false;
5569
5570 /* Check if ETS configuration has changed */
5571 if (memcmp(&new_cfg->etscfg,
5572 &old_cfg->etscfg,
5573 sizeof(new_cfg->etscfg))) {
5574 /* If Priority Table has changed reconfig is needed */
5575 if (memcmp(&new_cfg->etscfg.prioritytable,
5576 &old_cfg->etscfg.prioritytable,
5577 sizeof(new_cfg->etscfg.prioritytable))) {
5578 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005579 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005580 }
5581
5582 if (memcmp(&new_cfg->etscfg.tcbwtable,
5583 &old_cfg->etscfg.tcbwtable,
5584 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005585 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005586
5587 if (memcmp(&new_cfg->etscfg.tsatable,
5588 &old_cfg->etscfg.tsatable,
5589 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005590 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005591 }
5592
5593 /* Check if PFC configuration has changed */
5594 if (memcmp(&new_cfg->pfc,
5595 &old_cfg->pfc,
5596 sizeof(new_cfg->pfc))) {
5597 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005598 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005599 }
5600
5601 /* Check if APP Table has changed */
5602 if (memcmp(&new_cfg->app,
5603 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005604 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005605 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005606 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005607 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005608
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005609 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005610 return need_reconfig;
5611}
5612
5613/**
5614 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5615 * @pf: board private structure
5616 * @e: event info posted on ARQ
5617 **/
5618static int i40e_handle_lldp_event(struct i40e_pf *pf,
5619 struct i40e_arq_event_info *e)
5620{
5621 struct i40e_aqc_lldp_get_mib *mib =
5622 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5623 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005624 struct i40e_dcbx_config tmp_dcbx_cfg;
5625 bool need_reconfig = false;
5626 int ret = 0;
5627 u8 type;
5628
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005629 /* Not DCB capable or capability disabled */
5630 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5631 return ret;
5632
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005633 /* Ignore if event is not for Nearest Bridge */
5634 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5635 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005636 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005637 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5638 return ret;
5639
5640 /* Check MIB Type and return if event for Remote MIB update */
5641 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005642 dev_dbg(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005643 "LLDP event mib type %s\n", type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005644 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5645 /* Update the remote cached instance and return */
5646 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5647 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5648 &hw->remote_dcbx_config);
5649 goto exit;
5650 }
5651
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005652 /* Store the old configuration */
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07005653 tmp_dcbx_cfg = hw->local_dcbx_config;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005654
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005655 /* Reset the old DCBx configuration data */
5656 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005657 /* Get updated DCBX data from firmware */
5658 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005659 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005660 dev_info(&pf->pdev->dev,
5661 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
5662 i40e_stat_str(&pf->hw, ret),
5663 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005664 goto exit;
5665 }
5666
5667 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005668 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
5669 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005670 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005671 goto exit;
5672 }
5673
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005674 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
5675 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005676
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005677 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005678
5679 if (!need_reconfig)
5680 goto exit;
5681
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005682 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005683 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005684 pf->flags |= I40E_FLAG_DCB_ENABLED;
5685 else
5686 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5687
Neerav Parikh69129dc2014-11-12 00:18:46 +00005688 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005689 /* Reconfiguration needed quiesce all VSIs */
5690 i40e_pf_quiesce_all_vsi(pf);
5691
5692 /* Changes in configuration update VEB/VSI */
5693 i40e_dcb_reconfigure(pf);
5694
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005695 ret = i40e_resume_port_tx(pf);
5696
Neerav Parikh69129dc2014-11-12 00:18:46 +00005697 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005698 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005699 if (ret)
5700 goto exit;
5701
5702 /* Wait for the PF's Tx queues to be disabled */
5703 ret = i40e_pf_wait_txq_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005704 if (ret) {
5705 /* Schedule PF reset to recover */
5706 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5707 i40e_service_event_schedule(pf);
5708 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005709 i40e_pf_unquiesce_all_vsi(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005710 }
5711
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005712exit:
5713 return ret;
5714}
5715#endif /* CONFIG_I40E_DCB */
5716
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005717/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005718 * i40e_do_reset_safe - Protected reset path for userland calls.
5719 * @pf: board private structure
5720 * @reset_flags: which reset is requested
5721 *
5722 **/
5723void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5724{
5725 rtnl_lock();
5726 i40e_do_reset(pf, reset_flags);
5727 rtnl_unlock();
5728}
5729
5730/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005731 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5732 * @pf: board private structure
5733 * @e: event info posted on ARQ
5734 *
5735 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5736 * and VF queues
5737 **/
5738static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5739 struct i40e_arq_event_info *e)
5740{
5741 struct i40e_aqc_lan_overflow *data =
5742 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5743 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5744 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5745 struct i40e_hw *hw = &pf->hw;
5746 struct i40e_vf *vf;
5747 u16 vf_id;
5748
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005749 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5750 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005751
5752 /* Queue belongs to VF, find the VF and issue VF reset */
5753 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5754 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5755 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5756 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5757 vf_id -= hw->func_caps.vf_base_id;
5758 vf = &pf->vf[vf_id];
5759 i40e_vc_notify_vf_reset(vf);
5760 /* Allow VF to process pending reset notification */
5761 msleep(20);
5762 i40e_reset_vf(vf, false);
5763 }
5764}
5765
5766/**
5767 * i40e_service_event_complete - Finish up the service event
5768 * @pf: board private structure
5769 **/
5770static void i40e_service_event_complete(struct i40e_pf *pf)
5771{
Shannon Nelsonb875f992015-10-21 19:47:03 -04005772 WARN_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005773
5774 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005775 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005776 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5777}
5778
5779/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005780 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5781 * @pf: board private structure
5782 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005783u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005784{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005785 u32 val, fcnt_prog;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005786
5787 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5788 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5789 return fcnt_prog;
5790}
5791
5792/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005793 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005794 * @pf: board private structure
5795 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005796u32 i40e_get_current_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005797{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005798 u32 val, fcnt_prog;
5799
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005800 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5801 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5802 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5803 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5804 return fcnt_prog;
5805}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005806
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005807/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005808 * i40e_get_global_fd_count - Get total FD filters programmed on device
5809 * @pf: board private structure
5810 **/
5811u32 i40e_get_global_fd_count(struct i40e_pf *pf)
5812{
5813 u32 val, fcnt_prog;
5814
5815 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
5816 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
5817 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
5818 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
5819 return fcnt_prog;
5820}
5821
5822/**
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005823 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5824 * @pf: board private structure
5825 **/
5826void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5827{
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005828 struct i40e_fdir_filter *filter;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005829 u32 fcnt_prog, fcnt_avail;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005830 struct hlist_node *node;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005831
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005832 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5833 return;
5834
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005835 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5836 * to re-enable
5837 */
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005838 fcnt_prog = i40e_get_global_fd_count(pf);
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005839 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005840 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5841 (pf->fd_add_err == 0) ||
5842 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005843 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5844 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5845 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005846 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5847 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 +00005848 }
5849 }
5850 /* Wait for some more space to be available to turn on ATR */
5851 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5852 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5853 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5854 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005855 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5856 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 +00005857 }
5858 }
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005859
5860 /* if hw had a problem adding a filter, delete it */
5861 if (pf->fd_inv > 0) {
5862 hlist_for_each_entry_safe(filter, node,
5863 &pf->fdir_filter_list, fdir_node) {
5864 if (filter->fd_id == pf->fd_inv) {
5865 hlist_del(&filter->fdir_node);
5866 kfree(filter);
5867 pf->fdir_pf_active_filters--;
5868 }
5869 }
5870 }
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005871}
5872
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005873#define I40E_MIN_FD_FLUSH_INTERVAL 10
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005874#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005875/**
5876 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5877 * @pf: board private structure
5878 **/
5879static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5880{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005881 unsigned long min_flush_time;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005882 int flush_wait_retry = 50;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005883 bool disable_atr = false;
5884 int fd_room;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005885 int reg;
5886
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005887 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5888 return;
5889
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005890 if (!time_after(jiffies, pf->fd_flush_timestamp +
5891 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
5892 return;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005893
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005894 /* If the flush is happening too quick and we have mostly SB rules we
5895 * should not re-enable ATR for some time.
5896 */
5897 min_flush_time = pf->fd_flush_timestamp +
5898 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
5899 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005900
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005901 if (!(time_after(jiffies, min_flush_time)) &&
5902 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
5903 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5904 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
5905 disable_atr = true;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005906 }
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005907
5908 pf->fd_flush_timestamp = jiffies;
5909 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5910 /* flush all filters */
5911 wr32(&pf->hw, I40E_PFQF_CTL_1,
5912 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5913 i40e_flush(&pf->hw);
5914 pf->fd_flush_cnt++;
5915 pf->fd_add_err = 0;
5916 do {
5917 /* Check FD flush status every 5-6msec */
5918 usleep_range(5000, 6000);
5919 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5920 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5921 break;
5922 } while (flush_wait_retry--);
5923 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5924 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5925 } else {
5926 /* replay sideband filters */
5927 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5928 if (!disable_atr)
5929 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5930 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5931 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5932 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5933 }
5934
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005935}
5936
5937/**
5938 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5939 * @pf: board private structure
5940 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005941u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005942{
5943 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5944}
5945
5946/* We can see up to 256 filter programming desc in transit if the filters are
5947 * being applied really fast; before we see the first
5948 * filter miss error on Rx queue 0. Accumulating enough error messages before
5949 * reacting will make sure we don't cause flush too often.
5950 */
5951#define I40E_MAX_FD_PROGRAM_ERROR 256
5952
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005953/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005954 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5955 * @pf: board private structure
5956 **/
5957static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5958{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005959
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005960 /* if interface is down do nothing */
5961 if (test_bit(__I40E_DOWN, &pf->state))
5962 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005963
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005964 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5965 return;
5966
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005967 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005968 i40e_fdir_flush_and_replay(pf);
5969
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005970 i40e_fdir_check_and_reenable(pf);
5971
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005972}
5973
5974/**
5975 * i40e_vsi_link_event - notify VSI of a link event
5976 * @vsi: vsi to be notified
5977 * @link_up: link up or down
5978 **/
5979static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5980{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005981 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005982 return;
5983
5984 switch (vsi->type) {
5985 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005986#ifdef I40E_FCOE
5987 case I40E_VSI_FCOE:
5988#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005989 if (!vsi->netdev || !vsi->netdev_registered)
5990 break;
5991
5992 if (link_up) {
5993 netif_carrier_on(vsi->netdev);
5994 netif_tx_wake_all_queues(vsi->netdev);
5995 } else {
5996 netif_carrier_off(vsi->netdev);
5997 netif_tx_stop_all_queues(vsi->netdev);
5998 }
5999 break;
6000
6001 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006002 case I40E_VSI_VMDQ2:
6003 case I40E_VSI_CTRL:
6004 case I40E_VSI_MIRROR:
6005 default:
6006 /* there is no notification for other VSIs */
6007 break;
6008 }
6009}
6010
6011/**
6012 * i40e_veb_link_event - notify elements on the veb of a link event
6013 * @veb: veb to be notified
6014 * @link_up: link up or down
6015 **/
6016static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
6017{
6018 struct i40e_pf *pf;
6019 int i;
6020
6021 if (!veb || !veb->pf)
6022 return;
6023 pf = veb->pf;
6024
6025 /* depth first... */
6026 for (i = 0; i < I40E_MAX_VEB; i++)
6027 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6028 i40e_veb_link_event(pf->veb[i], link_up);
6029
6030 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00006031 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006032 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6033 i40e_vsi_link_event(pf->vsi[i], link_up);
6034}
6035
6036/**
6037 * i40e_link_event - Update netif_carrier status
6038 * @pf: board private structure
6039 **/
6040static void i40e_link_event(struct i40e_pf *pf)
6041{
Mitch Williams320684c2014-10-17 03:14:43 +00006042 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006043 u8 new_link_speed, old_link_speed;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006044 i40e_status status;
6045 bool new_link, old_link;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006046
Catherine Sullivan1f9610e2015-10-21 19:47:09 -04006047 /* save off old link status information */
6048 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6049
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006050 /* set this to force the get_link_status call to refresh state */
6051 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006052
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006053 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006054
6055 status = i40e_get_link_status(&pf->hw, &new_link);
6056 if (status) {
6057 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6058 status);
6059 return;
6060 }
6061
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006062 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6063 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006064
6065 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006066 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00006067 (test_bit(__I40E_DOWN, &vsi->state) ||
6068 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006069 return;
Mitch Williams320684c2014-10-17 03:14:43 +00006070
6071 if (!test_bit(__I40E_DOWN, &vsi->state))
6072 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006073
6074 /* Notify the base of the switch tree connected to
6075 * the link. Floating VEBs are not notified.
6076 */
6077 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6078 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6079 else
Mitch Williams320684c2014-10-17 03:14:43 +00006080 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006081
6082 if (pf->vf)
6083 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006084
6085 if (pf->flags & I40E_FLAG_PTP)
6086 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006087}
6088
6089/**
Shannon Nelson21536712014-10-25 10:35:25 +00006090 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006091 * @pf: board private structure
6092 **/
6093static void i40e_watchdog_subtask(struct i40e_pf *pf)
6094{
6095 int i;
6096
6097 /* if interface is down do nothing */
6098 if (test_bit(__I40E_DOWN, &pf->state) ||
6099 test_bit(__I40E_CONFIG_BUSY, &pf->state))
6100 return;
6101
Shannon Nelson21536712014-10-25 10:35:25 +00006102 /* make sure we don't do these things too often */
6103 if (time_before(jiffies, (pf->service_timer_previous +
6104 pf->service_timer_period)))
6105 return;
6106 pf->service_timer_previous = jiffies;
6107
Shannon Nelson9ac77262015-08-27 11:42:40 -04006108 if (pf->flags & I40E_FLAG_LINK_POLLING_ENABLED)
6109 i40e_link_event(pf);
Shannon Nelson21536712014-10-25 10:35:25 +00006110
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006111 /* Update the stats for active netdevs so the network stack
6112 * can look at updated numbers whenever it cares to
6113 */
Mitch Williams505682c2014-05-20 08:01:37 +00006114 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006115 if (pf->vsi[i] && pf->vsi[i]->netdev)
6116 i40e_update_stats(pf->vsi[i]);
6117
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04006118 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6119 /* Update the stats for the active switching components */
6120 for (i = 0; i < I40E_MAX_VEB; i++)
6121 if (pf->veb[i])
6122 i40e_update_veb_stats(pf->veb[i]);
6123 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006124
6125 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006126}
6127
6128/**
6129 * i40e_reset_subtask - Set up for resetting the device and driver
6130 * @pf: board private structure
6131 **/
6132static void i40e_reset_subtask(struct i40e_pf *pf)
6133{
6134 u32 reset_flags = 0;
6135
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006136 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006137 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006138 reset_flags |= BIT(__I40E_REINIT_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006139 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
6140 }
6141 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006142 reset_flags |= BIT(__I40E_PF_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006143 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6144 }
6145 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006146 reset_flags |= BIT(__I40E_CORE_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006147 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
6148 }
6149 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006150 reset_flags |= BIT(__I40E_GLOBAL_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006151 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
6152 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006153 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006154 reset_flags |= BIT(__I40E_DOWN_REQUESTED);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006155 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
6156 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006157
6158 /* If there's a recovery already waiting, it takes
6159 * precedence before starting a new reset sequence.
6160 */
6161 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
6162 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006163 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006164 }
6165
6166 /* If we're already down or resetting, just bail */
6167 if (reset_flags &&
6168 !test_bit(__I40E_DOWN, &pf->state) &&
6169 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
6170 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006171
6172unlock:
6173 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006174}
6175
6176/**
6177 * i40e_handle_link_event - Handle link event
6178 * @pf: board private structure
6179 * @e: event info posted on ARQ
6180 **/
6181static void i40e_handle_link_event(struct i40e_pf *pf,
6182 struct i40e_arq_event_info *e)
6183{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006184 struct i40e_aqc_get_link_status *status =
6185 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006186
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006187 /* Do a new status request to re-enable LSE reporting
6188 * and load new status information into the hw struct
6189 * This completely ignores any state information
6190 * in the ARQ event info, instead choosing to always
6191 * issue the AQ update link status command.
6192 */
6193 i40e_link_event(pf);
6194
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00006195 /* check for unqualified module, if link is down */
6196 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6197 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6198 (!(status->link_info & I40E_AQ_LINK_UP)))
6199 dev_err(&pf->pdev->dev,
6200 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006201}
6202
6203/**
6204 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6205 * @pf: board private structure
6206 **/
6207static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6208{
6209 struct i40e_arq_event_info event;
6210 struct i40e_hw *hw = &pf->hw;
6211 u16 pending, i = 0;
6212 i40e_status ret;
6213 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00006214 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006215 u32 val;
6216
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006217 /* Do not run clean AQ when PF reset fails */
6218 if (test_bit(__I40E_RESET_FAILED, &pf->state))
6219 return;
6220
Shannon Nelson86df2422014-05-20 08:01:35 +00006221 /* check for error indications */
6222 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6223 oldval = val;
6224 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006225 if (hw->debug_mask & I40E_DEBUG_AQ)
6226 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006227 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6228 }
6229 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006230 if (hw->debug_mask & I40E_DEBUG_AQ)
6231 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006232 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
6233 }
6234 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006235 if (hw->debug_mask & I40E_DEBUG_AQ)
6236 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006237 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6238 }
6239 if (oldval != val)
6240 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6241
6242 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6243 oldval = val;
6244 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006245 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6246 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006247 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6248 }
6249 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006250 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6251 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006252 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6253 }
6254 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006255 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6256 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006257 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6258 }
6259 if (oldval != val)
6260 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6261
Mitch Williams1001dc32014-11-11 20:02:19 +00006262 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6263 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006264 if (!event.msg_buf)
6265 return;
6266
6267 do {
6268 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00006269 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006270 break;
Mitch Williams56497972014-06-04 08:45:18 +00006271 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006272 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6273 break;
6274 }
6275
6276 opcode = le16_to_cpu(event.desc.opcode);
6277 switch (opcode) {
6278
6279 case i40e_aqc_opc_get_link_status:
6280 i40e_handle_link_event(pf, &event);
6281 break;
6282 case i40e_aqc_opc_send_msg_to_pf:
6283 ret = i40e_vc_process_vf_msg(pf,
6284 le16_to_cpu(event.desc.retval),
6285 le32_to_cpu(event.desc.cookie_high),
6286 le32_to_cpu(event.desc.cookie_low),
6287 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00006288 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006289 break;
6290 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006291 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006292#ifdef CONFIG_I40E_DCB
6293 rtnl_lock();
6294 ret = i40e_handle_lldp_event(pf, &event);
6295 rtnl_unlock();
6296#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006297 break;
6298 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006299 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006300 i40e_handle_lan_overflow_event(pf, &event);
6301 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00006302 case i40e_aqc_opc_send_msg_to_peer:
6303 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6304 break;
Shannon Nelson91a0f932015-03-19 14:32:01 -07006305 case i40e_aqc_opc_nvm_erase:
6306 case i40e_aqc_opc_nvm_update:
Michal Kosiarz00ada502015-11-19 11:34:20 -08006307 case i40e_aqc_opc_oem_post_update:
Shannon Nelson91a0f932015-03-19 14:32:01 -07006308 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "ARQ NVM operation completed\n");
6309 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006310 default:
6311 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00006312 "ARQ Error: Unknown event 0x%04x received\n",
6313 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006314 break;
6315 }
6316 } while (pending && (i++ < pf->adminq_work_limit));
6317
6318 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
6319 /* re-enable Admin queue interrupt cause */
6320 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6321 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6322 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6323 i40e_flush(hw);
6324
6325 kfree(event.msg_buf);
6326}
6327
6328/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006329 * i40e_verify_eeprom - make sure eeprom is good to use
6330 * @pf: board private structure
6331 **/
6332static void i40e_verify_eeprom(struct i40e_pf *pf)
6333{
6334 int err;
6335
6336 err = i40e_diag_eeprom_test(&pf->hw);
6337 if (err) {
6338 /* retry in case of garbage read */
6339 err = i40e_diag_eeprom_test(&pf->hw);
6340 if (err) {
6341 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6342 err);
6343 set_bit(__I40E_BAD_EEPROM, &pf->state);
6344 }
6345 }
6346
6347 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
6348 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
6349 clear_bit(__I40E_BAD_EEPROM, &pf->state);
6350 }
6351}
6352
6353/**
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006354 * i40e_enable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006355 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006356 *
6357 * enable switch loop back or die - no point in a return value
6358 **/
6359static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6360{
6361 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6362 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006363 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006364
6365 ctxt.seid = pf->main_vsi_seid;
6366 ctxt.pf_num = pf->hw.pf_id;
6367 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006368 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6369 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006370 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006371 "couldn't get PF vsi config, err %s aq_err %s\n",
6372 i40e_stat_str(&pf->hw, ret),
6373 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006374 return;
6375 }
6376 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6377 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6378 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6379
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006380 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6381 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006382 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006383 "update vsi switch failed, err %s aq_err %s\n",
6384 i40e_stat_str(&pf->hw, ret),
6385 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006386 }
6387}
6388
6389/**
6390 * i40e_disable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006391 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006392 *
6393 * disable switch loop back or die - no point in a return value
6394 **/
6395static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6396{
6397 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6398 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006399 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006400
6401 ctxt.seid = pf->main_vsi_seid;
6402 ctxt.pf_num = pf->hw.pf_id;
6403 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006404 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6405 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006406 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006407 "couldn't get PF vsi config, err %s aq_err %s\n",
6408 i40e_stat_str(&pf->hw, ret),
6409 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006410 return;
6411 }
6412 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6413 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6414 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6415
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006416 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6417 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006418 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006419 "update vsi switch failed, err %s aq_err %s\n",
6420 i40e_stat_str(&pf->hw, ret),
6421 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006422 }
6423}
6424
6425/**
Neerav Parikh51616012015-02-06 08:52:14 +00006426 * i40e_config_bridge_mode - Configure the HW bridge mode
6427 * @veb: pointer to the bridge instance
6428 *
6429 * Configure the loop back mode for the LAN VSI that is downlink to the
6430 * specified HW bridge instance. It is expected this function is called
6431 * when a new HW bridge is instantiated.
6432 **/
6433static void i40e_config_bridge_mode(struct i40e_veb *veb)
6434{
6435 struct i40e_pf *pf = veb->pf;
6436
Shannon Nelson6dec1012015-09-28 14:12:30 -04006437 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6438 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6439 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Neerav Parikh51616012015-02-06 08:52:14 +00006440 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6441 i40e_disable_pf_switch_lb(pf);
6442 else
6443 i40e_enable_pf_switch_lb(pf);
6444}
6445
6446/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006447 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6448 * @veb: pointer to the VEB instance
6449 *
6450 * This is a recursive function that first builds the attached VSIs then
6451 * recurses in to build the next layer of VEB. We track the connections
6452 * through our own index numbers because the seid's from the HW could
6453 * change across the reset.
6454 **/
6455static int i40e_reconstitute_veb(struct i40e_veb *veb)
6456{
6457 struct i40e_vsi *ctl_vsi = NULL;
6458 struct i40e_pf *pf = veb->pf;
6459 int v, veb_idx;
6460 int ret;
6461
6462 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006463 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006464 if (pf->vsi[v] &&
6465 pf->vsi[v]->veb_idx == veb->idx &&
6466 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6467 ctl_vsi = pf->vsi[v];
6468 break;
6469 }
6470 }
6471 if (!ctl_vsi) {
6472 dev_info(&pf->pdev->dev,
6473 "missing owner VSI for veb_idx %d\n", veb->idx);
6474 ret = -ENOENT;
6475 goto end_reconstitute;
6476 }
6477 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6478 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6479 ret = i40e_add_vsi(ctl_vsi);
6480 if (ret) {
6481 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006482 "rebuild of veb_idx %d owner VSI failed: %d\n",
6483 veb->idx, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006484 goto end_reconstitute;
6485 }
6486 i40e_vsi_reset_stats(ctl_vsi);
6487
6488 /* create the VEB in the switch and move the VSI onto the VEB */
6489 ret = i40e_add_veb(veb, ctl_vsi);
6490 if (ret)
6491 goto end_reconstitute;
6492
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07006493 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6494 veb->bridge_mode = BRIDGE_MODE_VEB;
6495 else
6496 veb->bridge_mode = BRIDGE_MODE_VEPA;
Neerav Parikh51616012015-02-06 08:52:14 +00006497 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00006498
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006499 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006500 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006501 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6502 continue;
6503
6504 if (pf->vsi[v]->veb_idx == veb->idx) {
6505 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04006506
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006507 vsi->uplink_seid = veb->seid;
6508 ret = i40e_add_vsi(vsi);
6509 if (ret) {
6510 dev_info(&pf->pdev->dev,
6511 "rebuild of vsi_idx %d failed: %d\n",
6512 v, ret);
6513 goto end_reconstitute;
6514 }
6515 i40e_vsi_reset_stats(vsi);
6516 }
6517 }
6518
6519 /* create any VEBs attached to this VEB - RECURSION */
6520 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6521 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6522 pf->veb[veb_idx]->uplink_seid = veb->seid;
6523 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6524 if (ret)
6525 break;
6526 }
6527 }
6528
6529end_reconstitute:
6530 return ret;
6531}
6532
6533/**
6534 * i40e_get_capabilities - get info about the HW
6535 * @pf: the PF struct
6536 **/
6537static int i40e_get_capabilities(struct i40e_pf *pf)
6538{
6539 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6540 u16 data_size;
6541 int buf_len;
6542 int err;
6543
6544 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6545 do {
6546 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6547 if (!cap_buf)
6548 return -ENOMEM;
6549
6550 /* this loads the data into the hw struct for us */
6551 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6552 &data_size,
6553 i40e_aqc_opc_list_func_capabilities,
6554 NULL);
6555 /* data loaded, buffer no longer needed */
6556 kfree(cap_buf);
6557
6558 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6559 /* retry with a larger buffer */
6560 buf_len = data_size;
6561 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6562 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006563 "capability discovery failed, err %s aq_err %s\n",
6564 i40e_stat_str(&pf->hw, err),
6565 i40e_aq_str(&pf->hw,
6566 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006567 return -ENODEV;
6568 }
6569 } while (err);
6570
6571 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6572 dev_info(&pf->pdev->dev,
6573 "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",
6574 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6575 pf->hw.func_caps.num_msix_vectors,
6576 pf->hw.func_caps.num_msix_vectors_vf,
6577 pf->hw.func_caps.fd_filters_guaranteed,
6578 pf->hw.func_caps.fd_filters_best_effort,
6579 pf->hw.func_caps.num_tx_qp,
6580 pf->hw.func_caps.num_vsis);
6581
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006582#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6583 + pf->hw.func_caps.num_vfs)
6584 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6585 dev_info(&pf->pdev->dev,
6586 "got num_vsis %d, setting num_vsis to %d\n",
6587 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6588 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6589 }
6590
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006591 return 0;
6592}
6593
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006594static int i40e_vsi_clear(struct i40e_vsi *vsi);
6595
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006596/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006597 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006598 * @pf: board private structure
6599 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006600static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006601{
6602 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006603 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006604
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006605 /* quick workaround for an NVM issue that leaves a critical register
6606 * uninitialized
6607 */
6608 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6609 static const u32 hkey[] = {
6610 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6611 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6612 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6613 0x95b3a76d};
6614
6615 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6616 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6617 }
6618
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006619 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006620 return;
6621
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006622 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006623 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006624 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006625 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006626 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006627 break;
6628 }
6629 }
6630
6631 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006632 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006633 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6634 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006635 if (!vsi) {
6636 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006637 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6638 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006639 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006640 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006641
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006642 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006643}
6644
6645/**
6646 * i40e_fdir_teardown - release the Flow Director resources
6647 * @pf: board private structure
6648 **/
6649static void i40e_fdir_teardown(struct i40e_pf *pf)
6650{
6651 int i;
6652
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006653 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006654 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006655 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6656 i40e_vsi_release(pf->vsi[i]);
6657 break;
6658 }
6659 }
6660}
6661
6662/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006663 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006664 * @pf: board private structure
6665 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006666 * Close up the VFs and other things in prep for PF Reset.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006667 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006668static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006669{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006670 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006671 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006672 u32 v;
6673
6674 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6675 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006676 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006677
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006678 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006679
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006680 /* quiesce the VSIs and their queues that are not already DOWN */
6681 i40e_pf_quiesce_all_vsi(pf);
6682
Mitch Williams505682c2014-05-20 08:01:37 +00006683 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006684 if (pf->vsi[v])
6685 pf->vsi[v]->seid = 0;
6686 }
6687
6688 i40e_shutdown_adminq(&pf->hw);
6689
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006690 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006691 if (hw->hmc.hmc_obj) {
6692 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006693 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006694 dev_warn(&pf->pdev->dev,
6695 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006696 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006697}
6698
6699/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006700 * i40e_send_version - update firmware with driver version
6701 * @pf: PF struct
6702 */
6703static void i40e_send_version(struct i40e_pf *pf)
6704{
6705 struct i40e_driver_version dv;
6706
6707 dv.major_version = DRV_VERSION_MAJOR;
6708 dv.minor_version = DRV_VERSION_MINOR;
6709 dv.build_version = DRV_VERSION_BUILD;
6710 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006711 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006712 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6713}
6714
6715/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006716 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006717 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006718 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006719 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006720static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006721{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006722 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006723 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006724 i40e_status ret;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006725 u32 val;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006726 u32 v;
6727
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006728 /* Now we wait for GRST to settle out.
6729 * We don't have to delete the VEBs or VSIs from the hw switch
6730 * because the reset will make them disappear.
6731 */
6732 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006733 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006734 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006735 set_bit(__I40E_RESET_FAILED, &pf->state);
6736 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006737 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006738 pf->pfr_count++;
6739
6740 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006741 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006742 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006743
6744 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6745 ret = i40e_init_adminq(&pf->hw);
6746 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006747 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
6748 i40e_stat_str(&pf->hw, ret),
6749 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006750 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006751 }
6752
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006753 /* re-verify the eeprom if we just had an EMP reset */
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00006754 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006755 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006756
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006757 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006758 ret = i40e_get_capabilities(pf);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006759 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006760 goto end_core_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006761
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006762 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6763 hw->func_caps.num_rx_qp,
6764 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6765 if (ret) {
6766 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6767 goto end_core_reset;
6768 }
6769 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6770 if (ret) {
6771 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6772 goto end_core_reset;
6773 }
6774
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006775#ifdef CONFIG_I40E_DCB
6776 ret = i40e_init_pf_dcb(pf);
6777 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006778 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6779 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6780 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006781 }
6782#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006783#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04006784 i40e_init_pf_fcoe(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006785
Vasu Dev38e00432014-08-01 13:27:03 -07006786#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006787 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006788 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006789 if (ret)
6790 goto end_core_reset;
6791
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006792 /* driver is only interested in link up/down and module qualification
6793 * reports from firmware
6794 */
6795 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6796 I40E_AQ_EVENT_LINK_UPDOWN |
6797 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6798 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006799 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
6800 i40e_stat_str(&pf->hw, ret),
6801 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006802
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006803 /* make sure our flow control settings are restored */
6804 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6805 if (ret)
Neerav Parikh8279e492015-09-03 17:18:50 -04006806 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
6807 i40e_stat_str(&pf->hw, ret),
6808 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006809
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006810 /* Rebuild the VSIs and VEBs that existed before reset.
6811 * They are still in our local switch element arrays, so only
6812 * need to rebuild the switch model in the HW.
6813 *
6814 * If there were VEBs but the reconstitution failed, we'll try
6815 * try to recover minimal use by getting the basic PF VSI working.
6816 */
6817 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006818 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006819 /* find the one VEB connected to the MAC, and find orphans */
6820 for (v = 0; v < I40E_MAX_VEB; v++) {
6821 if (!pf->veb[v])
6822 continue;
6823
6824 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6825 pf->veb[v]->uplink_seid == 0) {
6826 ret = i40e_reconstitute_veb(pf->veb[v]);
6827
6828 if (!ret)
6829 continue;
6830
6831 /* If Main VEB failed, we're in deep doodoo,
6832 * so give up rebuilding the switch and set up
6833 * for minimal rebuild of PF VSI.
6834 * If orphan failed, we'll report the error
6835 * but try to keep going.
6836 */
6837 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6838 dev_info(&pf->pdev->dev,
6839 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6840 ret);
6841 pf->vsi[pf->lan_vsi]->uplink_seid
6842 = pf->mac_seid;
6843 break;
6844 } else if (pf->veb[v]->uplink_seid == 0) {
6845 dev_info(&pf->pdev->dev,
6846 "rebuild of orphan VEB failed: %d\n",
6847 ret);
6848 }
6849 }
6850 }
6851 }
6852
6853 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006854 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006855 /* no VEB, so rebuild only the Main VSI */
6856 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6857 if (ret) {
6858 dev_info(&pf->pdev->dev,
6859 "rebuild of Main VSI failed: %d\n", ret);
6860 goto end_core_reset;
6861 }
6862 }
6863
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006864 /* Reconfigure hardware for allowing smaller MSS in the case
6865 * of TSO, so that we avoid the MDD being fired and causing
6866 * a reset in the case of small MSS+TSO.
6867 */
6868#define I40E_REG_MSS 0x000E64DC
6869#define I40E_REG_MSS_MIN_MASK 0x3FF0000
6870#define I40E_64BYTE_MSS 0x400000
6871 val = rd32(hw, I40E_REG_MSS);
6872 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
6873 val &= ~I40E_REG_MSS_MIN_MASK;
6874 val |= I40E_64BYTE_MSS;
6875 wr32(hw, I40E_REG_MSS, val);
6876 }
6877
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00006878 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
6879 (pf->hw.aq.fw_maj_ver < 4)) {
6880 msleep(75);
6881 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6882 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006883 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
6884 i40e_stat_str(&pf->hw, ret),
6885 i40e_aq_str(&pf->hw,
6886 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006887 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006888 /* reinit the misc interrupt */
6889 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6890 ret = i40e_setup_misc_vector(pf);
6891
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04006892 /* Add a filter to drop all Flow control frames from any VSI from being
6893 * transmitted. By doing so we stop a malicious VF from sending out
6894 * PAUSE or PFC frames and potentially controlling traffic for other
6895 * PF/VF VSIs.
6896 * The FW can still send Flow control frames if enabled.
6897 */
6898 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
6899 pf->main_vsi_seid);
6900
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006901 /* restart the VSIs that were rebuilt and running before the reset */
6902 i40e_pf_unquiesce_all_vsi(pf);
6903
Mitch Williams69f64b22014-02-13 03:48:46 -08006904 if (pf->num_alloc_vfs) {
6905 for (v = 0; v < pf->num_alloc_vfs; v++)
6906 i40e_reset_vf(&pf->vf[v], true);
6907 }
6908
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006909 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006910 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006911
6912end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006913 clear_bit(__I40E_RESET_FAILED, &pf->state);
6914clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006915 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6916}
6917
6918/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006919 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006920 * @pf: board private structure
6921 *
6922 * Close up the VFs and other things in prep for a Core Reset,
6923 * then get ready to rebuild the world.
6924 **/
6925static void i40e_handle_reset_warning(struct i40e_pf *pf)
6926{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006927 i40e_prep_for_reset(pf);
6928 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006929}
6930
6931/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006932 * i40e_handle_mdd_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006933 * @pf: pointer to the PF structure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006934 *
6935 * Called from the MDD irq handler to identify possibly malicious vfs
6936 **/
6937static void i40e_handle_mdd_event(struct i40e_pf *pf)
6938{
6939 struct i40e_hw *hw = &pf->hw;
6940 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006941 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006942 struct i40e_vf *vf;
6943 u32 reg;
6944 int i;
6945
6946 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6947 return;
6948
6949 /* find what triggered the MDD event */
6950 reg = rd32(hw, I40E_GL_MDET_TX);
6951 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006952 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6953 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006954 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006955 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006956 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006957 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006958 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6959 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6960 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006961 if (netif_msg_tx_err(pf))
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006962 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 +00006963 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006964 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6965 mdd_detected = true;
6966 }
6967 reg = rd32(hw, I40E_GL_MDET_RX);
6968 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006969 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6970 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006971 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006972 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006973 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6974 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6975 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006976 if (netif_msg_rx_err(pf))
6977 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6978 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006979 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6980 mdd_detected = true;
6981 }
6982
Neerav Parikhdf430b12014-06-04 01:23:15 +00006983 if (mdd_detected) {
6984 reg = rd32(hw, I40E_PF_MDET_TX);
6985 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6986 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006987 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006988 pf_mdd_detected = true;
6989 }
6990 reg = rd32(hw, I40E_PF_MDET_RX);
6991 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6992 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006993 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006994 pf_mdd_detected = true;
6995 }
6996 /* Queue belongs to the PF, initiate a reset */
6997 if (pf_mdd_detected) {
6998 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6999 i40e_service_event_schedule(pf);
7000 }
7001 }
7002
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007003 /* see if one of the VFs needs its hand slapped */
7004 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
7005 vf = &(pf->vf[i]);
7006 reg = rd32(hw, I40E_VP_MDET_TX(i));
7007 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
7008 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
7009 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007010 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
7011 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007012 }
7013
7014 reg = rd32(hw, I40E_VP_MDET_RX(i));
7015 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
7016 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
7017 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007018 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
7019 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007020 }
7021
7022 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
7023 dev_info(&pf->pdev->dev,
7024 "Too many MDD events on VF %d, disabled\n", i);
7025 dev_info(&pf->pdev->dev,
7026 "Use PF Control I/F to re-enable the VF\n");
7027 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
7028 }
7029 }
7030
7031 /* re-enable mdd interrupt cause */
7032 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
7033 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7034 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7035 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7036 i40e_flush(hw);
7037}
7038
Singhai, Anjali6633d382015-12-03 23:49:31 -08007039#ifdef CONFIG_I40E_VXLAN
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007040/**
7041 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
7042 * @pf: board private structure
7043 **/
7044static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
7045{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007046 struct i40e_hw *hw = &pf->hw;
7047 i40e_status ret;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007048 __be16 port;
7049 int i;
7050
7051 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
7052 return;
7053
7054 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
7055
7056 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04007057 if (pf->pending_vxlan_bitmap & BIT_ULL(i)) {
7058 pf->pending_vxlan_bitmap &= ~BIT_ULL(i);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007059 port = pf->vxlan_ports[i];
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007060 if (port)
7061 ret = i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007062 I40E_AQC_TUNNEL_TYPE_VXLAN,
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007063 NULL, NULL);
7064 else
7065 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007066
7067 if (ret) {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007068 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007069 "%s vxlan port %d, index %d failed, err %s aq_err %s\n",
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007070 port ? "add" : "delete",
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007071 ntohs(port), i,
7072 i40e_stat_str(&pf->hw, ret),
7073 i40e_aq_str(&pf->hw,
7074 pf->hw.aq.asq_last_status));
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007075 pf->vxlan_ports[i] = 0;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007076 }
7077 }
7078 }
7079}
7080
7081#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007082/**
7083 * i40e_service_task - Run the driver's async subtasks
7084 * @work: pointer to work_struct containing our data
7085 **/
7086static void i40e_service_task(struct work_struct *work)
7087{
7088 struct i40e_pf *pf = container_of(work,
7089 struct i40e_pf,
7090 service_task);
7091 unsigned long start_time = jiffies;
7092
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007093 /* don't bother with service tasks if a reset is in progress */
7094 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7095 i40e_service_event_complete(pf);
7096 return;
7097 }
7098
Kiran Patilb03a8c12015-09-24 18:13:15 -04007099 i40e_detect_recover_hung(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007100 i40e_reset_subtask(pf);
7101 i40e_handle_mdd_event(pf);
7102 i40e_vc_process_vflr_event(pf);
7103 i40e_watchdog_subtask(pf);
7104 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007105 i40e_sync_filters_subtask(pf);
Singhai, Anjali6633d382015-12-03 23:49:31 -08007106#ifdef CONFIG_I40E_VXLAN
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007107 i40e_sync_vxlan_filters_subtask(pf);
7108#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007109 i40e_clean_adminq_subtask(pf);
7110
7111 i40e_service_event_complete(pf);
7112
7113 /* If the tasks have taken longer than one timer cycle or there
7114 * is more work to be done, reschedule the service task now
7115 * rather than wait for the timer to tick again.
7116 */
7117 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
7118 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
7119 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
7120 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
7121 i40e_service_event_schedule(pf);
7122}
7123
7124/**
7125 * i40e_service_timer - timer callback
7126 * @data: pointer to PF struct
7127 **/
7128static void i40e_service_timer(unsigned long data)
7129{
7130 struct i40e_pf *pf = (struct i40e_pf *)data;
7131
7132 mod_timer(&pf->service_timer,
7133 round_jiffies(jiffies + pf->service_timer_period));
7134 i40e_service_event_schedule(pf);
7135}
7136
7137/**
7138 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7139 * @vsi: the VSI being configured
7140 **/
7141static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7142{
7143 struct i40e_pf *pf = vsi->back;
7144
7145 switch (vsi->type) {
7146 case I40E_VSI_MAIN:
7147 vsi->alloc_queue_pairs = pf->num_lan_qps;
7148 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7149 I40E_REQ_DESCRIPTOR_MULTIPLE);
7150 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7151 vsi->num_q_vectors = pf->num_lan_msix;
7152 else
7153 vsi->num_q_vectors = 1;
7154
7155 break;
7156
7157 case I40E_VSI_FDIR:
7158 vsi->alloc_queue_pairs = 1;
7159 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7160 I40E_REQ_DESCRIPTOR_MULTIPLE);
7161 vsi->num_q_vectors = 1;
7162 break;
7163
7164 case I40E_VSI_VMDQ2:
7165 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7166 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7167 I40E_REQ_DESCRIPTOR_MULTIPLE);
7168 vsi->num_q_vectors = pf->num_vmdq_msix;
7169 break;
7170
7171 case I40E_VSI_SRIOV:
7172 vsi->alloc_queue_pairs = pf->num_vf_qps;
7173 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7174 I40E_REQ_DESCRIPTOR_MULTIPLE);
7175 break;
7176
Vasu Dev38e00432014-08-01 13:27:03 -07007177#ifdef I40E_FCOE
7178 case I40E_VSI_FCOE:
7179 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
7180 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7181 I40E_REQ_DESCRIPTOR_MULTIPLE);
7182 vsi->num_q_vectors = pf->num_fcoe_msix;
7183 break;
7184
7185#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007186 default:
7187 WARN_ON(1);
7188 return -ENODATA;
7189 }
7190
7191 return 0;
7192}
7193
7194/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007195 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
7196 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007197 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007198 *
7199 * On error: returns error code (negative)
7200 * On success: returns 0
7201 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007202static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007203{
7204 int size;
7205 int ret = 0;
7206
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007207 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007208 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
7209 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7210 if (!vsi->tx_rings)
7211 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007212 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
7213
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007214 if (alloc_qvectors) {
7215 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00007216 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007217 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7218 if (!vsi->q_vectors) {
7219 ret = -ENOMEM;
7220 goto err_vectors;
7221 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007222 }
7223 return ret;
7224
7225err_vectors:
7226 kfree(vsi->tx_rings);
7227 return ret;
7228}
7229
7230/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007231 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7232 * @pf: board private structure
7233 * @type: type of VSI
7234 *
7235 * On error: returns error code (negative)
7236 * On success: returns vsi index in PF (positive)
7237 **/
7238static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7239{
7240 int ret = -ENODEV;
7241 struct i40e_vsi *vsi;
7242 int vsi_idx;
7243 int i;
7244
7245 /* Need to protect the allocation of the VSIs at the PF level */
7246 mutex_lock(&pf->switch_mutex);
7247
7248 /* VSI list may be fragmented if VSI creation/destruction has
7249 * been happening. We can afford to do a quick scan to look
7250 * for any free VSIs in the list.
7251 *
7252 * find next empty vsi slot, looping back around if necessary
7253 */
7254 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00007255 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007256 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00007257 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007258 i = 0;
7259 while (i < pf->next_vsi && pf->vsi[i])
7260 i++;
7261 }
7262
Mitch Williams505682c2014-05-20 08:01:37 +00007263 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007264 vsi_idx = i; /* Found one! */
7265 } else {
7266 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00007267 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007268 }
7269 pf->next_vsi = ++i;
7270
7271 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7272 if (!vsi) {
7273 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00007274 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007275 }
7276 vsi->type = type;
7277 vsi->back = pf;
7278 set_bit(__I40E_DOWN, &vsi->state);
7279 vsi->flags = 0;
7280 vsi->idx = vsi_idx;
7281 vsi->rx_itr_setting = pf->rx_itr_default;
7282 vsi->tx_itr_setting = pf->tx_itr_default;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04007283 vsi->int_rate_limit = 0;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00007284 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7285 pf->rss_table_size : 64;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007286 vsi->netdev_registered = false;
7287 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
7288 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00007289 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007290
Alexander Duyck9f65e152013-09-28 06:00:58 +00007291 ret = i40e_set_num_rings_in_vsi(vsi);
7292 if (ret)
7293 goto err_rings;
7294
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007295 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007296 if (ret)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007297 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00007298
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007299 /* Setup default MSIX irq handler for VSI */
7300 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7301
Kiran Patil21659032015-09-30 14:09:03 -04007302 /* Initialize VSI lock */
7303 spin_lock_init(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007304 pf->vsi[vsi_idx] = vsi;
7305 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00007306 goto unlock_pf;
7307
Alexander Duyck9f65e152013-09-28 06:00:58 +00007308err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00007309 pf->next_vsi = i - 1;
7310 kfree(vsi);
7311unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007312 mutex_unlock(&pf->switch_mutex);
7313 return ret;
7314}
7315
7316/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007317 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7318 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007319 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007320 *
7321 * On error: returns error code (negative)
7322 * On success: returns 0
7323 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007324static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007325{
7326 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007327 if (free_qvectors) {
7328 kfree(vsi->q_vectors);
7329 vsi->q_vectors = NULL;
7330 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007331 kfree(vsi->tx_rings);
7332 vsi->tx_rings = NULL;
7333 vsi->rx_rings = NULL;
7334}
7335
7336/**
Helin Zhang28c58692015-10-26 19:44:27 -04007337 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7338 * and lookup table
7339 * @vsi: Pointer to VSI structure
7340 */
7341static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7342{
7343 if (!vsi)
7344 return;
7345
7346 kfree(vsi->rss_hkey_user);
7347 vsi->rss_hkey_user = NULL;
7348
7349 kfree(vsi->rss_lut_user);
7350 vsi->rss_lut_user = NULL;
7351}
7352
7353/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007354 * i40e_vsi_clear - Deallocate the VSI provided
7355 * @vsi: the VSI being un-configured
7356 **/
7357static int i40e_vsi_clear(struct i40e_vsi *vsi)
7358{
7359 struct i40e_pf *pf;
7360
7361 if (!vsi)
7362 return 0;
7363
7364 if (!vsi->back)
7365 goto free_vsi;
7366 pf = vsi->back;
7367
7368 mutex_lock(&pf->switch_mutex);
7369 if (!pf->vsi[vsi->idx]) {
7370 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7371 vsi->idx, vsi->idx, vsi, vsi->type);
7372 goto unlock_vsi;
7373 }
7374
7375 if (pf->vsi[vsi->idx] != vsi) {
7376 dev_err(&pf->pdev->dev,
7377 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7378 pf->vsi[vsi->idx]->idx,
7379 pf->vsi[vsi->idx],
7380 pf->vsi[vsi->idx]->type,
7381 vsi->idx, vsi, vsi->type);
7382 goto unlock_vsi;
7383 }
7384
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00007385 /* updates the PF for this cleared vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007386 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7387 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7388
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007389 i40e_vsi_free_arrays(vsi, true);
Helin Zhang28c58692015-10-26 19:44:27 -04007390 i40e_clear_rss_config_user(vsi);
Alexander Duyck493fb302013-09-28 07:01:44 +00007391
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007392 pf->vsi[vsi->idx] = NULL;
7393 if (vsi->idx < pf->next_vsi)
7394 pf->next_vsi = vsi->idx;
7395
7396unlock_vsi:
7397 mutex_unlock(&pf->switch_mutex);
7398free_vsi:
7399 kfree(vsi);
7400
7401 return 0;
7402}
7403
7404/**
Alexander Duyck9f65e152013-09-28 06:00:58 +00007405 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7406 * @vsi: the VSI being cleaned
7407 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007408static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007409{
7410 int i;
7411
Greg Rose8e9dca52013-12-18 13:45:53 +00007412 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00007413 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00007414 kfree_rcu(vsi->tx_rings[i], rcu);
7415 vsi->tx_rings[i] = NULL;
7416 vsi->rx_rings[i] = NULL;
7417 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007418 }
Alexander Duyck9f65e152013-09-28 06:00:58 +00007419}
7420
7421/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007422 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7423 * @vsi: the VSI being configured
7424 **/
7425static int i40e_alloc_rings(struct i40e_vsi *vsi)
7426{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00007427 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007428 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007429 int i;
7430
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007431 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00007432 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007433 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e152013-09-28 06:00:58 +00007434 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
7435 if (!tx_ring)
7436 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007437
7438 tx_ring->queue_index = i;
7439 tx_ring->reg_idx = vsi->base_queue + i;
7440 tx_ring->ring_active = false;
7441 tx_ring->vsi = vsi;
7442 tx_ring->netdev = vsi->netdev;
7443 tx_ring->dev = &pf->pdev->dev;
7444 tx_ring->count = vsi->num_desc;
7445 tx_ring->size = 0;
7446 tx_ring->dcb_tc = 0;
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -04007447 if (vsi->back->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
7448 tx_ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
Anjali Singhai Jain527274c2015-06-05 12:20:31 -04007449 if (vsi->back->flags & I40E_FLAG_OUTER_UDP_CSUM_CAPABLE)
7450 tx_ring->flags |= I40E_TXR_FLAGS_OUTER_UDP_CSUM;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007451 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007452
Alexander Duyck9f65e152013-09-28 06:00:58 +00007453 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007454 rx_ring->queue_index = i;
7455 rx_ring->reg_idx = vsi->base_queue + i;
7456 rx_ring->ring_active = false;
7457 rx_ring->vsi = vsi;
7458 rx_ring->netdev = vsi->netdev;
7459 rx_ring->dev = &pf->pdev->dev;
7460 rx_ring->count = vsi->num_desc;
7461 rx_ring->size = 0;
7462 rx_ring->dcb_tc = 0;
7463 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
7464 set_ring_16byte_desc_enabled(rx_ring);
7465 else
7466 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e152013-09-28 06:00:58 +00007467 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007468 }
7469
7470 return 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007471
7472err_out:
7473 i40e_vsi_clear_rings(vsi);
7474 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007475}
7476
7477/**
7478 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7479 * @pf: board private structure
7480 * @vectors: the number of MSI-X vectors to request
7481 *
7482 * Returns the number of vectors reserved, or error
7483 **/
7484static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
7485{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007486 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
7487 I40E_MIN_MSIX, vectors);
7488 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007489 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007490 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007491 vectors = 0;
7492 }
7493
7494 return vectors;
7495}
7496
7497/**
7498 * i40e_init_msix - Setup the MSIX capability
7499 * @pf: board private structure
7500 *
7501 * Work with the OS to set up the MSIX vectors needed.
7502 *
Shannon Nelson3b444392015-02-26 16:15:57 +00007503 * Returns the number of vectors reserved or negative on failure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007504 **/
7505static int i40e_init_msix(struct i40e_pf *pf)
7506{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007507 struct i40e_hw *hw = &pf->hw;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007508 int vectors_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007509 int v_budget, i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007510 int v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007511
7512 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
7513 return -ENODEV;
7514
7515 /* The number of vectors we'll request will be comprised of:
7516 * - Add 1 for "other" cause for Admin Queue events, etc.
7517 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007518 * - Queues being used for RSS.
7519 * We don't need as many as max_rss_size vectors.
7520 * use rss_size instead in the calculation since that
7521 * is governed by number of cpus in the system.
7522 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007523 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07007524#ifdef I40E_FCOE
7525 * - The number of FCOE qps.
7526#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007527 * Once we count this up, try the request.
7528 *
7529 * If we can't get what we want, we'll simplify to nearly nothing
7530 * and try again. If that still fails, we punt.
7531 */
Shannon Nelson1e200e42015-02-27 09:15:24 +00007532 vectors_left = hw->func_caps.num_msix_vectors;
7533 v_budget = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007534
Shannon Nelson1e200e42015-02-27 09:15:24 +00007535 /* reserve one vector for miscellaneous handler */
7536 if (vectors_left) {
7537 v_budget++;
7538 vectors_left--;
7539 }
7540
7541 /* reserve vectors for the main PF traffic queues */
7542 pf->num_lan_msix = min_t(int, num_online_cpus(), vectors_left);
7543 vectors_left -= pf->num_lan_msix;
7544 v_budget += pf->num_lan_msix;
7545
7546 /* reserve one vector for sideband flow director */
7547 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7548 if (vectors_left) {
7549 v_budget++;
7550 vectors_left--;
7551 } else {
7552 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
7553 }
7554 }
John W Linville83840e42015-01-14 03:06:28 +00007555
Vasu Dev38e00432014-08-01 13:27:03 -07007556#ifdef I40E_FCOE
Shannon Nelson1e200e42015-02-27 09:15:24 +00007557 /* can we reserve enough for FCoE? */
Vasu Dev38e00432014-08-01 13:27:03 -07007558 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
Shannon Nelson1e200e42015-02-27 09:15:24 +00007559 if (!vectors_left)
7560 pf->num_fcoe_msix = 0;
7561 else if (vectors_left >= pf->num_fcoe_qps)
7562 pf->num_fcoe_msix = pf->num_fcoe_qps;
7563 else
7564 pf->num_fcoe_msix = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07007565 v_budget += pf->num_fcoe_msix;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007566 vectors_left -= pf->num_fcoe_msix;
Vasu Dev38e00432014-08-01 13:27:03 -07007567 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00007568
Vasu Dev38e00432014-08-01 13:27:03 -07007569#endif
Shannon Nelson1e200e42015-02-27 09:15:24 +00007570 /* any vectors left over go for VMDq support */
7571 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
7572 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
7573 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
7574
7575 /* if we're short on vectors for what's desired, we limit
7576 * the queues per vmdq. If this is still more than are
7577 * available, the user will need to change the number of
7578 * queues/vectors used by the PF later with the ethtool
7579 * channels command
7580 */
7581 if (vmdq_vecs < vmdq_vecs_wanted)
7582 pf->num_vmdq_qps = 1;
7583 pf->num_vmdq_msix = pf->num_vmdq_qps;
7584
7585 v_budget += vmdq_vecs;
7586 vectors_left -= vmdq_vecs;
7587 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007588
7589 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
7590 GFP_KERNEL);
7591 if (!pf->msix_entries)
7592 return -ENOMEM;
7593
7594 for (i = 0; i < v_budget; i++)
7595 pf->msix_entries[i].entry = i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007596 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007597
Shannon Nelson3b444392015-02-26 16:15:57 +00007598 if (v_actual != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007599 /* If we have limited resources, we will start with no vectors
7600 * for the special features and then allocate vectors to some
7601 * of these features based on the policy and at the end disable
7602 * the features that did not get any vectors.
7603 */
Vasu Dev38e00432014-08-01 13:27:03 -07007604#ifdef I40E_FCOE
7605 pf->num_fcoe_qps = 0;
7606 pf->num_fcoe_msix = 0;
7607#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007608 pf->num_vmdq_msix = 0;
7609 }
7610
Shannon Nelson3b444392015-02-26 16:15:57 +00007611 if (v_actual < I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007612 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
7613 kfree(pf->msix_entries);
7614 pf->msix_entries = NULL;
7615 return -ENODEV;
7616
Shannon Nelson3b444392015-02-26 16:15:57 +00007617 } else if (v_actual == I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007618 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007619 pf->num_vmdq_vsis = 0;
7620 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007621 pf->num_lan_qps = 1;
7622 pf->num_lan_msix = 1;
7623
Shannon Nelson3b444392015-02-26 16:15:57 +00007624 } else if (v_actual != v_budget) {
7625 int vec;
7626
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007627 /* reserve the misc vector */
Shannon Nelson3b444392015-02-26 16:15:57 +00007628 vec = v_actual - 1;
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007629
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007630 /* Scale vector usage down */
7631 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007632 pf->num_vmdq_vsis = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007633 pf->num_vmdq_qps = 1;
7634 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007635
7636 /* partition out the remaining vectors */
7637 switch (vec) {
7638 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007639 pf->num_lan_msix = 1;
7640 break;
7641 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07007642#ifdef I40E_FCOE
7643 /* give one vector to FCoE */
7644 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7645 pf->num_lan_msix = 1;
7646 pf->num_fcoe_msix = 1;
7647 }
7648#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007649 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07007650#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007651 break;
7652 default:
Vasu Dev38e00432014-08-01 13:27:03 -07007653#ifdef I40E_FCOE
7654 /* give one vector to FCoE */
7655 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7656 pf->num_fcoe_msix = 1;
7657 vec--;
7658 }
7659#endif
Shannon Nelson1e200e42015-02-27 09:15:24 +00007660 /* give the rest to the PF */
7661 pf->num_lan_msix = min_t(int, vec, pf->num_lan_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007662 break;
7663 }
7664 }
7665
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007666 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7667 (pf->num_vmdq_msix == 0)) {
7668 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7669 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7670 }
Vasu Dev38e00432014-08-01 13:27:03 -07007671#ifdef I40E_FCOE
7672
7673 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7674 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7675 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7676 }
7677#endif
Shannon Nelson3b444392015-02-26 16:15:57 +00007678 return v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007679}
7680
7681/**
Greg Rose90e04072014-03-06 08:59:57 +00007682 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007683 * @vsi: the VSI being configured
7684 * @v_idx: index of the vector in the vsi struct
7685 *
7686 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7687 **/
Greg Rose90e04072014-03-06 08:59:57 +00007688static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00007689{
7690 struct i40e_q_vector *q_vector;
7691
7692 /* allocate q_vector */
7693 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7694 if (!q_vector)
7695 return -ENOMEM;
7696
7697 q_vector->vsi = vsi;
7698 q_vector->v_idx = v_idx;
7699 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
7700 if (vsi->netdev)
7701 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007702 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007703
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007704 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7705 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7706
Alexander Duyck493fb302013-09-28 07:01:44 +00007707 /* tie q_vector and vsi together */
7708 vsi->q_vectors[v_idx] = q_vector;
7709
7710 return 0;
7711}
7712
7713/**
Greg Rose90e04072014-03-06 08:59:57 +00007714 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007715 * @vsi: the VSI being configured
7716 *
7717 * We allocate one q_vector per queue interrupt. If allocation fails we
7718 * return -ENOMEM.
7719 **/
Greg Rose90e04072014-03-06 08:59:57 +00007720static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007721{
7722 struct i40e_pf *pf = vsi->back;
7723 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007724 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007725
7726 /* if not MSIX, give the one vector only to the LAN VSI */
7727 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7728 num_q_vectors = vsi->num_q_vectors;
7729 else if (vsi == pf->vsi[pf->lan_vsi])
7730 num_q_vectors = 1;
7731 else
7732 return -EINVAL;
7733
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007734 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007735 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007736 if (err)
7737 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007738 }
7739
7740 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007741
7742err_out:
7743 while (v_idx--)
7744 i40e_free_q_vector(vsi, v_idx);
7745
7746 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007747}
7748
7749/**
7750 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7751 * @pf: board private structure to initialize
7752 **/
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007753static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007754{
Shannon Nelson3b444392015-02-26 16:15:57 +00007755 int vectors = 0;
7756 ssize_t size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007757
7758 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Shannon Nelson3b444392015-02-26 16:15:57 +00007759 vectors = i40e_init_msix(pf);
7760 if (vectors < 0) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007761 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007762#ifdef I40E_FCOE
7763 I40E_FLAG_FCOE_ENABLED |
7764#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007765 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007766 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007767 I40E_FLAG_SRIOV_ENABLED |
7768 I40E_FLAG_FD_SB_ENABLED |
7769 I40E_FLAG_FD_ATR_ENABLED |
7770 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007771
7772 /* rework the queue expectations without MSIX */
7773 i40e_determine_queue_usage(pf);
7774 }
7775 }
7776
7777 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7778 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007779 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Shannon Nelson3b444392015-02-26 16:15:57 +00007780 vectors = pci_enable_msi(pf->pdev);
7781 if (vectors < 0) {
7782 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
7783 vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007784 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7785 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007786 vectors = 1; /* one MSI or Legacy vector */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007787 }
7788
Shannon Nelson958a3e32013-09-28 07:13:28 +00007789 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007790 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007791
Shannon Nelson3b444392015-02-26 16:15:57 +00007792 /* set up vector assignment tracking */
7793 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
7794 pf->irq_pile = kzalloc(size, GFP_KERNEL);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007795 if (!pf->irq_pile) {
7796 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
7797 return -ENOMEM;
7798 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007799 pf->irq_pile->num_entries = vectors;
7800 pf->irq_pile->search_hint = 0;
7801
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007802 /* track first vector for misc interrupts, ignore return */
Shannon Nelson3b444392015-02-26 16:15:57 +00007803 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007804
7805 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007806}
7807
7808/**
7809 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7810 * @pf: board private structure
7811 *
7812 * This sets up the handler for MSIX 0, which is used to manage the
7813 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7814 * when in MSI or Legacy interrupt mode.
7815 **/
7816static int i40e_setup_misc_vector(struct i40e_pf *pf)
7817{
7818 struct i40e_hw *hw = &pf->hw;
7819 int err = 0;
7820
7821 /* Only request the irq if this is the first time through, and
7822 * not when we're rebuilding after a Reset
7823 */
7824 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7825 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007826 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007827 if (err) {
7828 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007829 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007830 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007831 return -EFAULT;
7832 }
7833 }
7834
Jacob Kellerab437b52014-12-14 01:55:08 +00007835 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007836
7837 /* associate no queues to the misc vector */
7838 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7839 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7840
7841 i40e_flush(hw);
7842
7843 i40e_irq_dynamic_enable_icr0(pf);
7844
7845 return err;
7846}
7847
7848/**
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007849 * i40e_config_rss_aq - Prepare for RSS using AQ commands
7850 * @vsi: vsi structure
7851 * @seed: RSS hash seed
7852 **/
Helin Zhange69ff812015-10-21 19:56:22 -04007853static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7854 u8 *lut, u16 lut_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007855{
7856 struct i40e_aqc_get_set_rss_key_data rss_key;
7857 struct i40e_pf *pf = vsi->back;
7858 struct i40e_hw *hw = &pf->hw;
7859 bool pf_lut = false;
7860 u8 *rss_lut;
7861 int ret, i;
7862
7863 memset(&rss_key, 0, sizeof(rss_key));
7864 memcpy(&rss_key, seed, sizeof(rss_key));
7865
7866 rss_lut = kzalloc(pf->rss_table_size, GFP_KERNEL);
7867 if (!rss_lut)
7868 return -ENOMEM;
7869
7870 /* Populate the LUT with max no. of queues in round robin fashion */
7871 for (i = 0; i < vsi->rss_table_size; i++)
7872 rss_lut[i] = i % vsi->rss_size;
7873
7874 ret = i40e_aq_set_rss_key(hw, vsi->id, &rss_key);
7875 if (ret) {
7876 dev_info(&pf->pdev->dev,
7877 "Cannot set RSS key, err %s aq_err %s\n",
7878 i40e_stat_str(&pf->hw, ret),
7879 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai126b63d2015-08-24 13:26:53 -07007880 goto config_rss_aq_out;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007881 }
7882
7883 if (vsi->type == I40E_VSI_MAIN)
7884 pf_lut = true;
7885
7886 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, rss_lut,
7887 vsi->rss_table_size);
7888 if (ret)
7889 dev_info(&pf->pdev->dev,
7890 "Cannot set RSS lut, err %s aq_err %s\n",
7891 i40e_stat_str(&pf->hw, ret),
7892 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
7893
Anjali Singhai126b63d2015-08-24 13:26:53 -07007894config_rss_aq_out:
7895 kfree(rss_lut);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007896 return ret;
7897}
7898
7899/**
7900 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
7901 * @vsi: VSI structure
7902 **/
7903static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
7904{
7905 u8 seed[I40E_HKEY_ARRAY_SIZE];
7906 struct i40e_pf *pf = vsi->back;
Helin Zhange69ff812015-10-21 19:56:22 -04007907 u8 *lut;
7908 int ret;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007909
Helin Zhange69ff812015-10-21 19:56:22 -04007910 if (!(pf->flags & I40E_FLAG_RSS_AQ_CAPABLE))
7911 return 0;
7912
7913 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
7914 if (!lut)
7915 return -ENOMEM;
7916
7917 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007918 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhangacd65442015-10-26 19:44:28 -04007919 vsi->rss_size = min_t(int, pf->alloc_rss_size, vsi->num_queue_pairs);
Helin Zhange69ff812015-10-21 19:56:22 -04007920 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
7921 kfree(lut);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007922
Helin Zhange69ff812015-10-21 19:56:22 -04007923 return ret;
7924}
7925
7926/**
Helin Zhang043dd652015-10-21 19:56:23 -04007927 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
Helin Zhange69ff812015-10-21 19:56:22 -04007928 * @vsi: Pointer to vsi structure
7929 * @seed: RSS hash seed
7930 * @lut: Lookup table
7931 * @lut_size: Lookup table size
7932 *
7933 * Returns 0 on success, negative on failure
7934 **/
7935static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
7936 const u8 *lut, u16 lut_size)
7937{
7938 struct i40e_pf *pf = vsi->back;
7939 struct i40e_hw *hw = &pf->hw;
7940 u8 i;
7941
7942 /* Fill out hash function seed */
7943 if (seed) {
7944 u32 *seed_dw = (u32 *)seed;
7945
7946 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
7947 wr32(hw, I40E_PFQF_HKEY(i), seed_dw[i]);
7948 }
7949
7950 if (lut) {
7951 u32 *lut_dw = (u32 *)lut;
7952
7953 if (lut_size != I40E_HLUT_ARRAY_SIZE)
7954 return -EINVAL;
7955
7956 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
7957 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
7958 }
7959 i40e_flush(hw);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007960
7961 return 0;
7962}
7963
7964/**
Helin Zhang043dd652015-10-21 19:56:23 -04007965 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
7966 * @vsi: Pointer to VSI structure
7967 * @seed: Buffer to store the keys
7968 * @lut: Buffer to store the lookup table entries
7969 * @lut_size: Size of buffer to store the lookup table entries
7970 *
7971 * Returns 0 on success, negative on failure
7972 */
7973static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
7974 u8 *lut, u16 lut_size)
7975{
7976 struct i40e_pf *pf = vsi->back;
7977 struct i40e_hw *hw = &pf->hw;
7978 u16 i;
7979
7980 if (seed) {
7981 u32 *seed_dw = (u32 *)seed;
7982
7983 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
7984 seed_dw[i] = rd32(hw, I40E_PFQF_HKEY(i));
7985 }
7986 if (lut) {
7987 u32 *lut_dw = (u32 *)lut;
7988
7989 if (lut_size != I40E_HLUT_ARRAY_SIZE)
7990 return -EINVAL;
7991 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
7992 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
7993 }
7994
7995 return 0;
7996}
7997
7998/**
7999 * i40e_config_rss - Configure RSS keys and lut
8000 * @vsi: Pointer to VSI structure
8001 * @seed: RSS hash seed
8002 * @lut: Lookup table
8003 * @lut_size: Lookup table size
8004 *
8005 * Returns 0 on success, negative on failure
8006 */
8007int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8008{
8009 struct i40e_pf *pf = vsi->back;
8010
8011 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8012 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
8013 else
8014 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
8015}
8016
8017/**
8018 * i40e_get_rss - Get RSS keys and lut
8019 * @vsi: Pointer to VSI structure
8020 * @seed: Buffer to store the keys
8021 * @lut: Buffer to store the lookup table entries
8022 * lut_size: Size of buffer to store the lookup table entries
8023 *
8024 * Returns 0 on success, negative on failure
8025 */
8026int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8027{
8028 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
8029}
8030
8031/**
Helin Zhange69ff812015-10-21 19:56:22 -04008032 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8033 * @pf: Pointer to board private structure
8034 * @lut: Lookup table
8035 * @rss_table_size: Lookup table size
8036 * @rss_size: Range of queue number for hashing
8037 */
8038static void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8039 u16 rss_table_size, u16 rss_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008040{
Helin Zhange69ff812015-10-21 19:56:22 -04008041 u16 i;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008042
Helin Zhange69ff812015-10-21 19:56:22 -04008043 for (i = 0; i < rss_table_size; i++)
8044 lut[i] = i % rss_size;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008045}
8046
8047/**
Helin Zhang043dd652015-10-21 19:56:23 -04008048 * i40e_pf_config_rss - Prepare for RSS if used
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008049 * @pf: board private structure
8050 **/
Helin Zhang043dd652015-10-21 19:56:23 -04008051static int i40e_pf_config_rss(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008052{
Anjali Singhai Jain66ddcff2015-02-24 06:58:50 +00008053 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008054 u8 seed[I40E_HKEY_ARRAY_SIZE];
Helin Zhange69ff812015-10-21 19:56:22 -04008055 u8 *lut;
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00008056 struct i40e_hw *hw = &pf->hw;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008057 u32 reg_val;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008058 u64 hena;
Helin Zhange69ff812015-10-21 19:56:22 -04008059 int ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008060
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008061 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
8062 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
8063 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008064 hena |= i40e_pf_get_default_rss_hena(pf);
8065
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008066 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
8067 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
8068
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008069 /* Determine the RSS table size based on the hardware capabilities */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008070 reg_val = rd32(hw, I40E_PFQF_CTL_0);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008071 reg_val = (pf->rss_table_size == 512) ?
8072 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8073 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008074 wr32(hw, I40E_PFQF_CTL_0, reg_val);
8075
Helin Zhang28c58692015-10-26 19:44:27 -04008076 /* Determine the RSS size of the VSI */
8077 if (!vsi->rss_size)
Helin Zhangacd65442015-10-26 19:44:28 -04008078 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8079 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008080
Helin Zhange69ff812015-10-21 19:56:22 -04008081 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8082 if (!lut)
8083 return -ENOMEM;
8084
Helin Zhang28c58692015-10-26 19:44:27 -04008085 /* Use user configured lut if there is one, otherwise use default */
8086 if (vsi->rss_lut_user)
8087 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8088 else
8089 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008090
Helin Zhang28c58692015-10-26 19:44:27 -04008091 /* Use user configured hash key if there is one, otherwise
8092 * use default.
8093 */
8094 if (vsi->rss_hkey_user)
8095 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8096 else
8097 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhang043dd652015-10-21 19:56:23 -04008098 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008099 kfree(lut);
8100
8101 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008102}
8103
8104/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008105 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8106 * @pf: board private structure
8107 * @queue_count: the requested queue count for rss.
8108 *
8109 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8110 * count which may be different from the requested queue count.
8111 **/
8112int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8113{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008114 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8115 int new_rss_size;
8116
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008117 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8118 return 0;
8119
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008120 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008121
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008122 if (queue_count != vsi->num_queue_pairs) {
8123 vsi->req_queue_pairs = queue_count;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008124 i40e_prep_for_reset(pf);
8125
Helin Zhangacd65442015-10-26 19:44:28 -04008126 pf->alloc_rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008127
8128 i40e_reset_and_rebuild(pf, true);
Helin Zhang28c58692015-10-26 19:44:27 -04008129
8130 /* Discard the user configured hash keys and lut, if less
8131 * queues are enabled.
8132 */
8133 if (queue_count < vsi->rss_size) {
8134 i40e_clear_rss_config_user(vsi);
8135 dev_dbg(&pf->pdev->dev,
8136 "discard user configured hash keys and lut\n");
8137 }
8138
8139 /* Reset vsi->rss_size, as number of enabled queues changed */
Helin Zhangacd65442015-10-26 19:44:28 -04008140 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8141 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008142
Helin Zhang043dd652015-10-21 19:56:23 -04008143 i40e_pf_config_rss(pf);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008144 }
Helin Zhange36b0b12015-10-26 19:44:36 -04008145 dev_info(&pf->pdev->dev, "RSS count/HW max RSS count: %d/%d\n",
8146 pf->alloc_rss_size, pf->rss_size_max);
Helin Zhangacd65442015-10-26 19:44:28 -04008147 return pf->alloc_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008148}
8149
8150/**
Greg Rosef4492db2015-02-06 08:52:12 +00008151 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
8152 * @pf: board private structure
8153 **/
8154i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
8155{
8156 i40e_status status;
8157 bool min_valid, max_valid;
8158 u32 max_bw, min_bw;
8159
8160 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8161 &min_valid, &max_valid);
8162
8163 if (!status) {
8164 if (min_valid)
8165 pf->npar_min_bw = min_bw;
8166 if (max_valid)
8167 pf->npar_max_bw = max_bw;
8168 }
8169
8170 return status;
8171}
8172
8173/**
8174 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
8175 * @pf: board private structure
8176 **/
8177i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
8178{
8179 struct i40e_aqc_configure_partition_bw_data bw_data;
8180 i40e_status status;
8181
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00008182 /* Set the valid bit for this PF */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008183 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
Greg Rosef4492db2015-02-06 08:52:12 +00008184 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
8185 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
8186
8187 /* Set the new bandwidths */
8188 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8189
8190 return status;
8191}
8192
8193/**
8194 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
8195 * @pf: board private structure
8196 **/
8197i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
8198{
8199 /* Commit temporary BW setting to permanent NVM image */
8200 enum i40e_admin_queue_err last_aq_status;
8201 i40e_status ret;
8202 u16 nvm_word;
8203
8204 if (pf->hw.partition_id != 1) {
8205 dev_info(&pf->pdev->dev,
8206 "Commit BW only works on partition 1! This is partition %d",
8207 pf->hw.partition_id);
8208 ret = I40E_NOT_SUPPORTED;
8209 goto bw_commit_out;
8210 }
8211
8212 /* Acquire NVM for read access */
8213 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8214 last_aq_status = pf->hw.aq.asq_last_status;
8215 if (ret) {
8216 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008217 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8218 i40e_stat_str(&pf->hw, ret),
8219 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008220 goto bw_commit_out;
8221 }
8222
8223 /* Read word 0x10 of NVM - SW compatibility word 1 */
8224 ret = i40e_aq_read_nvm(&pf->hw,
8225 I40E_SR_NVM_CONTROL_WORD,
8226 0x10, sizeof(nvm_word), &nvm_word,
8227 false, NULL);
8228 /* Save off last admin queue command status before releasing
8229 * the NVM
8230 */
8231 last_aq_status = pf->hw.aq.asq_last_status;
8232 i40e_release_nvm(&pf->hw);
8233 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008234 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8235 i40e_stat_str(&pf->hw, ret),
8236 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008237 goto bw_commit_out;
8238 }
8239
8240 /* Wait a bit for NVM release to complete */
8241 msleep(50);
8242
8243 /* Acquire NVM for write access */
8244 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8245 last_aq_status = pf->hw.aq.asq_last_status;
8246 if (ret) {
8247 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008248 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8249 i40e_stat_str(&pf->hw, ret),
8250 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008251 goto bw_commit_out;
8252 }
8253 /* Write it back out unchanged to initiate update NVM,
8254 * which will force a write of the shadow (alt) RAM to
8255 * the NVM - thus storing the bandwidth values permanently.
8256 */
8257 ret = i40e_aq_update_nvm(&pf->hw,
8258 I40E_SR_NVM_CONTROL_WORD,
8259 0x10, sizeof(nvm_word),
8260 &nvm_word, true, NULL);
8261 /* Save off last admin queue command status before releasing
8262 * the NVM
8263 */
8264 last_aq_status = pf->hw.aq.asq_last_status;
8265 i40e_release_nvm(&pf->hw);
8266 if (ret)
8267 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008268 "BW settings NOT SAVED, err %s aq_err %s\n",
8269 i40e_stat_str(&pf->hw, ret),
8270 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008271bw_commit_out:
8272
8273 return ret;
8274}
8275
8276/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008277 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8278 * @pf: board private structure to initialize
8279 *
8280 * i40e_sw_init initializes the Adapter private data structure.
8281 * Fields are initialized based on PCI device information and
8282 * OS network device settings (MTU size).
8283 **/
8284static int i40e_sw_init(struct i40e_pf *pf)
8285{
8286 int err = 0;
8287 int size;
8288
8289 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
8290 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00008291 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008292 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
8293 if (I40E_DEBUG_USER & debug)
8294 pf->hw.debug_mask = debug;
8295 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
8296 I40E_DEFAULT_MSG_ENABLE);
8297 }
8298
8299 /* Set default capability flags */
8300 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8301 I40E_FLAG_MSI_ENABLED |
Shannon Nelson9ac77262015-08-27 11:42:40 -04008302 I40E_FLAG_LINK_POLLING_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00008303 I40E_FLAG_MSIX_ENABLED;
8304
8305 if (iommu_present(&pci_bus_type))
8306 pf->flags |= I40E_FLAG_RX_PS_ENABLED;
8307 else
8308 pf->flags |= I40E_FLAG_RX_1BUF_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008309
Mitch Williamsca99eb92014-04-04 04:43:07 +00008310 /* Set default ITR */
8311 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
8312 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
8313
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008314 /* Depending on PF configurations, it is possible that the RSS
8315 * maximum might end up larger than the available queues
8316 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008317 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
Helin Zhangacd65442015-10-26 19:44:28 -04008318 pf->alloc_rss_size = 1;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00008319 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008320 pf->rss_size_max = min_t(int, pf->rss_size_max,
8321 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008322 if (pf->hw.func_caps.rss) {
8323 pf->flags |= I40E_FLAG_RSS_ENABLED;
Helin Zhangacd65442015-10-26 19:44:28 -04008324 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8325 num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008326 }
8327
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008328 /* MFP mode enabled */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04008329 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008330 pf->flags |= I40E_FLAG_MFP_ENABLED;
8331 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Greg Rosef4492db2015-02-06 08:52:12 +00008332 if (i40e_get_npar_bw_setting(pf))
8333 dev_warn(&pf->pdev->dev,
8334 "Could not get NPAR bw settings\n");
8335 else
8336 dev_info(&pf->pdev->dev,
8337 "Min BW = %8.8x, Max BW = %8.8x\n",
8338 pf->npar_min_bw, pf->npar_max_bw);
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008339 }
8340
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008341 /* FW/NVM is not yet fixed in this regard */
8342 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
8343 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
8344 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
8345 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008346 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
8347 pf->hw.num_partitions > 1)
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008348 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00008349 "Flow Director Sideband mode Disabled in MFP mode\n");
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008350 else
8351 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008352 pf->fdir_pf_filter_count =
8353 pf->hw.func_caps.fd_filters_guaranteed;
8354 pf->hw.fdir_shared_filter_count =
8355 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008356 }
8357
8358 if (pf->hw.func_caps.vmdq) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008359 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008360 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
Jesse Brandeburge9e53662015-10-02 17:57:21 -07008361 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008362 }
8363
Vasu Dev38e00432014-08-01 13:27:03 -07008364#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04008365 i40e_init_pf_fcoe(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07008366
8367#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008368#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f132014-12-11 07:06:34 +00008369 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008370 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
8371 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
8372 pf->num_req_vfs = min_t(int,
8373 pf->hw.func_caps.num_vfs,
8374 I40E_MAX_VF_COUNT);
8375 }
8376#endif /* CONFIG_PCI_IOV */
Anjali Singhai Jaind502ce02015-06-05 12:20:26 -04008377 if (pf->hw.mac.type == I40E_MAC_X722) {
8378 pf->flags |= I40E_FLAG_RSS_AQ_CAPABLE |
8379 I40E_FLAG_128_QP_RSS_CAPABLE |
8380 I40E_FLAG_HW_ATR_EVICT_CAPABLE |
8381 I40E_FLAG_OUTER_UDP_CSUM_CAPABLE |
8382 I40E_FLAG_WB_ON_ITR_CAPABLE |
8383 I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE;
8384 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008385 pf->eeprom_version = 0xDEAD;
8386 pf->lan_veb = I40E_NO_VEB;
8387 pf->lan_vsi = I40E_NO_VSI;
8388
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04008389 /* By default FW has this off for performance reasons */
8390 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
8391
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008392 /* set up queue assignment tracking */
8393 size = sizeof(struct i40e_lump_tracking)
8394 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
8395 pf->qp_pile = kzalloc(size, GFP_KERNEL);
8396 if (!pf->qp_pile) {
8397 err = -ENOMEM;
8398 goto sw_init_done;
8399 }
8400 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
8401 pf->qp_pile->search_hint = 0;
8402
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00008403 pf->tx_timeout_recovery_level = 1;
8404
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008405 mutex_init(&pf->switch_mutex);
8406
Greg Rosec668a122015-02-26 16:10:39 +00008407 /* If NPAR is enabled nudge the Tx scheduler */
8408 if (pf->hw.func_caps.npar_enable && (!i40e_get_npar_bw_setting(pf)))
8409 i40e_set_npar_bw_setting(pf);
8410
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008411sw_init_done:
8412 return err;
8413}
8414
8415/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008416 * i40e_set_ntuple - set the ntuple feature flag and take action
8417 * @pf: board private structure to initialize
8418 * @features: the feature set that the stack is suggesting
8419 *
8420 * returns a bool to indicate if reset needs to happen
8421 **/
8422bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
8423{
8424 bool need_reset = false;
8425
8426 /* Check if Flow Director n-tuple support was enabled or disabled. If
8427 * the state changed, we need to reset.
8428 */
8429 if (features & NETIF_F_NTUPLE) {
8430 /* Enable filters and mark for reset */
8431 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
8432 need_reset = true;
8433 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
8434 } else {
8435 /* turn off filters, mark for reset and clear SW filter list */
8436 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8437 need_reset = true;
8438 i40e_fdir_filter_exit(pf);
8439 }
8440 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008441 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00008442 /* reset fd counters */
8443 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
8444 pf->fdir_pf_active_filters = 0;
8445 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04008446 if (I40E_DEBUG_FD & pf->hw.debug_mask)
8447 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008448 /* if ATR was auto disabled it can be re-enabled. */
8449 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
8450 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
8451 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008452 }
8453 return need_reset;
8454}
8455
8456/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008457 * i40e_set_features - set the netdev feature flags
8458 * @netdev: ptr to the netdev being adjusted
8459 * @features: the feature set that the stack is suggesting
8460 **/
8461static int i40e_set_features(struct net_device *netdev,
8462 netdev_features_t features)
8463{
8464 struct i40e_netdev_priv *np = netdev_priv(netdev);
8465 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008466 struct i40e_pf *pf = vsi->back;
8467 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008468
8469 if (features & NETIF_F_HW_VLAN_CTAG_RX)
8470 i40e_vlan_stripping_enable(vsi);
8471 else
8472 i40e_vlan_stripping_disable(vsi);
8473
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008474 need_reset = i40e_set_ntuple(pf, features);
8475
8476 if (need_reset)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008477 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008478
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008479 return 0;
8480}
8481
Singhai, Anjali6633d382015-12-03 23:49:31 -08008482#ifdef CONFIG_I40E_VXLAN
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008483/**
8484 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
8485 * @pf: board private structure
8486 * @port: The UDP port to look up
8487 *
8488 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
8489 **/
8490static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
8491{
8492 u8 i;
8493
8494 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
8495 if (pf->vxlan_ports[i] == port)
8496 return i;
8497 }
8498
8499 return i;
8500}
8501
8502/**
8503 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
8504 * @netdev: This physical port's netdev
8505 * @sa_family: Socket Family that VXLAN is notifying us about
8506 * @port: New UDP port number that VXLAN started listening to
8507 **/
8508static void i40e_add_vxlan_port(struct net_device *netdev,
8509 sa_family_t sa_family, __be16 port)
8510{
8511 struct i40e_netdev_priv *np = netdev_priv(netdev);
8512 struct i40e_vsi *vsi = np->vsi;
8513 struct i40e_pf *pf = vsi->back;
8514 u8 next_idx;
8515 u8 idx;
8516
8517 if (sa_family == AF_INET6)
8518 return;
8519
8520 idx = i40e_get_vxlan_port_idx(pf, port);
8521
8522 /* Check if port already exists */
8523 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008524 netdev_info(netdev, "vxlan port %d already offloaded\n",
8525 ntohs(port));
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008526 return;
8527 }
8528
8529 /* Now check if there is space to add the new port */
8530 next_idx = i40e_get_vxlan_port_idx(pf, 0);
8531
8532 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008533 netdev_info(netdev, "maximum number of vxlan UDP ports reached, not adding port %d\n",
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008534 ntohs(port));
8535 return;
8536 }
8537
8538 /* New port: add it and mark its index in the bitmap */
8539 pf->vxlan_ports[next_idx] = port;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008540 pf->pending_vxlan_bitmap |= BIT_ULL(next_idx);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008541 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
8542}
8543
8544/**
8545 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
8546 * @netdev: This physical port's netdev
8547 * @sa_family: Socket Family that VXLAN is notifying us about
8548 * @port: UDP port number that VXLAN stopped listening to
8549 **/
8550static void i40e_del_vxlan_port(struct net_device *netdev,
8551 sa_family_t sa_family, __be16 port)
8552{
8553 struct i40e_netdev_priv *np = netdev_priv(netdev);
8554 struct i40e_vsi *vsi = np->vsi;
8555 struct i40e_pf *pf = vsi->back;
8556 u8 idx;
8557
8558 if (sa_family == AF_INET6)
8559 return;
8560
8561 idx = i40e_get_vxlan_port_idx(pf, port);
8562
8563 /* Check if port already exists */
8564 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
8565 /* if port exists, set it to 0 (mark for deletion)
8566 * and make it pending
8567 */
8568 pf->vxlan_ports[idx] = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008569 pf->pending_vxlan_bitmap |= BIT_ULL(idx);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008570 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
8571 } else {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008572 netdev_warn(netdev, "vxlan port %d was not found, not deleting\n",
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008573 ntohs(port));
8574 }
8575}
8576
8577#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008578static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008579 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008580{
8581 struct i40e_netdev_priv *np = netdev_priv(netdev);
8582 struct i40e_pf *pf = np->vsi->back;
8583 struct i40e_hw *hw = &pf->hw;
8584
8585 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
8586 return -EOPNOTSUPP;
8587
8588 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
8589 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
8590
8591 return 0;
8592}
8593
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08008594/**
8595 * i40e_ndo_fdb_add - add an entry to the hardware database
8596 * @ndm: the input from the stack
8597 * @tb: pointer to array of nladdr (unused)
8598 * @dev: the net device pointer
8599 * @addr: the MAC address entry being added
8600 * @flags: instructions from stack about fdb operation
8601 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00008602static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
8603 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01008604 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008605 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00008606{
8607 struct i40e_netdev_priv *np = netdev_priv(dev);
8608 struct i40e_pf *pf = np->vsi->back;
8609 int err = 0;
8610
8611 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
8612 return -EOPNOTSUPP;
8613
Or Gerlitz65891fe2014-12-14 18:19:05 +02008614 if (vid) {
8615 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
8616 return -EINVAL;
8617 }
8618
Greg Rose4ba0dea2014-03-06 08:59:55 +00008619 /* Hardware does not support aging addresses so if a
8620 * ndm_state is given only allow permanent addresses
8621 */
8622 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
8623 netdev_info(dev, "FDB only supports static addresses\n");
8624 return -EINVAL;
8625 }
8626
8627 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
8628 err = dev_uc_add_excl(dev, addr);
8629 else if (is_multicast_ether_addr(addr))
8630 err = dev_mc_add_excl(dev, addr);
8631 else
8632 err = -EINVAL;
8633
8634 /* Only return duplicate errors if NLM_F_EXCL is set */
8635 if (err == -EEXIST && !(flags & NLM_F_EXCL))
8636 err = 0;
8637
8638 return err;
8639}
8640
Neerav Parikh51616012015-02-06 08:52:14 +00008641/**
8642 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
8643 * @dev: the netdev being configured
8644 * @nlh: RTNL message
8645 *
8646 * Inserts a new hardware bridge if not already created and
8647 * enables the bridging mode requested (VEB or VEPA). If the
8648 * hardware bridge has already been inserted and the request
8649 * is to change the mode then that requires a PF reset to
8650 * allow rebuild of the components with required hardware
8651 * bridge mode enabled.
8652 **/
8653static int i40e_ndo_bridge_setlink(struct net_device *dev,
Carolyn Wyborny9df70b62015-04-27 14:57:11 -04008654 struct nlmsghdr *nlh,
8655 u16 flags)
Neerav Parikh51616012015-02-06 08:52:14 +00008656{
8657 struct i40e_netdev_priv *np = netdev_priv(dev);
8658 struct i40e_vsi *vsi = np->vsi;
8659 struct i40e_pf *pf = vsi->back;
8660 struct i40e_veb *veb = NULL;
8661 struct nlattr *attr, *br_spec;
8662 int i, rem;
8663
8664 /* Only for PF VSI for now */
8665 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8666 return -EOPNOTSUPP;
8667
8668 /* Find the HW bridge for PF VSI */
8669 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8670 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8671 veb = pf->veb[i];
8672 }
8673
8674 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
8675
8676 nla_for_each_nested(attr, br_spec, rem) {
8677 __u16 mode;
8678
8679 if (nla_type(attr) != IFLA_BRIDGE_MODE)
8680 continue;
8681
8682 mode = nla_get_u16(attr);
8683 if ((mode != BRIDGE_MODE_VEPA) &&
8684 (mode != BRIDGE_MODE_VEB))
8685 return -EINVAL;
8686
8687 /* Insert a new HW bridge */
8688 if (!veb) {
8689 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8690 vsi->tc_config.enabled_tc);
8691 if (veb) {
8692 veb->bridge_mode = mode;
8693 i40e_config_bridge_mode(veb);
8694 } else {
8695 /* No Bridge HW offload available */
8696 return -ENOENT;
8697 }
8698 break;
8699 } else if (mode != veb->bridge_mode) {
8700 /* Existing HW bridge but different mode needs reset */
8701 veb->bridge_mode = mode;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07008702 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
8703 if (mode == BRIDGE_MODE_VEB)
8704 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
8705 else
8706 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
8707 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Neerav Parikh51616012015-02-06 08:52:14 +00008708 break;
8709 }
8710 }
8711
8712 return 0;
8713}
8714
8715/**
8716 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
8717 * @skb: skb buff
8718 * @pid: process id
8719 * @seq: RTNL message seq #
8720 * @dev: the netdev being configured
8721 * @filter_mask: unused
Jesse Brandeburgd4b2f9f2015-09-03 17:18:48 -04008722 * @nlflags: netlink flags passed in
Neerav Parikh51616012015-02-06 08:52:14 +00008723 *
8724 * Return the mode in which the hardware bridge is operating in
8725 * i.e VEB or VEPA.
8726 **/
Neerav Parikh51616012015-02-06 08:52:14 +00008727static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
8728 struct net_device *dev,
Carolyn Wyborny9f4ffc42015-08-31 19:54:42 -04008729 u32 __always_unused filter_mask,
8730 int nlflags)
Neerav Parikh51616012015-02-06 08:52:14 +00008731{
8732 struct i40e_netdev_priv *np = netdev_priv(dev);
8733 struct i40e_vsi *vsi = np->vsi;
8734 struct i40e_pf *pf = vsi->back;
8735 struct i40e_veb *veb = NULL;
8736 int i;
8737
8738 /* Only for PF VSI for now */
8739 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8740 return -EOPNOTSUPP;
8741
8742 /* Find the HW bridge for the PF VSI */
8743 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8744 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8745 veb = pf->veb[i];
8746 }
8747
8748 if (!veb)
8749 return 0;
8750
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02008751 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -07008752 nlflags, 0, 0, filter_mask, NULL);
Neerav Parikh51616012015-02-06 08:52:14 +00008753}
Neerav Parikh51616012015-02-06 08:52:14 +00008754
Joe Stringerf44a75e2015-04-14 17:09:14 -07008755#define I40E_MAX_TUNNEL_HDR_LEN 80
8756/**
8757 * i40e_features_check - Validate encapsulated packet conforms to limits
8758 * @skb: skb buff
Jean Sacren2bc11c62015-09-19 05:08:43 -06008759 * @dev: This physical port's netdev
Joe Stringerf44a75e2015-04-14 17:09:14 -07008760 * @features: Offload features that the stack believes apply
8761 **/
8762static netdev_features_t i40e_features_check(struct sk_buff *skb,
8763 struct net_device *dev,
8764 netdev_features_t features)
8765{
8766 if (skb->encapsulation &&
8767 (skb_inner_mac_header(skb) - skb_transport_header(skb) >
8768 I40E_MAX_TUNNEL_HDR_LEN))
Tom Herberta1882222015-12-14 11:19:43 -08008769 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringerf44a75e2015-04-14 17:09:14 -07008770
8771 return features;
8772}
8773
Shannon Nelson37a29732015-02-27 09:15:19 +00008774static const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008775 .ndo_open = i40e_open,
8776 .ndo_stop = i40e_close,
8777 .ndo_start_xmit = i40e_lan_xmit_frame,
8778 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
8779 .ndo_set_rx_mode = i40e_set_rx_mode,
8780 .ndo_validate_addr = eth_validate_addr,
8781 .ndo_set_mac_address = i40e_set_mac,
8782 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008783 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008784 .ndo_tx_timeout = i40e_tx_timeout,
8785 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
8786 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
8787#ifdef CONFIG_NET_POLL_CONTROLLER
8788 .ndo_poll_controller = i40e_netpoll,
8789#endif
8790 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07008791#ifdef I40E_FCOE
8792 .ndo_fcoe_enable = i40e_fcoe_enable,
8793 .ndo_fcoe_disable = i40e_fcoe_disable,
8794#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008795 .ndo_set_features = i40e_set_features,
8796 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
8797 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04008798 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008799 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00008800 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00008801 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Singhai, Anjali6633d382015-12-03 23:49:31 -08008802#ifdef CONFIG_I40E_VXLAN
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008803 .ndo_add_vxlan_port = i40e_add_vxlan_port,
8804 .ndo_del_vxlan_port = i40e_del_vxlan_port,
8805#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008806 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008807 .ndo_fdb_add = i40e_ndo_fdb_add,
Joe Stringerf44a75e2015-04-14 17:09:14 -07008808 .ndo_features_check = i40e_features_check,
Neerav Parikh51616012015-02-06 08:52:14 +00008809 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
8810 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008811};
8812
8813/**
8814 * i40e_config_netdev - Setup the netdev flags
8815 * @vsi: the VSI being configured
8816 *
8817 * Returns 0 on success, negative value on failure
8818 **/
8819static int i40e_config_netdev(struct i40e_vsi *vsi)
8820{
Greg Rose1a103702013-11-28 06:42:39 +00008821 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008822 struct i40e_pf *pf = vsi->back;
8823 struct i40e_hw *hw = &pf->hw;
8824 struct i40e_netdev_priv *np;
8825 struct net_device *netdev;
8826 u8 mac_addr[ETH_ALEN];
8827 int etherdev_size;
8828
8829 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008830 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008831 if (!netdev)
8832 return -ENOMEM;
8833
8834 vsi->netdev = netdev;
8835 np = netdev_priv(netdev);
8836 np->vsi = vsi;
8837
Or Gerlitzd70e9412014-03-18 10:36:45 +02008838 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008839 NETIF_F_GSO_UDP_TUNNEL |
Jesse Brandeburgfec31ff2015-10-01 18:25:42 -07008840 NETIF_F_GSO_GRE |
Or Gerlitzd70e9412014-03-18 10:36:45 +02008841 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008842
8843 netdev->features = NETIF_F_SG |
8844 NETIF_F_IP_CSUM |
Tom Herbert53692b12015-12-14 11:19:41 -08008845 NETIF_F_SCTP_CRC |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008846 NETIF_F_HIGHDMA |
8847 NETIF_F_GSO_UDP_TUNNEL |
Jesse Brandeburgfec31ff2015-10-01 18:25:42 -07008848 NETIF_F_GSO_GRE |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008849 NETIF_F_HW_VLAN_CTAG_TX |
8850 NETIF_F_HW_VLAN_CTAG_RX |
8851 NETIF_F_HW_VLAN_CTAG_FILTER |
8852 NETIF_F_IPV6_CSUM |
8853 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00008854 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008855 NETIF_F_TSO6 |
8856 NETIF_F_RXCSUM |
8857 NETIF_F_RXHASH |
8858 0;
8859
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00008860 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
8861 netdev->features |= NETIF_F_NTUPLE;
8862
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008863 /* copy netdev features into list of user selectable features */
8864 netdev->hw_features |= netdev->features;
8865
8866 if (vsi->type == I40E_VSI_MAIN) {
8867 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00008868 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00008869 /* The following steps are necessary to prevent reception
8870 * of tagged packets - some older NVM configurations load a
8871 * default a MAC-VLAN filter that accepts any tagged packet
8872 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00008873 */
Kiran Patil21659032015-09-30 14:09:03 -04008874 if (!i40e_rm_default_mac_filter(vsi, mac_addr)) {
8875 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00008876 i40e_add_filter(vsi, mac_addr,
8877 I40E_VLAN_ANY, false, true);
Kiran Patil21659032015-09-30 14:09:03 -04008878 spin_unlock_bh(&vsi->mac_filter_list_lock);
8879 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008880 } else {
8881 /* relate the VSI_VMDQ name to the VSI_MAIN name */
8882 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
8883 pf->vsi[pf->lan_vsi]->netdev->name);
8884 random_ether_addr(mac_addr);
Kiran Patil21659032015-09-30 14:09:03 -04008885
8886 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008887 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
Kiran Patil21659032015-09-30 14:09:03 -04008888 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008889 }
Kiran Patil21659032015-09-30 14:09:03 -04008890
8891 spin_lock_bh(&vsi->mac_filter_list_lock);
Greg Rose1a103702013-11-28 06:42:39 +00008892 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Kiran Patil21659032015-09-30 14:09:03 -04008893 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008894
Greg Rose9a173902014-05-22 06:32:02 +00008895 ether_addr_copy(netdev->dev_addr, mac_addr);
8896 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008897 /* vlan gets same features (except vlan offload)
8898 * after any tweaks for specific VSI types
8899 */
8900 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
8901 NETIF_F_HW_VLAN_CTAG_RX |
8902 NETIF_F_HW_VLAN_CTAG_FILTER);
8903 netdev->priv_flags |= IFF_UNICAST_FLT;
8904 netdev->priv_flags |= IFF_SUPP_NOFCS;
8905 /* Setup netdev TC information */
8906 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
8907
8908 netdev->netdev_ops = &i40e_netdev_ops;
8909 netdev->watchdog_timeo = 5 * HZ;
8910 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07008911#ifdef I40E_FCOE
8912 i40e_fcoe_config_netdev(netdev, vsi);
8913#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008914
8915 return 0;
8916}
8917
8918/**
8919 * i40e_vsi_delete - Delete a VSI from the switch
8920 * @vsi: the VSI being removed
8921 *
8922 * Returns 0 on success, negative value on failure
8923 **/
8924static void i40e_vsi_delete(struct i40e_vsi *vsi)
8925{
8926 /* remove default VSI is not allowed */
8927 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
8928 return;
8929
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008930 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008931}
8932
8933/**
Neerav Parikh51616012015-02-06 08:52:14 +00008934 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
8935 * @vsi: the VSI being queried
8936 *
8937 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
8938 **/
8939int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
8940{
8941 struct i40e_veb *veb;
8942 struct i40e_pf *pf = vsi->back;
8943
8944 /* Uplink is not a bridge so default to VEB */
8945 if (vsi->veb_idx == I40E_NO_VEB)
8946 return 1;
8947
8948 veb = pf->veb[vsi->veb_idx];
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04008949 if (!veb) {
8950 dev_info(&pf->pdev->dev,
8951 "There is no veb associated with the bridge\n");
8952 return -ENOENT;
8953 }
Neerav Parikh51616012015-02-06 08:52:14 +00008954
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04008955 /* Uplink is a bridge in VEPA mode */
8956 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
8957 return 0;
8958 } else {
8959 /* Uplink is a bridge in VEB mode */
8960 return 1;
8961 }
8962
8963 /* VEPA is now default bridge, so return 0 */
8964 return 0;
Neerav Parikh51616012015-02-06 08:52:14 +00008965}
8966
8967/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008968 * i40e_add_vsi - Add a VSI to the switch
8969 * @vsi: the VSI being configured
8970 *
8971 * This initializes a VSI context depending on the VSI type to be added and
8972 * passes it down to the add_vsi aq command.
8973 **/
8974static int i40e_add_vsi(struct i40e_vsi *vsi)
8975{
8976 int ret = -ENODEV;
Kiran Patil21659032015-09-30 14:09:03 -04008977 u8 laa_macaddr[ETH_ALEN];
8978 bool found_laa_mac_filter = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008979 struct i40e_pf *pf = vsi->back;
8980 struct i40e_hw *hw = &pf->hw;
8981 struct i40e_vsi_context ctxt;
Kiran Patil21659032015-09-30 14:09:03 -04008982 struct i40e_mac_filter *f, *ftmp;
8983
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008984 u8 enabled_tc = 0x1; /* TC0 enabled */
8985 int f_count = 0;
8986
8987 memset(&ctxt, 0, sizeof(ctxt));
8988 switch (vsi->type) {
8989 case I40E_VSI_MAIN:
8990 /* The PF's main VSI is already setup as part of the
8991 * device initialization, so we'll not bother with
8992 * the add_vsi call, but we will retrieve the current
8993 * VSI context.
8994 */
8995 ctxt.seid = pf->main_vsi_seid;
8996 ctxt.pf_num = pf->hw.pf_id;
8997 ctxt.vf_num = 0;
8998 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
8999 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
9000 if (ret) {
9001 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009002 "couldn't get PF vsi config, err %s aq_err %s\n",
9003 i40e_stat_str(&pf->hw, ret),
9004 i40e_aq_str(&pf->hw,
9005 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009006 return -ENOENT;
9007 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009008 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009009 vsi->info.valid_sections = 0;
9010
9011 vsi->seid = ctxt.seid;
9012 vsi->id = ctxt.vsi_number;
9013
9014 enabled_tc = i40e_pf_get_tc_map(pf);
9015
9016 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009017 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
9018 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009019 memset(&ctxt, 0, sizeof(ctxt));
9020 ctxt.seid = pf->main_vsi_seid;
9021 ctxt.pf_num = pf->hw.pf_id;
9022 ctxt.vf_num = 0;
9023 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
9024 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9025 if (ret) {
9026 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009027 "update vsi failed, err %s aq_err %s\n",
9028 i40e_stat_str(&pf->hw, ret),
9029 i40e_aq_str(&pf->hw,
9030 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009031 ret = -ENOENT;
9032 goto err;
9033 }
9034 /* update the local VSI info queue map */
9035 i40e_vsi_update_queue_map(vsi, &ctxt);
9036 vsi->info.valid_sections = 0;
9037 } else {
9038 /* Default/Main VSI is only enabled for TC0
9039 * reconfigure it to enable all TCs that are
9040 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009041 * For MFP case the iSCSI PF would use this
9042 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009043 */
9044 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9045 if (ret) {
9046 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009047 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9048 enabled_tc,
9049 i40e_stat_str(&pf->hw, ret),
9050 i40e_aq_str(&pf->hw,
9051 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009052 ret = -ENOENT;
9053 }
9054 }
9055 break;
9056
9057 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009058 ctxt.pf_num = hw->pf_id;
9059 ctxt.vf_num = 0;
9060 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009061 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009062 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009063 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9064 (i40e_is_vsi_uplink_mode_veb(vsi))) {
Neerav Parikh51616012015-02-06 08:52:14 +00009065 ctxt.info.valid_sections |=
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009066 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00009067 ctxt.info.switch_id =
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009068 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00009069 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009070 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009071 break;
9072
9073 case I40E_VSI_VMDQ2:
9074 ctxt.pf_num = hw->pf_id;
9075 ctxt.vf_num = 0;
9076 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009077 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009078 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
9079
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009080 /* This VSI is connected to VEB so the switch_id
9081 * should be set to zero by default.
9082 */
Neerav Parikh51616012015-02-06 08:52:14 +00009083 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9084 ctxt.info.valid_sections |=
9085 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9086 ctxt.info.switch_id =
9087 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9088 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009089
9090 /* Setup the VSI tx/rx queue map for TC0 only for now */
9091 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9092 break;
9093
9094 case I40E_VSI_SRIOV:
9095 ctxt.pf_num = hw->pf_id;
9096 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
9097 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009098 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009099 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
9100
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009101 /* This VSI is connected to VEB so the switch_id
9102 * should be set to zero by default.
9103 */
Neerav Parikh51616012015-02-06 08:52:14 +00009104 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9105 ctxt.info.valid_sections |=
9106 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9107 ctxt.info.switch_id =
9108 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9109 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009110
9111 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
9112 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00009113 if (pf->vf[vsi->vf_id].spoofchk) {
9114 ctxt.info.valid_sections |=
9115 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
9116 ctxt.info.sec_flags |=
9117 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
9118 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
9119 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009120 /* Setup the VSI tx/rx queue map for TC0 only for now */
9121 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9122 break;
9123
Vasu Dev38e00432014-08-01 13:27:03 -07009124#ifdef I40E_FCOE
9125 case I40E_VSI_FCOE:
9126 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
9127 if (ret) {
9128 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
9129 return ret;
9130 }
9131 break;
9132
9133#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009134 default:
9135 return -ENODEV;
9136 }
9137
9138 if (vsi->type != I40E_VSI_MAIN) {
9139 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
9140 if (ret) {
9141 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009142 "add vsi failed, err %s aq_err %s\n",
9143 i40e_stat_str(&pf->hw, ret),
9144 i40e_aq_str(&pf->hw,
9145 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009146 ret = -ENOENT;
9147 goto err;
9148 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009149 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009150 vsi->info.valid_sections = 0;
9151 vsi->seid = ctxt.seid;
9152 vsi->id = ctxt.vsi_number;
9153 }
9154
Kiran Patil21659032015-09-30 14:09:03 -04009155 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009156 /* If macvlan filters already exist, force them to get loaded */
9157 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
9158 f->changed = true;
9159 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009160
Kiran Patil21659032015-09-30 14:09:03 -04009161 /* Expected to have only one MAC filter entry for LAA in list */
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009162 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Kiran Patil21659032015-09-30 14:09:03 -04009163 ether_addr_copy(laa_macaddr, f->macaddr);
9164 found_laa_mac_filter = true;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009165 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009166 }
Kiran Patil21659032015-09-30 14:09:03 -04009167 spin_unlock_bh(&vsi->mac_filter_list_lock);
9168
9169 if (found_laa_mac_filter) {
9170 struct i40e_aqc_remove_macvlan_element_data element;
9171
9172 memset(&element, 0, sizeof(element));
9173 ether_addr_copy(element.mac_addr, laa_macaddr);
9174 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
9175 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
9176 &element, 1, NULL);
9177 if (ret) {
9178 /* some older FW has a different default */
9179 element.flags |=
9180 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
9181 i40e_aq_remove_macvlan(hw, vsi->seid,
9182 &element, 1, NULL);
9183 }
9184
9185 i40e_aq_mac_address_write(hw,
9186 I40E_AQC_WRITE_TYPE_LAA_WOL,
9187 laa_macaddr, NULL);
9188 }
9189
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009190 if (f_count) {
9191 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
9192 pf->flags |= I40E_FLAG_FILTER_SYNC;
9193 }
9194
9195 /* Update VSI BW information */
9196 ret = i40e_vsi_get_bw_info(vsi);
9197 if (ret) {
9198 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009199 "couldn't get vsi bw info, err %s aq_err %s\n",
9200 i40e_stat_str(&pf->hw, ret),
9201 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009202 /* VSI is already added so not tearing that up */
9203 ret = 0;
9204 }
9205
9206err:
9207 return ret;
9208}
9209
9210/**
9211 * i40e_vsi_release - Delete a VSI and free its resources
9212 * @vsi: the VSI being removed
9213 *
9214 * Returns 0 on success or < 0 on error
9215 **/
9216int i40e_vsi_release(struct i40e_vsi *vsi)
9217{
9218 struct i40e_mac_filter *f, *ftmp;
9219 struct i40e_veb *veb = NULL;
9220 struct i40e_pf *pf;
9221 u16 uplink_seid;
9222 int i, n;
9223
9224 pf = vsi->back;
9225
9226 /* release of a VEB-owner or last VSI is not allowed */
9227 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
9228 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
9229 vsi->seid, vsi->uplink_seid);
9230 return -ENODEV;
9231 }
9232 if (vsi == pf->vsi[pf->lan_vsi] &&
9233 !test_bit(__I40E_DOWN, &pf->state)) {
9234 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
9235 return -ENODEV;
9236 }
9237
9238 uplink_seid = vsi->uplink_seid;
9239 if (vsi->type != I40E_VSI_SRIOV) {
9240 if (vsi->netdev_registered) {
9241 vsi->netdev_registered = false;
9242 if (vsi->netdev) {
9243 /* results in a call to i40e_close() */
9244 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009245 }
9246 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00009247 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009248 }
9249 i40e_vsi_disable_irq(vsi);
9250 }
9251
Kiran Patil21659032015-09-30 14:09:03 -04009252 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009253 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
9254 i40e_del_filter(vsi, f->macaddr, f->vlan,
9255 f->is_vf, f->is_netdev);
Kiran Patil21659032015-09-30 14:09:03 -04009256 spin_unlock_bh(&vsi->mac_filter_list_lock);
9257
Jesse Brandeburg17652c62015-11-05 17:01:02 -08009258 i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009259
9260 i40e_vsi_delete(vsi);
9261 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00009262 if (vsi->netdev) {
9263 free_netdev(vsi->netdev);
9264 vsi->netdev = NULL;
9265 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009266 i40e_vsi_clear_rings(vsi);
9267 i40e_vsi_clear(vsi);
9268
9269 /* If this was the last thing on the VEB, except for the
9270 * controlling VSI, remove the VEB, which puts the controlling
9271 * VSI onto the next level down in the switch.
9272 *
9273 * Well, okay, there's one more exception here: don't remove
9274 * the orphan VEBs yet. We'll wait for an explicit remove request
9275 * from up the network stack.
9276 */
Mitch Williams505682c2014-05-20 08:01:37 +00009277 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009278 if (pf->vsi[i] &&
9279 pf->vsi[i]->uplink_seid == uplink_seid &&
9280 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9281 n++; /* count the VSIs */
9282 }
9283 }
9284 for (i = 0; i < I40E_MAX_VEB; i++) {
9285 if (!pf->veb[i])
9286 continue;
9287 if (pf->veb[i]->uplink_seid == uplink_seid)
9288 n++; /* count the VEBs */
9289 if (pf->veb[i]->seid == uplink_seid)
9290 veb = pf->veb[i];
9291 }
9292 if (n == 0 && veb && veb->uplink_seid != 0)
9293 i40e_veb_release(veb);
9294
9295 return 0;
9296}
9297
9298/**
9299 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
9300 * @vsi: ptr to the VSI
9301 *
9302 * This should only be called after i40e_vsi_mem_alloc() which allocates the
9303 * corresponding SW VSI structure and initializes num_queue_pairs for the
9304 * newly allocated VSI.
9305 *
9306 * Returns 0 on success or negative on failure
9307 **/
9308static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
9309{
9310 int ret = -ENOENT;
9311 struct i40e_pf *pf = vsi->back;
9312
Alexander Duyck493fb302013-09-28 07:01:44 +00009313 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009314 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
9315 vsi->seid);
9316 return -EEXIST;
9317 }
9318
9319 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00009320 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009321 vsi->seid, vsi->base_vector);
9322 return -EEXIST;
9323 }
9324
Greg Rose90e04072014-03-06 08:59:57 +00009325 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009326 if (ret) {
9327 dev_info(&pf->pdev->dev,
9328 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
9329 vsi->num_q_vectors, vsi->seid, ret);
9330 vsi->num_q_vectors = 0;
9331 goto vector_setup_out;
9332 }
9333
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04009334 /* In Legacy mode, we do not have to get any other vector since we
9335 * piggyback on the misc/ICR0 for queue interrupts.
9336 */
9337 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
9338 return ret;
Shannon Nelson958a3e32013-09-28 07:13:28 +00009339 if (vsi->num_q_vectors)
9340 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
9341 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009342 if (vsi->base_vector < 0) {
9343 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00009344 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
9345 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009346 i40e_vsi_free_q_vectors(vsi);
9347 ret = -ENOENT;
9348 goto vector_setup_out;
9349 }
9350
9351vector_setup_out:
9352 return ret;
9353}
9354
9355/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009356 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
9357 * @vsi: pointer to the vsi.
9358 *
9359 * This re-allocates a vsi's queue resources.
9360 *
9361 * Returns pointer to the successfully allocated and configured VSI sw struct
9362 * on success, otherwise returns NULL on failure.
9363 **/
9364static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
9365{
9366 struct i40e_pf *pf = vsi->back;
9367 u8 enabled_tc;
9368 int ret;
9369
9370 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
9371 i40e_vsi_clear_rings(vsi);
9372
9373 i40e_vsi_free_arrays(vsi, false);
9374 i40e_set_num_rings_in_vsi(vsi);
9375 ret = i40e_vsi_alloc_arrays(vsi, false);
9376 if (ret)
9377 goto err_vsi;
9378
9379 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
9380 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009381 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009382 "failed to get tracking for %d queues for VSI %d err %d\n",
Shannon Nelson049a2be2014-10-17 03:14:50 +00009383 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009384 goto err_vsi;
9385 }
9386 vsi->base_queue = ret;
9387
9388 /* Update the FW view of the VSI. Force a reset of TC and queue
9389 * layout configurations.
9390 */
9391 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9392 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9393 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9394 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
9395
9396 /* assign it some queues */
9397 ret = i40e_alloc_rings(vsi);
9398 if (ret)
9399 goto err_rings;
9400
9401 /* map all of the rings to the q_vectors */
9402 i40e_vsi_map_rings_to_vectors(vsi);
9403 return vsi;
9404
9405err_rings:
9406 i40e_vsi_free_q_vectors(vsi);
9407 if (vsi->netdev_registered) {
9408 vsi->netdev_registered = false;
9409 unregister_netdev(vsi->netdev);
9410 free_netdev(vsi->netdev);
9411 vsi->netdev = NULL;
9412 }
9413 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9414err_vsi:
9415 i40e_vsi_clear(vsi);
9416 return NULL;
9417}
9418
9419/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009420 * i40e_vsi_setup - Set up a VSI by a given type
9421 * @pf: board private structure
9422 * @type: VSI type
9423 * @uplink_seid: the switch element to link to
9424 * @param1: usage depends upon VSI type. For VF types, indicates VF id
9425 *
9426 * This allocates the sw VSI structure and its queue resources, then add a VSI
9427 * to the identified VEB.
9428 *
9429 * Returns pointer to the successfully allocated and configure VSI sw struct on
9430 * success, otherwise returns NULL on failure.
9431 **/
9432struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
9433 u16 uplink_seid, u32 param1)
9434{
9435 struct i40e_vsi *vsi = NULL;
9436 struct i40e_veb *veb = NULL;
9437 int ret, i;
9438 int v_idx;
9439
9440 /* The requested uplink_seid must be either
9441 * - the PF's port seid
9442 * no VEB is needed because this is the PF
9443 * or this is a Flow Director special case VSI
9444 * - seid of an existing VEB
9445 * - seid of a VSI that owns an existing VEB
9446 * - seid of a VSI that doesn't own a VEB
9447 * a new VEB is created and the VSI becomes the owner
9448 * - seid of the PF VSI, which is what creates the first VEB
9449 * this is a special case of the previous
9450 *
9451 * Find which uplink_seid we were given and create a new VEB if needed
9452 */
9453 for (i = 0; i < I40E_MAX_VEB; i++) {
9454 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
9455 veb = pf->veb[i];
9456 break;
9457 }
9458 }
9459
9460 if (!veb && uplink_seid != pf->mac_seid) {
9461
Mitch Williams505682c2014-05-20 08:01:37 +00009462 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009463 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
9464 vsi = pf->vsi[i];
9465 break;
9466 }
9467 }
9468 if (!vsi) {
9469 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
9470 uplink_seid);
9471 return NULL;
9472 }
9473
9474 if (vsi->uplink_seid == pf->mac_seid)
9475 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
9476 vsi->tc_config.enabled_tc);
9477 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
9478 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9479 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009480 if (veb) {
9481 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
9482 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04009483 "New VSI creation error, uplink seid of LAN VSI expected.\n");
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009484 return NULL;
9485 }
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -04009486 /* We come up by default in VEPA mode if SRIOV is not
9487 * already enabled, in which case we can't force VEPA
9488 * mode.
9489 */
9490 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
9491 veb->bridge_mode = BRIDGE_MODE_VEPA;
9492 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
9493 }
Neerav Parikh51616012015-02-06 08:52:14 +00009494 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009495 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009496 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9497 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9498 veb = pf->veb[i];
9499 }
9500 if (!veb) {
9501 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
9502 return NULL;
9503 }
9504
9505 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9506 uplink_seid = veb->seid;
9507 }
9508
9509 /* get vsi sw struct */
9510 v_idx = i40e_vsi_mem_alloc(pf, type);
9511 if (v_idx < 0)
9512 goto err_alloc;
9513 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009514 if (!vsi)
9515 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009516 vsi->type = type;
9517 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
9518
9519 if (type == I40E_VSI_MAIN)
9520 pf->lan_vsi = v_idx;
9521 else if (type == I40E_VSI_SRIOV)
9522 vsi->vf_id = param1;
9523 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009524 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
9525 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009526 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009527 dev_info(&pf->pdev->dev,
9528 "failed to get tracking for %d queues for VSI %d err=%d\n",
9529 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009530 goto err_vsi;
9531 }
9532 vsi->base_queue = ret;
9533
9534 /* get a VSI from the hardware */
9535 vsi->uplink_seid = uplink_seid;
9536 ret = i40e_add_vsi(vsi);
9537 if (ret)
9538 goto err_vsi;
9539
9540 switch (vsi->type) {
9541 /* setup the netdev if needed */
9542 case I40E_VSI_MAIN:
9543 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07009544 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009545 ret = i40e_config_netdev(vsi);
9546 if (ret)
9547 goto err_netdev;
9548 ret = register_netdev(vsi->netdev);
9549 if (ret)
9550 goto err_netdev;
9551 vsi->netdev_registered = true;
9552 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009553#ifdef CONFIG_I40E_DCB
9554 /* Setup DCB netlink interface */
9555 i40e_dcbnl_setup(vsi);
9556#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009557 /* fall through */
9558
9559 case I40E_VSI_FDIR:
9560 /* set up vectors and rings if needed */
9561 ret = i40e_vsi_setup_vectors(vsi);
9562 if (ret)
9563 goto err_msix;
9564
9565 ret = i40e_alloc_rings(vsi);
9566 if (ret)
9567 goto err_rings;
9568
9569 /* map all of the rings to the q_vectors */
9570 i40e_vsi_map_rings_to_vectors(vsi);
9571
9572 i40e_vsi_reset_stats(vsi);
9573 break;
9574
9575 default:
9576 /* no netdev or rings for the other VSI types */
9577 break;
9578 }
9579
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04009580 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
9581 (vsi->type == I40E_VSI_VMDQ2)) {
9582 ret = i40e_vsi_config_rss(vsi);
9583 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009584 return vsi;
9585
9586err_rings:
9587 i40e_vsi_free_q_vectors(vsi);
9588err_msix:
9589 if (vsi->netdev_registered) {
9590 vsi->netdev_registered = false;
9591 unregister_netdev(vsi->netdev);
9592 free_netdev(vsi->netdev);
9593 vsi->netdev = NULL;
9594 }
9595err_netdev:
9596 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9597err_vsi:
9598 i40e_vsi_clear(vsi);
9599err_alloc:
9600 return NULL;
9601}
9602
9603/**
9604 * i40e_veb_get_bw_info - Query VEB BW information
9605 * @veb: the veb to query
9606 *
9607 * Query the Tx scheduler BW configuration data for given VEB
9608 **/
9609static int i40e_veb_get_bw_info(struct i40e_veb *veb)
9610{
9611 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
9612 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
9613 struct i40e_pf *pf = veb->pf;
9614 struct i40e_hw *hw = &pf->hw;
9615 u32 tc_bw_max;
9616 int ret = 0;
9617 int i;
9618
9619 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
9620 &bw_data, NULL);
9621 if (ret) {
9622 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009623 "query veb bw config failed, err %s aq_err %s\n",
9624 i40e_stat_str(&pf->hw, ret),
9625 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009626 goto out;
9627 }
9628
9629 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
9630 &ets_data, NULL);
9631 if (ret) {
9632 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009633 "query veb bw ets config failed, err %s aq_err %s\n",
9634 i40e_stat_str(&pf->hw, ret),
9635 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009636 goto out;
9637 }
9638
9639 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
9640 veb->bw_max_quanta = ets_data.tc_bw_max;
9641 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00009642 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009643 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
9644 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
9645 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
9646 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
9647 veb->bw_tc_limit_credits[i] =
9648 le16_to_cpu(bw_data.tc_bw_limits[i]);
9649 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
9650 }
9651
9652out:
9653 return ret;
9654}
9655
9656/**
9657 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
9658 * @pf: board private structure
9659 *
9660 * On error: returns error code (negative)
9661 * On success: returns vsi index in PF (positive)
9662 **/
9663static int i40e_veb_mem_alloc(struct i40e_pf *pf)
9664{
9665 int ret = -ENOENT;
9666 struct i40e_veb *veb;
9667 int i;
9668
9669 /* Need to protect the allocation of switch elements at the PF level */
9670 mutex_lock(&pf->switch_mutex);
9671
9672 /* VEB list may be fragmented if VEB creation/destruction has
9673 * been happening. We can afford to do a quick scan to look
9674 * for any free slots in the list.
9675 *
9676 * find next empty veb slot, looping back around if necessary
9677 */
9678 i = 0;
9679 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
9680 i++;
9681 if (i >= I40E_MAX_VEB) {
9682 ret = -ENOMEM;
9683 goto err_alloc_veb; /* out of VEB slots! */
9684 }
9685
9686 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
9687 if (!veb) {
9688 ret = -ENOMEM;
9689 goto err_alloc_veb;
9690 }
9691 veb->pf = pf;
9692 veb->idx = i;
9693 veb->enabled_tc = 1;
9694
9695 pf->veb[i] = veb;
9696 ret = i;
9697err_alloc_veb:
9698 mutex_unlock(&pf->switch_mutex);
9699 return ret;
9700}
9701
9702/**
9703 * i40e_switch_branch_release - Delete a branch of the switch tree
9704 * @branch: where to start deleting
9705 *
9706 * This uses recursion to find the tips of the branch to be
9707 * removed, deleting until we get back to and can delete this VEB.
9708 **/
9709static void i40e_switch_branch_release(struct i40e_veb *branch)
9710{
9711 struct i40e_pf *pf = branch->pf;
9712 u16 branch_seid = branch->seid;
9713 u16 veb_idx = branch->idx;
9714 int i;
9715
9716 /* release any VEBs on this VEB - RECURSION */
9717 for (i = 0; i < I40E_MAX_VEB; i++) {
9718 if (!pf->veb[i])
9719 continue;
9720 if (pf->veb[i]->uplink_seid == branch->seid)
9721 i40e_switch_branch_release(pf->veb[i]);
9722 }
9723
9724 /* Release the VSIs on this VEB, but not the owner VSI.
9725 *
9726 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
9727 * the VEB itself, so don't use (*branch) after this loop.
9728 */
Mitch Williams505682c2014-05-20 08:01:37 +00009729 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009730 if (!pf->vsi[i])
9731 continue;
9732 if (pf->vsi[i]->uplink_seid == branch_seid &&
9733 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9734 i40e_vsi_release(pf->vsi[i]);
9735 }
9736 }
9737
9738 /* There's one corner case where the VEB might not have been
9739 * removed, so double check it here and remove it if needed.
9740 * This case happens if the veb was created from the debugfs
9741 * commands and no VSIs were added to it.
9742 */
9743 if (pf->veb[veb_idx])
9744 i40e_veb_release(pf->veb[veb_idx]);
9745}
9746
9747/**
9748 * i40e_veb_clear - remove veb struct
9749 * @veb: the veb to remove
9750 **/
9751static void i40e_veb_clear(struct i40e_veb *veb)
9752{
9753 if (!veb)
9754 return;
9755
9756 if (veb->pf) {
9757 struct i40e_pf *pf = veb->pf;
9758
9759 mutex_lock(&pf->switch_mutex);
9760 if (pf->veb[veb->idx] == veb)
9761 pf->veb[veb->idx] = NULL;
9762 mutex_unlock(&pf->switch_mutex);
9763 }
9764
9765 kfree(veb);
9766}
9767
9768/**
9769 * i40e_veb_release - Delete a VEB and free its resources
9770 * @veb: the VEB being removed
9771 **/
9772void i40e_veb_release(struct i40e_veb *veb)
9773{
9774 struct i40e_vsi *vsi = NULL;
9775 struct i40e_pf *pf;
9776 int i, n = 0;
9777
9778 pf = veb->pf;
9779
9780 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00009781 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009782 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
9783 n++;
9784 vsi = pf->vsi[i];
9785 }
9786 }
9787 if (n != 1) {
9788 dev_info(&pf->pdev->dev,
9789 "can't remove VEB %d with %d VSIs left\n",
9790 veb->seid, n);
9791 return;
9792 }
9793
9794 /* move the remaining VSI to uplink veb */
9795 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
9796 if (veb->uplink_seid) {
9797 vsi->uplink_seid = veb->uplink_seid;
9798 if (veb->uplink_seid == pf->mac_seid)
9799 vsi->veb_idx = I40E_NO_VEB;
9800 else
9801 vsi->veb_idx = veb->veb_idx;
9802 } else {
9803 /* floating VEB */
9804 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
9805 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
9806 }
9807
9808 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
9809 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009810}
9811
9812/**
9813 * i40e_add_veb - create the VEB in the switch
9814 * @veb: the VEB to be instantiated
9815 * @vsi: the controlling VSI
9816 **/
9817static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
9818{
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009819 struct i40e_pf *pf = veb->pf;
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04009820 bool is_default = veb->pf->cur_promisc;
Kevin Scotte1c51b952013-11-20 10:02:51 +00009821 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009822 int ret;
9823
9824 /* get a VEB from the hardware */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009825 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00009826 veb->enabled_tc, is_default,
9827 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009828 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009829 dev_info(&pf->pdev->dev,
9830 "couldn't add VEB, err %s aq_err %s\n",
9831 i40e_stat_str(&pf->hw, ret),
9832 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009833 return -EPERM;
9834 }
9835
9836 /* get statistics counter */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009837 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009838 &veb->stats_idx, NULL, NULL, NULL);
9839 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009840 dev_info(&pf->pdev->dev,
9841 "couldn't get VEB statistics idx, err %s aq_err %s\n",
9842 i40e_stat_str(&pf->hw, ret),
9843 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009844 return -EPERM;
9845 }
9846 ret = i40e_veb_get_bw_info(veb);
9847 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009848 dev_info(&pf->pdev->dev,
9849 "couldn't get VEB bw info, err %s aq_err %s\n",
9850 i40e_stat_str(&pf->hw, ret),
9851 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
9852 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009853 return -ENOENT;
9854 }
9855
9856 vsi->uplink_seid = veb->seid;
9857 vsi->veb_idx = veb->idx;
9858 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9859
9860 return 0;
9861}
9862
9863/**
9864 * i40e_veb_setup - Set up a VEB
9865 * @pf: board private structure
9866 * @flags: VEB setup flags
9867 * @uplink_seid: the switch element to link to
9868 * @vsi_seid: the initial VSI seid
9869 * @enabled_tc: Enabled TC bit-map
9870 *
9871 * This allocates the sw VEB structure and links it into the switch
9872 * It is possible and legal for this to be a duplicate of an already
9873 * existing VEB. It is also possible for both uplink and vsi seids
9874 * to be zero, in order to create a floating VEB.
9875 *
9876 * Returns pointer to the successfully allocated VEB sw struct on
9877 * success, otherwise returns NULL on failure.
9878 **/
9879struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
9880 u16 uplink_seid, u16 vsi_seid,
9881 u8 enabled_tc)
9882{
9883 struct i40e_veb *veb, *uplink_veb = NULL;
9884 int vsi_idx, veb_idx;
9885 int ret;
9886
9887 /* if one seid is 0, the other must be 0 to create a floating relay */
9888 if ((uplink_seid == 0 || vsi_seid == 0) &&
9889 (uplink_seid + vsi_seid != 0)) {
9890 dev_info(&pf->pdev->dev,
9891 "one, not both seid's are 0: uplink=%d vsi=%d\n",
9892 uplink_seid, vsi_seid);
9893 return NULL;
9894 }
9895
9896 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00009897 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009898 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
9899 break;
Mitch Williams505682c2014-05-20 08:01:37 +00009900 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009901 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
9902 vsi_seid);
9903 return NULL;
9904 }
9905
9906 if (uplink_seid && uplink_seid != pf->mac_seid) {
9907 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
9908 if (pf->veb[veb_idx] &&
9909 pf->veb[veb_idx]->seid == uplink_seid) {
9910 uplink_veb = pf->veb[veb_idx];
9911 break;
9912 }
9913 }
9914 if (!uplink_veb) {
9915 dev_info(&pf->pdev->dev,
9916 "uplink seid %d not found\n", uplink_seid);
9917 return NULL;
9918 }
9919 }
9920
9921 /* get veb sw struct */
9922 veb_idx = i40e_veb_mem_alloc(pf);
9923 if (veb_idx < 0)
9924 goto err_alloc;
9925 veb = pf->veb[veb_idx];
9926 veb->flags = flags;
9927 veb->uplink_seid = uplink_seid;
9928 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
9929 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
9930
9931 /* create the VEB in the switch */
9932 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
9933 if (ret)
9934 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00009935 if (vsi_idx == pf->lan_vsi)
9936 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009937
9938 return veb;
9939
9940err_veb:
9941 i40e_veb_clear(veb);
9942err_alloc:
9943 return NULL;
9944}
9945
9946/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00009947 * i40e_setup_pf_switch_element - set PF vars based on switch type
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009948 * @pf: board private structure
9949 * @ele: element we are building info from
9950 * @num_reported: total number of elements
9951 * @printconfig: should we print the contents
9952 *
9953 * helper function to assist in extracting a few useful SEID values.
9954 **/
9955static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
9956 struct i40e_aqc_switch_config_element_resp *ele,
9957 u16 num_reported, bool printconfig)
9958{
9959 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
9960 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
9961 u8 element_type = ele->element_type;
9962 u16 seid = le16_to_cpu(ele->seid);
9963
9964 if (printconfig)
9965 dev_info(&pf->pdev->dev,
9966 "type=%d seid=%d uplink=%d downlink=%d\n",
9967 element_type, seid, uplink_seid, downlink_seid);
9968
9969 switch (element_type) {
9970 case I40E_SWITCH_ELEMENT_TYPE_MAC:
9971 pf->mac_seid = seid;
9972 break;
9973 case I40E_SWITCH_ELEMENT_TYPE_VEB:
9974 /* Main VEB? */
9975 if (uplink_seid != pf->mac_seid)
9976 break;
9977 if (pf->lan_veb == I40E_NO_VEB) {
9978 int v;
9979
9980 /* find existing or else empty VEB */
9981 for (v = 0; v < I40E_MAX_VEB; v++) {
9982 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
9983 pf->lan_veb = v;
9984 break;
9985 }
9986 }
9987 if (pf->lan_veb == I40E_NO_VEB) {
9988 v = i40e_veb_mem_alloc(pf);
9989 if (v < 0)
9990 break;
9991 pf->lan_veb = v;
9992 }
9993 }
9994
9995 pf->veb[pf->lan_veb]->seid = seid;
9996 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
9997 pf->veb[pf->lan_veb]->pf = pf;
9998 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
9999 break;
10000 case I40E_SWITCH_ELEMENT_TYPE_VSI:
10001 if (num_reported != 1)
10002 break;
10003 /* This is immediately after a reset so we can assume this is
10004 * the PF's VSI
10005 */
10006 pf->mac_seid = uplink_seid;
10007 pf->pf_seid = downlink_seid;
10008 pf->main_vsi_seid = seid;
10009 if (printconfig)
10010 dev_info(&pf->pdev->dev,
10011 "pf_seid=%d main_vsi_seid=%d\n",
10012 pf->pf_seid, pf->main_vsi_seid);
10013 break;
10014 case I40E_SWITCH_ELEMENT_TYPE_PF:
10015 case I40E_SWITCH_ELEMENT_TYPE_VF:
10016 case I40E_SWITCH_ELEMENT_TYPE_EMP:
10017 case I40E_SWITCH_ELEMENT_TYPE_BMC:
10018 case I40E_SWITCH_ELEMENT_TYPE_PE:
10019 case I40E_SWITCH_ELEMENT_TYPE_PA:
10020 /* ignore these for now */
10021 break;
10022 default:
10023 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
10024 element_type, seid);
10025 break;
10026 }
10027}
10028
10029/**
10030 * i40e_fetch_switch_configuration - Get switch config from firmware
10031 * @pf: board private structure
10032 * @printconfig: should we print the contents
10033 *
10034 * Get the current switch configuration from the device and
10035 * extract a few useful SEID values.
10036 **/
10037int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10038{
10039 struct i40e_aqc_get_switch_config_resp *sw_config;
10040 u16 next_seid = 0;
10041 int ret = 0;
10042 u8 *aq_buf;
10043 int i;
10044
10045 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10046 if (!aq_buf)
10047 return -ENOMEM;
10048
10049 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10050 do {
10051 u16 num_reported, num_total;
10052
10053 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10054 I40E_AQ_LARGE_BUF,
10055 &next_seid, NULL);
10056 if (ret) {
10057 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010058 "get switch config failed err %s aq_err %s\n",
10059 i40e_stat_str(&pf->hw, ret),
10060 i40e_aq_str(&pf->hw,
10061 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010062 kfree(aq_buf);
10063 return -ENOENT;
10064 }
10065
10066 num_reported = le16_to_cpu(sw_config->header.num_reported);
10067 num_total = le16_to_cpu(sw_config->header.num_total);
10068
10069 if (printconfig)
10070 dev_info(&pf->pdev->dev,
10071 "header: %d reported %d total\n",
10072 num_reported, num_total);
10073
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010074 for (i = 0; i < num_reported; i++) {
10075 struct i40e_aqc_switch_config_element_resp *ele =
10076 &sw_config->element[i];
10077
10078 i40e_setup_pf_switch_element(pf, ele, num_reported,
10079 printconfig);
10080 }
10081 } while (next_seid != 0);
10082
10083 kfree(aq_buf);
10084 return ret;
10085}
10086
10087/**
10088 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
10089 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010090 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010091 *
10092 * Returns 0 on success, negative value on failure
10093 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010094static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010095{
10096 int ret;
10097
10098 /* find out what's out there already */
10099 ret = i40e_fetch_switch_configuration(pf, false);
10100 if (ret) {
10101 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010102 "couldn't fetch switch config, err %s aq_err %s\n",
10103 i40e_stat_str(&pf->hw, ret),
10104 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010105 return ret;
10106 }
10107 i40e_pf_reset_stats(pf);
10108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010109 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010110 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010111 struct i40e_vsi *vsi = NULL;
10112 u16 uplink_seid;
10113
10114 /* Set up the PF VSI associated with the PF's main VSI
10115 * that is already in the HW switch
10116 */
10117 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
10118 uplink_seid = pf->veb[pf->lan_veb]->seid;
10119 else
10120 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010121 if (pf->lan_vsi == I40E_NO_VSI)
10122 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
10123 else if (reinit)
10124 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010125 if (!vsi) {
10126 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
10127 i40e_fdir_teardown(pf);
10128 return -EAGAIN;
10129 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010130 } else {
10131 /* force a reset of TC and queue layout configurations */
10132 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -040010133
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010134 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10135 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10136 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
10137 }
10138 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
10139
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010140 i40e_fdir_sb_setup(pf);
10141
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010142 /* Setup static PF queue filter control settings */
10143 ret = i40e_setup_pf_filter_control(pf);
10144 if (ret) {
10145 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
10146 ret);
10147 /* Failure here should not stop continuing other steps */
10148 }
10149
10150 /* enable RSS in the HW, even for only one queue, as the stack can use
10151 * the hash
10152 */
10153 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
Helin Zhang043dd652015-10-21 19:56:23 -040010154 i40e_pf_config_rss(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010155
10156 /* fill in link information and enable LSE reporting */
Catherine Sullivan0a862b42015-08-31 19:54:53 -040010157 i40e_update_link_info(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010158 i40e_link_event(pf);
10159
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010160 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010161 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
10162 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010163
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000010164 i40e_ptp_init(pf);
10165
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010166 return ret;
10167}
10168
10169/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010170 * i40e_determine_queue_usage - Work out queue distribution
10171 * @pf: board private structure
10172 **/
10173static void i40e_determine_queue_usage(struct i40e_pf *pf)
10174{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010175 int queues_left;
10176
10177 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -070010178#ifdef I40E_FCOE
10179 pf->num_fcoe_qps = 0;
10180#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010181
10182 /* Find the max queues to be put into basic use. We'll always be
10183 * using TC0, whether or not DCB is running, and TC0 will get the
10184 * big RSS set.
10185 */
10186 queues_left = pf->hw.func_caps.num_tx_qp;
10187
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010188 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +000010189 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010190 /* one qp for PF, no queues for anything else */
10191 queues_left = 0;
Helin Zhangacd65442015-10-26 19:44:28 -040010192 pf->alloc_rss_size = pf->num_lan_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010193
10194 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010195 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010196#ifdef I40E_FCOE
10197 I40E_FLAG_FCOE_ENABLED |
10198#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010199 I40E_FLAG_FD_SB_ENABLED |
10200 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010201 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010202 I40E_FLAG_SRIOV_ENABLED |
10203 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +000010204 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
10205 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +000010206 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010207 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +000010208 /* one qp for PF */
Helin Zhangacd65442015-10-26 19:44:28 -040010209 pf->alloc_rss_size = pf->num_lan_qps = 1;
Frank Zhang9aa7e932014-05-20 08:01:42 +000010210 queues_left -= pf->num_lan_qps;
10211
10212 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010213#ifdef I40E_FCOE
10214 I40E_FLAG_FCOE_ENABLED |
10215#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +000010216 I40E_FLAG_FD_SB_ENABLED |
10217 I40E_FLAG_FD_ATR_ENABLED |
10218 I40E_FLAG_DCB_ENABLED |
10219 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010220 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010221 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010222 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010223 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010224 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010225 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
10226 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +000010227 pf->num_lan_qps = max_t(int, pf->rss_size_max,
10228 num_online_cpus());
10229 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
10230 pf->hw.func_caps.num_tx_qp);
10231
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010232 queues_left -= pf->num_lan_qps;
10233 }
10234
Vasu Dev38e00432014-08-01 13:27:03 -070010235#ifdef I40E_FCOE
10236 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
10237 if (I40E_DEFAULT_FCOE <= queues_left) {
10238 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
10239 } else if (I40E_MINIMUM_FCOE <= queues_left) {
10240 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
10241 } else {
10242 pf->num_fcoe_qps = 0;
10243 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
10244 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
10245 }
10246
10247 queues_left -= pf->num_fcoe_qps;
10248 }
10249
10250#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010251 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
10252 if (queues_left > 1) {
10253 queues_left -= 1; /* save 1 queue for FD */
10254 } else {
10255 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
10256 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
10257 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010258 }
10259
10260 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10261 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010262 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
10263 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010264 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
10265 }
10266
10267 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
10268 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
10269 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
10270 (queues_left / pf->num_vmdq_qps));
10271 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
10272 }
10273
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +000010274 pf->queues_left = queues_left;
Neerav Parikh8279e492015-09-03 17:18:50 -040010275 dev_dbg(&pf->pdev->dev,
10276 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
10277 pf->hw.func_caps.num_tx_qp,
10278 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
Helin Zhangacd65442015-10-26 19:44:28 -040010279 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
10280 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
10281 queues_left);
Vasu Dev38e00432014-08-01 13:27:03 -070010282#ifdef I40E_FCOE
Neerav Parikh8279e492015-09-03 17:18:50 -040010283 dev_dbg(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
Vasu Dev38e00432014-08-01 13:27:03 -070010284#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010285}
10286
10287/**
10288 * i40e_setup_pf_filter_control - Setup PF static filter control
10289 * @pf: PF to be setup
10290 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010291 * i40e_setup_pf_filter_control sets up a PF's initial filter control
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010292 * settings. If PE/FCoE are enabled then it will also set the per PF
10293 * based filter sizes required for them. It also enables Flow director,
10294 * ethertype and macvlan type filter settings for the pf.
10295 *
10296 * Returns 0 on success, negative on failure
10297 **/
10298static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
10299{
10300 struct i40e_filter_control_settings *settings = &pf->filter_settings;
10301
10302 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
10303
10304 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010305 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010306 settings->enable_fdir = true;
10307
10308 /* Ethtype and MACVLAN filters enabled for PF */
10309 settings->enable_ethtype = true;
10310 settings->enable_macvlan = true;
10311
10312 if (i40e_set_filter_control(&pf->hw, settings))
10313 return -ENOENT;
10314
10315 return 0;
10316}
10317
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010318#define INFO_STRING_LEN 255
Shannon Nelson7fd89542015-10-21 19:47:04 -040010319#define REMAIN(__x) (INFO_STRING_LEN - (__x))
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010320static void i40e_print_features(struct i40e_pf *pf)
10321{
10322 struct i40e_hw *hw = &pf->hw;
Joe Perches3b195842015-12-03 04:20:57 -080010323 char *buf;
10324 int i;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010325
Joe Perches3b195842015-12-03 04:20:57 -080010326 buf = kmalloc(INFO_STRING_LEN, GFP_KERNEL);
10327 if (!buf)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010328 return;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010329
Joe Perches3b195842015-12-03 04:20:57 -080010330 i = snprintf(buf, INFO_STRING_LEN, "Features: PF-id[%d]", hw->pf_id);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010331#ifdef CONFIG_PCI_IOV
Joe Perches3b195842015-12-03 04:20:57 -080010332 i += snprintf(&buf[i], REMAIN(i), " VFs: %d", pf->num_req_vfs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010333#endif
Joe Perches3b195842015-12-03 04:20:57 -080010334 i += snprintf(&buf[i], REMAIN(i), " VSIs: %d QP: %d RX: %s",
Shannon Nelson7fd89542015-10-21 19:47:04 -040010335 pf->hw.func_caps.num_vsis,
10336 pf->vsi[pf->lan_vsi]->num_queue_pairs,
10337 pf->flags & I40E_FLAG_RX_PS_ENABLED ? "PS" : "1BUF");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010338
10339 if (pf->flags & I40E_FLAG_RSS_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010340 i += snprintf(&buf[i], REMAIN(i), " RSS");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010341 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010342 i += snprintf(&buf[i], REMAIN(i), " FD_ATR");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010343 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
Joe Perches3b195842015-12-03 04:20:57 -080010344 i += snprintf(&buf[i], REMAIN(i), " FD_SB");
10345 i += snprintf(&buf[i], REMAIN(i), " NTUPLE");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010346 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010347 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Joe Perches3b195842015-12-03 04:20:57 -080010348 i += snprintf(&buf[i], REMAIN(i), " DCB");
Jesse Brandeburgce6fcb32015-08-28 17:55:59 -040010349#if IS_ENABLED(CONFIG_VXLAN)
Joe Perches3b195842015-12-03 04:20:57 -080010350 i += snprintf(&buf[i], REMAIN(i), " VxLAN");
Jesse Brandeburgce6fcb32015-08-28 17:55:59 -040010351#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010352 if (pf->flags & I40E_FLAG_PTP)
Joe Perches3b195842015-12-03 04:20:57 -080010353 i += snprintf(&buf[i], REMAIN(i), " PTP");
Vasu Dev38e00432014-08-01 13:27:03 -070010354#ifdef I40E_FCOE
10355 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010356 i += snprintf(&buf[i], REMAIN(i), " FCOE");
Vasu Dev38e00432014-08-01 13:27:03 -070010357#endif
Shannon Nelson6dec1012015-09-28 14:12:30 -040010358 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010359 i += snprintf(&buf[i], REMAIN(i), " VEB");
Shannon Nelson6dec1012015-09-28 14:12:30 -040010360 else
Joe Perches3b195842015-12-03 04:20:57 -080010361 i += snprintf(&buf[i], REMAIN(i), " VEPA");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010362
Joe Perches3b195842015-12-03 04:20:57 -080010363 dev_info(&pf->pdev->dev, "%s\n", buf);
10364 kfree(buf);
Shannon Nelson7fd89542015-10-21 19:47:04 -040010365 WARN_ON(i > INFO_STRING_LEN);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010366}
10367
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010368/**
10369 * i40e_probe - Device initialization routine
10370 * @pdev: PCI device information struct
10371 * @ent: entry in i40e_pci_tbl
10372 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010373 * i40e_probe initializes a PF identified by a pci_dev structure.
10374 * The OS initialization, configuring of the PF private structure,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010375 * and a hardware reset occur.
10376 *
10377 * Returns 0 on success, negative on failure
10378 **/
10379static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10380{
Catherine Sullivane8278452015-02-06 08:52:08 +000010381 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010382 struct i40e_pf *pf;
10383 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010384 static u16 pfs_found;
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010385 u16 wol_nvm_bits;
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010386 u16 link_status;
Jean Sacren6f66a482015-09-19 05:08:45 -060010387 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010388 u32 len;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010389 u32 val;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010390 u32 i;
Helin Zhang58fc3262015-10-01 14:37:38 -040010391 u8 set_fc_aq_fail;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010392
10393 err = pci_enable_device_mem(pdev);
10394 if (err)
10395 return err;
10396
10397 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +000010398 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +000010399 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +000010400 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
10401 if (err) {
10402 dev_err(&pdev->dev,
10403 "DMA configuration failed: 0x%x\n", err);
10404 goto err_dma;
10405 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010406 }
10407
10408 /* set up pci connections */
10409 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
10410 IORESOURCE_MEM), i40e_driver_name);
10411 if (err) {
10412 dev_info(&pdev->dev,
10413 "pci_request_selected_regions failed %d\n", err);
10414 goto err_pci_reg;
10415 }
10416
10417 pci_enable_pcie_error_reporting(pdev);
10418 pci_set_master(pdev);
10419
10420 /* Now that we have a PCI connection, we need to do the
10421 * low level device setup. This is primarily setting up
10422 * the Admin Queue structures and then querying for the
10423 * device's current profile information.
10424 */
10425 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
10426 if (!pf) {
10427 err = -ENOMEM;
10428 goto err_pf_alloc;
10429 }
10430 pf->next_vsi = 0;
10431 pf->pdev = pdev;
10432 set_bit(__I40E_DOWN, &pf->state);
10433
10434 hw = &pf->hw;
10435 hw->back = pf;
Anjali Singhai232f4702015-02-26 16:15:39 +000010436
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010437 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
10438 I40E_MAX_CSR_SPACE);
Anjali Singhai232f4702015-02-26 16:15:39 +000010439
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010440 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010441 if (!hw->hw_addr) {
10442 err = -EIO;
10443 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
10444 (unsigned int)pci_resource_start(pdev, 0),
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010445 pf->ioremap_len, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010446 goto err_ioremap;
10447 }
10448 hw->vendor_id = pdev->vendor;
10449 hw->device_id = pdev->device;
10450 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
10451 hw->subsystem_vendor_id = pdev->subsystem_vendor;
10452 hw->subsystem_device_id = pdev->subsystem_device;
10453 hw->bus.device = PCI_SLOT(pdev->devfn);
10454 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010455 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010456
Shannon Nelson5b5faa42014-10-17 03:14:51 +000010457 if (debug != -1) {
10458 pf->msg_enable = pf->hw.debug_mask;
10459 pf->msg_enable = debug;
10460 }
10461
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +000010462 /* do a special CORER for clearing PXE mode once at init */
10463 if (hw->revision_id == 0 &&
10464 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
10465 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
10466 i40e_flush(hw);
10467 msleep(200);
10468 pf->corer_count++;
10469
10470 i40e_clear_pxe_mode(hw);
10471 }
10472
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010473 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +000010474 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010475 err = i40e_pf_reset(hw);
10476 if (err) {
10477 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
10478 goto err_pf_reset;
10479 }
10480 pf->pfr_count++;
10481
10482 hw->aq.num_arq_entries = I40E_AQ_LEN;
10483 hw->aq.num_asq_entries = I40E_AQ_LEN;
10484 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10485 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10486 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010487
Carolyn Wybornyb294ac72014-12-11 07:06:39 +000010488 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010489 "%s-%s:misc",
10490 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010491
10492 err = i40e_init_shared_code(hw);
10493 if (err) {
Anjali Singhai Jainb2a75c52015-04-27 14:57:20 -040010494 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
10495 err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010496 goto err_pf_reset;
10497 }
10498
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010499 /* set up a default setting for link flow control */
10500 pf->hw.fc.requested_mode = I40E_FC_NONE;
10501
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010502 err = i40e_init_adminq(hw);
Carolyn Wyborny2b2426a762015-10-26 19:44:35 -040010503 if (err) {
10504 if (err == I40E_ERR_FIRMWARE_API_VERSION)
10505 dev_info(&pdev->dev,
10506 "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");
10507 else
10508 dev_info(&pdev->dev,
10509 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
10510
10511 goto err_pf_reset;
10512 }
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010513
Shannon Nelson6dec1012015-09-28 14:12:30 -040010514 /* provide nvm, fw, api versions */
10515 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
10516 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
10517 hw->aq.api_maj_ver, hw->aq.api_min_ver,
10518 i40e_nvm_version_str(hw));
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010519
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010520 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
10521 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +000010522 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010523 "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");
10524 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
10525 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +000010526 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010527 "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 +000010528
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010529 i40e_verify_eeprom(pf);
10530
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +000010531 /* Rev 0 hardware was never productized */
10532 if (hw->revision_id < 1)
10533 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");
10534
Shannon Nelson6ff4ef82013-12-21 05:44:49 +000010535 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010536 err = i40e_get_capabilities(pf);
10537 if (err)
10538 goto err_adminq_setup;
10539
10540 err = i40e_sw_init(pf);
10541 if (err) {
10542 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
10543 goto err_sw_init;
10544 }
10545
10546 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
10547 hw->func_caps.num_rx_qp,
10548 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
10549 if (err) {
10550 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
10551 goto err_init_lan_hmc;
10552 }
10553
10554 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
10555 if (err) {
10556 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
10557 err = -ENOENT;
10558 goto err_configure_lan_hmc;
10559 }
10560
Neerav Parikhb686ece2014-12-14 01:55:11 +000010561 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
10562 * Ignore error return codes because if it was already disabled via
10563 * hardware settings this will fail
10564 */
10565 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
10566 (pf->hw.aq.fw_maj_ver < 4)) {
10567 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
10568 i40e_aq_stop_lldp(hw, true, NULL);
10569 }
10570
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010571 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +000010572 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010573 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
10574 err = -EIO;
10575 goto err_mac_addr;
10576 }
10577 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +000010578 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +000010579 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
10580 if (is_valid_ether_addr(hw->mac.port_addr))
10581 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -070010582#ifdef I40E_FCOE
10583 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
10584 if (err)
10585 dev_info(&pdev->dev,
10586 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
10587 if (!is_valid_ether_addr(hw->mac.san_addr)) {
10588 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
10589 hw->mac.san_addr);
10590 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
10591 }
10592 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
10593#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010594
10595 pci_set_drvdata(pdev, pf);
10596 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010597#ifdef CONFIG_I40E_DCB
10598 err = i40e_init_pf_dcb(pf);
10599 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +000010600 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010601 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +000010602 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010603 }
10604#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010605
10606 /* set up periodic task facility */
10607 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
10608 pf->service_timer_period = HZ;
10609
10610 INIT_WORK(&pf->service_task, i40e_service_task);
10611 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
10612 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010613
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010614 /* NVM bit on means WoL disabled for the port */
10615 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -080010616 if (BIT (hw->port) & wol_nvm_bits || hw->partition_id != 1)
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010617 pf->wol_en = false;
10618 else
10619 pf->wol_en = true;
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010620 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
10621
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010622 /* set up the main switch operations */
10623 i40e_determine_queue_usage(pf);
Jesse Brandeburgc11472802015-04-07 19:45:39 -040010624 err = i40e_init_interrupt_scheme(pf);
10625 if (err)
10626 goto err_switch_setup;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010627
Mitch Williams505682c2014-05-20 08:01:37 +000010628 /* The number of VSIs reported by the FW is the minimum guaranteed
10629 * to us; HW supports far more and we share the remaining pool with
10630 * the other PFs. We allocate space for more than the guarantee with
10631 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010632 */
Mitch Williams505682c2014-05-20 08:01:37 +000010633 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
10634 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
10635 else
10636 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
10637
10638 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
10639 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010640 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +000010641 if (!pf->vsi) {
10642 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010643 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +000010644 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010645
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040010646#ifdef CONFIG_PCI_IOV
10647 /* prep for VF support */
10648 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10649 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
10650 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
10651 if (pci_num_vf(pdev))
10652 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
10653 }
10654#endif
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010655 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010656 if (err) {
10657 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
10658 goto err_vsis;
10659 }
Helin Zhang58fc3262015-10-01 14:37:38 -040010660
10661 /* Make sure flow control is set according to current settings */
10662 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
10663 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
10664 dev_dbg(&pf->pdev->dev,
10665 "Set fc with err %s aq_err %s on get_phy_cap\n",
10666 i40e_stat_str(hw, err),
10667 i40e_aq_str(hw, hw->aq.asq_last_status));
10668 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
10669 dev_dbg(&pf->pdev->dev,
10670 "Set fc with err %s aq_err %s on set_phy_config\n",
10671 i40e_stat_str(hw, err),
10672 i40e_aq_str(hw, hw->aq.asq_last_status));
10673 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
10674 dev_dbg(&pf->pdev->dev,
10675 "Set fc with err %s aq_err %s on get_link_info\n",
10676 i40e_stat_str(hw, err),
10677 i40e_aq_str(hw, hw->aq.asq_last_status));
10678
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010679 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +000010680 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010681 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
10682 i40e_vsi_open(pf->vsi[i]);
10683 break;
10684 }
10685 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010686
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010687 /* driver is only interested in link up/down and module qualification
10688 * reports from firmware
10689 */
10690 err = i40e_aq_set_phy_int_mask(&pf->hw,
10691 I40E_AQ_EVENT_LINK_UPDOWN |
10692 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
10693 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010694 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
10695 i40e_stat_str(&pf->hw, err),
10696 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010697
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010698 /* Reconfigure hardware for allowing smaller MSS in the case
10699 * of TSO, so that we avoid the MDD being fired and causing
10700 * a reset in the case of small MSS+TSO.
10701 */
10702 val = rd32(hw, I40E_REG_MSS);
10703 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
10704 val &= ~I40E_REG_MSS_MIN_MASK;
10705 val |= I40E_64BYTE_MSS;
10706 wr32(hw, I40E_REG_MSS, val);
10707 }
10708
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +000010709 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
10710 (pf->hw.aq.fw_maj_ver < 4)) {
10711 msleep(75);
10712 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
10713 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010714 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
10715 i40e_stat_str(&pf->hw, err),
10716 i40e_aq_str(&pf->hw,
10717 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +000010718 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010719 /* The main driver is (mostly) up and happy. We need to set this state
10720 * before setting up the misc vector or we get a race and the vector
10721 * ends up disabled forever.
10722 */
10723 clear_bit(__I40E_DOWN, &pf->state);
10724
10725 /* In case of MSIX we are going to setup the misc vector right here
10726 * to handle admin queue events etc. In case of legacy and MSI
10727 * the misc functionality and queue processing is combined in
10728 * the same vector and that gets setup at open.
10729 */
10730 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
10731 err = i40e_setup_misc_vector(pf);
10732 if (err) {
10733 dev_info(&pdev->dev,
10734 "setup of misc vector failed: %d\n", err);
10735 goto err_vsis;
10736 }
10737 }
10738
Greg Rosedf805f62014-04-04 04:43:16 +000010739#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010740 /* prep for VF support */
10741 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010742 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
10743 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010744 u32 val;
10745
10746 /* disable link interrupts for VFs */
10747 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
10748 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
10749 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
10750 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -080010751
10752 if (pci_num_vf(pdev)) {
10753 dev_info(&pdev->dev,
10754 "Active VFs found, allocating resources.\n");
10755 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
10756 if (err)
10757 dev_info(&pdev->dev,
10758 "Error %d allocating resources for existing VFs\n",
10759 err);
10760 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010761 }
Greg Rosedf805f62014-04-04 04:43:16 +000010762#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010763
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010764 pfs_found++;
10765
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010766 i40e_dbg_pf_init(pf);
10767
10768 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +000010769 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010770
10771 /* since everything's happy, start the service_task timer */
10772 mod_timer(&pf->service_timer,
10773 round_jiffies(jiffies + pf->service_timer_period));
10774
Vasu Dev38e00432014-08-01 13:27:03 -070010775#ifdef I40E_FCOE
10776 /* create FCoE interface */
10777 i40e_fcoe_vsi_setup(pf);
10778
10779#endif
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010780#define PCI_SPEED_SIZE 8
10781#define PCI_WIDTH_SIZE 8
10782 /* Devices on the IOSF bus do not have this information
10783 * and will report PCI Gen 1 x 1 by default so don't bother
10784 * checking them.
10785 */
10786 if (!(pf->flags & I40E_FLAG_NO_PCI_LINK_CHECK)) {
10787 char speed[PCI_SPEED_SIZE] = "Unknown";
10788 char width[PCI_WIDTH_SIZE] = "Unknown";
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010789
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010790 /* Get the negotiated link width and speed from PCI config
10791 * space
10792 */
10793 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
10794 &link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010795
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010796 i40e_set_pci_config_data(hw, link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010797
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010798 switch (hw->bus.speed) {
10799 case i40e_bus_speed_8000:
10800 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
10801 case i40e_bus_speed_5000:
10802 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
10803 case i40e_bus_speed_2500:
10804 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
10805 default:
10806 break;
10807 }
10808 switch (hw->bus.width) {
10809 case i40e_bus_width_pcie_x8:
10810 strncpy(width, "8", PCI_WIDTH_SIZE); break;
10811 case i40e_bus_width_pcie_x4:
10812 strncpy(width, "4", PCI_WIDTH_SIZE); break;
10813 case i40e_bus_width_pcie_x2:
10814 strncpy(width, "2", PCI_WIDTH_SIZE); break;
10815 case i40e_bus_width_pcie_x1:
10816 strncpy(width, "1", PCI_WIDTH_SIZE); break;
10817 default:
10818 break;
10819 }
10820
10821 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
10822 speed, width);
10823
10824 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
10825 hw->bus.speed < i40e_bus_speed_8000) {
10826 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
10827 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
10828 }
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010829 }
10830
Catherine Sullivane8278452015-02-06 08:52:08 +000010831 /* get the requested speeds from the fw */
10832 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
10833 if (err)
Neerav Parikh8279e492015-09-03 17:18:50 -040010834 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
10835 i40e_stat_str(&pf->hw, err),
10836 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivane8278452015-02-06 08:52:08 +000010837 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
10838
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040010839 /* get the supported phy types from the fw */
10840 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
10841 if (err)
10842 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
10843 i40e_stat_str(&pf->hw, err),
10844 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10845 pf->hw.phy.phy_types = le32_to_cpu(abilities.phy_type);
10846
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -040010847 /* Add a filter to drop all Flow control frames from any VSI from being
10848 * transmitted. By doing so we stop a malicious VF from sending out
10849 * PAUSE or PFC frames and potentially controlling traffic for other
10850 * PF/VF VSIs.
10851 * The FW can still send Flow control frames if enabled.
10852 */
10853 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
10854 pf->main_vsi_seid);
10855
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010856 /* print a string summarizing features */
10857 i40e_print_features(pf);
10858
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010859 return 0;
10860
10861 /* Unwind what we've done if something failed in the setup */
10862err_vsis:
10863 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010864 i40e_clear_interrupt_scheme(pf);
10865 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +000010866err_switch_setup:
10867 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010868 del_timer_sync(&pf->service_timer);
10869err_mac_addr:
10870err_configure_lan_hmc:
10871 (void)i40e_shutdown_lan_hmc(hw);
10872err_init_lan_hmc:
10873 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010874err_sw_init:
10875err_adminq_setup:
10876 (void)i40e_shutdown_adminq(hw);
10877err_pf_reset:
10878 iounmap(hw->hw_addr);
10879err_ioremap:
10880 kfree(pf);
10881err_pf_alloc:
10882 pci_disable_pcie_error_reporting(pdev);
10883 pci_release_selected_regions(pdev,
10884 pci_select_bars(pdev, IORESOURCE_MEM));
10885err_pci_reg:
10886err_dma:
10887 pci_disable_device(pdev);
10888 return err;
10889}
10890
10891/**
10892 * i40e_remove - Device removal routine
10893 * @pdev: PCI device information struct
10894 *
10895 * i40e_remove is called by the PCI subsystem to alert the driver
10896 * that is should release a PCI device. This could be caused by a
10897 * Hot-Plug event, or because the driver is going to be removed from
10898 * memory.
10899 **/
10900static void i40e_remove(struct pci_dev *pdev)
10901{
10902 struct i40e_pf *pf = pci_get_drvdata(pdev);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040010903 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010904 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010905 int i;
10906
10907 i40e_dbg_pf_exit(pf);
10908
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000010909 i40e_ptp_stop(pf);
10910
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040010911 /* Disable RSS in hw */
10912 wr32(hw, I40E_PFQF_HENA(0), 0);
10913 wr32(hw, I40E_PFQF_HENA(1), 0);
10914
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010915 /* no more scheduling of any task */
10916 set_bit(__I40E_DOWN, &pf->state);
10917 del_timer_sync(&pf->service_timer);
10918 cancel_work_sync(&pf->service_task);
Mitch A Williams33c62b32015-02-21 06:44:51 +000010919 i40e_fdir_teardown(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010920
Mitch Williamseb2d80b2014-02-13 03:48:48 -080010921 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
10922 i40e_free_vfs(pf);
10923 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
10924 }
10925
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010926 i40e_fdir_teardown(pf);
10927
10928 /* If there is a switch structure or any orphans, remove them.
10929 * This will leave only the PF's VSI remaining.
10930 */
10931 for (i = 0; i < I40E_MAX_VEB; i++) {
10932 if (!pf->veb[i])
10933 continue;
10934
10935 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
10936 pf->veb[i]->uplink_seid == 0)
10937 i40e_switch_branch_release(pf->veb[i]);
10938 }
10939
10940 /* Now we can shutdown the PF's VSI, just before we kill
10941 * adminq and hmc.
10942 */
10943 if (pf->vsi[pf->lan_vsi])
10944 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
10945
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010946 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +000010947 if (pf->hw.hmc.hmc_obj) {
10948 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
10949 if (ret_code)
10950 dev_warn(&pdev->dev,
10951 "Failed to destroy the HMC resources: %d\n",
10952 ret_code);
10953 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010954
10955 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010956 ret_code = i40e_shutdown_adminq(&pf->hw);
10957 if (ret_code)
10958 dev_warn(&pdev->dev,
10959 "Failed to destroy the Admin Queue resources: %d\n",
10960 ret_code);
10961
10962 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
10963 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +000010964 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010965 if (pf->vsi[i]) {
10966 i40e_vsi_clear_rings(pf->vsi[i]);
10967 i40e_vsi_clear(pf->vsi[i]);
10968 pf->vsi[i] = NULL;
10969 }
10970 }
10971
10972 for (i = 0; i < I40E_MAX_VEB; i++) {
10973 kfree(pf->veb[i]);
10974 pf->veb[i] = NULL;
10975 }
10976
10977 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010978 kfree(pf->vsi);
10979
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010980 iounmap(pf->hw.hw_addr);
10981 kfree(pf);
10982 pci_release_selected_regions(pdev,
10983 pci_select_bars(pdev, IORESOURCE_MEM));
10984
10985 pci_disable_pcie_error_reporting(pdev);
10986 pci_disable_device(pdev);
10987}
10988
10989/**
10990 * i40e_pci_error_detected - warning that something funky happened in PCI land
10991 * @pdev: PCI device information struct
10992 *
10993 * Called to warn that something happened and the error handling steps
10994 * are in progress. Allows the driver to quiesce things, be ready for
10995 * remediation.
10996 **/
10997static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
10998 enum pci_channel_state error)
10999{
11000 struct i40e_pf *pf = pci_get_drvdata(pdev);
11001
11002 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
11003
11004 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011005 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
11006 rtnl_lock();
11007 i40e_prep_for_reset(pf);
11008 rtnl_unlock();
11009 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011010
11011 /* Request a slot reset */
11012 return PCI_ERS_RESULT_NEED_RESET;
11013}
11014
11015/**
11016 * i40e_pci_error_slot_reset - a PCI slot reset just happened
11017 * @pdev: PCI device information struct
11018 *
11019 * Called to find if the driver can work with the device now that
11020 * the pci slot has been reset. If a basic connection seems good
11021 * (registers are readable and have sane content) then return a
11022 * happy little PCI_ERS_RESULT_xxx.
11023 **/
11024static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
11025{
11026 struct i40e_pf *pf = pci_get_drvdata(pdev);
11027 pci_ers_result_t result;
11028 int err;
11029 u32 reg;
11030
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011031 dev_dbg(&pdev->dev, "%s\n", __func__);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011032 if (pci_enable_device_mem(pdev)) {
11033 dev_info(&pdev->dev,
11034 "Cannot re-enable PCI device after reset.\n");
11035 result = PCI_ERS_RESULT_DISCONNECT;
11036 } else {
11037 pci_set_master(pdev);
11038 pci_restore_state(pdev);
11039 pci_save_state(pdev);
11040 pci_wake_from_d3(pdev, false);
11041
11042 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
11043 if (reg == 0)
11044 result = PCI_ERS_RESULT_RECOVERED;
11045 else
11046 result = PCI_ERS_RESULT_DISCONNECT;
11047 }
11048
11049 err = pci_cleanup_aer_uncorrect_error_status(pdev);
11050 if (err) {
11051 dev_info(&pdev->dev,
11052 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
11053 err);
11054 /* non-fatal, continue */
11055 }
11056
11057 return result;
11058}
11059
11060/**
11061 * i40e_pci_error_resume - restart operations after PCI error recovery
11062 * @pdev: PCI device information struct
11063 *
11064 * Called to allow the driver to bring things back up after PCI error
11065 * and/or reset recovery has finished.
11066 **/
11067static void i40e_pci_error_resume(struct pci_dev *pdev)
11068{
11069 struct i40e_pf *pf = pci_get_drvdata(pdev);
11070
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011071 dev_dbg(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011072 if (test_bit(__I40E_SUSPENDED, &pf->state))
11073 return;
11074
11075 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011076 i40e_handle_reset_warning(pf);
Vasily Averin4c4935a2015-07-08 15:04:26 +030011077 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011078}
11079
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011080/**
11081 * i40e_shutdown - PCI callback for shutting down
11082 * @pdev: PCI device information struct
11083 **/
11084static void i40e_shutdown(struct pci_dev *pdev)
11085{
11086 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011087 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011088
11089 set_bit(__I40E_SUSPENDED, &pf->state);
11090 set_bit(__I40E_DOWN, &pf->state);
11091 rtnl_lock();
11092 i40e_prep_for_reset(pf);
11093 rtnl_unlock();
11094
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011095 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11096 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11097
Catherine Sullivan02b42492015-07-10 19:35:59 -040011098 del_timer_sync(&pf->service_timer);
11099 cancel_work_sync(&pf->service_task);
11100 i40e_fdir_teardown(pf);
11101
11102 rtnl_lock();
11103 i40e_prep_for_reset(pf);
11104 rtnl_unlock();
11105
11106 wr32(hw, I40E_PFPM_APM,
11107 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11108 wr32(hw, I40E_PFPM_WUFC,
11109 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11110
Shannon Nelsone1477582015-02-21 06:44:33 +000011111 i40e_clear_interrupt_scheme(pf);
11112
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011113 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011114 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011115 pci_set_power_state(pdev, PCI_D3hot);
11116 }
11117}
11118
11119#ifdef CONFIG_PM
11120/**
11121 * i40e_suspend - PCI callback for moving to D3
11122 * @pdev: PCI device information struct
11123 **/
11124static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
11125{
11126 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011127 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011128
11129 set_bit(__I40E_SUSPENDED, &pf->state);
11130 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams3932dbf2015-03-31 00:45:04 -070011131
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011132 rtnl_lock();
11133 i40e_prep_for_reset(pf);
11134 rtnl_unlock();
11135
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011136 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11137 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11138
11139 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011140 pci_set_power_state(pdev, PCI_D3hot);
11141
11142 return 0;
11143}
11144
11145/**
11146 * i40e_resume - PCI callback for waking up from D3
11147 * @pdev: PCI device information struct
11148 **/
11149static int i40e_resume(struct pci_dev *pdev)
11150{
11151 struct i40e_pf *pf = pci_get_drvdata(pdev);
11152 u32 err;
11153
11154 pci_set_power_state(pdev, PCI_D0);
11155 pci_restore_state(pdev);
11156 /* pci_restore_state() clears dev->state_saves, so
11157 * call pci_save_state() again to restore it.
11158 */
11159 pci_save_state(pdev);
11160
11161 err = pci_enable_device_mem(pdev);
11162 if (err) {
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011163 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011164 return err;
11165 }
11166 pci_set_master(pdev);
11167
11168 /* no wakeup events while running */
11169 pci_wake_from_d3(pdev, false);
11170
11171 /* handling the reset will rebuild the device state */
11172 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
11173 clear_bit(__I40E_DOWN, &pf->state);
11174 rtnl_lock();
11175 i40e_reset_and_rebuild(pf, false);
11176 rtnl_unlock();
11177 }
11178
11179 return 0;
11180}
11181
11182#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011183static const struct pci_error_handlers i40e_err_handler = {
11184 .error_detected = i40e_pci_error_detected,
11185 .slot_reset = i40e_pci_error_slot_reset,
11186 .resume = i40e_pci_error_resume,
11187};
11188
11189static struct pci_driver i40e_driver = {
11190 .name = i40e_driver_name,
11191 .id_table = i40e_pci_tbl,
11192 .probe = i40e_probe,
11193 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011194#ifdef CONFIG_PM
11195 .suspend = i40e_suspend,
11196 .resume = i40e_resume,
11197#endif
11198 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011199 .err_handler = &i40e_err_handler,
11200 .sriov_configure = i40e_pci_sriov_configure,
11201};
11202
11203/**
11204 * i40e_init_module - Driver registration routine
11205 *
11206 * i40e_init_module is the first routine called when the driver is
11207 * loaded. All it does is register with the PCI subsystem.
11208 **/
11209static int __init i40e_init_module(void)
11210{
11211 pr_info("%s: %s - version %s\n", i40e_driver_name,
11212 i40e_driver_string, i40e_driver_version_str);
11213 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000011214
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011215 i40e_dbg_init();
11216 return pci_register_driver(&i40e_driver);
11217}
11218module_init(i40e_init_module);
11219
11220/**
11221 * i40e_exit_module - Driver exit cleanup routine
11222 *
11223 * i40e_exit_module is called just before the driver is removed
11224 * from memory.
11225 **/
11226static void __exit i40e_exit_module(void)
11227{
11228 pci_unregister_driver(&i40e_driver);
11229 i40e_dbg_exit();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011230}
11231module_exit(i40e_exit_module);