blob: 849fec7fa7dbb66c5d88ea2cfa847239cfcc7217 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Catherine Sullivane8278452015-02-06 08:52:08 +00004 * Copyright(c) 2013 - 2015 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27/* Local includes */
28#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000029#include "i40e_diag.h"
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000030#ifdef CONFIG_I40E_VXLAN
31#include <net/vxlan.h>
32#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000033
34const char i40e_driver_name[] = "i40e";
35static const char i40e_driver_string[] =
36 "Intel(R) Ethernet Connection XL710 Network Driver";
37
38#define DRV_KERN "-k"
39
Catherine Sullivane8e724d2014-07-10 07:58:26 +000040#define DRV_VERSION_MAJOR 1
Catherine Sullivana36fdd8e2014-11-11 20:07:41 +000041#define DRV_VERSION_MINOR 2
Sravanthi Tangeda5b8eb172015-02-06 08:52:21 +000042#define DRV_VERSION_BUILD 9
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);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080058static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080059static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000060
61/* i40e_pci_tbl - PCI Device ID Table
62 *
63 * Last entry must be all 0s
64 *
65 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
66 * Class, Class Mask, private data (not used) }
67 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020068static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080069 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080070 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000077 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000078 /* required last entry */
79 {0, }
80};
81MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
82
83#define I40E_MAX_VF_COUNT 128
84static int debug = -1;
85module_param(debug, int, 0);
86MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
87
88MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
89MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
90MODULE_LICENSE("GPL");
91MODULE_VERSION(DRV_VERSION);
92
93/**
94 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
95 * @hw: pointer to the HW structure
96 * @mem: ptr to mem struct to fill out
97 * @size: size of memory requested
98 * @alignment: what to align the allocation to
99 **/
100int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
101 u64 size, u32 alignment)
102{
103 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
104
105 mem->size = ALIGN(size, alignment);
106 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
107 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000108 if (!mem->va)
109 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000110
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000111 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000112}
113
114/**
115 * i40e_free_dma_mem_d - OS specific memory free for shared code
116 * @hw: pointer to the HW structure
117 * @mem: ptr to mem struct to free
118 **/
119int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
120{
121 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
122
123 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
124 mem->va = NULL;
125 mem->pa = 0;
126 mem->size = 0;
127
128 return 0;
129}
130
131/**
132 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
133 * @hw: pointer to the HW structure
134 * @mem: ptr to mem struct to fill out
135 * @size: size of memory requested
136 **/
137int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
138 u32 size)
139{
140 mem->size = size;
141 mem->va = kzalloc(size, GFP_KERNEL);
142
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000143 if (!mem->va)
144 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000145
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000146 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000147}
148
149/**
150 * i40e_free_virt_mem_d - OS specific memory free for shared code
151 * @hw: pointer to the HW structure
152 * @mem: ptr to mem struct to free
153 **/
154int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
155{
156 /* it's ok to kfree a NULL pointer */
157 kfree(mem->va);
158 mem->va = NULL;
159 mem->size = 0;
160
161 return 0;
162}
163
164/**
165 * i40e_get_lump - find a lump of free generic resource
166 * @pf: board private structure
167 * @pile: the pile of resource to search
168 * @needed: the number of items needed
169 * @id: an owner id to stick on the items assigned
170 *
171 * Returns the base item index of the lump, or negative for error
172 *
173 * The search_hint trick and lack of advanced fit-finding only work
174 * because we're highly likely to have all the same size lump requests.
175 * Linear search time and any fragmentation should be minimal.
176 **/
177static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
178 u16 needed, u16 id)
179{
180 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000181 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000182
183 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
184 dev_info(&pf->pdev->dev,
185 "param err: pile=%p needed=%d id=0x%04x\n",
186 pile, needed, id);
187 return -EINVAL;
188 }
189
190 /* start the linear search with an imperfect hint */
191 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000192 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000193 /* skip already allocated entries */
194 if (pile->list[i] & I40E_PILE_VALID_BIT) {
195 i++;
196 continue;
197 }
198
199 /* do we have enough in this lump? */
200 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
201 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
202 break;
203 }
204
205 if (j == needed) {
206 /* there was enough, so assign it to the requestor */
207 for (j = 0; j < needed; j++)
208 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
209 ret = i;
210 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000211 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000212 } else {
213 /* not enough, so skip over it and continue looking */
214 i += j;
215 }
216 }
217
218 return ret;
219}
220
221/**
222 * i40e_put_lump - return a lump of generic resource
223 * @pile: the pile of resource to search
224 * @index: the base item index
225 * @id: the owner id of the items assigned
226 *
227 * Returns the count of items in the lump
228 **/
229static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
230{
231 int valid_id = (id | I40E_PILE_VALID_BIT);
232 int count = 0;
233 int i;
234
235 if (!pile || index >= pile->num_entries)
236 return -EINVAL;
237
238 for (i = index;
239 i < pile->num_entries && pile->list[i] == valid_id;
240 i++) {
241 pile->list[i] = 0;
242 count++;
243 }
244
245 if (count && index < pile->search_hint)
246 pile->search_hint = index;
247
248 return count;
249}
250
251/**
252 * i40e_service_event_schedule - Schedule the service task to wake up
253 * @pf: board private structure
254 *
255 * If not already scheduled, this puts the task into the work queue
256 **/
257static void i40e_service_event_schedule(struct i40e_pf *pf)
258{
259 if (!test_bit(__I40E_DOWN, &pf->state) &&
260 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
261 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
262 schedule_work(&pf->service_task);
263}
264
265/**
266 * i40e_tx_timeout - Respond to a Tx Hang
267 * @netdev: network interface device structure
268 *
269 * If any port has noticed a Tx timeout, it is likely that the whole
270 * device is munged, not just the one netdev port, so go for the full
271 * reset.
272 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700273#ifdef I40E_FCOE
274void i40e_tx_timeout(struct net_device *netdev)
275#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000276static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700277#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000278{
279 struct i40e_netdev_priv *np = netdev_priv(netdev);
280 struct i40e_vsi *vsi = np->vsi;
281 struct i40e_pf *pf = vsi->back;
282
283 pf->tx_timeout_count++;
284
285 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Anjali Singhai Jain327fe042014-06-04 01:23:26 +0000286 pf->tx_timeout_recovery_level = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000287 pf->tx_timeout_last_recovery = jiffies;
288 netdev_info(netdev, "tx_timeout recovery level %d\n",
289 pf->tx_timeout_recovery_level);
290
291 switch (pf->tx_timeout_recovery_level) {
292 case 0:
293 /* disable and re-enable queues for the VSI */
294 if (in_interrupt()) {
295 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
296 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
297 } else {
298 i40e_vsi_reinit_locked(vsi);
299 }
300 break;
301 case 1:
302 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
303 break;
304 case 2:
305 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
306 break;
307 case 3:
308 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
309 break;
310 default:
311 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Neerav Parikhb5d06f02014-06-03 23:50:17 +0000312 set_bit(__I40E_DOWN_REQUESTED, &pf->state);
313 set_bit(__I40E_DOWN_REQUESTED, &vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000314 break;
315 }
316 i40e_service_event_schedule(pf);
317 pf->tx_timeout_recovery_level++;
318}
319
320/**
321 * i40e_release_rx_desc - Store the new tail and head values
322 * @rx_ring: ring to bump
323 * @val: new head index
324 **/
325static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
326{
327 rx_ring->next_to_use = val;
328
329 /* Force memory writes to complete before letting h/w
330 * know there are new descriptors to fetch. (Only
331 * applicable for weak-ordered memory model archs,
332 * such as IA-64).
333 */
334 wmb();
335 writel(val, rx_ring->tail);
336}
337
338/**
339 * i40e_get_vsi_stats_struct - Get System Network Statistics
340 * @vsi: the VSI we care about
341 *
342 * Returns the address of the device statistics structure.
343 * The statistics are actually updated from the service task.
344 **/
345struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
346{
347 return &vsi->net_stats;
348}
349
350/**
351 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
352 * @netdev: network interface device structure
353 *
354 * Returns the address of the device statistics structure.
355 * The statistics are actually updated from the service task.
356 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700357#ifdef I40E_FCOE
358struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
359 struct net_device *netdev,
360 struct rtnl_link_stats64 *stats)
361#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000362static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
363 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000364 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700365#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000366{
367 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000368 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000369 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000370 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
371 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000372
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000373 if (test_bit(__I40E_DOWN, &vsi->state))
374 return stats;
375
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800376 if (!vsi->tx_rings)
377 return stats;
378
Alexander Duyck980e9b12013-09-28 06:01:03 +0000379 rcu_read_lock();
380 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000381 u64 bytes, packets;
382 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000383
Alexander Duyck980e9b12013-09-28 06:01:03 +0000384 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
385 if (!tx_ring)
386 continue;
387
388 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700389 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000390 packets = tx_ring->stats.packets;
391 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700392 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000393
394 stats->tx_packets += packets;
395 stats->tx_bytes += bytes;
396 rx_ring = &tx_ring[1];
397
398 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700399 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000400 packets = rx_ring->stats.packets;
401 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700402 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000403
404 stats->rx_packets += packets;
405 stats->rx_bytes += bytes;
406 }
407 rcu_read_unlock();
408
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000409 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000410 stats->multicast = vsi_stats->multicast;
411 stats->tx_errors = vsi_stats->tx_errors;
412 stats->tx_dropped = vsi_stats->tx_dropped;
413 stats->rx_errors = vsi_stats->rx_errors;
414 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
415 stats->rx_length_errors = vsi_stats->rx_length_errors;
416
417 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000418}
419
420/**
421 * i40e_vsi_reset_stats - Resets all stats of the given vsi
422 * @vsi: the VSI to have its stats reset
423 **/
424void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
425{
426 struct rtnl_link_stats64 *ns;
427 int i;
428
429 if (!vsi)
430 return;
431
432 ns = i40e_get_vsi_stats_struct(vsi);
433 memset(ns, 0, sizeof(*ns));
434 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
435 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
436 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000437 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000438 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000439 memset(&vsi->rx_rings[i]->stats, 0 ,
440 sizeof(vsi->rx_rings[i]->stats));
441 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
442 sizeof(vsi->rx_rings[i]->rx_stats));
443 memset(&vsi->tx_rings[i]->stats, 0 ,
444 sizeof(vsi->tx_rings[i]->stats));
445 memset(&vsi->tx_rings[i]->tx_stats, 0,
446 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000447 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000448 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000449 vsi->stat_offsets_loaded = false;
450}
451
452/**
453 * i40e_pf_reset_stats - Reset all of the stats for the given pf
454 * @pf: the PF to be reset
455 **/
456void i40e_pf_reset_stats(struct i40e_pf *pf)
457{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000458 int i;
459
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000460 memset(&pf->stats, 0, sizeof(pf->stats));
461 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
462 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000463
464 for (i = 0; i < I40E_MAX_VEB; i++) {
465 if (pf->veb[i]) {
466 memset(&pf->veb[i]->stats, 0,
467 sizeof(pf->veb[i]->stats));
468 memset(&pf->veb[i]->stats_offsets, 0,
469 sizeof(pf->veb[i]->stats_offsets));
470 pf->veb[i]->stat_offsets_loaded = false;
471 }
472 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000473}
474
475/**
476 * i40e_stat_update48 - read and update a 48 bit stat from the chip
477 * @hw: ptr to the hardware info
478 * @hireg: the high 32 bit reg to read
479 * @loreg: the low 32 bit reg to read
480 * @offset_loaded: has the initial offset been loaded yet
481 * @offset: ptr to current offset value
482 * @stat: ptr to the stat
483 *
484 * Since the device stats are not reset at PFReset, they likely will not
485 * be zeroed when the driver starts. We'll save the first values read
486 * and use them as offsets to be subtracted from the raw values in order
487 * to report stats that count from zero. In the process, we also manage
488 * the potential roll-over.
489 **/
490static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
491 bool offset_loaded, u64 *offset, u64 *stat)
492{
493 u64 new_data;
494
Shannon Nelsonab600852014-01-17 15:36:39 -0800495 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000496 new_data = rd32(hw, loreg);
497 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
498 } else {
499 new_data = rd64(hw, loreg);
500 }
501 if (!offset_loaded)
502 *offset = new_data;
503 if (likely(new_data >= *offset))
504 *stat = new_data - *offset;
505 else
506 *stat = (new_data + ((u64)1 << 48)) - *offset;
507 *stat &= 0xFFFFFFFFFFFFULL;
508}
509
510/**
511 * i40e_stat_update32 - read and update a 32 bit stat from the chip
512 * @hw: ptr to the hardware info
513 * @reg: the hw reg to read
514 * @offset_loaded: has the initial offset been loaded yet
515 * @offset: ptr to current offset value
516 * @stat: ptr to the stat
517 **/
518static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
519 bool offset_loaded, u64 *offset, u64 *stat)
520{
521 u32 new_data;
522
523 new_data = rd32(hw, reg);
524 if (!offset_loaded)
525 *offset = new_data;
526 if (likely(new_data >= *offset))
527 *stat = (u32)(new_data - *offset);
528 else
529 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
530}
531
532/**
533 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
534 * @vsi: the VSI to be updated
535 **/
536void i40e_update_eth_stats(struct i40e_vsi *vsi)
537{
538 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
539 struct i40e_pf *pf = vsi->back;
540 struct i40e_hw *hw = &pf->hw;
541 struct i40e_eth_stats *oes;
542 struct i40e_eth_stats *es; /* device's eth stats */
543
544 es = &vsi->eth_stats;
545 oes = &vsi->eth_stats_offsets;
546
547 /* Gather up the stats that the hw collects */
548 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
549 vsi->stat_offsets_loaded,
550 &oes->tx_errors, &es->tx_errors);
551 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
552 vsi->stat_offsets_loaded,
553 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000554 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
555 vsi->stat_offsets_loaded,
556 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
557 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
558 vsi->stat_offsets_loaded,
559 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000560
561 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
562 I40E_GLV_GORCL(stat_idx),
563 vsi->stat_offsets_loaded,
564 &oes->rx_bytes, &es->rx_bytes);
565 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
566 I40E_GLV_UPRCL(stat_idx),
567 vsi->stat_offsets_loaded,
568 &oes->rx_unicast, &es->rx_unicast);
569 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
570 I40E_GLV_MPRCL(stat_idx),
571 vsi->stat_offsets_loaded,
572 &oes->rx_multicast, &es->rx_multicast);
573 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
574 I40E_GLV_BPRCL(stat_idx),
575 vsi->stat_offsets_loaded,
576 &oes->rx_broadcast, &es->rx_broadcast);
577
578 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
579 I40E_GLV_GOTCL(stat_idx),
580 vsi->stat_offsets_loaded,
581 &oes->tx_bytes, &es->tx_bytes);
582 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
583 I40E_GLV_UPTCL(stat_idx),
584 vsi->stat_offsets_loaded,
585 &oes->tx_unicast, &es->tx_unicast);
586 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
587 I40E_GLV_MPTCL(stat_idx),
588 vsi->stat_offsets_loaded,
589 &oes->tx_multicast, &es->tx_multicast);
590 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
591 I40E_GLV_BPTCL(stat_idx),
592 vsi->stat_offsets_loaded,
593 &oes->tx_broadcast, &es->tx_broadcast);
594 vsi->stat_offsets_loaded = true;
595}
596
597/**
598 * i40e_update_veb_stats - Update Switch component statistics
599 * @veb: the VEB being updated
600 **/
601static void i40e_update_veb_stats(struct i40e_veb *veb)
602{
603 struct i40e_pf *pf = veb->pf;
604 struct i40e_hw *hw = &pf->hw;
605 struct i40e_eth_stats *oes;
606 struct i40e_eth_stats *es; /* device's eth stats */
607 int idx = 0;
608
609 idx = veb->stats_idx;
610 es = &veb->stats;
611 oes = &veb->stats_offsets;
612
613 /* Gather up the stats that the hw collects */
614 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
615 veb->stat_offsets_loaded,
616 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000617 if (hw->revision_id > 0)
618 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
619 veb->stat_offsets_loaded,
620 &oes->rx_unknown_protocol,
621 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000622 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
623 veb->stat_offsets_loaded,
624 &oes->rx_bytes, &es->rx_bytes);
625 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
626 veb->stat_offsets_loaded,
627 &oes->rx_unicast, &es->rx_unicast);
628 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
629 veb->stat_offsets_loaded,
630 &oes->rx_multicast, &es->rx_multicast);
631 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
632 veb->stat_offsets_loaded,
633 &oes->rx_broadcast, &es->rx_broadcast);
634
635 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
636 veb->stat_offsets_loaded,
637 &oes->tx_bytes, &es->tx_bytes);
638 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
639 veb->stat_offsets_loaded,
640 &oes->tx_unicast, &es->tx_unicast);
641 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
642 veb->stat_offsets_loaded,
643 &oes->tx_multicast, &es->tx_multicast);
644 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
645 veb->stat_offsets_loaded,
646 &oes->tx_broadcast, &es->tx_broadcast);
647 veb->stat_offsets_loaded = true;
648}
649
Vasu Dev38e00432014-08-01 13:27:03 -0700650#ifdef I40E_FCOE
651/**
652 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
653 * @vsi: the VSI that is capable of doing FCoE
654 **/
655static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
656{
657 struct i40e_pf *pf = vsi->back;
658 struct i40e_hw *hw = &pf->hw;
659 struct i40e_fcoe_stats *ofs;
660 struct i40e_fcoe_stats *fs; /* device's eth stats */
661 int idx;
662
663 if (vsi->type != I40E_VSI_FCOE)
664 return;
665
666 idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET;
667 fs = &vsi->fcoe_stats;
668 ofs = &vsi->fcoe_stats_offsets;
669
670 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
671 vsi->fcoe_stat_offsets_loaded,
672 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
673 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
674 vsi->fcoe_stat_offsets_loaded,
675 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
676 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
677 vsi->fcoe_stat_offsets_loaded,
678 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
679 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
680 vsi->fcoe_stat_offsets_loaded,
681 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
682 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
683 vsi->fcoe_stat_offsets_loaded,
684 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
685 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
686 vsi->fcoe_stat_offsets_loaded,
687 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
688 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
689 vsi->fcoe_stat_offsets_loaded,
690 &ofs->fcoe_last_error, &fs->fcoe_last_error);
691 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
692 vsi->fcoe_stat_offsets_loaded,
693 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
694
695 vsi->fcoe_stat_offsets_loaded = true;
696}
697
698#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000699/**
700 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
701 * @pf: the corresponding PF
702 *
703 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
704 **/
705static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
706{
707 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
708 struct i40e_hw_port_stats *nsd = &pf->stats;
709 struct i40e_hw *hw = &pf->hw;
710 u64 xoff = 0;
711 u16 i, v;
712
713 if ((hw->fc.current_mode != I40E_FC_FULL) &&
714 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
715 return;
716
717 xoff = nsd->link_xoff_rx;
718 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
719 pf->stat_offsets_loaded,
720 &osd->link_xoff_rx, &nsd->link_xoff_rx);
721
722 /* No new LFC xoff rx */
723 if (!(nsd->link_xoff_rx - xoff))
724 return;
725
726 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000727 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000728 struct i40e_vsi *vsi = pf->vsi[v];
729
Mitch Williamsddfda802014-05-10 04:49:10 +0000730 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000731 continue;
732
733 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000734 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000735 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
736 }
737 }
738}
739
740/**
741 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
742 * @pf: the corresponding PF
743 *
744 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
745 **/
746static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
747{
748 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
749 struct i40e_hw_port_stats *nsd = &pf->stats;
750 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
751 struct i40e_dcbx_config *dcb_cfg;
752 struct i40e_hw *hw = &pf->hw;
753 u16 i, v;
754 u8 tc;
755
756 dcb_cfg = &hw->local_dcbx_config;
757
758 /* See if DCB enabled with PFC TC */
759 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
760 !(dcb_cfg->pfc.pfcenable)) {
761 i40e_update_link_xoff_rx(pf);
762 return;
763 }
764
765 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
766 u64 prio_xoff = nsd->priority_xoff_rx[i];
767 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
768 pf->stat_offsets_loaded,
769 &osd->priority_xoff_rx[i],
770 &nsd->priority_xoff_rx[i]);
771
772 /* No new PFC xoff rx */
773 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
774 continue;
775 /* Get the TC for given priority */
776 tc = dcb_cfg->etscfg.prioritytable[i];
777 xoff[tc] = true;
778 }
779
780 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
Mitch Williams505682c2014-05-20 08:01:37 +0000781 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000782 struct i40e_vsi *vsi = pf->vsi[v];
783
Mitch Williamsddfda802014-05-10 04:49:10 +0000784 if (!vsi || !vsi->tx_rings[0])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000785 continue;
786
787 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000788 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000789
790 tc = ring->dcb_tc;
791 if (xoff[tc])
792 clear_bit(__I40E_HANG_CHECK_ARMED,
793 &ring->state);
794 }
795 }
796}
797
798/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000799 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000800 * @vsi: the VSI to be updated
801 *
802 * There are a few instances where we store the same stat in a
803 * couple of different structs. This is partly because we have
804 * the netdev stats that need to be filled out, which is slightly
805 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000806 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000807 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000808static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000809{
810 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000811 struct rtnl_link_stats64 *ons;
812 struct rtnl_link_stats64 *ns; /* netdev stats */
813 struct i40e_eth_stats *oes;
814 struct i40e_eth_stats *es; /* device's eth stats */
815 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000816 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000817 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000818 u64 bytes, packets;
819 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000820 u64 rx_p, rx_b;
821 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000822 u16 q;
823
824 if (test_bit(__I40E_DOWN, &vsi->state) ||
825 test_bit(__I40E_CONFIG_BUSY, &pf->state))
826 return;
827
828 ns = i40e_get_vsi_stats_struct(vsi);
829 ons = &vsi->net_stats_offsets;
830 es = &vsi->eth_stats;
831 oes = &vsi->eth_stats_offsets;
832
833 /* Gather up the netdev and vsi stats that the driver collects
834 * on the fly during packet processing
835 */
836 rx_b = rx_p = 0;
837 tx_b = tx_p = 0;
838 tx_restart = tx_busy = 0;
839 rx_page = 0;
840 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000841 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000843 /* locate Tx ring */
844 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000845
Alexander Duyck980e9b12013-09-28 06:01:03 +0000846 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700847 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000848 packets = p->stats.packets;
849 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700850 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000851 tx_b += bytes;
852 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000853 tx_restart += p->tx_stats.restart_queue;
854 tx_busy += p->tx_stats.tx_busy;
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;
871 vsi->rx_page_failed = rx_page;
872 vsi->rx_buf_failed = rx_buf;
873
874 ns->rx_packets = rx_p;
875 ns->rx_bytes = rx_b;
876 ns->tx_packets = tx_p;
877 ns->tx_bytes = tx_b;
878
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000879 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000880 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000881 ons->tx_errors = oes->tx_errors;
882 ns->tx_errors = es->tx_errors;
883 ons->multicast = oes->rx_multicast;
884 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000885 ons->rx_dropped = oes->rx_discards;
886 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000887 ons->tx_dropped = oes->tx_discards;
888 ns->tx_dropped = es->tx_discards;
889
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000890 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000891 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000892 ns->rx_crc_errors = pf->stats.crc_errors;
893 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
894 ns->rx_length_errors = pf->stats.rx_length_errors;
895 }
896}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000897
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000898/**
899 * i40e_update_pf_stats - Update the pf statistics counters.
900 * @pf: the PF to be updated
901 **/
902static void i40e_update_pf_stats(struct i40e_pf *pf)
903{
904 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
905 struct i40e_hw_port_stats *nsd = &pf->stats;
906 struct i40e_hw *hw = &pf->hw;
907 u32 val;
908 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000909
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000910 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
911 I40E_GLPRT_GORCL(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
914 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
915 I40E_GLPRT_GOTCL(hw->port),
916 pf->stat_offsets_loaded,
917 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
918 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
919 pf->stat_offsets_loaded,
920 &osd->eth.rx_discards,
921 &nsd->eth.rx_discards);
Shannon Nelson532d2832014-04-23 04:50:09 +0000922 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
923 I40E_GLPRT_UPRCL(hw->port),
924 pf->stat_offsets_loaded,
925 &osd->eth.rx_unicast,
926 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000927 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
928 I40E_GLPRT_MPRCL(hw->port),
929 pf->stat_offsets_loaded,
930 &osd->eth.rx_multicast,
931 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000932 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
933 I40E_GLPRT_BPRCL(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->eth.rx_broadcast,
936 &nsd->eth.rx_broadcast);
937 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
938 I40E_GLPRT_UPTCL(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->eth.tx_unicast,
941 &nsd->eth.tx_unicast);
942 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
943 I40E_GLPRT_MPTCL(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->eth.tx_multicast,
946 &nsd->eth.tx_multicast);
947 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
948 I40E_GLPRT_BPTCL(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->eth.tx_broadcast,
951 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000952
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000953 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->tx_dropped_link_down,
956 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000957
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000958 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
959 pf->stat_offsets_loaded,
960 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000961
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000962 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
963 pf->stat_offsets_loaded,
964 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000965
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000966 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
967 pf->stat_offsets_loaded,
968 &osd->mac_local_faults,
969 &nsd->mac_local_faults);
970 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
971 pf->stat_offsets_loaded,
972 &osd->mac_remote_faults,
973 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000974
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000975 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
976 pf->stat_offsets_loaded,
977 &osd->rx_length_errors,
978 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000979
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000980 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
981 pf->stat_offsets_loaded,
982 &osd->link_xon_rx, &nsd->link_xon_rx);
983 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
984 pf->stat_offsets_loaded,
985 &osd->link_xon_tx, &nsd->link_xon_tx);
986 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
987 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
988 pf->stat_offsets_loaded,
989 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000990
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000991 for (i = 0; i < 8; i++) {
992 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000993 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000994 &osd->priority_xon_rx[i],
995 &nsd->priority_xon_rx[i]);
996 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000997 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000998 &osd->priority_xon_tx[i],
999 &nsd->priority_xon_tx[i]);
1000 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(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_xoff_tx[i],
1003 &nsd->priority_xoff_tx[i]);
1004 i40e_stat_update32(hw,
1005 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001006 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001007 &osd->priority_xon_2_xoff[i],
1008 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001009 }
1010
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001011 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1012 I40E_GLPRT_PRC64L(hw->port),
1013 pf->stat_offsets_loaded,
1014 &osd->rx_size_64, &nsd->rx_size_64);
1015 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1016 I40E_GLPRT_PRC127L(hw->port),
1017 pf->stat_offsets_loaded,
1018 &osd->rx_size_127, &nsd->rx_size_127);
1019 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1020 I40E_GLPRT_PRC255L(hw->port),
1021 pf->stat_offsets_loaded,
1022 &osd->rx_size_255, &nsd->rx_size_255);
1023 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1024 I40E_GLPRT_PRC511L(hw->port),
1025 pf->stat_offsets_loaded,
1026 &osd->rx_size_511, &nsd->rx_size_511);
1027 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1028 I40E_GLPRT_PRC1023L(hw->port),
1029 pf->stat_offsets_loaded,
1030 &osd->rx_size_1023, &nsd->rx_size_1023);
1031 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1032 I40E_GLPRT_PRC1522L(hw->port),
1033 pf->stat_offsets_loaded,
1034 &osd->rx_size_1522, &nsd->rx_size_1522);
1035 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1036 I40E_GLPRT_PRC9522L(hw->port),
1037 pf->stat_offsets_loaded,
1038 &osd->rx_size_big, &nsd->rx_size_big);
1039
1040 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1041 I40E_GLPRT_PTC64L(hw->port),
1042 pf->stat_offsets_loaded,
1043 &osd->tx_size_64, &nsd->tx_size_64);
1044 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1045 I40E_GLPRT_PTC127L(hw->port),
1046 pf->stat_offsets_loaded,
1047 &osd->tx_size_127, &nsd->tx_size_127);
1048 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1049 I40E_GLPRT_PTC255L(hw->port),
1050 pf->stat_offsets_loaded,
1051 &osd->tx_size_255, &nsd->tx_size_255);
1052 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1053 I40E_GLPRT_PTC511L(hw->port),
1054 pf->stat_offsets_loaded,
1055 &osd->tx_size_511, &nsd->tx_size_511);
1056 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1057 I40E_GLPRT_PTC1023L(hw->port),
1058 pf->stat_offsets_loaded,
1059 &osd->tx_size_1023, &nsd->tx_size_1023);
1060 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1061 I40E_GLPRT_PTC1522L(hw->port),
1062 pf->stat_offsets_loaded,
1063 &osd->tx_size_1522, &nsd->tx_size_1522);
1064 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1065 I40E_GLPRT_PTC9522L(hw->port),
1066 pf->stat_offsets_loaded,
1067 &osd->tx_size_big, &nsd->tx_size_big);
1068
1069 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1070 pf->stat_offsets_loaded,
1071 &osd->rx_undersize, &nsd->rx_undersize);
1072 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1073 pf->stat_offsets_loaded,
1074 &osd->rx_fragments, &nsd->rx_fragments);
1075 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1076 pf->stat_offsets_loaded,
1077 &osd->rx_oversize, &nsd->rx_oversize);
1078 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1079 pf->stat_offsets_loaded,
1080 &osd->rx_jabber, &nsd->rx_jabber);
1081
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001082 /* FDIR stats */
1083 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx),
1084 pf->stat_offsets_loaded,
1085 &osd->fd_atr_match, &nsd->fd_atr_match);
1086 i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx),
1087 pf->stat_offsets_loaded,
1088 &osd->fd_sb_match, &nsd->fd_sb_match);
1089
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001090 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1091 nsd->tx_lpi_status =
1092 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1093 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1094 nsd->rx_lpi_status =
1095 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1096 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1097 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1098 pf->stat_offsets_loaded,
1099 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1100 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1101 pf->stat_offsets_loaded,
1102 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1103
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001104 pf->stat_offsets_loaded = true;
1105}
1106
1107/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001108 * i40e_update_stats - Update the various statistics counters.
1109 * @vsi: the VSI to be updated
1110 *
1111 * Update the various stats for this VSI and its related entities.
1112 **/
1113void i40e_update_stats(struct i40e_vsi *vsi)
1114{
1115 struct i40e_pf *pf = vsi->back;
1116
1117 if (vsi == pf->vsi[pf->lan_vsi])
1118 i40e_update_pf_stats(pf);
1119
1120 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001121#ifdef I40E_FCOE
1122 i40e_update_fcoe_stats(vsi);
1123#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001124}
1125
1126/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001127 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1128 * @vsi: the VSI to be searched
1129 * @macaddr: the MAC address
1130 * @vlan: the vlan
1131 * @is_vf: make sure its a vf filter, else doesn't matter
1132 * @is_netdev: make sure its a netdev filter, else doesn't matter
1133 *
1134 * Returns ptr to the filter object or NULL
1135 **/
1136static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1137 u8 *macaddr, s16 vlan,
1138 bool is_vf, bool is_netdev)
1139{
1140 struct i40e_mac_filter *f;
1141
1142 if (!vsi || !macaddr)
1143 return NULL;
1144
1145 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1146 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1147 (vlan == f->vlan) &&
1148 (!is_vf || f->is_vf) &&
1149 (!is_netdev || f->is_netdev))
1150 return f;
1151 }
1152 return NULL;
1153}
1154
1155/**
1156 * i40e_find_mac - Find a mac addr in the macvlan filters list
1157 * @vsi: the VSI to be searched
1158 * @macaddr: the MAC address we are searching for
1159 * @is_vf: make sure its a vf filter, else doesn't matter
1160 * @is_netdev: make sure its a netdev filter, else doesn't matter
1161 *
1162 * Returns the first filter with the provided MAC address or NULL if
1163 * MAC address was not found
1164 **/
1165struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1166 bool is_vf, bool is_netdev)
1167{
1168 struct i40e_mac_filter *f;
1169
1170 if (!vsi || !macaddr)
1171 return NULL;
1172
1173 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1174 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1175 (!is_vf || f->is_vf) &&
1176 (!is_netdev || f->is_netdev))
1177 return f;
1178 }
1179 return NULL;
1180}
1181
1182/**
1183 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1184 * @vsi: the VSI to be searched
1185 *
1186 * Returns true if VSI is in vlan mode or false otherwise
1187 **/
1188bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1189{
1190 struct i40e_mac_filter *f;
1191
1192 /* Only -1 for all the filters denotes not in vlan mode
1193 * so we have to go through all the list in order to make sure
1194 */
1195 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1196 if (f->vlan >= 0)
1197 return true;
1198 }
1199
1200 return false;
1201}
1202
1203/**
1204 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1205 * @vsi: the VSI to be searched
1206 * @macaddr: the mac address to be filtered
1207 * @is_vf: true if it is a vf
1208 * @is_netdev: true if it is a netdev
1209 *
1210 * Goes through all the macvlan filters and adds a
1211 * macvlan filter for each unique vlan that already exists
1212 *
1213 * Returns first filter found on success, else NULL
1214 **/
1215struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1216 bool is_vf, bool is_netdev)
1217{
1218 struct i40e_mac_filter *f;
1219
1220 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1221 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1222 is_vf, is_netdev)) {
1223 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001224 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001225 return NULL;
1226 }
1227 }
1228
1229 return list_first_entry_or_null(&vsi->mac_filter_list,
1230 struct i40e_mac_filter, list);
1231}
1232
1233/**
Greg Rose8c27d422014-05-22 06:31:56 +00001234 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1235 * @vsi: the PF Main VSI - inappropriate for any other VSI
1236 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001237 *
1238 * Some older firmware configurations set up a default promiscuous VLAN
1239 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001240 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001241static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001242{
1243 struct i40e_aqc_remove_macvlan_element_data element;
1244 struct i40e_pf *pf = vsi->back;
1245 i40e_status aq_ret;
1246
1247 /* Only appropriate for the PF main VSI */
1248 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001249 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001250
Shannon Nelson30650cc2014-07-29 04:01:50 +00001251 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001252 ether_addr_copy(element.mac_addr, macaddr);
1253 element.vlan_tag = 0;
1254 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1255 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1256 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1257 if (aq_ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001258 return -ENOENT;
1259
1260 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001261}
1262
1263/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001264 * i40e_add_filter - Add a mac/vlan filter to the VSI
1265 * @vsi: the VSI to be searched
1266 * @macaddr: the MAC address
1267 * @vlan: the vlan
1268 * @is_vf: make sure its a vf filter, else doesn't matter
1269 * @is_netdev: make sure its a netdev filter, else doesn't matter
1270 *
1271 * Returns ptr to the filter object or NULL when no memory available.
1272 **/
1273struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1274 u8 *macaddr, s16 vlan,
1275 bool is_vf, bool is_netdev)
1276{
1277 struct i40e_mac_filter *f;
1278
1279 if (!vsi || !macaddr)
1280 return NULL;
1281
1282 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1283 if (!f) {
1284 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1285 if (!f)
1286 goto add_filter_out;
1287
Greg Rose9a173902014-05-22 06:32:02 +00001288 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001289 f->vlan = vlan;
1290 f->changed = true;
1291
1292 INIT_LIST_HEAD(&f->list);
1293 list_add(&f->list, &vsi->mac_filter_list);
1294 }
1295
1296 /* increment counter and add a new flag if needed */
1297 if (is_vf) {
1298 if (!f->is_vf) {
1299 f->is_vf = true;
1300 f->counter++;
1301 }
1302 } else if (is_netdev) {
1303 if (!f->is_netdev) {
1304 f->is_netdev = true;
1305 f->counter++;
1306 }
1307 } else {
1308 f->counter++;
1309 }
1310
1311 /* changed tells sync_filters_subtask to
1312 * push the filter down to the firmware
1313 */
1314 if (f->changed) {
1315 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1316 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1317 }
1318
1319add_filter_out:
1320 return f;
1321}
1322
1323/**
1324 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1325 * @vsi: the VSI to be searched
1326 * @macaddr: the MAC address
1327 * @vlan: the vlan
1328 * @is_vf: make sure it's a vf filter, else doesn't matter
1329 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1330 **/
1331void i40e_del_filter(struct i40e_vsi *vsi,
1332 u8 *macaddr, s16 vlan,
1333 bool is_vf, bool is_netdev)
1334{
1335 struct i40e_mac_filter *f;
1336
1337 if (!vsi || !macaddr)
1338 return;
1339
1340 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1341 if (!f || f->counter == 0)
1342 return;
1343
1344 if (is_vf) {
1345 if (f->is_vf) {
1346 f->is_vf = false;
1347 f->counter--;
1348 }
1349 } else if (is_netdev) {
1350 if (f->is_netdev) {
1351 f->is_netdev = false;
1352 f->counter--;
1353 }
1354 } else {
1355 /* make sure we don't remove a filter in use by vf or netdev */
1356 int min_f = 0;
1357 min_f += (f->is_vf ? 1 : 0);
1358 min_f += (f->is_netdev ? 1 : 0);
1359
1360 if (f->counter > min_f)
1361 f->counter--;
1362 }
1363
1364 /* counter == 0 tells sync_filters_subtask to
1365 * remove the filter from the firmware's list
1366 */
1367 if (f->counter == 0) {
1368 f->changed = true;
1369 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1370 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1371 }
1372}
1373
1374/**
1375 * i40e_set_mac - NDO callback to set mac address
1376 * @netdev: network interface device structure
1377 * @p: pointer to an address structure
1378 *
1379 * Returns 0 on success, negative on failure
1380 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001381#ifdef I40E_FCOE
1382int i40e_set_mac(struct net_device *netdev, void *p)
1383#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001384static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001385#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001386{
1387 struct i40e_netdev_priv *np = netdev_priv(netdev);
1388 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001389 struct i40e_pf *pf = vsi->back;
1390 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001391 struct sockaddr *addr = p;
1392 struct i40e_mac_filter *f;
1393
1394 if (!is_valid_ether_addr(addr->sa_data))
1395 return -EADDRNOTAVAIL;
1396
Shannon Nelson30650cc2014-07-29 04:01:50 +00001397 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1398 netdev_info(netdev, "already using mac address %pM\n",
1399 addr->sa_data);
1400 return 0;
1401 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001402
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001403 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1404 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1405 return -EADDRNOTAVAIL;
1406
Shannon Nelson30650cc2014-07-29 04:01:50 +00001407 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1408 netdev_info(netdev, "returning to hw mac address %pM\n",
1409 hw->mac.addr);
1410 else
1411 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1412
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001413 if (vsi->type == I40E_VSI_MAIN) {
1414 i40e_status ret;
1415 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001416 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001417 addr->sa_data, NULL);
1418 if (ret) {
1419 netdev_info(netdev,
1420 "Addr change for Main VSI failed: %d\n",
1421 ret);
1422 return -EADDRNOTAVAIL;
1423 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001424 }
1425
Shannon Nelson30650cc2014-07-29 04:01:50 +00001426 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1427 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001428
Shannon Nelson30650cc2014-07-29 04:01:50 +00001429 memset(&element, 0, sizeof(element));
1430 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1431 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1432 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1433 } else {
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001434 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1435 false, false);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001436 }
1437
Shannon Nelson30650cc2014-07-29 04:01:50 +00001438 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1439 struct i40e_aqc_add_macvlan_element_data element;
1440
1441 memset(&element, 0, sizeof(element));
1442 ether_addr_copy(element.mac_addr, hw->mac.addr);
1443 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1444 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1445 } else {
1446 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1447 false, false);
1448 if (f)
1449 f->is_laa = true;
1450 }
1451
1452 i40e_sync_vsi_filters(vsi);
1453 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001454
1455 return 0;
1456}
1457
1458/**
1459 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1460 * @vsi: the VSI being setup
1461 * @ctxt: VSI context structure
1462 * @enabled_tc: Enabled TCs bitmap
1463 * @is_add: True if called before Add VSI
1464 *
1465 * Setup VSI queue mapping for enabled traffic classes.
1466 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001467#ifdef I40E_FCOE
1468void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1469 struct i40e_vsi_context *ctxt,
1470 u8 enabled_tc,
1471 bool is_add)
1472#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001473static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1474 struct i40e_vsi_context *ctxt,
1475 u8 enabled_tc,
1476 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001477#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001478{
1479 struct i40e_pf *pf = vsi->back;
1480 u16 sections = 0;
1481 u8 netdev_tc = 0;
1482 u16 numtc = 0;
1483 u16 qcount;
1484 u8 offset;
1485 u16 qmap;
1486 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001487 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001488
1489 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1490 offset = 0;
1491
1492 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1493 /* Find numtc from enabled TC bitmap */
1494 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1495 if (enabled_tc & (1 << i)) /* TC is enabled */
1496 numtc++;
1497 }
1498 if (!numtc) {
1499 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1500 numtc = 1;
1501 }
1502 } else {
1503 /* At least TC0 is enabled in case of non-DCB case */
1504 numtc = 1;
1505 }
1506
1507 vsi->tc_config.numtc = numtc;
1508 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001509 /* Number of queues per enabled TC */
Anjali Singhai Jaineb051af2014-05-20 08:01:46 +00001510 num_tc_qps = vsi->alloc_queue_pairs/numtc;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001511 num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001512
1513 /* Setup queue offset/count for all TCs for given VSI */
1514 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1515 /* See if the given TC is enabled for the given VSI */
1516 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1517 int pow, num_qps;
1518
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001519 switch (vsi->type) {
1520 case I40E_VSI_MAIN:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001521 qcount = min_t(int, pf->rss_size, num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001522 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001523#ifdef I40E_FCOE
1524 case I40E_VSI_FCOE:
1525 qcount = num_tc_qps;
1526 break;
1527#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001528 case I40E_VSI_FDIR:
1529 case I40E_VSI_SRIOV:
1530 case I40E_VSI_VMDQ2:
1531 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001532 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001533 WARN_ON(i != 0);
1534 break;
1535 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001536 vsi->tc_config.tc_info[i].qoffset = offset;
1537 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001538
1539 /* find the power-of-2 of the number of queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001540 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001541 pow = 0;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001542 while (num_qps && ((1 << pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001543 pow++;
1544 num_qps >>= 1;
1545 }
1546
1547 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1548 qmap =
1549 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1550 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1551
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001552 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001553 } else {
1554 /* TC is not enabled so set the offset to
1555 * default queue and allocate one queue
1556 * for the given TC.
1557 */
1558 vsi->tc_config.tc_info[i].qoffset = 0;
1559 vsi->tc_config.tc_info[i].qcount = 1;
1560 vsi->tc_config.tc_info[i].netdev_tc = 0;
1561
1562 qmap = 0;
1563 }
1564 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1565 }
1566
1567 /* Set actual Tx/Rx queue pairs */
1568 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001569 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1570 if (vsi->req_queue_pairs > 0)
1571 vsi->num_queue_pairs = vsi->req_queue_pairs;
1572 else
1573 vsi->num_queue_pairs = pf->num_lan_msix;
1574 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001575
1576 /* Scheduler section valid can only be set for ADD VSI */
1577 if (is_add) {
1578 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1579
1580 ctxt->info.up_enable_bits = enabled_tc;
1581 }
1582 if (vsi->type == I40E_VSI_SRIOV) {
1583 ctxt->info.mapping_flags |=
1584 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1585 for (i = 0; i < vsi->num_queue_pairs; i++)
1586 ctxt->info.queue_mapping[i] =
1587 cpu_to_le16(vsi->base_queue + i);
1588 } else {
1589 ctxt->info.mapping_flags |=
1590 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1591 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1592 }
1593 ctxt->info.valid_sections |= cpu_to_le16(sections);
1594}
1595
1596/**
1597 * i40e_set_rx_mode - NDO callback to set the netdev filters
1598 * @netdev: network interface device structure
1599 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001600#ifdef I40E_FCOE
1601void i40e_set_rx_mode(struct net_device *netdev)
1602#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001603static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001604#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001605{
1606 struct i40e_netdev_priv *np = netdev_priv(netdev);
1607 struct i40e_mac_filter *f, *ftmp;
1608 struct i40e_vsi *vsi = np->vsi;
1609 struct netdev_hw_addr *uca;
1610 struct netdev_hw_addr *mca;
1611 struct netdev_hw_addr *ha;
1612
1613 /* add addr if not already in the filter list */
1614 netdev_for_each_uc_addr(uca, netdev) {
1615 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1616 if (i40e_is_vsi_in_vlan(vsi))
1617 i40e_put_mac_in_vlan(vsi, uca->addr,
1618 false, true);
1619 else
1620 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1621 false, true);
1622 }
1623 }
1624
1625 netdev_for_each_mc_addr(mca, netdev) {
1626 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1627 if (i40e_is_vsi_in_vlan(vsi))
1628 i40e_put_mac_in_vlan(vsi, mca->addr,
1629 false, true);
1630 else
1631 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1632 false, true);
1633 }
1634 }
1635
1636 /* remove filter if not in netdev list */
1637 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1638 bool found = false;
1639
1640 if (!f->is_netdev)
1641 continue;
1642
1643 if (is_multicast_ether_addr(f->macaddr)) {
1644 netdev_for_each_mc_addr(mca, netdev) {
1645 if (ether_addr_equal(mca->addr, f->macaddr)) {
1646 found = true;
1647 break;
1648 }
1649 }
1650 } else {
1651 netdev_for_each_uc_addr(uca, netdev) {
1652 if (ether_addr_equal(uca->addr, f->macaddr)) {
1653 found = true;
1654 break;
1655 }
1656 }
1657
1658 for_each_dev_addr(netdev, ha) {
1659 if (ether_addr_equal(ha->addr, f->macaddr)) {
1660 found = true;
1661 break;
1662 }
1663 }
1664 }
1665 if (!found)
1666 i40e_del_filter(
1667 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1668 }
1669
1670 /* check for other flag changes */
1671 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1672 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1673 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1674 }
1675}
1676
1677/**
1678 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1679 * @vsi: ptr to the VSI
1680 *
1681 * Push any outstanding VSI filter changes through the AdminQ.
1682 *
1683 * Returns 0 or error value
1684 **/
1685int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1686{
1687 struct i40e_mac_filter *f, *ftmp;
1688 bool promisc_forced_on = false;
1689 bool add_happened = false;
1690 int filter_list_len = 0;
1691 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001692 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001693 struct i40e_pf *pf;
1694 int num_add = 0;
1695 int num_del = 0;
1696 u16 cmd_flags;
1697
1698 /* empty array typed pointers, kcalloc later */
1699 struct i40e_aqc_add_macvlan_element_data *add_list;
1700 struct i40e_aqc_remove_macvlan_element_data *del_list;
1701
1702 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1703 usleep_range(1000, 2000);
1704 pf = vsi->back;
1705
1706 if (vsi->netdev) {
1707 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1708 vsi->current_netdev_flags = vsi->netdev->flags;
1709 }
1710
1711 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1712 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1713
1714 filter_list_len = pf->hw.aq.asq_buf_size /
1715 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1716 del_list = kcalloc(filter_list_len,
1717 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1718 GFP_KERNEL);
1719 if (!del_list)
1720 return -ENOMEM;
1721
1722 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1723 if (!f->changed)
1724 continue;
1725
1726 if (f->counter != 0)
1727 continue;
1728 f->changed = false;
1729 cmd_flags = 0;
1730
1731 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001732 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001733 del_list[num_del].vlan_tag =
1734 cpu_to_le16((u16)(f->vlan ==
1735 I40E_VLAN_ANY ? 0 : f->vlan));
1736
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001737 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1738 del_list[num_del].flags = cmd_flags;
1739 num_del++;
1740
1741 /* unlink from filter list */
1742 list_del(&f->list);
1743 kfree(f);
1744
1745 /* flush a full buffer */
1746 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001747 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001748 vsi->seid, del_list, num_del,
1749 NULL);
1750 num_del = 0;
1751 memset(del_list, 0, sizeof(*del_list));
1752
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001753 if (aq_ret &&
1754 pf->hw.aq.asq_last_status !=
1755 I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001756 dev_info(&pf->pdev->dev,
1757 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001758 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001759 pf->hw.aq.asq_last_status);
1760 }
1761 }
1762 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001763 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001764 del_list, num_del, NULL);
1765 num_del = 0;
1766
Shannon Nelsonfdfe9cb2014-05-20 08:01:39 +00001767 if (aq_ret &&
1768 pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001769 dev_info(&pf->pdev->dev,
1770 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001771 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001772 }
1773
1774 kfree(del_list);
1775 del_list = NULL;
1776
1777 /* do all the adds now */
1778 filter_list_len = pf->hw.aq.asq_buf_size /
1779 sizeof(struct i40e_aqc_add_macvlan_element_data),
1780 add_list = kcalloc(filter_list_len,
1781 sizeof(struct i40e_aqc_add_macvlan_element_data),
1782 GFP_KERNEL);
1783 if (!add_list)
1784 return -ENOMEM;
1785
1786 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1787 if (!f->changed)
1788 continue;
1789
1790 if (f->counter == 0)
1791 continue;
1792 f->changed = false;
1793 add_happened = true;
1794 cmd_flags = 0;
1795
1796 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00001797 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001798 add_list[num_add].vlan_tag =
1799 cpu_to_le16(
1800 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1801 add_list[num_add].queue_number = 0;
1802
1803 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001804 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1805 num_add++;
1806
1807 /* flush a full buffer */
1808 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001809 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1810 add_list, num_add,
1811 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001812 num_add = 0;
1813
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001814 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001815 break;
1816 memset(add_list, 0, sizeof(*add_list));
1817 }
1818 }
1819 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001820 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1821 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001822 num_add = 0;
1823 }
1824 kfree(add_list);
1825 add_list = NULL;
1826
Shannon Nelson30650cc2014-07-29 04:01:50 +00001827 if (add_happened && aq_ret &&
1828 pf->hw.aq.asq_last_status != I40E_AQ_RC_EINVAL) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001829 dev_info(&pf->pdev->dev,
1830 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001831 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001832 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1833 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1834 &vsi->state)) {
1835 promisc_forced_on = true;
1836 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1837 &vsi->state);
1838 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1839 }
1840 }
1841 }
1842
1843 /* check for changes in promiscuous modes */
1844 if (changed_flags & IFF_ALLMULTI) {
1845 bool cur_multipromisc;
1846 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001847 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1848 vsi->seid,
1849 cur_multipromisc,
1850 NULL);
1851 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001852 dev_info(&pf->pdev->dev,
1853 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001854 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001855 }
1856 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1857 bool cur_promisc;
1858 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1859 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1860 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001861 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1862 vsi->seid,
1863 cur_promisc, NULL);
1864 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001865 dev_info(&pf->pdev->dev,
1866 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001867 aq_ret, pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00001868 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
1869 vsi->seid,
1870 cur_promisc, NULL);
1871 if (aq_ret)
1872 dev_info(&pf->pdev->dev,
1873 "set brdcast promisc failed, err %d, aq_err %d\n",
1874 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001875 }
1876
1877 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1878 return 0;
1879}
1880
1881/**
1882 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1883 * @pf: board private structure
1884 **/
1885static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1886{
1887 int v;
1888
1889 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1890 return;
1891 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1892
Mitch Williams505682c2014-05-20 08:01:37 +00001893 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001894 if (pf->vsi[v] &&
1895 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1896 i40e_sync_vsi_filters(pf->vsi[v]);
1897 }
1898}
1899
1900/**
1901 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1902 * @netdev: network interface device structure
1903 * @new_mtu: new value for maximum frame size
1904 *
1905 * Returns 0 on success, negative on failure
1906 **/
1907static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1908{
1909 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00001910 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001911 struct i40e_vsi *vsi = np->vsi;
1912
1913 /* MTU < 68 is an error and causes problems on some kernels */
1914 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1915 return -EINVAL;
1916
1917 netdev_info(netdev, "changing MTU from %d to %d\n",
1918 netdev->mtu, new_mtu);
1919 netdev->mtu = new_mtu;
1920 if (netif_running(netdev))
1921 i40e_vsi_reinit_locked(vsi);
1922
1923 return 0;
1924}
1925
1926/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001927 * i40e_ioctl - Access the hwtstamp interface
1928 * @netdev: network interface device structure
1929 * @ifr: interface request data
1930 * @cmd: ioctl command
1931 **/
1932int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
1933{
1934 struct i40e_netdev_priv *np = netdev_priv(netdev);
1935 struct i40e_pf *pf = np->vsi->back;
1936
1937 switch (cmd) {
1938 case SIOCGHWTSTAMP:
1939 return i40e_ptp_get_ts_config(pf, ifr);
1940 case SIOCSHWTSTAMP:
1941 return i40e_ptp_set_ts_config(pf, ifr);
1942 default:
1943 return -EOPNOTSUPP;
1944 }
1945}
1946
1947/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001948 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1949 * @vsi: the vsi being adjusted
1950 **/
1951void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1952{
1953 struct i40e_vsi_context ctxt;
1954 i40e_status ret;
1955
1956 if ((vsi->info.valid_sections &
1957 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1958 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1959 return; /* already enabled */
1960
1961 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1962 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1963 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1964
1965 ctxt.seid = vsi->seid;
1966 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1967 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1968 if (ret) {
1969 dev_info(&vsi->back->pdev->dev,
1970 "%s: update vsi failed, aq_err=%d\n",
1971 __func__, vsi->back->hw.aq.asq_last_status);
1972 }
1973}
1974
1975/**
1976 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1977 * @vsi: the vsi being adjusted
1978 **/
1979void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1980{
1981 struct i40e_vsi_context ctxt;
1982 i40e_status ret;
1983
1984 if ((vsi->info.valid_sections &
1985 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1986 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1987 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1988 return; /* already disabled */
1989
1990 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1991 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1992 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1993
1994 ctxt.seid = vsi->seid;
1995 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1996 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1997 if (ret) {
1998 dev_info(&vsi->back->pdev->dev,
1999 "%s: update vsi failed, aq_err=%d\n",
2000 __func__, vsi->back->hw.aq.asq_last_status);
2001 }
2002}
2003
2004/**
2005 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2006 * @netdev: network interface to be adjusted
2007 * @features: netdev features to test if VLAN offload is enabled or not
2008 **/
2009static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2010{
2011 struct i40e_netdev_priv *np = netdev_priv(netdev);
2012 struct i40e_vsi *vsi = np->vsi;
2013
2014 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2015 i40e_vlan_stripping_enable(vsi);
2016 else
2017 i40e_vlan_stripping_disable(vsi);
2018}
2019
2020/**
2021 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2022 * @vsi: the vsi being configured
2023 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2024 **/
2025int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2026{
2027 struct i40e_mac_filter *f, *add_f;
2028 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002029
2030 is_vf = (vsi->type == I40E_VSI_SRIOV);
2031 is_netdev = !!(vsi->netdev);
2032
2033 if (is_netdev) {
2034 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2035 is_vf, is_netdev);
2036 if (!add_f) {
2037 dev_info(&vsi->back->pdev->dev,
2038 "Could not add vlan filter %d for %pM\n",
2039 vid, vsi->netdev->dev_addr);
2040 return -ENOMEM;
2041 }
2042 }
2043
2044 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2045 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2046 if (!add_f) {
2047 dev_info(&vsi->back->pdev->dev,
2048 "Could not add vlan filter %d for %pM\n",
2049 vid, f->macaddr);
2050 return -ENOMEM;
2051 }
2052 }
2053
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002054 /* Now if we add a vlan tag, make sure to check if it is the first
2055 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2056 * with 0, so we now accept untagged and specified tagged traffic
2057 * (and not any taged and untagged)
2058 */
2059 if (vid > 0) {
2060 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2061 I40E_VLAN_ANY,
2062 is_vf, is_netdev)) {
2063 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2064 I40E_VLAN_ANY, is_vf, is_netdev);
2065 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2066 is_vf, is_netdev);
2067 if (!add_f) {
2068 dev_info(&vsi->back->pdev->dev,
2069 "Could not add filter 0 for %pM\n",
2070 vsi->netdev->dev_addr);
2071 return -ENOMEM;
2072 }
2073 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002074 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002075
Greg Rose8d82a7c2014-01-13 16:13:04 -08002076 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2077 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002078 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2079 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2080 is_vf, is_netdev)) {
2081 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2082 is_vf, is_netdev);
2083 add_f = i40e_add_filter(vsi, f->macaddr,
2084 0, is_vf, is_netdev);
2085 if (!add_f) {
2086 dev_info(&vsi->back->pdev->dev,
2087 "Could not add filter 0 for %pM\n",
2088 f->macaddr);
2089 return -ENOMEM;
2090 }
2091 }
2092 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002093 }
2094
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002095 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2096 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2097 return 0;
2098
2099 return i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002100}
2101
2102/**
2103 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2104 * @vsi: the vsi being configured
2105 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002106 *
2107 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002108 **/
2109int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2110{
2111 struct net_device *netdev = vsi->netdev;
2112 struct i40e_mac_filter *f, *add_f;
2113 bool is_vf, is_netdev;
2114 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002115
2116 is_vf = (vsi->type == I40E_VSI_SRIOV);
2117 is_netdev = !!(netdev);
2118
2119 if (is_netdev)
2120 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2121
2122 list_for_each_entry(f, &vsi->mac_filter_list, list)
2123 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2124
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002125 /* go through all the filters for this VSI and if there is only
2126 * vid == 0 it means there are no other filters, so vid 0 must
2127 * be replaced with -1. This signifies that we should from now
2128 * on accept any traffic (with any tag present, or untagged)
2129 */
2130 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2131 if (is_netdev) {
2132 if (f->vlan &&
2133 ether_addr_equal(netdev->dev_addr, f->macaddr))
2134 filter_count++;
2135 }
2136
2137 if (f->vlan)
2138 filter_count++;
2139 }
2140
2141 if (!filter_count && is_netdev) {
2142 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2143 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2144 is_vf, is_netdev);
2145 if (!f) {
2146 dev_info(&vsi->back->pdev->dev,
2147 "Could not add filter %d for %pM\n",
2148 I40E_VLAN_ANY, netdev->dev_addr);
2149 return -ENOMEM;
2150 }
2151 }
2152
2153 if (!filter_count) {
2154 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2155 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2156 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2157 is_vf, is_netdev);
2158 if (!add_f) {
2159 dev_info(&vsi->back->pdev->dev,
2160 "Could not add filter %d for %pM\n",
2161 I40E_VLAN_ANY, f->macaddr);
2162 return -ENOMEM;
2163 }
2164 }
2165 }
2166
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002167 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2168 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2169 return 0;
2170
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002171 return i40e_sync_vsi_filters(vsi);
2172}
2173
2174/**
2175 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2176 * @netdev: network interface to be adjusted
2177 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002178 *
2179 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002180 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002181#ifdef I40E_FCOE
2182int i40e_vlan_rx_add_vid(struct net_device *netdev,
2183 __always_unused __be16 proto, u16 vid)
2184#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002185static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2186 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002187#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002188{
2189 struct i40e_netdev_priv *np = netdev_priv(netdev);
2190 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002191 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002192
2193 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002194 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002195
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002196 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2197
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002198 /* If the network stack called us with vid = 0 then
2199 * it is asking to receive priority tagged packets with
2200 * vlan id 0. Our HW receives them by default when configured
2201 * to receive untagged packets so there is no need to add an
2202 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002203 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002204 if (vid)
2205 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002206
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002207 if (!ret && (vid < VLAN_N_VID))
2208 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002209
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002210 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002211}
2212
2213/**
2214 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2215 * @netdev: network interface to be adjusted
2216 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002217 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002218 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002219 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002220#ifdef I40E_FCOE
2221int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2222 __always_unused __be16 proto, u16 vid)
2223#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002224static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2225 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002226#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002227{
2228 struct i40e_netdev_priv *np = netdev_priv(netdev);
2229 struct i40e_vsi *vsi = np->vsi;
2230
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002231 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2232
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002233 /* return code is ignored as there is nothing a user
2234 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002235 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002236 */
2237 i40e_vsi_kill_vlan(vsi, vid);
2238
2239 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002240
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002241 return 0;
2242}
2243
2244/**
2245 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2246 * @vsi: the vsi being brought back up
2247 **/
2248static void i40e_restore_vlan(struct i40e_vsi *vsi)
2249{
2250 u16 vid;
2251
2252 if (!vsi->netdev)
2253 return;
2254
2255 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2256
2257 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2258 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2259 vid);
2260}
2261
2262/**
2263 * i40e_vsi_add_pvid - Add pvid for the VSI
2264 * @vsi: the vsi being adjusted
2265 * @vid: the vlan id to set as a PVID
2266 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002267int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002268{
2269 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002270 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002271
2272 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2273 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002274 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2275 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002276 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002277
2278 ctxt.seid = vsi->seid;
2279 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002280 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2281 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002282 dev_info(&vsi->back->pdev->dev,
2283 "%s: update vsi failed, aq_err=%d\n",
2284 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002285 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002286 }
2287
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002288 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002289}
2290
2291/**
2292 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2293 * @vsi: the vsi being adjusted
2294 *
2295 * Just use the vlan_rx_register() service to put it back to normal
2296 **/
2297void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2298{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002299 i40e_vlan_stripping_disable(vsi);
2300
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002301 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002302}
2303
2304/**
2305 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2306 * @vsi: ptr to the VSI
2307 *
2308 * If this function returns with an error, then it's possible one or
2309 * more of the rings is populated (while the rest are not). It is the
2310 * callers duty to clean those orphaned rings.
2311 *
2312 * Return 0 on success, negative on failure
2313 **/
2314static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2315{
2316 int i, err = 0;
2317
2318 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002319 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002320
2321 return err;
2322}
2323
2324/**
2325 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2326 * @vsi: ptr to the VSI
2327 *
2328 * Free VSI's transmit software resources
2329 **/
2330static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2331{
2332 int i;
2333
Greg Rose8e9dca52013-12-18 13:45:53 +00002334 if (!vsi->tx_rings)
2335 return;
2336
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002337 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002338 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002339 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002340}
2341
2342/**
2343 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2344 * @vsi: ptr to the VSI
2345 *
2346 * If this function returns with an error, then it's possible one or
2347 * more of the rings is populated (while the rest are not). It is the
2348 * callers duty to clean those orphaned rings.
2349 *
2350 * Return 0 on success, negative on failure
2351 **/
2352static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2353{
2354 int i, err = 0;
2355
2356 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002357 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002358#ifdef I40E_FCOE
2359 i40e_fcoe_setup_ddp_resources(vsi);
2360#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002361 return err;
2362}
2363
2364/**
2365 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2366 * @vsi: ptr to the VSI
2367 *
2368 * Free all receive software resources
2369 **/
2370static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2371{
2372 int i;
2373
Greg Rose8e9dca52013-12-18 13:45:53 +00002374 if (!vsi->rx_rings)
2375 return;
2376
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002377 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002378 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002379 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002380#ifdef I40E_FCOE
2381 i40e_fcoe_free_ddp_resources(vsi);
2382#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002383}
2384
2385/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002386 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2387 * @ring: The Tx ring to configure
2388 *
2389 * This enables/disables XPS for a given Tx descriptor ring
2390 * based on the TCs enabled for the VSI that ring belongs to.
2391 **/
2392static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2393{
2394 struct i40e_vsi *vsi = ring->vsi;
2395 cpumask_var_t mask;
2396
2397 if (ring->q_vector && ring->netdev) {
2398 /* Single TC mode enable XPS */
2399 if (vsi->tc_config.numtc <= 1 &&
2400 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state)) {
2401 netif_set_xps_queue(ring->netdev,
2402 &ring->q_vector->affinity_mask,
2403 ring->queue_index);
2404 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2405 /* Disable XPS to allow selection based on TC */
2406 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2407 netif_set_xps_queue(ring->netdev, mask,
2408 ring->queue_index);
2409 free_cpumask_var(mask);
2410 }
2411 }
2412}
2413
2414/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002415 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2416 * @ring: The Tx ring to configure
2417 *
2418 * Configure the Tx descriptor ring in the HMC context.
2419 **/
2420static int i40e_configure_tx_ring(struct i40e_ring *ring)
2421{
2422 struct i40e_vsi *vsi = ring->vsi;
2423 u16 pf_q = vsi->base_queue + ring->queue_index;
2424 struct i40e_hw *hw = &vsi->back->hw;
2425 struct i40e_hmc_obj_txq tx_ctx;
2426 i40e_status err = 0;
2427 u32 qtx_ctl = 0;
2428
2429 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002430 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002431 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2432 ring->atr_count = 0;
2433 } else {
2434 ring->atr_sample_rate = 0;
2435 }
2436
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002437 /* configure XPS */
2438 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002439
2440 /* clear the context structure first */
2441 memset(&tx_ctx, 0, sizeof(tx_ctx));
2442
2443 tx_ctx.new_context = 1;
2444 tx_ctx.base = (ring->dma / 128);
2445 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002446 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2447 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002448#ifdef I40E_FCOE
2449 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2450#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002451 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002452 /* FDIR VSI tx ring can still use RS bit and writebacks */
2453 if (vsi->type != I40E_VSI_FDIR)
2454 tx_ctx.head_wb_ena = 1;
2455 tx_ctx.head_wb_addr = ring->dma +
2456 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002457
2458 /* As part of VSI creation/update, FW allocates certain
2459 * Tx arbitration queue sets for each TC enabled for
2460 * the VSI. The FW returns the handles to these queue
2461 * sets as part of the response buffer to Add VSI,
2462 * Update VSI, etc. AQ commands. It is expected that
2463 * these queue set handles be associated with the Tx
2464 * queues by the driver as part of the TX queue context
2465 * initialization. This has to be done regardless of
2466 * DCB as by default everything is mapped to TC0.
2467 */
2468 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2469 tx_ctx.rdylist_act = 0;
2470
2471 /* clear the context in the HMC */
2472 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2473 if (err) {
2474 dev_info(&vsi->back->pdev->dev,
2475 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2476 ring->queue_index, pf_q, err);
2477 return -ENOMEM;
2478 }
2479
2480 /* set the context in the HMC */
2481 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2482 if (err) {
2483 dev_info(&vsi->back->pdev->dev,
2484 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2485 ring->queue_index, pf_q, err);
2486 return -ENOMEM;
2487 }
2488
2489 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002490 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002491 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002492 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2493 I40E_QTX_CTL_VFVM_INDX_MASK;
2494 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002495 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002496 }
2497
Shannon Nelson13fd9772013-09-28 07:14:19 +00002498 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2499 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002500 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2501 i40e_flush(hw);
2502
2503 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2504
2505 /* cache tail off for easier writes later */
2506 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2507
2508 return 0;
2509}
2510
2511/**
2512 * i40e_configure_rx_ring - Configure a receive ring context
2513 * @ring: The Rx ring to configure
2514 *
2515 * Configure the Rx descriptor ring in the HMC context.
2516 **/
2517static int i40e_configure_rx_ring(struct i40e_ring *ring)
2518{
2519 struct i40e_vsi *vsi = ring->vsi;
2520 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2521 u16 pf_q = vsi->base_queue + ring->queue_index;
2522 struct i40e_hw *hw = &vsi->back->hw;
2523 struct i40e_hmc_obj_rxq rx_ctx;
2524 i40e_status err = 0;
2525
2526 ring->state = 0;
2527
2528 /* clear the context structure first */
2529 memset(&rx_ctx, 0, sizeof(rx_ctx));
2530
2531 ring->rx_buf_len = vsi->rx_buf_len;
2532 ring->rx_hdr_len = vsi->rx_hdr_len;
2533
2534 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2535 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2536
2537 rx_ctx.base = (ring->dma / 128);
2538 rx_ctx.qlen = ring->count;
2539
2540 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2541 set_ring_16byte_desc_enabled(ring);
2542 rx_ctx.dsize = 0;
2543 } else {
2544 rx_ctx.dsize = 1;
2545 }
2546
2547 rx_ctx.dtype = vsi->dtype;
2548 if (vsi->dtype) {
2549 set_ring_ps_enabled(ring);
2550 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2551 I40E_RX_SPLIT_IP |
2552 I40E_RX_SPLIT_TCP_UDP |
2553 I40E_RX_SPLIT_SCTP;
2554 } else {
2555 rx_ctx.hsplit_0 = 0;
2556 }
2557
2558 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2559 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002560 if (hw->revision_id == 0)
2561 rx_ctx.lrxqthresh = 0;
2562 else
2563 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002564 rx_ctx.crcstrip = 1;
2565 rx_ctx.l2tsel = 1;
2566 rx_ctx.showiv = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07002567#ifdef I40E_FCOE
2568 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2569#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002570 /* set the prefena field to 1 because the manual says to */
2571 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002572
2573 /* clear the context in the HMC */
2574 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2575 if (err) {
2576 dev_info(&vsi->back->pdev->dev,
2577 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2578 ring->queue_index, pf_q, err);
2579 return -ENOMEM;
2580 }
2581
2582 /* set the context in the HMC */
2583 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2584 if (err) {
2585 dev_info(&vsi->back->pdev->dev,
2586 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2587 ring->queue_index, pf_q, err);
2588 return -ENOMEM;
2589 }
2590
2591 /* cache tail for quicker writes, and clear the reg before use */
2592 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2593 writel(0, ring->tail);
2594
Mitch Williamsa132af22015-01-24 09:58:35 +00002595 if (ring_is_ps_enabled(ring)) {
2596 i40e_alloc_rx_headers(ring);
2597 i40e_alloc_rx_buffers_ps(ring, I40E_DESC_UNUSED(ring));
2598 } else {
2599 i40e_alloc_rx_buffers_1buf(ring, I40E_DESC_UNUSED(ring));
2600 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002601
2602 return 0;
2603}
2604
2605/**
2606 * i40e_vsi_configure_tx - Configure the VSI for Tx
2607 * @vsi: VSI structure describing this set of rings and resources
2608 *
2609 * Configure the Tx VSI for operation.
2610 **/
2611static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2612{
2613 int err = 0;
2614 u16 i;
2615
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002616 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2617 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002618
2619 return err;
2620}
2621
2622/**
2623 * i40e_vsi_configure_rx - Configure the VSI for Rx
2624 * @vsi: the VSI being configured
2625 *
2626 * Configure the Rx VSI for operation.
2627 **/
2628static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2629{
2630 int err = 0;
2631 u16 i;
2632
2633 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2634 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2635 + ETH_FCS_LEN + VLAN_HLEN;
2636 else
2637 vsi->max_frame = I40E_RXBUFFER_2048;
2638
2639 /* figure out correct receive buffer length */
2640 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2641 I40E_FLAG_RX_PS_ENABLED)) {
2642 case I40E_FLAG_RX_1BUF_ENABLED:
2643 vsi->rx_hdr_len = 0;
2644 vsi->rx_buf_len = vsi->max_frame;
2645 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2646 break;
2647 case I40E_FLAG_RX_PS_ENABLED:
2648 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2649 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2650 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2651 break;
2652 default:
2653 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2654 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2655 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2656 break;
2657 }
2658
Vasu Dev38e00432014-08-01 13:27:03 -07002659#ifdef I40E_FCOE
2660 /* setup rx buffer for FCoE */
2661 if ((vsi->type == I40E_VSI_FCOE) &&
2662 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2663 vsi->rx_hdr_len = 0;
2664 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2665 vsi->max_frame = I40E_RXBUFFER_3072;
2666 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2667 }
2668
2669#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002670 /* round up for the chip's needs */
2671 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2672 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2673 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2674 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2675
2676 /* set up individual rings */
2677 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002678 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002679
2680 return err;
2681}
2682
2683/**
2684 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2685 * @vsi: ptr to the VSI
2686 **/
2687static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2688{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002689 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002690 u16 qoffset, qcount;
2691 int i, n;
2692
2693 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2694 return;
2695
2696 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2697 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2698 continue;
2699
2700 qoffset = vsi->tc_config.tc_info[n].qoffset;
2701 qcount = vsi->tc_config.tc_info[n].qcount;
2702 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002703 rx_ring = vsi->rx_rings[i];
2704 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002705 rx_ring->dcb_tc = n;
2706 tx_ring->dcb_tc = n;
2707 }
2708 }
2709}
2710
2711/**
2712 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2713 * @vsi: ptr to the VSI
2714 **/
2715static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2716{
2717 if (vsi->netdev)
2718 i40e_set_rx_mode(vsi->netdev);
2719}
2720
2721/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002722 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2723 * @vsi: Pointer to the targeted VSI
2724 *
2725 * This function replays the hlist on the hw where all the SB Flow Director
2726 * filters were saved.
2727 **/
2728static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2729{
2730 struct i40e_fdir_filter *filter;
2731 struct i40e_pf *pf = vsi->back;
2732 struct hlist_node *node;
2733
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002734 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2735 return;
2736
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002737 hlist_for_each_entry_safe(filter, node,
2738 &pf->fdir_filter_list, fdir_node) {
2739 i40e_add_del_fdir(vsi, filter, true);
2740 }
2741}
2742
2743/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002744 * i40e_vsi_configure - Set up the VSI for action
2745 * @vsi: the VSI being configured
2746 **/
2747static int i40e_vsi_configure(struct i40e_vsi *vsi)
2748{
2749 int err;
2750
2751 i40e_set_vsi_rx_mode(vsi);
2752 i40e_restore_vlan(vsi);
2753 i40e_vsi_config_dcb_rings(vsi);
2754 err = i40e_vsi_configure_tx(vsi);
2755 if (!err)
2756 err = i40e_vsi_configure_rx(vsi);
2757
2758 return err;
2759}
2760
2761/**
2762 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2763 * @vsi: the VSI being configured
2764 **/
2765static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2766{
2767 struct i40e_pf *pf = vsi->back;
2768 struct i40e_q_vector *q_vector;
2769 struct i40e_hw *hw = &pf->hw;
2770 u16 vector;
2771 int i, q;
2772 u32 val;
2773 u32 qp;
2774
2775 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2776 * and PFINT_LNKLSTn registers, e.g.:
2777 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2778 */
2779 qp = vsi->base_queue;
2780 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002781 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2782 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002783 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2784 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2785 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2786 q_vector->rx.itr);
2787 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2788 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2789 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2790 q_vector->tx.itr);
2791
2792 /* Linked list for the queuepairs assigned to this vector */
2793 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2794 for (q = 0; q < q_vector->num_ringpairs; q++) {
2795 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2796 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2797 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2798 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2799 (I40E_QUEUE_TYPE_TX
2800 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2801
2802 wr32(hw, I40E_QINT_RQCTL(qp), val);
2803
2804 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2805 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2806 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2807 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2808 (I40E_QUEUE_TYPE_RX
2809 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2810
2811 /* Terminate the linked list */
2812 if (q == (q_vector->num_ringpairs - 1))
2813 val |= (I40E_QUEUE_END_OF_LIST
2814 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2815
2816 wr32(hw, I40E_QINT_TQCTL(qp), val);
2817 qp++;
2818 }
2819 }
2820
2821 i40e_flush(hw);
2822}
2823
2824/**
2825 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2826 * @hw: ptr to the hardware info
2827 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00002828static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002829{
Jacob Kellerab437b52014-12-14 01:55:08 +00002830 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002831 u32 val;
2832
2833 /* clear things first */
2834 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2835 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2836
2837 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2838 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2839 I40E_PFINT_ICR0_ENA_GRST_MASK |
2840 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2841 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002842 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2843 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2844 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2845
Jacob Kellerab437b52014-12-14 01:55:08 +00002846 if (pf->flags & I40E_FLAG_PTP)
2847 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
2848
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002849 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2850
2851 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00002852 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
2853 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002854
2855 /* OTHER_ITR_IDX = 0 */
2856 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2857}
2858
2859/**
2860 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2861 * @vsi: the VSI being configured
2862 **/
2863static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2864{
Alexander Duyck493fb302013-09-28 07:01:44 +00002865 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002866 struct i40e_pf *pf = vsi->back;
2867 struct i40e_hw *hw = &pf->hw;
2868 u32 val;
2869
2870 /* set the ITR configuration */
2871 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2872 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2873 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2874 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2875 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2876 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2877
Jacob Kellerab437b52014-12-14 01:55:08 +00002878 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002879
2880 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2881 wr32(hw, I40E_PFINT_LNKLST0, 0);
2882
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00002883 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002884 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2885 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2886 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2887
2888 wr32(hw, I40E_QINT_RQCTL(0), val);
2889
2890 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2891 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2892 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2893
2894 wr32(hw, I40E_QINT_TQCTL(0), val);
2895 i40e_flush(hw);
2896}
2897
2898/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00002899 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
2900 * @pf: board private structure
2901 **/
2902void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
2903{
2904 struct i40e_hw *hw = &pf->hw;
2905
2906 wr32(hw, I40E_PFINT_DYN_CTL0,
2907 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2908 i40e_flush(hw);
2909}
2910
2911/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002912 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2913 * @pf: board private structure
2914 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002915void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002916{
2917 struct i40e_hw *hw = &pf->hw;
2918 u32 val;
2919
2920 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2921 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2922 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2923
2924 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2925 i40e_flush(hw);
2926}
2927
2928/**
2929 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2930 * @vsi: pointer to a vsi
2931 * @vector: enable a particular Hw Interrupt vector
2932 **/
2933void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2934{
2935 struct i40e_pf *pf = vsi->back;
2936 struct i40e_hw *hw = &pf->hw;
2937 u32 val;
2938
2939 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2940 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2941 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2942 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002943 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002944}
2945
2946/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002947 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
2948 * @vsi: pointer to a vsi
Greg Rose03147772015-01-24 09:58:29 +00002949 * @vector: disable a particular Hw Interrupt vector
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00002950 **/
2951void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
2952{
2953 struct i40e_pf *pf = vsi->back;
2954 struct i40e_hw *hw = &pf->hw;
2955 u32 val;
2956
2957 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
2958 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
2959 i40e_flush(hw);
2960}
2961
2962/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002963 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2964 * @irq: interrupt number
2965 * @data: pointer to a q_vector
2966 **/
2967static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2968{
2969 struct i40e_q_vector *q_vector = data;
2970
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002971 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002972 return IRQ_HANDLED;
2973
2974 napi_schedule(&q_vector->napi);
2975
2976 return IRQ_HANDLED;
2977}
2978
2979/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002980 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2981 * @vsi: the VSI being configured
2982 * @basename: name for the vector
2983 *
2984 * Allocates MSI-X vectors and requests interrupts from the kernel.
2985 **/
2986static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2987{
2988 int q_vectors = vsi->num_q_vectors;
2989 struct i40e_pf *pf = vsi->back;
2990 int base = vsi->base_vector;
2991 int rx_int_idx = 0;
2992 int tx_int_idx = 0;
2993 int vector, err;
2994
2995 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002996 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002997
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002998 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002999 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3000 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3001 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003002 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003003 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3004 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003005 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003006 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3007 "%s-%s-%d", basename, "tx", tx_int_idx++);
3008 } else {
3009 /* skip this unused q_vector */
3010 continue;
3011 }
3012 err = request_irq(pf->msix_entries[base + vector].vector,
3013 vsi->irq_handler,
3014 0,
3015 q_vector->name,
3016 q_vector);
3017 if (err) {
3018 dev_info(&pf->pdev->dev,
3019 "%s: request_irq failed, error: %d\n",
3020 __func__, err);
3021 goto free_queue_irqs;
3022 }
3023 /* assign the mask for this irq */
3024 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3025 &q_vector->affinity_mask);
3026 }
3027
Shannon Nelson63741842014-04-23 04:50:16 +00003028 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003029 return 0;
3030
3031free_queue_irqs:
3032 while (vector) {
3033 vector--;
3034 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3035 NULL);
3036 free_irq(pf->msix_entries[base + vector].vector,
3037 &(vsi->q_vectors[vector]));
3038 }
3039 return err;
3040}
3041
3042/**
3043 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3044 * @vsi: the VSI being un-configured
3045 **/
3046static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3047{
3048 struct i40e_pf *pf = vsi->back;
3049 struct i40e_hw *hw = &pf->hw;
3050 int base = vsi->base_vector;
3051 int i;
3052
3053 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003054 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3055 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003056 }
3057
3058 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3059 for (i = vsi->base_vector;
3060 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3061 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3062
3063 i40e_flush(hw);
3064 for (i = 0; i < vsi->num_q_vectors; i++)
3065 synchronize_irq(pf->msix_entries[i + base].vector);
3066 } else {
3067 /* Legacy and MSI mode - this stops all interrupt handling */
3068 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3069 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3070 i40e_flush(hw);
3071 synchronize_irq(pf->pdev->irq);
3072 }
3073}
3074
3075/**
3076 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3077 * @vsi: the VSI being configured
3078 **/
3079static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3080{
3081 struct i40e_pf *pf = vsi->back;
3082 int i;
3083
3084 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3085 for (i = vsi->base_vector;
3086 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3087 i40e_irq_dynamic_enable(vsi, i);
3088 } else {
3089 i40e_irq_dynamic_enable_icr0(pf);
3090 }
3091
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003092 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003093 return 0;
3094}
3095
3096/**
3097 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3098 * @pf: board private structure
3099 **/
3100static void i40e_stop_misc_vector(struct i40e_pf *pf)
3101{
3102 /* Disable ICR 0 */
3103 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3104 i40e_flush(&pf->hw);
3105}
3106
3107/**
3108 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3109 * @irq: interrupt number
3110 * @data: pointer to a q_vector
3111 *
3112 * This is the handler used for all MSI/Legacy interrupts, and deals
3113 * with both queue and non-queue interrupts. This is also used in
3114 * MSIX mode to handle the non-queue interrupts.
3115 **/
3116static irqreturn_t i40e_intr(int irq, void *data)
3117{
3118 struct i40e_pf *pf = (struct i40e_pf *)data;
3119 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003120 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003121 u32 icr0, icr0_remaining;
3122 u32 val, ena_mask;
3123
3124 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003125 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003126
Shannon Nelson116a57d2013-09-28 07:13:59 +00003127 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3128 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003129 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003130
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003131 /* if interrupt but no bits showing, must be SWINT */
3132 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3133 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3134 pf->sw_int_count++;
3135
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003136 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3137 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
3138
3139 /* temporarily disable queue cause for NAPI processing */
3140 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
3141 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3142 wr32(hw, I40E_QINT_RQCTL(0), qval);
3143
3144 qval = rd32(hw, I40E_QINT_TQCTL(0));
3145 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3146 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003147
3148 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00003149 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003150 }
3151
3152 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3153 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3154 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3155 }
3156
3157 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3158 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3159 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3160 }
3161
3162 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3163 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3164 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3165 }
3166
3167 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3168 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3169 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3170 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3171 val = rd32(hw, I40E_GLGEN_RSTAT);
3172 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3173 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003174 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003175 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003176 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003177 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003178 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003179 pf->empr_count++;
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00003180 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003181 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003182 }
3183
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003184 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3185 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3186 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
3187 }
3188
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003189 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3190 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3191
3192 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003193 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003194 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003195 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003196 }
3197
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003198 /* If a critical error is pending we have no choice but to reset the
3199 * device.
3200 * Report and mask out any remaining unexpected interrupts.
3201 */
3202 icr0_remaining = icr0 & ena_mask;
3203 if (icr0_remaining) {
3204 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3205 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003206 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003207 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003208 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003209 dev_info(&pf->pdev->dev, "device will be reset\n");
3210 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3211 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003212 }
3213 ena_mask &= ~icr0_remaining;
3214 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003215 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003216
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003217enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003218 /* re-enable interrupt causes */
3219 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003220 if (!test_bit(__I40E_DOWN, &pf->state)) {
3221 i40e_service_event_schedule(pf);
3222 i40e_irq_dynamic_enable_icr0(pf);
3223 }
3224
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003225 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003226}
3227
3228/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003229 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3230 * @tx_ring: tx ring to clean
3231 * @budget: how many cleans we're allowed
3232 *
3233 * Returns true if there's any budget left (e.g. the clean is finished)
3234 **/
3235static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3236{
3237 struct i40e_vsi *vsi = tx_ring->vsi;
3238 u16 i = tx_ring->next_to_clean;
3239 struct i40e_tx_buffer *tx_buf;
3240 struct i40e_tx_desc *tx_desc;
3241
3242 tx_buf = &tx_ring->tx_bi[i];
3243 tx_desc = I40E_TX_DESC(tx_ring, i);
3244 i -= tx_ring->count;
3245
3246 do {
3247 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3248
3249 /* if next_to_watch is not set then there is no work pending */
3250 if (!eop_desc)
3251 break;
3252
3253 /* prevent any other reads prior to eop_desc */
3254 read_barrier_depends();
3255
3256 /* if the descriptor isn't done, no work yet to do */
3257 if (!(eop_desc->cmd_type_offset_bsz &
3258 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3259 break;
3260
3261 /* clear next_to_watch to prevent false hangs */
3262 tx_buf->next_to_watch = NULL;
3263
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003264 tx_desc->buffer_addr = 0;
3265 tx_desc->cmd_type_offset_bsz = 0;
3266 /* move past filter desc */
3267 tx_buf++;
3268 tx_desc++;
3269 i++;
3270 if (unlikely(!i)) {
3271 i -= tx_ring->count;
3272 tx_buf = tx_ring->tx_bi;
3273 tx_desc = I40E_TX_DESC(tx_ring, 0);
3274 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003275 /* unmap skb header data */
3276 dma_unmap_single(tx_ring->dev,
3277 dma_unmap_addr(tx_buf, dma),
3278 dma_unmap_len(tx_buf, len),
3279 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003280 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3281 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003282
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003283 tx_buf->raw_buf = NULL;
3284 tx_buf->tx_flags = 0;
3285 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003286 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003287 tx_desc->buffer_addr = 0;
3288 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003289
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003290 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003291 tx_buf++;
3292 tx_desc++;
3293 i++;
3294 if (unlikely(!i)) {
3295 i -= tx_ring->count;
3296 tx_buf = tx_ring->tx_bi;
3297 tx_desc = I40E_TX_DESC(tx_ring, 0);
3298 }
3299
3300 /* update budget accounting */
3301 budget--;
3302 } while (likely(budget));
3303
3304 i += tx_ring->count;
3305 tx_ring->next_to_clean = i;
3306
3307 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
3308 i40e_irq_dynamic_enable(vsi,
3309 tx_ring->q_vector->v_idx + vsi->base_vector);
3310 }
3311 return budget > 0;
3312}
3313
3314/**
3315 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3316 * @irq: interrupt number
3317 * @data: pointer to a q_vector
3318 **/
3319static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3320{
3321 struct i40e_q_vector *q_vector = data;
3322 struct i40e_vsi *vsi;
3323
3324 if (!q_vector->tx.ring)
3325 return IRQ_HANDLED;
3326
3327 vsi = q_vector->tx.ring->vsi;
3328 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3329
3330 return IRQ_HANDLED;
3331}
3332
3333/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003334 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003335 * @vsi: the VSI being configured
3336 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003337 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003338 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003339static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003340{
Alexander Duyck493fb302013-09-28 07:01:44 +00003341 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003342 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3343 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003344
3345 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003346 tx_ring->next = q_vector->tx.ring;
3347 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003348 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003349
3350 rx_ring->q_vector = q_vector;
3351 rx_ring->next = q_vector->rx.ring;
3352 q_vector->rx.ring = rx_ring;
3353 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003354}
3355
3356/**
3357 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3358 * @vsi: the VSI being configured
3359 *
3360 * This function maps descriptor rings to the queue-specific vectors
3361 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3362 * one vector per queue pair, but on a constrained vector budget, we
3363 * group the queue pairs as "efficiently" as possible.
3364 **/
3365static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3366{
3367 int qp_remaining = vsi->num_queue_pairs;
3368 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003369 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003370 int v_start = 0;
3371 int qp_idx = 0;
3372
3373 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3374 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003375 * It is also important to go through all the vectors available to be
3376 * sure that if we don't use all the vectors, that the remaining vectors
3377 * are cleared. This is especially important when decreasing the
3378 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003379 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003380 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003381 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3382
3383 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3384
3385 q_vector->num_ringpairs = num_ringpairs;
3386
3387 q_vector->rx.count = 0;
3388 q_vector->tx.count = 0;
3389 q_vector->rx.ring = NULL;
3390 q_vector->tx.ring = NULL;
3391
3392 while (num_ringpairs--) {
3393 map_vector_to_qp(vsi, v_start, qp_idx);
3394 qp_idx++;
3395 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003396 }
3397 }
3398}
3399
3400/**
3401 * i40e_vsi_request_irq - Request IRQ from the OS
3402 * @vsi: the VSI being configured
3403 * @basename: name for the vector
3404 **/
3405static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3406{
3407 struct i40e_pf *pf = vsi->back;
3408 int err;
3409
3410 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3411 err = i40e_vsi_request_irq_msix(vsi, basename);
3412 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3413 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003414 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003415 else
3416 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003417 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003418
3419 if (err)
3420 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3421
3422 return err;
3423}
3424
3425#ifdef CONFIG_NET_POLL_CONTROLLER
3426/**
3427 * i40e_netpoll - A Polling 'interrupt'handler
3428 * @netdev: network interface device structure
3429 *
3430 * This is used by netconsole to send skbs without having to re-enable
3431 * interrupts. It's not called while the normal interrupt routine is executing.
3432 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003433#ifdef I40E_FCOE
3434void i40e_netpoll(struct net_device *netdev)
3435#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003436static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003437#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003438{
3439 struct i40e_netdev_priv *np = netdev_priv(netdev);
3440 struct i40e_vsi *vsi = np->vsi;
3441 struct i40e_pf *pf = vsi->back;
3442 int i;
3443
3444 /* if interface is down do nothing */
3445 if (test_bit(__I40E_DOWN, &vsi->state))
3446 return;
3447
3448 pf->flags |= I40E_FLAG_IN_NETPOLL;
3449 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3450 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003451 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003452 } else {
3453 i40e_intr(pf->pdev->irq, netdev);
3454 }
3455 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
3456}
3457#endif
3458
3459/**
Neerav Parikh23527302014-06-03 23:50:15 +00003460 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3461 * @pf: the PF being configured
3462 * @pf_q: the PF queue
3463 * @enable: enable or disable state of the queue
3464 *
3465 * This routine will wait for the given Tx queue of the PF to reach the
3466 * enabled or disabled state.
3467 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3468 * multiple retries; else will return 0 in case of success.
3469 **/
3470static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3471{
3472 int i;
3473 u32 tx_reg;
3474
3475 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3476 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3477 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3478 break;
3479
Neerav Parikhf98a2002014-09-13 07:40:44 +00003480 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003481 }
3482 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3483 return -ETIMEDOUT;
3484
3485 return 0;
3486}
3487
3488/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003489 * i40e_vsi_control_tx - Start or stop a VSI's rings
3490 * @vsi: the VSI being configured
3491 * @enable: start or stop the rings
3492 **/
3493static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3494{
3495 struct i40e_pf *pf = vsi->back;
3496 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003497 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003498 u32 tx_reg;
3499
3500 pf_q = vsi->base_queue;
3501 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003502
3503 /* warn the TX unit of coming changes */
3504 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3505 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003506 usleep_range(10, 20);
Matt Jared351499a2014-04-23 04:50:03 +00003507
Mitch Williams6c5ef622014-02-20 19:29:16 -08003508 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003509 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003510 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3511 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3512 break;
3513 usleep_range(1000, 2000);
3514 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003515 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003516 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003517 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003518
3519 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003520 if (enable) {
3521 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003522 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003523 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003524 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003525 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003526
3527 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003528 /* No waiting for the Tx queue to disable */
3529 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3530 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003531
3532 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003533 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3534 if (ret) {
3535 dev_info(&pf->pdev->dev,
3536 "%s: VSI seid %d Tx ring %d %sable timeout\n",
3537 __func__, vsi->seid, pf_q,
3538 (enable ? "en" : "dis"));
3539 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003540 }
3541 }
3542
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003543 if (hw->revision_id == 0)
3544 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003545 return ret;
3546}
3547
3548/**
3549 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3550 * @pf: the PF being configured
3551 * @pf_q: the PF queue
3552 * @enable: enable or disable state of the queue
3553 *
3554 * This routine will wait for the given Rx queue of the PF to reach the
3555 * enabled or disabled state.
3556 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3557 * multiple retries; else will return 0 in case of success.
3558 **/
3559static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3560{
3561 int i;
3562 u32 rx_reg;
3563
3564 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3565 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3566 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3567 break;
3568
Neerav Parikhf98a2002014-09-13 07:40:44 +00003569 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003570 }
3571 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3572 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003573
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003574 return 0;
3575}
3576
3577/**
3578 * i40e_vsi_control_rx - Start or stop a VSI's rings
3579 * @vsi: the VSI being configured
3580 * @enable: start or stop the rings
3581 **/
3582static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3583{
3584 struct i40e_pf *pf = vsi->back;
3585 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003586 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003587 u32 rx_reg;
3588
3589 pf_q = vsi->base_queue;
3590 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003591 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003592 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003593 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3594 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3595 break;
3596 usleep_range(1000, 2000);
3597 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003598
Catherine Sullivan7c122002014-03-14 07:32:29 +00003599 /* Skip if the queue is already in the requested state */
3600 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3601 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003602
3603 /* turn on/off the queue */
3604 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003605 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003606 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003607 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003608 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3609
3610 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003611 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3612 if (ret) {
3613 dev_info(&pf->pdev->dev,
3614 "%s: VSI seid %d Rx ring %d %sable timeout\n",
3615 __func__, vsi->seid, pf_q,
3616 (enable ? "en" : "dis"));
3617 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003618 }
3619 }
3620
Neerav Parikh23527302014-06-03 23:50:15 +00003621 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003622}
3623
3624/**
3625 * i40e_vsi_control_rings - Start or stop a VSI's rings
3626 * @vsi: the VSI being configured
3627 * @enable: start or stop the rings
3628 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003629int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003630{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003631 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003632
3633 /* do rx first for enable and last for disable */
3634 if (request) {
3635 ret = i40e_vsi_control_rx(vsi, request);
3636 if (ret)
3637 return ret;
3638 ret = i40e_vsi_control_tx(vsi, request);
3639 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003640 /* Ignore return value, we need to shutdown whatever we can */
3641 i40e_vsi_control_tx(vsi, request);
3642 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003643 }
3644
3645 return ret;
3646}
3647
3648/**
3649 * i40e_vsi_free_irq - Free the irq association with the OS
3650 * @vsi: the VSI being configured
3651 **/
3652static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3653{
3654 struct i40e_pf *pf = vsi->back;
3655 struct i40e_hw *hw = &pf->hw;
3656 int base = vsi->base_vector;
3657 u32 val, qp;
3658 int i;
3659
3660 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3661 if (!vsi->q_vectors)
3662 return;
3663
Shannon Nelson63741842014-04-23 04:50:16 +00003664 if (!vsi->irqs_ready)
3665 return;
3666
3667 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003668 for (i = 0; i < vsi->num_q_vectors; i++) {
3669 u16 vector = i + base;
3670
3671 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003672 if (!vsi->q_vectors[i] ||
3673 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003674 continue;
3675
3676 /* clear the affinity_mask in the IRQ descriptor */
3677 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3678 NULL);
3679 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003680 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003681
3682 /* Tear down the interrupt queue link list
3683 *
3684 * We know that they come in pairs and always
3685 * the Rx first, then the Tx. To clear the
3686 * link list, stick the EOL value into the
3687 * next_q field of the registers.
3688 */
3689 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3690 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3691 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3692 val |= I40E_QUEUE_END_OF_LIST
3693 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3694 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3695
3696 while (qp != I40E_QUEUE_END_OF_LIST) {
3697 u32 next;
3698
3699 val = rd32(hw, I40E_QINT_RQCTL(qp));
3700
3701 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3702 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3703 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3704 I40E_QINT_RQCTL_INTEVENT_MASK);
3705
3706 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3707 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3708
3709 wr32(hw, I40E_QINT_RQCTL(qp), val);
3710
3711 val = rd32(hw, I40E_QINT_TQCTL(qp));
3712
3713 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3714 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3715
3716 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3717 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3718 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3719 I40E_QINT_TQCTL_INTEVENT_MASK);
3720
3721 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3722 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3723
3724 wr32(hw, I40E_QINT_TQCTL(qp), val);
3725 qp = next;
3726 }
3727 }
3728 } else {
3729 free_irq(pf->pdev->irq, pf);
3730
3731 val = rd32(hw, I40E_PFINT_LNKLST0);
3732 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3733 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3734 val |= I40E_QUEUE_END_OF_LIST
3735 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3736 wr32(hw, I40E_PFINT_LNKLST0, val);
3737
3738 val = rd32(hw, I40E_QINT_RQCTL(qp));
3739 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3740 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3741 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3742 I40E_QINT_RQCTL_INTEVENT_MASK);
3743
3744 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3745 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3746
3747 wr32(hw, I40E_QINT_RQCTL(qp), val);
3748
3749 val = rd32(hw, I40E_QINT_TQCTL(qp));
3750
3751 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3752 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3753 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3754 I40E_QINT_TQCTL_INTEVENT_MASK);
3755
3756 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3757 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3758
3759 wr32(hw, I40E_QINT_TQCTL(qp), val);
3760 }
3761}
3762
3763/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003764 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3765 * @vsi: the VSI being configured
3766 * @v_idx: Index of vector to be freed
3767 *
3768 * This function frees the memory allocated to the q_vector. In addition if
3769 * NAPI is enabled it will delete any references to the NAPI struct prior
3770 * to freeing the q_vector.
3771 **/
3772static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3773{
3774 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003775 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003776
3777 if (!q_vector)
3778 return;
3779
3780 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003781 i40e_for_each_ring(ring, q_vector->tx)
3782 ring->q_vector = NULL;
3783
3784 i40e_for_each_ring(ring, q_vector->rx)
3785 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003786
3787 /* only VSI w/ an associated netdev is set up w/ NAPI */
3788 if (vsi->netdev)
3789 netif_napi_del(&q_vector->napi);
3790
3791 vsi->q_vectors[v_idx] = NULL;
3792
3793 kfree_rcu(q_vector, rcu);
3794}
3795
3796/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003797 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3798 * @vsi: the VSI being un-configured
3799 *
3800 * This frees the memory allocated to the q_vectors and
3801 * deletes references to the NAPI struct.
3802 **/
3803static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3804{
3805 int v_idx;
3806
Alexander Duyck493fb302013-09-28 07:01:44 +00003807 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3808 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003809}
3810
3811/**
3812 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3813 * @pf: board private structure
3814 **/
3815static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3816{
3817 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3818 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3819 pci_disable_msix(pf->pdev);
3820 kfree(pf->msix_entries);
3821 pf->msix_entries = NULL;
3822 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3823 pci_disable_msi(pf->pdev);
3824 }
3825 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3826}
3827
3828/**
3829 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3830 * @pf: board private structure
3831 *
3832 * We go through and clear interrupt specific resources and reset the structure
3833 * to pre-load conditions
3834 **/
3835static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3836{
3837 int i;
3838
3839 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00003840 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003841 if (pf->vsi[i])
3842 i40e_vsi_free_q_vectors(pf->vsi[i]);
3843 i40e_reset_interrupt_capability(pf);
3844}
3845
3846/**
3847 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3848 * @vsi: the VSI being configured
3849 **/
3850static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3851{
3852 int q_idx;
3853
3854 if (!vsi->netdev)
3855 return;
3856
3857 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003858 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003859}
3860
3861/**
3862 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3863 * @vsi: the VSI being configured
3864 **/
3865static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3866{
3867 int q_idx;
3868
3869 if (!vsi->netdev)
3870 return;
3871
3872 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003873 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003874}
3875
3876/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003877 * i40e_vsi_close - Shut down a VSI
3878 * @vsi: the vsi to be quelled
3879 **/
3880static void i40e_vsi_close(struct i40e_vsi *vsi)
3881{
3882 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
3883 i40e_down(vsi);
3884 i40e_vsi_free_irq(vsi);
3885 i40e_vsi_free_tx_resources(vsi);
3886 i40e_vsi_free_rx_resources(vsi);
3887}
3888
3889/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003890 * i40e_quiesce_vsi - Pause a given VSI
3891 * @vsi: the VSI being paused
3892 **/
3893static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3894{
3895 if (test_bit(__I40E_DOWN, &vsi->state))
3896 return;
3897
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003898 /* No need to disable FCoE VSI when Tx suspended */
3899 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
3900 vsi->type == I40E_VSI_FCOE) {
3901 dev_dbg(&vsi->back->pdev->dev,
3902 "%s: VSI seid %d skipping FCoE VSI disable\n",
3903 __func__, vsi->seid);
3904 return;
3905 }
3906
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003907 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3908 if (vsi->netdev && netif_running(vsi->netdev)) {
3909 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3910 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00003911 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003912 }
3913}
3914
3915/**
3916 * i40e_unquiesce_vsi - Resume a given VSI
3917 * @vsi: the VSI being resumed
3918 **/
3919static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3920{
3921 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3922 return;
3923
3924 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3925 if (vsi->netdev && netif_running(vsi->netdev))
3926 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3927 else
Shannon Nelson8276f752014-03-14 07:32:27 +00003928 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003929}
3930
3931/**
3932 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3933 * @pf: the PF
3934 **/
3935static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3936{
3937 int v;
3938
Mitch Williams505682c2014-05-20 08:01:37 +00003939 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003940 if (pf->vsi[v])
3941 i40e_quiesce_vsi(pf->vsi[v]);
3942 }
3943}
3944
3945/**
3946 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3947 * @pf: the PF
3948 **/
3949static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3950{
3951 int v;
3952
Mitch Williams505682c2014-05-20 08:01:37 +00003953 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003954 if (pf->vsi[v])
3955 i40e_unquiesce_vsi(pf->vsi[v]);
3956 }
3957}
3958
Neerav Parikh69129dc2014-11-12 00:18:46 +00003959#ifdef CONFIG_I40E_DCB
3960/**
3961 * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled
3962 * @vsi: the VSI being configured
3963 *
3964 * This function waits for the given VSI's Tx queues to be disabled.
3965 **/
3966static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi)
3967{
3968 struct i40e_pf *pf = vsi->back;
3969 int i, pf_q, ret;
3970
3971 pf_q = vsi->base_queue;
3972 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
3973 /* Check and wait for the disable status of the queue */
3974 ret = i40e_pf_txq_wait(pf, pf_q, false);
3975 if (ret) {
3976 dev_info(&pf->pdev->dev,
3977 "%s: VSI seid %d Tx ring %d disable timeout\n",
3978 __func__, vsi->seid, pf_q);
3979 return ret;
3980 }
3981 }
3982
3983 return 0;
3984}
3985
3986/**
3987 * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled
3988 * @pf: the PF
3989 *
3990 * This function waits for the Tx queues to be in disabled state for all the
3991 * VSIs that are managed by this PF.
3992 **/
3993static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf)
3994{
3995 int v, ret = 0;
3996
3997 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00003998 /* No need to wait for FCoE VSI queues */
3999 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh69129dc2014-11-12 00:18:46 +00004000 ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]);
4001 if (ret)
4002 break;
4003 }
4004 }
4005
4006 return ret;
4007}
4008
4009#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004010/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004011 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
4012 * @pf: pointer to pf
4013 *
4014 * Get TC map for ISCSI PF type that will include iSCSI TC
4015 * and LAN TC.
4016 **/
4017static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4018{
4019 struct i40e_dcb_app_priority_table app;
4020 struct i40e_hw *hw = &pf->hw;
4021 u8 enabled_tc = 1; /* TC0 is always enabled */
4022 u8 tc, i;
4023 /* Get the iSCSI APP TLV */
4024 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4025
4026 for (i = 0; i < dcbcfg->numapps; i++) {
4027 app = dcbcfg->app[i];
4028 if (app.selector == I40E_APP_SEL_TCPIP &&
4029 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4030 tc = dcbcfg->etscfg.prioritytable[app.priority];
4031 enabled_tc |= (1 << tc);
4032 break;
4033 }
4034 }
4035
4036 return enabled_tc;
4037}
4038
4039/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004040 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4041 * @dcbcfg: the corresponding DCBx configuration structure
4042 *
4043 * Return the number of TCs from given DCBx configuration
4044 **/
4045static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4046{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004047 u8 num_tc = 0;
4048 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004049
4050 /* Scan the ETS Config Priority Table to find
4051 * traffic class enabled for a given priority
4052 * and use the traffic class index to get the
4053 * number of traffic classes enabled
4054 */
4055 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4056 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
4057 num_tc = dcbcfg->etscfg.prioritytable[i];
4058 }
4059
4060 /* Traffic class index starts from zero so
4061 * increment to return the actual count
4062 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004063 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004064}
4065
4066/**
4067 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4068 * @dcbcfg: the corresponding DCBx configuration structure
4069 *
4070 * Query the current DCB configuration and return the number of
4071 * traffic classes enabled from the given DCBX config
4072 **/
4073static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4074{
4075 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4076 u8 enabled_tc = 1;
4077 u8 i;
4078
4079 for (i = 0; i < num_tc; i++)
4080 enabled_tc |= 1 << i;
4081
4082 return enabled_tc;
4083}
4084
4085/**
4086 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4087 * @pf: PF being queried
4088 *
4089 * Return number of traffic classes enabled for the given PF
4090 **/
4091static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4092{
4093 struct i40e_hw *hw = &pf->hw;
4094 u8 i, enabled_tc;
4095 u8 num_tc = 0;
4096 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4097
4098 /* If DCB is not enabled then always in single TC */
4099 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4100 return 1;
4101
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004102 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004103 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4104 return i40e_dcb_get_num_tc(dcbcfg);
4105
4106 /* MFP mode return count of enabled TCs for this PF */
4107 if (pf->hw.func_caps.iscsi)
4108 enabled_tc = i40e_get_iscsi_tc_map(pf);
4109 else
4110 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4111
4112 /* At least have TC0 */
4113 enabled_tc = (enabled_tc ? enabled_tc : 0x1);
4114 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4115 if (enabled_tc & (1 << i))
4116 num_tc++;
4117 }
4118 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004119}
4120
4121/**
4122 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4123 * @pf: PF being queried
4124 *
4125 * Return a bitmap for first enabled traffic class for this PF.
4126 **/
4127static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4128{
4129 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4130 u8 i = 0;
4131
4132 if (!enabled_tc)
4133 return 0x1; /* TC0 */
4134
4135 /* Find the first enabled TC */
4136 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4137 if (enabled_tc & (1 << i))
4138 break;
4139 }
4140
4141 return 1 << i;
4142}
4143
4144/**
4145 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4146 * @pf: PF being queried
4147 *
4148 * Return a bitmap for enabled traffic classes for this PF.
4149 **/
4150static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4151{
4152 /* If DCB is not enabled for this PF then just return default TC */
4153 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4154 return i40e_pf_get_default_tc(pf);
4155
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004156 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004157 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4158 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4159
4160 /* MPF enabled and iSCSI PF type */
4161 if (pf->hw.func_caps.iscsi)
4162 return i40e_get_iscsi_tc_map(pf);
4163 else
4164 return pf->hw.func_caps.enabled_tcmap;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004165}
4166
4167/**
4168 * i40e_vsi_get_bw_info - Query VSI BW Information
4169 * @vsi: the VSI being queried
4170 *
4171 * Returns 0 on success, negative value on failure
4172 **/
4173static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4174{
4175 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4176 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4177 struct i40e_pf *pf = vsi->back;
4178 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004179 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004180 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004181 int i;
4182
4183 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004184 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4185 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004186 dev_info(&pf->pdev->dev,
4187 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004188 aq_ret, pf->hw.aq.asq_last_status);
4189 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004190 }
4191
4192 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004193 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
Jesse Brandeburg6838b532014-01-14 00:49:52 -08004194 NULL);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004195 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004196 dev_info(&pf->pdev->dev,
4197 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004198 aq_ret, pf->hw.aq.asq_last_status);
4199 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004200 }
4201
4202 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4203 dev_info(&pf->pdev->dev,
4204 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4205 bw_config.tc_valid_bits,
4206 bw_ets_config.tc_valid_bits);
4207 /* Still continuing */
4208 }
4209
4210 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4211 vsi->bw_max_quanta = bw_config.max_bw;
4212 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4213 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4214 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4215 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4216 vsi->bw_ets_limit_credits[i] =
4217 le16_to_cpu(bw_ets_config.credits[i]);
4218 /* 3 bits out of 4 for each TC */
4219 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4220 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004221
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004222 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004223}
4224
4225/**
4226 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4227 * @vsi: the VSI being configured
4228 * @enabled_tc: TC bitmap
4229 * @bw_credits: BW shared credits per TC
4230 *
4231 * Returns 0 on success, negative value on failure
4232 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004233static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004234 u8 *bw_share)
4235{
4236 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004237 i40e_status aq_ret;
4238 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004239
4240 bw_data.tc_valid_bits = enabled_tc;
4241 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4242 bw_data.tc_bw_credits[i] = bw_share[i];
4243
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004244 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4245 NULL);
4246 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004247 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004248 "AQ command Config VSI BW allocation per TC failed = %d\n",
4249 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004250 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004251 }
4252
4253 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4254 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4255
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004256 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004257}
4258
4259/**
4260 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4261 * @vsi: the VSI being configured
4262 * @enabled_tc: TC map to be enabled
4263 *
4264 **/
4265static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4266{
4267 struct net_device *netdev = vsi->netdev;
4268 struct i40e_pf *pf = vsi->back;
4269 struct i40e_hw *hw = &pf->hw;
4270 u8 netdev_tc = 0;
4271 int i;
4272 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4273
4274 if (!netdev)
4275 return;
4276
4277 if (!enabled_tc) {
4278 netdev_reset_tc(netdev);
4279 return;
4280 }
4281
4282 /* Set up actual enabled TCs on the VSI */
4283 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4284 return;
4285
4286 /* set per TC queues for the VSI */
4287 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4288 /* Only set TC queues for enabled tcs
4289 *
4290 * e.g. For a VSI that has TC0 and TC3 enabled the
4291 * enabled_tc bitmap would be 0x00001001; the driver
4292 * will set the numtc for netdev as 2 that will be
4293 * referenced by the netdev layer as TC 0 and 1.
4294 */
4295 if (vsi->tc_config.enabled_tc & (1 << i))
4296 netdev_set_tc_queue(netdev,
4297 vsi->tc_config.tc_info[i].netdev_tc,
4298 vsi->tc_config.tc_info[i].qcount,
4299 vsi->tc_config.tc_info[i].qoffset);
4300 }
4301
4302 /* Assign UP2TC map for the VSI */
4303 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4304 /* Get the actual TC# for the UP */
4305 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4306 /* Get the mapped netdev TC# for the UP */
4307 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4308 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4309 }
4310}
4311
4312/**
4313 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4314 * @vsi: the VSI being configured
4315 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4316 **/
4317static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4318 struct i40e_vsi_context *ctxt)
4319{
4320 /* copy just the sections touched not the entire info
4321 * since not all sections are valid as returned by
4322 * update vsi params
4323 */
4324 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4325 memcpy(&vsi->info.queue_mapping,
4326 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4327 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4328 sizeof(vsi->info.tc_mapping));
4329}
4330
4331/**
4332 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4333 * @vsi: VSI to be configured
4334 * @enabled_tc: TC bitmap
4335 *
4336 * This configures a particular VSI for TCs that are mapped to the
4337 * given TC bitmap. It uses default bandwidth share for TCs across
4338 * VSIs to configure TC for a particular VSI.
4339 *
4340 * NOTE:
4341 * It is expected that the VSI queues have been quisced before calling
4342 * this function.
4343 **/
4344static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4345{
4346 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4347 struct i40e_vsi_context ctxt;
4348 int ret = 0;
4349 int i;
4350
4351 /* Check if enabled_tc is same as existing or new TCs */
4352 if (vsi->tc_config.enabled_tc == enabled_tc)
4353 return ret;
4354
4355 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4356 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4357 if (enabled_tc & (1 << i))
4358 bw_share[i] = 1;
4359 }
4360
4361 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4362 if (ret) {
4363 dev_info(&vsi->back->pdev->dev,
4364 "Failed configuring TC map %d for VSI %d\n",
4365 enabled_tc, vsi->seid);
4366 goto out;
4367 }
4368
4369 /* Update Queue Pairs Mapping for currently enabled UPs */
4370 ctxt.seid = vsi->seid;
4371 ctxt.pf_num = vsi->back->hw.pf_id;
4372 ctxt.vf_num = 0;
4373 ctxt.uplink_seid = vsi->uplink_seid;
4374 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4375 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4376
4377 /* Update the VSI after updating the VSI queue-mapping information */
4378 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4379 if (ret) {
4380 dev_info(&vsi->back->pdev->dev,
4381 "update vsi failed, aq_err=%d\n",
4382 vsi->back->hw.aq.asq_last_status);
4383 goto out;
4384 }
4385 /* update the local VSI info with updated queue map */
4386 i40e_vsi_update_queue_map(vsi, &ctxt);
4387 vsi->info.valid_sections = 0;
4388
4389 /* Update current VSI BW information */
4390 ret = i40e_vsi_get_bw_info(vsi);
4391 if (ret) {
4392 dev_info(&vsi->back->pdev->dev,
4393 "Failed updating vsi bw info, aq_err=%d\n",
4394 vsi->back->hw.aq.asq_last_status);
4395 goto out;
4396 }
4397
4398 /* Update the netdev TC setup */
4399 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4400out:
4401 return ret;
4402}
4403
4404/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004405 * i40e_veb_config_tc - Configure TCs for given VEB
4406 * @veb: given VEB
4407 * @enabled_tc: TC bitmap
4408 *
4409 * Configures given TC bitmap for VEB (switching) element
4410 **/
4411int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4412{
4413 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4414 struct i40e_pf *pf = veb->pf;
4415 int ret = 0;
4416 int i;
4417
4418 /* No TCs or already enabled TCs just return */
4419 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4420 return ret;
4421
4422 bw_data.tc_valid_bits = enabled_tc;
4423 /* bw_data.absolute_credits is not set (relative) */
4424
4425 /* Enable ETS TCs with equal BW Share for now */
4426 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4427 if (enabled_tc & (1 << i))
4428 bw_data.tc_bw_share_credits[i] = 1;
4429 }
4430
4431 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4432 &bw_data, NULL);
4433 if (ret) {
4434 dev_info(&pf->pdev->dev,
4435 "veb bw config failed, aq_err=%d\n",
4436 pf->hw.aq.asq_last_status);
4437 goto out;
4438 }
4439
4440 /* Update the BW information */
4441 ret = i40e_veb_get_bw_info(veb);
4442 if (ret) {
4443 dev_info(&pf->pdev->dev,
4444 "Failed getting veb bw config, aq_err=%d\n",
4445 pf->hw.aq.asq_last_status);
4446 }
4447
4448out:
4449 return ret;
4450}
4451
4452#ifdef CONFIG_I40E_DCB
4453/**
4454 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4455 * @pf: PF struct
4456 *
4457 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4458 * the caller would've quiesce all the VSIs before calling
4459 * this function
4460 **/
4461static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4462{
4463 u8 tc_map = 0;
4464 int ret;
4465 u8 v;
4466
4467 /* Enable the TCs available on PF to all VEBs */
4468 tc_map = i40e_pf_get_tc_map(pf);
4469 for (v = 0; v < I40E_MAX_VEB; v++) {
4470 if (!pf->veb[v])
4471 continue;
4472 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4473 if (ret) {
4474 dev_info(&pf->pdev->dev,
4475 "Failed configuring TC for VEB seid=%d\n",
4476 pf->veb[v]->seid);
4477 /* Will try to configure as many components */
4478 }
4479 }
4480
4481 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004482 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004483 if (!pf->vsi[v])
4484 continue;
4485
4486 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004487#ifdef I40E_FCOE
4488 * - For FCoE VSI only enable the TC configured
4489 * as per the APP TLV
4490#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004491 * - For all others keep them at TC0 for now
4492 */
4493 if (v == pf->lan_vsi)
4494 tc_map = i40e_pf_get_tc_map(pf);
4495 else
4496 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004497#ifdef I40E_FCOE
4498 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4499 tc_map = i40e_get_fcoe_tc_map(pf);
4500#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004501
4502 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4503 if (ret) {
4504 dev_info(&pf->pdev->dev,
4505 "Failed configuring TC for VSI seid=%d\n",
4506 pf->vsi[v]->seid);
4507 /* Will try to configure as many components */
4508 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004509 /* Re-configure VSI vectors based on updated TC map */
4510 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004511 if (pf->vsi[v]->netdev)
4512 i40e_dcbnl_set_all(pf->vsi[v]);
4513 }
4514 }
4515}
4516
4517/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004518 * i40e_resume_port_tx - Resume port Tx
4519 * @pf: PF struct
4520 *
4521 * Resume a port's Tx and issue a PF reset in case of failure to
4522 * resume.
4523 **/
4524static int i40e_resume_port_tx(struct i40e_pf *pf)
4525{
4526 struct i40e_hw *hw = &pf->hw;
4527 int ret;
4528
4529 ret = i40e_aq_resume_port_tx(hw, NULL);
4530 if (ret) {
4531 dev_info(&pf->pdev->dev,
4532 "AQ command Resume Port Tx failed = %d\n",
4533 pf->hw.aq.asq_last_status);
4534 /* Schedule PF reset to recover */
4535 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4536 i40e_service_event_schedule(pf);
4537 }
4538
4539 return ret;
4540}
4541
4542/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004543 * i40e_init_pf_dcb - Initialize DCB configuration
4544 * @pf: PF being configured
4545 *
4546 * Query the current DCB configuration and cache it
4547 * in the hardware structure
4548 **/
4549static int i40e_init_pf_dcb(struct i40e_pf *pf)
4550{
4551 struct i40e_hw *hw = &pf->hw;
4552 int err = 0;
4553
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004554 /* Get the initial DCB configuration */
4555 err = i40e_init_dcb(hw);
4556 if (!err) {
4557 /* Device/Function is not DCBX capable */
4558 if ((!hw->func_caps.dcb) ||
4559 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4560 dev_info(&pf->pdev->dev,
4561 "DCBX offload is not supported or is disabled for this PF.\n");
4562
4563 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4564 goto out;
4565
4566 } else {
4567 /* When status is not DISABLED then DCBX in FW */
4568 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4569 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004570
4571 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4572 /* Enable DCB tagging only when more than one TC */
4573 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4574 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00004575 dev_dbg(&pf->pdev->dev,
4576 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004577 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004578 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00004579 dev_info(&pf->pdev->dev,
4580 "AQ Querying DCB configuration failed: aq_err %d\n",
Neerav Parikh014269f2014-04-01 07:11:48 +00004581 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004582 }
4583
4584out:
4585 return err;
4586}
4587#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004588#define SPEED_SIZE 14
4589#define FC_SIZE 8
4590/**
4591 * i40e_print_link_message - print link up or down
4592 * @vsi: the VSI for which link needs a message
4593 */
4594static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4595{
4596 char speed[SPEED_SIZE] = "Unknown";
4597 char fc[FC_SIZE] = "RX/TX";
4598
4599 if (!isup) {
4600 netdev_info(vsi->netdev, "NIC Link is Down\n");
4601 return;
4602 }
4603
Greg Rose148c2d82014-12-11 07:06:27 +00004604 /* Warn user if link speed on NPAR enabled partition is not at
4605 * least 10GB
4606 */
4607 if (vsi->back->hw.func_caps.npar_enable &&
4608 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
4609 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
4610 netdev_warn(vsi->netdev,
4611 "The partition detected link speed that is less than 10Gbps\n");
4612
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004613 switch (vsi->back->hw.phy.link_info.link_speed) {
4614 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004615 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004616 break;
4617 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004618 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004619 break;
4620 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004621 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004622 break;
Mitch Williams5960d332014-09-13 07:40:47 +00004623 case I40E_LINK_SPEED_100MB:
4624 strncpy(speed, "100 Mbps", SPEED_SIZE);
4625 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004626 default:
4627 break;
4628 }
4629
4630 switch (vsi->back->hw.fc.current_mode) {
4631 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004632 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004633 break;
4634 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004635 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004636 break;
4637 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004638 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004639 break;
4640 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004641 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004642 break;
4643 }
4644
4645 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4646 speed, fc);
4647}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004648
4649/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004650 * i40e_up_complete - Finish the last steps of bringing up a connection
4651 * @vsi: the VSI being configured
4652 **/
4653static int i40e_up_complete(struct i40e_vsi *vsi)
4654{
4655 struct i40e_pf *pf = vsi->back;
4656 int err;
4657
4658 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4659 i40e_vsi_configure_msix(vsi);
4660 else
4661 i40e_configure_msi_and_legacy(vsi);
4662
4663 /* start rings */
4664 err = i40e_vsi_control_rings(vsi, true);
4665 if (err)
4666 return err;
4667
4668 clear_bit(__I40E_DOWN, &vsi->state);
4669 i40e_napi_enable_all(vsi);
4670 i40e_vsi_enable_irq(vsi);
4671
4672 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4673 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004674 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004675 netif_tx_start_all_queues(vsi->netdev);
4676 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004677 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004678 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004679 /* need to check for qualified module here*/
4680 if ((pf->hw.phy.link_info.link_info &
4681 I40E_AQ_MEDIA_AVAILABLE) &&
4682 (!(pf->hw.phy.link_info.an_info &
4683 I40E_AQ_QUALIFIED_MODULE)))
4684 netdev_err(vsi->netdev,
4685 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004686 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004687
4688 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004689 if (vsi->type == I40E_VSI_FDIR) {
4690 /* reset fd counters */
4691 pf->fd_add_err = pf->fd_atr_cnt = 0;
4692 if (pf->fd_tcp_rule > 0) {
4693 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4694 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4695 pf->fd_tcp_rule = 0;
4696 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004697 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004698 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004699 i40e_service_event_schedule(pf);
4700
4701 return 0;
4702}
4703
4704/**
4705 * i40e_vsi_reinit_locked - Reset the VSI
4706 * @vsi: the VSI being configured
4707 *
4708 * Rebuild the ring structs after some configuration
4709 * has changed, e.g. MTU size.
4710 **/
4711static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4712{
4713 struct i40e_pf *pf = vsi->back;
4714
4715 WARN_ON(in_interrupt());
4716 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4717 usleep_range(1000, 2000);
4718 i40e_down(vsi);
4719
4720 /* Give a VF some time to respond to the reset. The
4721 * two second wait is based upon the watchdog cycle in
4722 * the VF driver.
4723 */
4724 if (vsi->type == I40E_VSI_SRIOV)
4725 msleep(2000);
4726 i40e_up(vsi);
4727 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4728}
4729
4730/**
4731 * i40e_up - Bring the connection back up after being down
4732 * @vsi: the VSI being configured
4733 **/
4734int i40e_up(struct i40e_vsi *vsi)
4735{
4736 int err;
4737
4738 err = i40e_vsi_configure(vsi);
4739 if (!err)
4740 err = i40e_up_complete(vsi);
4741
4742 return err;
4743}
4744
4745/**
4746 * i40e_down - Shutdown the connection processing
4747 * @vsi: the VSI being stopped
4748 **/
4749void i40e_down(struct i40e_vsi *vsi)
4750{
4751 int i;
4752
4753 /* It is assumed that the caller of this function
4754 * sets the vsi->state __I40E_DOWN bit.
4755 */
4756 if (vsi->netdev) {
4757 netif_carrier_off(vsi->netdev);
4758 netif_tx_disable(vsi->netdev);
4759 }
4760 i40e_vsi_disable_irq(vsi);
4761 i40e_vsi_control_rings(vsi, false);
4762 i40e_napi_disable_all(vsi);
4763
4764 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004765 i40e_clean_tx_ring(vsi->tx_rings[i]);
4766 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004767 }
4768}
4769
4770/**
4771 * i40e_setup_tc - configure multiple traffic classes
4772 * @netdev: net device to configure
4773 * @tc: number of traffic classes to enable
4774 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004775#ifdef I40E_FCOE
4776int i40e_setup_tc(struct net_device *netdev, u8 tc)
4777#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004778static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004779#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004780{
4781 struct i40e_netdev_priv *np = netdev_priv(netdev);
4782 struct i40e_vsi *vsi = np->vsi;
4783 struct i40e_pf *pf = vsi->back;
4784 u8 enabled_tc = 0;
4785 int ret = -EINVAL;
4786 int i;
4787
4788 /* Check if DCB enabled to continue */
4789 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4790 netdev_info(netdev, "DCB is not enabled for adapter\n");
4791 goto exit;
4792 }
4793
4794 /* Check if MFP enabled */
4795 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4796 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4797 goto exit;
4798 }
4799
4800 /* Check whether tc count is within enabled limit */
4801 if (tc > i40e_pf_get_num_tc(pf)) {
4802 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4803 goto exit;
4804 }
4805
4806 /* Generate TC map for number of tc requested */
4807 for (i = 0; i < tc; i++)
4808 enabled_tc |= (1 << i);
4809
4810 /* Requesting same TC configuration as already enabled */
4811 if (enabled_tc == vsi->tc_config.enabled_tc)
4812 return 0;
4813
4814 /* Quiesce VSI queues */
4815 i40e_quiesce_vsi(vsi);
4816
4817 /* Configure VSI for enabled TCs */
4818 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4819 if (ret) {
4820 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4821 vsi->seid);
4822 goto exit;
4823 }
4824
4825 /* Unquiesce VSI */
4826 i40e_unquiesce_vsi(vsi);
4827
4828exit:
4829 return ret;
4830}
4831
4832/**
4833 * i40e_open - Called when a network interface is made active
4834 * @netdev: network interface device structure
4835 *
4836 * The open entry point is called when a network interface is made
4837 * active by the system (IFF_UP). At this point all resources needed
4838 * for transmit and receive operations are allocated, the interrupt
4839 * handler is registered with the OS, the netdev watchdog subtask is
4840 * enabled, and the stack is notified that the interface is ready.
4841 *
4842 * Returns 0 on success, negative value on failure
4843 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004844int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004845{
4846 struct i40e_netdev_priv *np = netdev_priv(netdev);
4847 struct i40e_vsi *vsi = np->vsi;
4848 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004849 int err;
4850
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004851 /* disallow open during test or if eeprom is broken */
4852 if (test_bit(__I40E_TESTING, &pf->state) ||
4853 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004854 return -EBUSY;
4855
4856 netif_carrier_off(netdev);
4857
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004858 err = i40e_vsi_open(vsi);
4859 if (err)
4860 return err;
4861
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004862 /* configure global TSO hardware offload settings */
4863 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4864 TCP_FLAG_FIN) >> 16);
4865 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4866 TCP_FLAG_FIN |
4867 TCP_FLAG_CWR) >> 16);
4868 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4869
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004870#ifdef CONFIG_I40E_VXLAN
4871 vxlan_get_rx_port(netdev);
4872#endif
4873
4874 return 0;
4875}
4876
4877/**
4878 * i40e_vsi_open -
4879 * @vsi: the VSI to open
4880 *
4881 * Finish initialization of the VSI.
4882 *
4883 * Returns 0 on success, negative value on failure
4884 **/
4885int i40e_vsi_open(struct i40e_vsi *vsi)
4886{
4887 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00004888 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004889 int err;
4890
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004891 /* allocate descriptors */
4892 err = i40e_vsi_setup_tx_resources(vsi);
4893 if (err)
4894 goto err_setup_tx;
4895 err = i40e_vsi_setup_rx_resources(vsi);
4896 if (err)
4897 goto err_setup_rx;
4898
4899 err = i40e_vsi_configure(vsi);
4900 if (err)
4901 goto err_setup_rx;
4902
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004903 if (vsi->netdev) {
4904 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4905 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4906 err = i40e_vsi_request_irq(vsi, int_name);
4907 if (err)
4908 goto err_setup_rx;
4909
4910 /* Notify the stack of the actual queue counts. */
4911 err = netif_set_real_num_tx_queues(vsi->netdev,
4912 vsi->num_queue_pairs);
4913 if (err)
4914 goto err_set_queues;
4915
4916 err = netif_set_real_num_rx_queues(vsi->netdev,
4917 vsi->num_queue_pairs);
4918 if (err)
4919 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004920
4921 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00004922 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004923 dev_driver_string(&pf->pdev->dev),
4924 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004925 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004926
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004927 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004928 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004929 goto err_setup_rx;
4930 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004931
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004932 err = i40e_up_complete(vsi);
4933 if (err)
4934 goto err_up_complete;
4935
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004936 return 0;
4937
4938err_up_complete:
4939 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004940err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004941 i40e_vsi_free_irq(vsi);
4942err_setup_rx:
4943 i40e_vsi_free_rx_resources(vsi);
4944err_setup_tx:
4945 i40e_vsi_free_tx_resources(vsi);
4946 if (vsi == pf->vsi[pf->lan_vsi])
4947 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4948
4949 return err;
4950}
4951
4952/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004953 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4954 * @pf: Pointer to pf
4955 *
4956 * This function destroys the hlist where all the Flow Director
4957 * filters were saved.
4958 **/
4959static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4960{
4961 struct i40e_fdir_filter *filter;
4962 struct hlist_node *node2;
4963
4964 hlist_for_each_entry_safe(filter, node2,
4965 &pf->fdir_filter_list, fdir_node) {
4966 hlist_del(&filter->fdir_node);
4967 kfree(filter);
4968 }
4969 pf->fdir_pf_active_filters = 0;
4970}
4971
4972/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004973 * i40e_close - Disables a network interface
4974 * @netdev: network interface device structure
4975 *
4976 * The close entry point is called when an interface is de-activated
4977 * by the OS. The hardware is still under the driver's control, but
4978 * this netdev interface is disabled.
4979 *
4980 * Returns 0, this is not allowed to fail
4981 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004982#ifdef I40E_FCOE
4983int i40e_close(struct net_device *netdev)
4984#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004985static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004986#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004987{
4988 struct i40e_netdev_priv *np = netdev_priv(netdev);
4989 struct i40e_vsi *vsi = np->vsi;
4990
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004991 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004992
4993 return 0;
4994}
4995
4996/**
4997 * i40e_do_reset - Start a PF or Core Reset sequence
4998 * @pf: board private structure
4999 * @reset_flags: which reset is requested
5000 *
5001 * The essential difference in resets is that the PF Reset
5002 * doesn't clear the packet buffers, doesn't reset the PE
5003 * firmware, and doesn't bother the other PFs on the chip.
5004 **/
5005void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5006{
5007 u32 val;
5008
5009 WARN_ON(in_interrupt());
5010
Mitch Williams263fc482014-04-23 04:50:11 +00005011 if (i40e_check_asq_alive(&pf->hw))
5012 i40e_vc_notify_reset(pf);
5013
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005014 /* do the biggest reset indicated */
5015 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
5016
5017 /* Request a Global Reset
5018 *
5019 * This will start the chip's countdown to the actual full
5020 * chip reset event, and a warning interrupt to be sent
5021 * to all PFs, including the requestor. Our handler
5022 * for the warning interrupt will deal with the shutdown
5023 * and recovery of the switch setup.
5024 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005025 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005026 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5027 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5028 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5029
5030 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
5031
5032 /* Request a Core Reset
5033 *
5034 * Same as Global Reset, except does *not* include the MAC/PHY
5035 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005036 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005037 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5038 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5039 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5040 i40e_flush(&pf->hw);
5041
5042 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
5043
5044 /* Request a PF Reset
5045 *
5046 * Resets only the PF-specific registers
5047 *
5048 * This goes directly to the tear-down and rebuild of
5049 * the switch, since we need to do all the recovery as
5050 * for the Core Reset.
5051 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005052 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005053 i40e_handle_reset_warning(pf);
5054
5055 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
5056 int v;
5057
5058 /* Find the VSI(s) that requested a re-init */
5059 dev_info(&pf->pdev->dev,
5060 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005061 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005062 struct i40e_vsi *vsi = pf->vsi[v];
5063 if (vsi != NULL &&
5064 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5065 i40e_vsi_reinit_locked(pf->vsi[v]);
5066 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5067 }
5068 }
5069
5070 /* no further action needed, so return now */
5071 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005072 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
5073 int v;
5074
5075 /* Find the VSI(s) that needs to be brought down */
5076 dev_info(&pf->pdev->dev, "VSI down requested\n");
5077 for (v = 0; v < pf->num_alloc_vsi; v++) {
5078 struct i40e_vsi *vsi = pf->vsi[v];
5079 if (vsi != NULL &&
5080 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5081 set_bit(__I40E_DOWN, &vsi->state);
5082 i40e_down(vsi);
5083 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5084 }
5085 }
5086
5087 /* no further action needed, so return now */
5088 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005089 } else {
5090 dev_info(&pf->pdev->dev,
5091 "bad reset request 0x%08x\n", reset_flags);
5092 return;
5093 }
5094}
5095
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005096#ifdef CONFIG_I40E_DCB
5097/**
5098 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5099 * @pf: board private structure
5100 * @old_cfg: current DCB config
5101 * @new_cfg: new DCB config
5102 **/
5103bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5104 struct i40e_dcbx_config *old_cfg,
5105 struct i40e_dcbx_config *new_cfg)
5106{
5107 bool need_reconfig = false;
5108
5109 /* Check if ETS configuration has changed */
5110 if (memcmp(&new_cfg->etscfg,
5111 &old_cfg->etscfg,
5112 sizeof(new_cfg->etscfg))) {
5113 /* If Priority Table has changed reconfig is needed */
5114 if (memcmp(&new_cfg->etscfg.prioritytable,
5115 &old_cfg->etscfg.prioritytable,
5116 sizeof(new_cfg->etscfg.prioritytable))) {
5117 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005118 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005119 }
5120
5121 if (memcmp(&new_cfg->etscfg.tcbwtable,
5122 &old_cfg->etscfg.tcbwtable,
5123 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005124 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005125
5126 if (memcmp(&new_cfg->etscfg.tsatable,
5127 &old_cfg->etscfg.tsatable,
5128 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005129 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005130 }
5131
5132 /* Check if PFC configuration has changed */
5133 if (memcmp(&new_cfg->pfc,
5134 &old_cfg->pfc,
5135 sizeof(new_cfg->pfc))) {
5136 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005137 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005138 }
5139
5140 /* Check if APP Table has changed */
5141 if (memcmp(&new_cfg->app,
5142 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005143 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005144 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005145 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005146 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005147
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005148 dev_dbg(&pf->pdev->dev, "%s: need_reconfig=%d\n", __func__,
5149 need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005150 return need_reconfig;
5151}
5152
5153/**
5154 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5155 * @pf: board private structure
5156 * @e: event info posted on ARQ
5157 **/
5158static int i40e_handle_lldp_event(struct i40e_pf *pf,
5159 struct i40e_arq_event_info *e)
5160{
5161 struct i40e_aqc_lldp_get_mib *mib =
5162 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5163 struct i40e_hw *hw = &pf->hw;
5164 struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config;
5165 struct i40e_dcbx_config tmp_dcbx_cfg;
5166 bool need_reconfig = false;
5167 int ret = 0;
5168 u8 type;
5169
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005170 /* Not DCB capable or capability disabled */
5171 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5172 return ret;
5173
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005174 /* Ignore if event is not for Nearest Bridge */
5175 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5176 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005177 dev_dbg(&pf->pdev->dev,
5178 "%s: LLDP event mib bridge type 0x%x\n", __func__, type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005179 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5180 return ret;
5181
5182 /* Check MIB Type and return if event for Remote MIB update */
5183 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005184 dev_dbg(&pf->pdev->dev,
5185 "%s: LLDP event mib type %s\n", __func__,
5186 type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005187 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5188 /* Update the remote cached instance and return */
5189 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5190 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5191 &hw->remote_dcbx_config);
5192 goto exit;
5193 }
5194
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005195 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005196 /* Store the old configuration */
5197 tmp_dcbx_cfg = *dcbx_cfg;
5198
5199 /* Get updated DCBX data from firmware */
5200 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005201 if (ret) {
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005202 dev_info(&pf->pdev->dev, "Failed querying DCB configuration data from firmware.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005203 goto exit;
5204 }
5205
5206 /* No change detected in DCBX configs */
5207 if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005208 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005209 goto exit;
5210 }
5211
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005212 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005213
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005214 i40e_dcbnl_flush_apps(pf, dcbx_cfg);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005215
5216 if (!need_reconfig)
5217 goto exit;
5218
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005219 /* Enable DCB tagging only when more than one TC */
5220 if (i40e_dcb_get_num_tc(dcbx_cfg) > 1)
5221 pf->flags |= I40E_FLAG_DCB_ENABLED;
5222 else
5223 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5224
Neerav Parikh69129dc2014-11-12 00:18:46 +00005225 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005226 /* Reconfiguration needed quiesce all VSIs */
5227 i40e_pf_quiesce_all_vsi(pf);
5228
5229 /* Changes in configuration update VEB/VSI */
5230 i40e_dcb_reconfigure(pf);
5231
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005232 ret = i40e_resume_port_tx(pf);
5233
Neerav Parikh69129dc2014-11-12 00:18:46 +00005234 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005235 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005236 if (ret)
5237 goto exit;
5238
5239 /* Wait for the PF's Tx queues to be disabled */
5240 ret = i40e_pf_wait_txq_disabled(pf);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005241 if (!ret)
5242 i40e_pf_unquiesce_all_vsi(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005243exit:
5244 return ret;
5245}
5246#endif /* CONFIG_I40E_DCB */
5247
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005248/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005249 * i40e_do_reset_safe - Protected reset path for userland calls.
5250 * @pf: board private structure
5251 * @reset_flags: which reset is requested
5252 *
5253 **/
5254void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5255{
5256 rtnl_lock();
5257 i40e_do_reset(pf, reset_flags);
5258 rtnl_unlock();
5259}
5260
5261/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005262 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5263 * @pf: board private structure
5264 * @e: event info posted on ARQ
5265 *
5266 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5267 * and VF queues
5268 **/
5269static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5270 struct i40e_arq_event_info *e)
5271{
5272 struct i40e_aqc_lan_overflow *data =
5273 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5274 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5275 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5276 struct i40e_hw *hw = &pf->hw;
5277 struct i40e_vf *vf;
5278 u16 vf_id;
5279
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005280 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5281 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005282
5283 /* Queue belongs to VF, find the VF and issue VF reset */
5284 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5285 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5286 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5287 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5288 vf_id -= hw->func_caps.vf_base_id;
5289 vf = &pf->vf[vf_id];
5290 i40e_vc_notify_vf_reset(vf);
5291 /* Allow VF to process pending reset notification */
5292 msleep(20);
5293 i40e_reset_vf(vf, false);
5294 }
5295}
5296
5297/**
5298 * i40e_service_event_complete - Finish up the service event
5299 * @pf: board private structure
5300 **/
5301static void i40e_service_event_complete(struct i40e_pf *pf)
5302{
5303 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5304
5305 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005306 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005307 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5308}
5309
5310/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005311 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5312 * @pf: board private structure
5313 **/
5314int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5315{
5316 int val, fcnt_prog;
5317
5318 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5319 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5320 return fcnt_prog;
5321}
5322
5323/**
5324 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005325 * @pf: board private structure
5326 **/
5327int i40e_get_current_fd_count(struct i40e_pf *pf)
5328{
5329 int val, fcnt_prog;
5330 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5331 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5332 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5333 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5334 return fcnt_prog;
5335}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005336
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005337/**
5338 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5339 * @pf: board private structure
5340 **/
5341void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5342{
5343 u32 fcnt_prog, fcnt_avail;
5344
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005345 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5346 return;
5347
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005348 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5349 * to re-enable
5350 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005351 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5352 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005353 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5354 (pf->fd_add_err == 0) ||
5355 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005356 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5357 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5358 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5359 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5360 }
5361 }
5362 /* Wait for some more space to be available to turn on ATR */
5363 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5364 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5365 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5366 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5367 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5368 }
5369 }
5370}
5371
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005372#define I40E_MIN_FD_FLUSH_INTERVAL 10
5373/**
5374 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5375 * @pf: board private structure
5376 **/
5377static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5378{
5379 int flush_wait_retry = 50;
5380 int reg;
5381
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005382 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5383 return;
5384
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005385 if (time_after(jiffies, pf->fd_flush_timestamp +
5386 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5387 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5388 pf->fd_flush_timestamp = jiffies;
5389 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5390 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5391 /* flush all filters */
5392 wr32(&pf->hw, I40E_PFQF_CTL_1,
5393 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5394 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005395 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005396 pf->fd_add_err = 0;
5397 do {
5398 /* Check FD flush status every 5-6msec */
5399 usleep_range(5000, 6000);
5400 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5401 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5402 break;
5403 } while (flush_wait_retry--);
5404 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5405 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5406 } else {
5407 /* replay sideband filters */
5408 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5409
5410 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5411 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5412 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5413 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5414 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5415 }
5416 }
5417}
5418
5419/**
5420 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5421 * @pf: board private structure
5422 **/
5423int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5424{
5425 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5426}
5427
5428/* We can see up to 256 filter programming desc in transit if the filters are
5429 * being applied really fast; before we see the first
5430 * filter miss error on Rx queue 0. Accumulating enough error messages before
5431 * reacting will make sure we don't cause flush too often.
5432 */
5433#define I40E_MAX_FD_PROGRAM_ERROR 256
5434
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005435/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005436 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5437 * @pf: board private structure
5438 **/
5439static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5440{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005441
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005442 /* if interface is down do nothing */
5443 if (test_bit(__I40E_DOWN, &pf->state))
5444 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005445
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005446 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5447 return;
5448
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005449 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5450 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5451 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5452 i40e_fdir_flush_and_replay(pf);
5453
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005454 i40e_fdir_check_and_reenable(pf);
5455
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005456}
5457
5458/**
5459 * i40e_vsi_link_event - notify VSI of a link event
5460 * @vsi: vsi to be notified
5461 * @link_up: link up or down
5462 **/
5463static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5464{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005465 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005466 return;
5467
5468 switch (vsi->type) {
5469 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005470#ifdef I40E_FCOE
5471 case I40E_VSI_FCOE:
5472#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005473 if (!vsi->netdev || !vsi->netdev_registered)
5474 break;
5475
5476 if (link_up) {
5477 netif_carrier_on(vsi->netdev);
5478 netif_tx_wake_all_queues(vsi->netdev);
5479 } else {
5480 netif_carrier_off(vsi->netdev);
5481 netif_tx_stop_all_queues(vsi->netdev);
5482 }
5483 break;
5484
5485 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005486 case I40E_VSI_VMDQ2:
5487 case I40E_VSI_CTRL:
5488 case I40E_VSI_MIRROR:
5489 default:
5490 /* there is no notification for other VSIs */
5491 break;
5492 }
5493}
5494
5495/**
5496 * i40e_veb_link_event - notify elements on the veb of a link event
5497 * @veb: veb to be notified
5498 * @link_up: link up or down
5499 **/
5500static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5501{
5502 struct i40e_pf *pf;
5503 int i;
5504
5505 if (!veb || !veb->pf)
5506 return;
5507 pf = veb->pf;
5508
5509 /* depth first... */
5510 for (i = 0; i < I40E_MAX_VEB; i++)
5511 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5512 i40e_veb_link_event(pf->veb[i], link_up);
5513
5514 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005515 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005516 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5517 i40e_vsi_link_event(pf->vsi[i], link_up);
5518}
5519
5520/**
5521 * i40e_link_event - Update netif_carrier status
5522 * @pf: board private structure
5523 **/
5524static void i40e_link_event(struct i40e_pf *pf)
5525{
5526 bool new_link, old_link;
Mitch Williams320684c2014-10-17 03:14:43 +00005527 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005528 u8 new_link_speed, old_link_speed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005529
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005530 /* set this to force the get_link_status call to refresh state */
5531 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005532
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005533 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5534 new_link = i40e_get_link_status(&pf->hw);
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005535 old_link_speed = pf->hw.phy.link_info_old.link_speed;
5536 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005537
5538 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005539 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00005540 (test_bit(__I40E_DOWN, &vsi->state) ||
5541 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005542 return;
Mitch Williams320684c2014-10-17 03:14:43 +00005543
5544 if (!test_bit(__I40E_DOWN, &vsi->state))
5545 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005546
5547 /* Notify the base of the switch tree connected to
5548 * the link. Floating VEBs are not notified.
5549 */
5550 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5551 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5552 else
Mitch Williams320684c2014-10-17 03:14:43 +00005553 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005554
5555 if (pf->vf)
5556 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005557
5558 if (pf->flags & I40E_FLAG_PTP)
5559 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005560}
5561
5562/**
5563 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5564 * @pf: board private structure
5565 *
5566 * Set the per-queue flags to request a check for stuck queues in the irq
5567 * clean functions, then force interrupts to be sure the irq clean is called.
5568 **/
5569static void i40e_check_hang_subtask(struct i40e_pf *pf)
5570{
5571 int i, v;
5572
5573 /* If we're down or resetting, just bail */
5574 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5575 return;
5576
5577 /* for each VSI/netdev
5578 * for each Tx queue
5579 * set the check flag
5580 * for each q_vector
5581 * force an interrupt
5582 */
Mitch Williams505682c2014-05-20 08:01:37 +00005583 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005584 struct i40e_vsi *vsi = pf->vsi[v];
5585 int armed = 0;
5586
5587 if (!pf->vsi[v] ||
5588 test_bit(__I40E_DOWN, &vsi->state) ||
5589 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5590 continue;
5591
5592 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005593 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005594 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005595 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005596 armed++;
5597 }
5598
5599 if (armed) {
5600 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5601 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5602 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005603 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK |
5604 I40E_PFINT_DYN_CTL0_ITR_INDX_MASK |
5605 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK |
5606 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005607 } else {
5608 u16 vec = vsi->base_vector - 1;
5609 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005610 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK |
5611 I40E_PFINT_DYN_CTLN_ITR_INDX_MASK |
5612 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_ENA_MASK |
5613 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005614 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5615 wr32(&vsi->back->hw,
5616 I40E_PFINT_DYN_CTLN(vec), val);
5617 }
5618 i40e_flush(&vsi->back->hw);
5619 }
5620 }
5621}
5622
5623/**
Shannon Nelson21536712014-10-25 10:35:25 +00005624 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005625 * @pf: board private structure
5626 **/
5627static void i40e_watchdog_subtask(struct i40e_pf *pf)
5628{
5629 int i;
5630
5631 /* if interface is down do nothing */
5632 if (test_bit(__I40E_DOWN, &pf->state) ||
5633 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5634 return;
5635
Shannon Nelson21536712014-10-25 10:35:25 +00005636 /* make sure we don't do these things too often */
5637 if (time_before(jiffies, (pf->service_timer_previous +
5638 pf->service_timer_period)))
5639 return;
5640 pf->service_timer_previous = jiffies;
5641
5642 i40e_check_hang_subtask(pf);
5643 i40e_link_event(pf);
5644
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005645 /* Update the stats for active netdevs so the network stack
5646 * can look at updated numbers whenever it cares to
5647 */
Mitch Williams505682c2014-05-20 08:01:37 +00005648 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005649 if (pf->vsi[i] && pf->vsi[i]->netdev)
5650 i40e_update_stats(pf->vsi[i]);
5651
5652 /* Update the stats for the active switching components */
5653 for (i = 0; i < I40E_MAX_VEB; i++)
5654 if (pf->veb[i])
5655 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005656
5657 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005658}
5659
5660/**
5661 * i40e_reset_subtask - Set up for resetting the device and driver
5662 * @pf: board private structure
5663 **/
5664static void i40e_reset_subtask(struct i40e_pf *pf)
5665{
5666 u32 reset_flags = 0;
5667
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005668 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005669 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5670 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5671 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5672 }
5673 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5674 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5675 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5676 }
5677 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5678 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5679 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5680 }
5681 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5682 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5683 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5684 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005685 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5686 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5687 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5688 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005689
5690 /* If there's a recovery already waiting, it takes
5691 * precedence before starting a new reset sequence.
5692 */
5693 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5694 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005695 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005696 }
5697
5698 /* If we're already down or resetting, just bail */
5699 if (reset_flags &&
5700 !test_bit(__I40E_DOWN, &pf->state) &&
5701 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5702 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005703
5704unlock:
5705 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005706}
5707
5708/**
5709 * i40e_handle_link_event - Handle link event
5710 * @pf: board private structure
5711 * @e: event info posted on ARQ
5712 **/
5713static void i40e_handle_link_event(struct i40e_pf *pf,
5714 struct i40e_arq_event_info *e)
5715{
5716 struct i40e_hw *hw = &pf->hw;
5717 struct i40e_aqc_get_link_status *status =
5718 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5719 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5720
5721 /* save off old link status information */
5722 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5723 sizeof(pf->hw.phy.link_info_old));
5724
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005725 /* Do a new status request to re-enable LSE reporting
5726 * and load new status information into the hw struct
5727 * This completely ignores any state information
5728 * in the ARQ event info, instead choosing to always
5729 * issue the AQ update link status command.
5730 */
5731 i40e_link_event(pf);
5732
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005733 /* check for unqualified module, if link is down */
5734 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5735 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5736 (!(status->link_info & I40E_AQ_LINK_UP)))
5737 dev_err(&pf->pdev->dev,
5738 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005739}
5740
5741/**
5742 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5743 * @pf: board private structure
5744 **/
5745static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5746{
5747 struct i40e_arq_event_info event;
5748 struct i40e_hw *hw = &pf->hw;
5749 u16 pending, i = 0;
5750 i40e_status ret;
5751 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005752 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005753 u32 val;
5754
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005755 /* Do not run clean AQ when PF reset fails */
5756 if (test_bit(__I40E_RESET_FAILED, &pf->state))
5757 return;
5758
Shannon Nelson86df2422014-05-20 08:01:35 +00005759 /* check for error indications */
5760 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5761 oldval = val;
5762 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5763 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5764 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5765 }
5766 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5767 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5768 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5769 }
5770 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5771 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5772 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5773 }
5774 if (oldval != val)
5775 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5776
5777 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5778 oldval = val;
5779 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5780 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5781 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5782 }
5783 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5784 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5785 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5786 }
5787 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5788 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5789 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5790 }
5791 if (oldval != val)
5792 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5793
Mitch Williams1001dc32014-11-11 20:02:19 +00005794 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
5795 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005796 if (!event.msg_buf)
5797 return;
5798
5799 do {
5800 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005801 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005802 break;
Mitch Williams56497972014-06-04 08:45:18 +00005803 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005804 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5805 break;
5806 }
5807
5808 opcode = le16_to_cpu(event.desc.opcode);
5809 switch (opcode) {
5810
5811 case i40e_aqc_opc_get_link_status:
5812 i40e_handle_link_event(pf, &event);
5813 break;
5814 case i40e_aqc_opc_send_msg_to_pf:
5815 ret = i40e_vc_process_vf_msg(pf,
5816 le16_to_cpu(event.desc.retval),
5817 le32_to_cpu(event.desc.cookie_high),
5818 le32_to_cpu(event.desc.cookie_low),
5819 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00005820 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005821 break;
5822 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005823 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005824#ifdef CONFIG_I40E_DCB
5825 rtnl_lock();
5826 ret = i40e_handle_lldp_event(pf, &event);
5827 rtnl_unlock();
5828#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005829 break;
5830 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005831 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005832 i40e_handle_lan_overflow_event(pf, &event);
5833 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005834 case i40e_aqc_opc_send_msg_to_peer:
5835 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5836 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005837 default:
5838 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005839 "ARQ Error: Unknown event 0x%04x received\n",
5840 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005841 break;
5842 }
5843 } while (pending && (i++ < pf->adminq_work_limit));
5844
5845 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5846 /* re-enable Admin queue interrupt cause */
5847 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5848 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5849 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5850 i40e_flush(hw);
5851
5852 kfree(event.msg_buf);
5853}
5854
5855/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005856 * i40e_verify_eeprom - make sure eeprom is good to use
5857 * @pf: board private structure
5858 **/
5859static void i40e_verify_eeprom(struct i40e_pf *pf)
5860{
5861 int err;
5862
5863 err = i40e_diag_eeprom_test(&pf->hw);
5864 if (err) {
5865 /* retry in case of garbage read */
5866 err = i40e_diag_eeprom_test(&pf->hw);
5867 if (err) {
5868 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5869 err);
5870 set_bit(__I40E_BAD_EEPROM, &pf->state);
5871 }
5872 }
5873
5874 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5875 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5876 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5877 }
5878}
5879
5880/**
Neerav Parikh51616012015-02-06 08:52:14 +00005881 * i40e_config_bridge_mode - Configure the HW bridge mode
5882 * @veb: pointer to the bridge instance
5883 *
5884 * Configure the loop back mode for the LAN VSI that is downlink to the
5885 * specified HW bridge instance. It is expected this function is called
5886 * when a new HW bridge is instantiated.
5887 **/
5888static void i40e_config_bridge_mode(struct i40e_veb *veb)
5889{
5890 struct i40e_pf *pf = veb->pf;
5891
5892 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
5893 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
5894 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
5895 i40e_disable_pf_switch_lb(pf);
5896 else
5897 i40e_enable_pf_switch_lb(pf);
5898}
5899
5900/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005901 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5902 * @veb: pointer to the VEB instance
5903 *
5904 * This is a recursive function that first builds the attached VSIs then
5905 * recurses in to build the next layer of VEB. We track the connections
5906 * through our own index numbers because the seid's from the HW could
5907 * change across the reset.
5908 **/
5909static int i40e_reconstitute_veb(struct i40e_veb *veb)
5910{
5911 struct i40e_vsi *ctl_vsi = NULL;
5912 struct i40e_pf *pf = veb->pf;
5913 int v, veb_idx;
5914 int ret;
5915
5916 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005917 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005918 if (pf->vsi[v] &&
5919 pf->vsi[v]->veb_idx == veb->idx &&
5920 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5921 ctl_vsi = pf->vsi[v];
5922 break;
5923 }
5924 }
5925 if (!ctl_vsi) {
5926 dev_info(&pf->pdev->dev,
5927 "missing owner VSI for veb_idx %d\n", veb->idx);
5928 ret = -ENOENT;
5929 goto end_reconstitute;
5930 }
5931 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5932 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5933 ret = i40e_add_vsi(ctl_vsi);
5934 if (ret) {
5935 dev_info(&pf->pdev->dev,
5936 "rebuild of owner VSI failed: %d\n", ret);
5937 goto end_reconstitute;
5938 }
5939 i40e_vsi_reset_stats(ctl_vsi);
5940
5941 /* create the VEB in the switch and move the VSI onto the VEB */
5942 ret = i40e_add_veb(veb, ctl_vsi);
5943 if (ret)
5944 goto end_reconstitute;
5945
Neerav Parikh51616012015-02-06 08:52:14 +00005946 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00005947
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005948 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005949 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005950 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5951 continue;
5952
5953 if (pf->vsi[v]->veb_idx == veb->idx) {
5954 struct i40e_vsi *vsi = pf->vsi[v];
5955 vsi->uplink_seid = veb->seid;
5956 ret = i40e_add_vsi(vsi);
5957 if (ret) {
5958 dev_info(&pf->pdev->dev,
5959 "rebuild of vsi_idx %d failed: %d\n",
5960 v, ret);
5961 goto end_reconstitute;
5962 }
5963 i40e_vsi_reset_stats(vsi);
5964 }
5965 }
5966
5967 /* create any VEBs attached to this VEB - RECURSION */
5968 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5969 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5970 pf->veb[veb_idx]->uplink_seid = veb->seid;
5971 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5972 if (ret)
5973 break;
5974 }
5975 }
5976
5977end_reconstitute:
5978 return ret;
5979}
5980
5981/**
5982 * i40e_get_capabilities - get info about the HW
5983 * @pf: the PF struct
5984 **/
5985static int i40e_get_capabilities(struct i40e_pf *pf)
5986{
5987 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5988 u16 data_size;
5989 int buf_len;
5990 int err;
5991
5992 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
5993 do {
5994 cap_buf = kzalloc(buf_len, GFP_KERNEL);
5995 if (!cap_buf)
5996 return -ENOMEM;
5997
5998 /* this loads the data into the hw struct for us */
5999 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6000 &data_size,
6001 i40e_aqc_opc_list_func_capabilities,
6002 NULL);
6003 /* data loaded, buffer no longer needed */
6004 kfree(cap_buf);
6005
6006 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6007 /* retry with a larger buffer */
6008 buf_len = data_size;
6009 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6010 dev_info(&pf->pdev->dev,
6011 "capability discovery failed: aq=%d\n",
6012 pf->hw.aq.asq_last_status);
6013 return -ENODEV;
6014 }
6015 } while (err);
6016
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00006017 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
6018 (pf->hw.aq.fw_maj_ver < 2)) {
6019 pf->hw.func_caps.num_msix_vectors++;
6020 pf->hw.func_caps.num_msix_vectors_vf++;
6021 }
6022
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006023 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6024 dev_info(&pf->pdev->dev,
6025 "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",
6026 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6027 pf->hw.func_caps.num_msix_vectors,
6028 pf->hw.func_caps.num_msix_vectors_vf,
6029 pf->hw.func_caps.fd_filters_guaranteed,
6030 pf->hw.func_caps.fd_filters_best_effort,
6031 pf->hw.func_caps.num_tx_qp,
6032 pf->hw.func_caps.num_vsis);
6033
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006034#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6035 + pf->hw.func_caps.num_vfs)
6036 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6037 dev_info(&pf->pdev->dev,
6038 "got num_vsis %d, setting num_vsis to %d\n",
6039 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6040 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6041 }
6042
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006043 return 0;
6044}
6045
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006046static int i40e_vsi_clear(struct i40e_vsi *vsi);
6047
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006048/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006049 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006050 * @pf: board private structure
6051 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006052static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006053{
6054 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006055 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006056
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006057 /* quick workaround for an NVM issue that leaves a critical register
6058 * uninitialized
6059 */
6060 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6061 static const u32 hkey[] = {
6062 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6063 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6064 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6065 0x95b3a76d};
6066
6067 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6068 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6069 }
6070
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006071 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006072 return;
6073
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006074 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006075 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006076 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006077 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006078 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006079 break;
6080 }
6081 }
6082
6083 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006084 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006085 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6086 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006087 if (!vsi) {
6088 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006089 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6090 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006091 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006092 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006093
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006094 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006095}
6096
6097/**
6098 * i40e_fdir_teardown - release the Flow Director resources
6099 * @pf: board private structure
6100 **/
6101static void i40e_fdir_teardown(struct i40e_pf *pf)
6102{
6103 int i;
6104
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006105 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006106 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006107 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6108 i40e_vsi_release(pf->vsi[i]);
6109 break;
6110 }
6111 }
6112}
6113
6114/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006115 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006116 * @pf: board private structure
6117 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006118 * Close up the VFs and other things in prep for pf Reset.
6119 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006120static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006121{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006122 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006123 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006124 u32 v;
6125
6126 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6127 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006128 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006129
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006130 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006131
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006132 /* quiesce the VSIs and their queues that are not already DOWN */
6133 i40e_pf_quiesce_all_vsi(pf);
6134
Mitch Williams505682c2014-05-20 08:01:37 +00006135 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006136 if (pf->vsi[v])
6137 pf->vsi[v]->seid = 0;
6138 }
6139
6140 i40e_shutdown_adminq(&pf->hw);
6141
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006142 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006143 if (hw->hmc.hmc_obj) {
6144 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006145 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006146 dev_warn(&pf->pdev->dev,
6147 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006148 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006149}
6150
6151/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006152 * i40e_send_version - update firmware with driver version
6153 * @pf: PF struct
6154 */
6155static void i40e_send_version(struct i40e_pf *pf)
6156{
6157 struct i40e_driver_version dv;
6158
6159 dv.major_version = DRV_VERSION_MAJOR;
6160 dv.minor_version = DRV_VERSION_MINOR;
6161 dv.build_version = DRV_VERSION_BUILD;
6162 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006163 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006164 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6165}
6166
6167/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006168 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006169 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006170 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006171 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006172static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006173{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006174 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006175 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006176 i40e_status ret;
6177 u32 v;
6178
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006179 /* Now we wait for GRST to settle out.
6180 * We don't have to delete the VEBs or VSIs from the hw switch
6181 * because the reset will make them disappear.
6182 */
6183 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006184 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006185 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006186 set_bit(__I40E_RESET_FAILED, &pf->state);
6187 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006188 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006189 pf->pfr_count++;
6190
6191 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006192 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006193 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006194
6195 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6196 ret = i40e_init_adminq(&pf->hw);
6197 if (ret) {
6198 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006199 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006200 }
6201
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006202 /* re-verify the eeprom if we just had an EMP reset */
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00006203 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006204 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006205
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006206 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006207 ret = i40e_get_capabilities(pf);
6208 if (ret) {
6209 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
6210 ret);
6211 goto end_core_reset;
6212 }
6213
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006214 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6215 hw->func_caps.num_rx_qp,
6216 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6217 if (ret) {
6218 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6219 goto end_core_reset;
6220 }
6221 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6222 if (ret) {
6223 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6224 goto end_core_reset;
6225 }
6226
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006227#ifdef CONFIG_I40E_DCB
6228 ret = i40e_init_pf_dcb(pf);
6229 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006230 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6231 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6232 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006233 }
6234#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006235#ifdef I40E_FCOE
6236 ret = i40e_init_pf_fcoe(pf);
6237 if (ret)
6238 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006239
Vasu Dev38e00432014-08-01 13:27:03 -07006240#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006241 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006242 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006243 if (ret)
6244 goto end_core_reset;
6245
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006246 /* driver is only interested in link up/down and module qualification
6247 * reports from firmware
6248 */
6249 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6250 I40E_AQ_EVENT_LINK_UPDOWN |
6251 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6252 if (ret)
6253 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret);
6254
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006255 /* make sure our flow control settings are restored */
6256 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6257 if (ret)
6258 dev_info(&pf->pdev->dev, "set fc fail, aq_err %d\n", ret);
6259
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006260 /* Rebuild the VSIs and VEBs that existed before reset.
6261 * They are still in our local switch element arrays, so only
6262 * need to rebuild the switch model in the HW.
6263 *
6264 * If there were VEBs but the reconstitution failed, we'll try
6265 * try to recover minimal use by getting the basic PF VSI working.
6266 */
6267 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006268 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006269 /* find the one VEB connected to the MAC, and find orphans */
6270 for (v = 0; v < I40E_MAX_VEB; v++) {
6271 if (!pf->veb[v])
6272 continue;
6273
6274 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6275 pf->veb[v]->uplink_seid == 0) {
6276 ret = i40e_reconstitute_veb(pf->veb[v]);
6277
6278 if (!ret)
6279 continue;
6280
6281 /* If Main VEB failed, we're in deep doodoo,
6282 * so give up rebuilding the switch and set up
6283 * for minimal rebuild of PF VSI.
6284 * If orphan failed, we'll report the error
6285 * but try to keep going.
6286 */
6287 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6288 dev_info(&pf->pdev->dev,
6289 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6290 ret);
6291 pf->vsi[pf->lan_vsi]->uplink_seid
6292 = pf->mac_seid;
6293 break;
6294 } else if (pf->veb[v]->uplink_seid == 0) {
6295 dev_info(&pf->pdev->dev,
6296 "rebuild of orphan VEB failed: %d\n",
6297 ret);
6298 }
6299 }
6300 }
6301 }
6302
6303 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006304 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006305 /* no VEB, so rebuild only the Main VSI */
6306 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6307 if (ret) {
6308 dev_info(&pf->pdev->dev,
6309 "rebuild of Main VSI failed: %d\n", ret);
6310 goto end_core_reset;
6311 }
6312 }
6313
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006314 msleep(75);
6315 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6316 if (ret) {
6317 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
6318 pf->hw.aq.asq_last_status);
6319 }
6320
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006321 /* reinit the misc interrupt */
6322 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6323 ret = i40e_setup_misc_vector(pf);
6324
6325 /* restart the VSIs that were rebuilt and running before the reset */
6326 i40e_pf_unquiesce_all_vsi(pf);
6327
Mitch Williams69f64b22014-02-13 03:48:46 -08006328 if (pf->num_alloc_vfs) {
6329 for (v = 0; v < pf->num_alloc_vfs; v++)
6330 i40e_reset_vf(&pf->vf[v], true);
6331 }
6332
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006333 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006334 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006335
6336end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006337 clear_bit(__I40E_RESET_FAILED, &pf->state);
6338clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006339 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6340}
6341
6342/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006343 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6344 * @pf: board private structure
6345 *
6346 * Close up the VFs and other things in prep for a Core Reset,
6347 * then get ready to rebuild the world.
6348 **/
6349static void i40e_handle_reset_warning(struct i40e_pf *pf)
6350{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006351 i40e_prep_for_reset(pf);
6352 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006353}
6354
6355/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006356 * i40e_handle_mdd_event
6357 * @pf: pointer to the pf structure
6358 *
6359 * Called from the MDD irq handler to identify possibly malicious vfs
6360 **/
6361static void i40e_handle_mdd_event(struct i40e_pf *pf)
6362{
6363 struct i40e_hw *hw = &pf->hw;
6364 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006365 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006366 struct i40e_vf *vf;
6367 u32 reg;
6368 int i;
6369
6370 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6371 return;
6372
6373 /* find what triggered the MDD event */
6374 reg = rd32(hw, I40E_GL_MDET_TX);
6375 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006376 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6377 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006378 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006379 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006380 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006381 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006382 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6383 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6384 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006385 if (netif_msg_tx_err(pf))
6386 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6387 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006388 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6389 mdd_detected = true;
6390 }
6391 reg = rd32(hw, I40E_GL_MDET_RX);
6392 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006393 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6394 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006395 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006396 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006397 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6398 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6399 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006400 if (netif_msg_rx_err(pf))
6401 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6402 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006403 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6404 mdd_detected = true;
6405 }
6406
Neerav Parikhdf430b12014-06-04 01:23:15 +00006407 if (mdd_detected) {
6408 reg = rd32(hw, I40E_PF_MDET_TX);
6409 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6410 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006411 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006412 pf_mdd_detected = true;
6413 }
6414 reg = rd32(hw, I40E_PF_MDET_RX);
6415 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6416 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006417 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006418 pf_mdd_detected = true;
6419 }
6420 /* Queue belongs to the PF, initiate a reset */
6421 if (pf_mdd_detected) {
6422 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6423 i40e_service_event_schedule(pf);
6424 }
6425 }
6426
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006427 /* see if one of the VFs needs its hand slapped */
6428 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6429 vf = &(pf->vf[i]);
6430 reg = rd32(hw, I40E_VP_MDET_TX(i));
6431 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6432 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6433 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006434 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6435 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006436 }
6437
6438 reg = rd32(hw, I40E_VP_MDET_RX(i));
6439 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6440 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6441 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006442 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6443 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006444 }
6445
6446 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6447 dev_info(&pf->pdev->dev,
6448 "Too many MDD events on VF %d, disabled\n", i);
6449 dev_info(&pf->pdev->dev,
6450 "Use PF Control I/F to re-enable the VF\n");
6451 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6452 }
6453 }
6454
6455 /* re-enable mdd interrupt cause */
6456 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6457 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6458 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6459 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6460 i40e_flush(hw);
6461}
6462
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006463#ifdef CONFIG_I40E_VXLAN
6464/**
6465 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6466 * @pf: board private structure
6467 **/
6468static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6469{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006470 struct i40e_hw *hw = &pf->hw;
6471 i40e_status ret;
6472 u8 filter_index;
6473 __be16 port;
6474 int i;
6475
6476 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6477 return;
6478
6479 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6480
6481 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6482 if (pf->pending_vxlan_bitmap & (1 << i)) {
6483 pf->pending_vxlan_bitmap &= ~(1 << i);
6484 port = pf->vxlan_ports[i];
6485 ret = port ?
6486 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006487 I40E_AQC_TUNNEL_TYPE_VXLAN,
6488 &filter_index, NULL)
6489 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6490
6491 if (ret) {
6492 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6493 port ? "adding" : "deleting",
6494 ntohs(port), port ? i : i);
6495
6496 pf->vxlan_ports[i] = 0;
6497 } else {
6498 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6499 port ? "Added" : "Deleted",
6500 ntohs(port), port ? i : filter_index);
6501 }
6502 }
6503 }
6504}
6505
6506#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006507/**
6508 * i40e_service_task - Run the driver's async subtasks
6509 * @work: pointer to work_struct containing our data
6510 **/
6511static void i40e_service_task(struct work_struct *work)
6512{
6513 struct i40e_pf *pf = container_of(work,
6514 struct i40e_pf,
6515 service_task);
6516 unsigned long start_time = jiffies;
6517
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006518 /* don't bother with service tasks if a reset is in progress */
6519 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6520 i40e_service_event_complete(pf);
6521 return;
6522 }
6523
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006524 i40e_reset_subtask(pf);
6525 i40e_handle_mdd_event(pf);
6526 i40e_vc_process_vflr_event(pf);
6527 i40e_watchdog_subtask(pf);
6528 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006529 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006530#ifdef CONFIG_I40E_VXLAN
6531 i40e_sync_vxlan_filters_subtask(pf);
6532#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006533 i40e_clean_adminq_subtask(pf);
6534
6535 i40e_service_event_complete(pf);
6536
6537 /* If the tasks have taken longer than one timer cycle or there
6538 * is more work to be done, reschedule the service task now
6539 * rather than wait for the timer to tick again.
6540 */
6541 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6542 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6543 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6544 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6545 i40e_service_event_schedule(pf);
6546}
6547
6548/**
6549 * i40e_service_timer - timer callback
6550 * @data: pointer to PF struct
6551 **/
6552static void i40e_service_timer(unsigned long data)
6553{
6554 struct i40e_pf *pf = (struct i40e_pf *)data;
6555
6556 mod_timer(&pf->service_timer,
6557 round_jiffies(jiffies + pf->service_timer_period));
6558 i40e_service_event_schedule(pf);
6559}
6560
6561/**
6562 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6563 * @vsi: the VSI being configured
6564 **/
6565static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6566{
6567 struct i40e_pf *pf = vsi->back;
6568
6569 switch (vsi->type) {
6570 case I40E_VSI_MAIN:
6571 vsi->alloc_queue_pairs = pf->num_lan_qps;
6572 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6573 I40E_REQ_DESCRIPTOR_MULTIPLE);
6574 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6575 vsi->num_q_vectors = pf->num_lan_msix;
6576 else
6577 vsi->num_q_vectors = 1;
6578
6579 break;
6580
6581 case I40E_VSI_FDIR:
6582 vsi->alloc_queue_pairs = 1;
6583 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6584 I40E_REQ_DESCRIPTOR_MULTIPLE);
6585 vsi->num_q_vectors = 1;
6586 break;
6587
6588 case I40E_VSI_VMDQ2:
6589 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6590 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6591 I40E_REQ_DESCRIPTOR_MULTIPLE);
6592 vsi->num_q_vectors = pf->num_vmdq_msix;
6593 break;
6594
6595 case I40E_VSI_SRIOV:
6596 vsi->alloc_queue_pairs = pf->num_vf_qps;
6597 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6598 I40E_REQ_DESCRIPTOR_MULTIPLE);
6599 break;
6600
Vasu Dev38e00432014-08-01 13:27:03 -07006601#ifdef I40E_FCOE
6602 case I40E_VSI_FCOE:
6603 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6604 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6605 I40E_REQ_DESCRIPTOR_MULTIPLE);
6606 vsi->num_q_vectors = pf->num_fcoe_msix;
6607 break;
6608
6609#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006610 default:
6611 WARN_ON(1);
6612 return -ENODATA;
6613 }
6614
6615 return 0;
6616}
6617
6618/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006619 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6620 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006621 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006622 *
6623 * On error: returns error code (negative)
6624 * On success: returns 0
6625 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006626static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006627{
6628 int size;
6629 int ret = 0;
6630
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006631 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006632 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6633 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6634 if (!vsi->tx_rings)
6635 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006636 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6637
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006638 if (alloc_qvectors) {
6639 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006640 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006641 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6642 if (!vsi->q_vectors) {
6643 ret = -ENOMEM;
6644 goto err_vectors;
6645 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006646 }
6647 return ret;
6648
6649err_vectors:
6650 kfree(vsi->tx_rings);
6651 return ret;
6652}
6653
6654/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006655 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6656 * @pf: board private structure
6657 * @type: type of VSI
6658 *
6659 * On error: returns error code (negative)
6660 * On success: returns vsi index in PF (positive)
6661 **/
6662static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6663{
6664 int ret = -ENODEV;
6665 struct i40e_vsi *vsi;
6666 int vsi_idx;
6667 int i;
6668
6669 /* Need to protect the allocation of the VSIs at the PF level */
6670 mutex_lock(&pf->switch_mutex);
6671
6672 /* VSI list may be fragmented if VSI creation/destruction has
6673 * been happening. We can afford to do a quick scan to look
6674 * for any free VSIs in the list.
6675 *
6676 * find next empty vsi slot, looping back around if necessary
6677 */
6678 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006679 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006680 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006681 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006682 i = 0;
6683 while (i < pf->next_vsi && pf->vsi[i])
6684 i++;
6685 }
6686
Mitch Williams505682c2014-05-20 08:01:37 +00006687 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006688 vsi_idx = i; /* Found one! */
6689 } else {
6690 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006691 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006692 }
6693 pf->next_vsi = ++i;
6694
6695 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6696 if (!vsi) {
6697 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006698 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006699 }
6700 vsi->type = type;
6701 vsi->back = pf;
6702 set_bit(__I40E_DOWN, &vsi->state);
6703 vsi->flags = 0;
6704 vsi->idx = vsi_idx;
6705 vsi->rx_itr_setting = pf->rx_itr_default;
6706 vsi->tx_itr_setting = pf->tx_itr_default;
6707 vsi->netdev_registered = false;
6708 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6709 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006710 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006711
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006712 ret = i40e_set_num_rings_in_vsi(vsi);
6713 if (ret)
6714 goto err_rings;
6715
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006716 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006717 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006718 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006719
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006720 /* Setup default MSIX irq handler for VSI */
6721 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6722
6723 pf->vsi[vsi_idx] = vsi;
6724 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006725 goto unlock_pf;
6726
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006727err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006728 pf->next_vsi = i - 1;
6729 kfree(vsi);
6730unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006731 mutex_unlock(&pf->switch_mutex);
6732 return ret;
6733}
6734
6735/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006736 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6737 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006738 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006739 *
6740 * On error: returns error code (negative)
6741 * On success: returns 0
6742 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006743static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006744{
6745 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006746 if (free_qvectors) {
6747 kfree(vsi->q_vectors);
6748 vsi->q_vectors = NULL;
6749 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006750 kfree(vsi->tx_rings);
6751 vsi->tx_rings = NULL;
6752 vsi->rx_rings = NULL;
6753}
6754
6755/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006756 * i40e_vsi_clear - Deallocate the VSI provided
6757 * @vsi: the VSI being un-configured
6758 **/
6759static int i40e_vsi_clear(struct i40e_vsi *vsi)
6760{
6761 struct i40e_pf *pf;
6762
6763 if (!vsi)
6764 return 0;
6765
6766 if (!vsi->back)
6767 goto free_vsi;
6768 pf = vsi->back;
6769
6770 mutex_lock(&pf->switch_mutex);
6771 if (!pf->vsi[vsi->idx]) {
6772 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6773 vsi->idx, vsi->idx, vsi, vsi->type);
6774 goto unlock_vsi;
6775 }
6776
6777 if (pf->vsi[vsi->idx] != vsi) {
6778 dev_err(&pf->pdev->dev,
6779 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6780 pf->vsi[vsi->idx]->idx,
6781 pf->vsi[vsi->idx],
6782 pf->vsi[vsi->idx]->type,
6783 vsi->idx, vsi, vsi->type);
6784 goto unlock_vsi;
6785 }
6786
6787 /* updates the pf for this cleared vsi */
6788 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6789 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6790
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006791 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006792
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006793 pf->vsi[vsi->idx] = NULL;
6794 if (vsi->idx < pf->next_vsi)
6795 pf->next_vsi = vsi->idx;
6796
6797unlock_vsi:
6798 mutex_unlock(&pf->switch_mutex);
6799free_vsi:
6800 kfree(vsi);
6801
6802 return 0;
6803}
6804
6805/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006806 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6807 * @vsi: the VSI being cleaned
6808 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006809static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006810{
6811 int i;
6812
Greg Rose8e9dca52013-12-18 13:45:53 +00006813 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006814 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006815 kfree_rcu(vsi->tx_rings[i], rcu);
6816 vsi->tx_rings[i] = NULL;
6817 vsi->rx_rings[i] = NULL;
6818 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006819 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006820}
6821
6822/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006823 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6824 * @vsi: the VSI being configured
6825 **/
6826static int i40e_alloc_rings(struct i40e_vsi *vsi)
6827{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006828 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006829 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006830 int i;
6831
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006832 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006833 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006834 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006835 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6836 if (!tx_ring)
6837 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006838
6839 tx_ring->queue_index = i;
6840 tx_ring->reg_idx = vsi->base_queue + i;
6841 tx_ring->ring_active = false;
6842 tx_ring->vsi = vsi;
6843 tx_ring->netdev = vsi->netdev;
6844 tx_ring->dev = &pf->pdev->dev;
6845 tx_ring->count = vsi->num_desc;
6846 tx_ring->size = 0;
6847 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006848 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006849
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006850 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006851 rx_ring->queue_index = i;
6852 rx_ring->reg_idx = vsi->base_queue + i;
6853 rx_ring->ring_active = false;
6854 rx_ring->vsi = vsi;
6855 rx_ring->netdev = vsi->netdev;
6856 rx_ring->dev = &pf->pdev->dev;
6857 rx_ring->count = vsi->num_desc;
6858 rx_ring->size = 0;
6859 rx_ring->dcb_tc = 0;
6860 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6861 set_ring_16byte_desc_enabled(rx_ring);
6862 else
6863 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006864 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006865 }
6866
6867 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006868
6869err_out:
6870 i40e_vsi_clear_rings(vsi);
6871 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006872}
6873
6874/**
6875 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6876 * @pf: board private structure
6877 * @vectors: the number of MSI-X vectors to request
6878 *
6879 * Returns the number of vectors reserved, or error
6880 **/
6881static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6882{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006883 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6884 I40E_MIN_MSIX, vectors);
6885 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006886 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006887 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006888 vectors = 0;
6889 }
6890
6891 return vectors;
6892}
6893
6894/**
6895 * i40e_init_msix - Setup the MSIX capability
6896 * @pf: board private structure
6897 *
6898 * Work with the OS to set up the MSIX vectors needed.
6899 *
6900 * Returns 0 on success, negative on failure
6901 **/
6902static int i40e_init_msix(struct i40e_pf *pf)
6903{
6904 i40e_status err = 0;
6905 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006906 int other_vecs = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006907 int v_budget, i;
6908 int vec;
6909
6910 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6911 return -ENODEV;
6912
6913 /* The number of vectors we'll request will be comprised of:
6914 * - Add 1 for "other" cause for Admin Queue events, etc.
6915 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006916 * - Queues being used for RSS.
6917 * We don't need as many as max_rss_size vectors.
6918 * use rss_size instead in the calculation since that
6919 * is governed by number of cpus in the system.
6920 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006921 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006922#ifdef I40E_FCOE
6923 * - The number of FCOE qps.
6924#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006925 * Once we count this up, try the request.
6926 *
6927 * If we can't get what we want, we'll simplify to nearly nothing
6928 * and try again. If that still fails, we punt.
6929 */
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00006930 pf->num_lan_msix = min_t(int, num_online_cpus(),
6931 hw->func_caps.num_msix_vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006932 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006933 other_vecs = 1;
6934 other_vecs += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006935 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006936 other_vecs++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006937
John W Linville83840e42015-01-14 03:06:28 +00006938 /* Scale down if necessary, and the rings will share vectors */
6939 pf->num_lan_msix = min_t(int, pf->num_lan_msix,
6940 (hw->func_caps.num_msix_vectors - other_vecs));
6941 v_budget = pf->num_lan_msix + other_vecs;
6942
Vasu Dev38e00432014-08-01 13:27:03 -07006943#ifdef I40E_FCOE
6944 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6945 pf->num_fcoe_msix = pf->num_fcoe_qps;
6946 v_budget += pf->num_fcoe_msix;
6947 }
Vasu Dev38e00432014-08-01 13:27:03 -07006948#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006949
6950 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6951 GFP_KERNEL);
6952 if (!pf->msix_entries)
6953 return -ENOMEM;
6954
6955 for (i = 0; i < v_budget; i++)
6956 pf->msix_entries[i].entry = i;
6957 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006958
6959 if (vec != v_budget) {
6960 /* If we have limited resources, we will start with no vectors
6961 * for the special features and then allocate vectors to some
6962 * of these features based on the policy and at the end disable
6963 * the features that did not get any vectors.
6964 */
Vasu Dev38e00432014-08-01 13:27:03 -07006965#ifdef I40E_FCOE
6966 pf->num_fcoe_qps = 0;
6967 pf->num_fcoe_msix = 0;
6968#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006969 pf->num_vmdq_msix = 0;
6970 }
6971
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006972 if (vec < I40E_MIN_MSIX) {
6973 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6974 kfree(pf->msix_entries);
6975 pf->msix_entries = NULL;
6976 return -ENODEV;
6977
6978 } else if (vec == I40E_MIN_MSIX) {
6979 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006980 pf->num_vmdq_vsis = 0;
6981 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006982 pf->num_lan_qps = 1;
6983 pf->num_lan_msix = 1;
6984
6985 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006986 /* reserve the misc vector */
6987 vec--;
6988
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006989 /* Scale vector usage down */
6990 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006991 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006992
6993 /* partition out the remaining vectors */
6994 switch (vec) {
6995 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006996 pf->num_lan_msix = 1;
6997 break;
6998 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07006999#ifdef I40E_FCOE
7000 /* give one vector to FCoE */
7001 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7002 pf->num_lan_msix = 1;
7003 pf->num_fcoe_msix = 1;
7004 }
7005#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007006 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07007007#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007008 break;
7009 default:
Vasu Dev38e00432014-08-01 13:27:03 -07007010#ifdef I40E_FCOE
7011 /* give one vector to FCoE */
7012 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7013 pf->num_fcoe_msix = 1;
7014 vec--;
7015 }
7016#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007017 pf->num_lan_msix = min_t(int, (vec / 2),
7018 pf->num_lan_qps);
7019 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
7020 I40E_DEFAULT_NUM_VMDQ_VSI);
7021 break;
7022 }
7023 }
7024
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007025 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7026 (pf->num_vmdq_msix == 0)) {
7027 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7028 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7029 }
Vasu Dev38e00432014-08-01 13:27:03 -07007030#ifdef I40E_FCOE
7031
7032 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7033 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7034 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7035 }
7036#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007037 return err;
7038}
7039
7040/**
Greg Rose90e04072014-03-06 08:59:57 +00007041 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007042 * @vsi: the VSI being configured
7043 * @v_idx: index of the vector in the vsi struct
7044 *
7045 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7046 **/
Greg Rose90e04072014-03-06 08:59:57 +00007047static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00007048{
7049 struct i40e_q_vector *q_vector;
7050
7051 /* allocate q_vector */
7052 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7053 if (!q_vector)
7054 return -ENOMEM;
7055
7056 q_vector->vsi = vsi;
7057 q_vector->v_idx = v_idx;
7058 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
7059 if (vsi->netdev)
7060 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007061 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007062
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007063 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7064 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7065
Alexander Duyck493fb302013-09-28 07:01:44 +00007066 /* tie q_vector and vsi together */
7067 vsi->q_vectors[v_idx] = q_vector;
7068
7069 return 0;
7070}
7071
7072/**
Greg Rose90e04072014-03-06 08:59:57 +00007073 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007074 * @vsi: the VSI being configured
7075 *
7076 * We allocate one q_vector per queue interrupt. If allocation fails we
7077 * return -ENOMEM.
7078 **/
Greg Rose90e04072014-03-06 08:59:57 +00007079static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007080{
7081 struct i40e_pf *pf = vsi->back;
7082 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007083 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007084
7085 /* if not MSIX, give the one vector only to the LAN VSI */
7086 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7087 num_q_vectors = vsi->num_q_vectors;
7088 else if (vsi == pf->vsi[pf->lan_vsi])
7089 num_q_vectors = 1;
7090 else
7091 return -EINVAL;
7092
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007093 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007094 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007095 if (err)
7096 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007097 }
7098
7099 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007100
7101err_out:
7102 while (v_idx--)
7103 i40e_free_q_vector(vsi, v_idx);
7104
7105 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007106}
7107
7108/**
7109 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7110 * @pf: board private structure to initialize
7111 **/
7112static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
7113{
7114 int err = 0;
7115
7116 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7117 err = i40e_init_msix(pf);
7118 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007119 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007120#ifdef I40E_FCOE
7121 I40E_FLAG_FCOE_ENABLED |
7122#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007123 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007124 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007125 I40E_FLAG_SRIOV_ENABLED |
7126 I40E_FLAG_FD_SB_ENABLED |
7127 I40E_FLAG_FD_ATR_ENABLED |
7128 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007129
7130 /* rework the queue expectations without MSIX */
7131 i40e_determine_queue_usage(pf);
7132 }
7133 }
7134
7135 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7136 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007137 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007138 err = pci_enable_msi(pf->pdev);
7139 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00007140 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007141 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7142 }
7143 }
7144
Shannon Nelson958a3e32013-09-28 07:13:28 +00007145 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007146 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007147
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007148 /* track first vector for misc interrupts */
7149 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
7150}
7151
7152/**
7153 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7154 * @pf: board private structure
7155 *
7156 * This sets up the handler for MSIX 0, which is used to manage the
7157 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7158 * when in MSI or Legacy interrupt mode.
7159 **/
7160static int i40e_setup_misc_vector(struct i40e_pf *pf)
7161{
7162 struct i40e_hw *hw = &pf->hw;
7163 int err = 0;
7164
7165 /* Only request the irq if this is the first time through, and
7166 * not when we're rebuilding after a Reset
7167 */
7168 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7169 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007170 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007171 if (err) {
7172 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007173 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007174 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007175 return -EFAULT;
7176 }
7177 }
7178
Jacob Kellerab437b52014-12-14 01:55:08 +00007179 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007180
7181 /* associate no queues to the misc vector */
7182 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7183 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7184
7185 i40e_flush(hw);
7186
7187 i40e_irq_dynamic_enable_icr0(pf);
7188
7189 return err;
7190}
7191
7192/**
7193 * i40e_config_rss - Prepare for RSS if used
7194 * @pf: board private structure
7195 **/
7196static int i40e_config_rss(struct i40e_pf *pf)
7197{
Eric Dumazet22f258a2014-11-16 06:23:13 -08007198 u32 rss_key[I40E_PFQF_HKEY_MAX_INDEX + 1];
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00007199 struct i40e_hw *hw = &pf->hw;
7200 u32 lut = 0;
7201 int i, j;
7202 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007203 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007204
Eric Dumazet22f258a2014-11-16 06:23:13 -08007205 netdev_rss_key_fill(rss_key, sizeof(rss_key));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007206 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Eric Dumazet22f258a2014-11-16 06:23:13 -08007207 wr32(hw, I40E_PFQF_HKEY(i), rss_key[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007208
7209 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
7210 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
7211 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00007212 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007213 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
7214 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
7215
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007216 /* Check capability and Set table size and register per hw expectation*/
7217 reg_val = rd32(hw, I40E_PFQF_CTL_0);
7218 if (hw->func_caps.rss_table_size == 512) {
7219 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7220 pf->rss_table_size = 512;
7221 } else {
7222 pf->rss_table_size = 128;
7223 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7224 }
7225 wr32(hw, I40E_PFQF_CTL_0, reg_val);
7226
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007227 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007228 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007229
7230 /* The assumption is that lan qp count will be the highest
7231 * qp count for any PF VSI that needs RSS.
7232 * If multiple VSIs need RSS support, all the qp counts
7233 * for those VSIs should be a power of 2 for RSS to work.
7234 * If LAN VSI is the only consumer for RSS then this requirement
7235 * is not necessary.
7236 */
7237 if (j == pf->rss_size)
7238 j = 0;
7239 /* lut = 4-byte sliding window of 4 lut entries */
7240 lut = (lut << 8) | (j &
7241 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
7242 /* On i = 3, we have 4 entries in lut; write to the register */
7243 if ((i & 3) == 3)
7244 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
7245 }
7246 i40e_flush(hw);
7247
7248 return 0;
7249}
7250
7251/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007252 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
7253 * @pf: board private structure
7254 * @queue_count: the requested queue count for rss.
7255 *
7256 * returns 0 if rss is not enabled, if enabled returns the final rss queue
7257 * count which may be different from the requested queue count.
7258 **/
7259int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7260{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007261 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
7262 int new_rss_size;
7263
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007264 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7265 return 0;
7266
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007267 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007268
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007269 if (queue_count != vsi->num_queue_pairs) {
7270 vsi->req_queue_pairs = queue_count;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007271 i40e_prep_for_reset(pf);
7272
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007273 pf->rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007274
7275 i40e_reset_and_rebuild(pf, true);
7276 i40e_config_rss(pf);
7277 }
7278 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7279 return pf->rss_size;
7280}
7281
7282/**
Greg Rosef4492db2015-02-06 08:52:12 +00007283 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
7284 * @pf: board private structure
7285 **/
7286i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
7287{
7288 i40e_status status;
7289 bool min_valid, max_valid;
7290 u32 max_bw, min_bw;
7291
7292 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
7293 &min_valid, &max_valid);
7294
7295 if (!status) {
7296 if (min_valid)
7297 pf->npar_min_bw = min_bw;
7298 if (max_valid)
7299 pf->npar_max_bw = max_bw;
7300 }
7301
7302 return status;
7303}
7304
7305/**
7306 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
7307 * @pf: board private structure
7308 **/
7309i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
7310{
7311 struct i40e_aqc_configure_partition_bw_data bw_data;
7312 i40e_status status;
7313
7314 /* Set the valid bit for this pf */
7315 bw_data.pf_valid_bits = cpu_to_le16(1 << pf->hw.pf_id);
7316 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
7317 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
7318
7319 /* Set the new bandwidths */
7320 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
7321
7322 return status;
7323}
7324
7325/**
7326 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
7327 * @pf: board private structure
7328 **/
7329i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
7330{
7331 /* Commit temporary BW setting to permanent NVM image */
7332 enum i40e_admin_queue_err last_aq_status;
7333 i40e_status ret;
7334 u16 nvm_word;
7335
7336 if (pf->hw.partition_id != 1) {
7337 dev_info(&pf->pdev->dev,
7338 "Commit BW only works on partition 1! This is partition %d",
7339 pf->hw.partition_id);
7340 ret = I40E_NOT_SUPPORTED;
7341 goto bw_commit_out;
7342 }
7343
7344 /* Acquire NVM for read access */
7345 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
7346 last_aq_status = pf->hw.aq.asq_last_status;
7347 if (ret) {
7348 dev_info(&pf->pdev->dev,
7349 "Cannot acquire NVM for read access, err %d: aq_err %d\n",
7350 ret, last_aq_status);
7351 goto bw_commit_out;
7352 }
7353
7354 /* Read word 0x10 of NVM - SW compatibility word 1 */
7355 ret = i40e_aq_read_nvm(&pf->hw,
7356 I40E_SR_NVM_CONTROL_WORD,
7357 0x10, sizeof(nvm_word), &nvm_word,
7358 false, NULL);
7359 /* Save off last admin queue command status before releasing
7360 * the NVM
7361 */
7362 last_aq_status = pf->hw.aq.asq_last_status;
7363 i40e_release_nvm(&pf->hw);
7364 if (ret) {
7365 dev_info(&pf->pdev->dev, "NVM read error, err %d aq_err %d\n",
7366 ret, last_aq_status);
7367 goto bw_commit_out;
7368 }
7369
7370 /* Wait a bit for NVM release to complete */
7371 msleep(50);
7372
7373 /* Acquire NVM for write access */
7374 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
7375 last_aq_status = pf->hw.aq.asq_last_status;
7376 if (ret) {
7377 dev_info(&pf->pdev->dev,
7378 "Cannot acquire NVM for write access, err %d: aq_err %d\n",
7379 ret, last_aq_status);
7380 goto bw_commit_out;
7381 }
7382 /* Write it back out unchanged to initiate update NVM,
7383 * which will force a write of the shadow (alt) RAM to
7384 * the NVM - thus storing the bandwidth values permanently.
7385 */
7386 ret = i40e_aq_update_nvm(&pf->hw,
7387 I40E_SR_NVM_CONTROL_WORD,
7388 0x10, sizeof(nvm_word),
7389 &nvm_word, true, NULL);
7390 /* Save off last admin queue command status before releasing
7391 * the NVM
7392 */
7393 last_aq_status = pf->hw.aq.asq_last_status;
7394 i40e_release_nvm(&pf->hw);
7395 if (ret)
7396 dev_info(&pf->pdev->dev,
7397 "BW settings NOT SAVED, err %d aq_err %d\n",
7398 ret, last_aq_status);
7399bw_commit_out:
7400
7401 return ret;
7402}
7403
7404/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007405 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7406 * @pf: board private structure to initialize
7407 *
7408 * i40e_sw_init initializes the Adapter private data structure.
7409 * Fields are initialized based on PCI device information and
7410 * OS network device settings (MTU size).
7411 **/
7412static int i40e_sw_init(struct i40e_pf *pf)
7413{
7414 int err = 0;
7415 int size;
7416
7417 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7418 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007419 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007420 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7421 if (I40E_DEBUG_USER & debug)
7422 pf->hw.debug_mask = debug;
7423 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7424 I40E_DEFAULT_MSG_ENABLE);
7425 }
7426
7427 /* Set default capability flags */
7428 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7429 I40E_FLAG_MSI_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00007430 I40E_FLAG_MSIX_ENABLED;
7431
7432 if (iommu_present(&pci_bus_type))
7433 pf->flags |= I40E_FLAG_RX_PS_ENABLED;
7434 else
7435 pf->flags |= I40E_FLAG_RX_1BUF_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007436
Mitch Williamsca99eb92014-04-04 04:43:07 +00007437 /* Set default ITR */
7438 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7439 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7440
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007441 /* Depending on PF configurations, it is possible that the RSS
7442 * maximum might end up larger than the available queues
7443 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007444 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007445 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007446 pf->rss_size_max = min_t(int, pf->rss_size_max,
7447 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007448 if (pf->hw.func_caps.rss) {
7449 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007450 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007451 }
7452
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007453 /* MFP mode enabled */
7454 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7455 pf->flags |= I40E_FLAG_MFP_ENABLED;
7456 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Greg Rosef4492db2015-02-06 08:52:12 +00007457 if (i40e_get_npar_bw_setting(pf))
7458 dev_warn(&pf->pdev->dev,
7459 "Could not get NPAR bw settings\n");
7460 else
7461 dev_info(&pf->pdev->dev,
7462 "Min BW = %8.8x, Max BW = %8.8x\n",
7463 pf->npar_min_bw, pf->npar_max_bw);
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007464 }
7465
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007466 /* FW/NVM is not yet fixed in this regard */
7467 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7468 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7469 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7470 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007471 /* Setup a counter for fd_atr per pf */
7472 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007473 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007474 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007475 /* Setup a counter for fd_sb per pf */
7476 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007477 } else {
7478 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007479 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007480 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007481 pf->fdir_pf_filter_count =
7482 pf->hw.func_caps.fd_filters_guaranteed;
7483 pf->hw.fdir_shared_filter_count =
7484 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007485 }
7486
7487 if (pf->hw.func_caps.vmdq) {
7488 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7489 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7490 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7491 }
7492
Vasu Dev38e00432014-08-01 13:27:03 -07007493#ifdef I40E_FCOE
7494 err = i40e_init_pf_fcoe(pf);
7495 if (err)
7496 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7497
7498#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007499#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f12014-12-11 07:06:34 +00007500 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007501 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7502 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7503 pf->num_req_vfs = min_t(int,
7504 pf->hw.func_caps.num_vfs,
7505 I40E_MAX_VF_COUNT);
7506 }
7507#endif /* CONFIG_PCI_IOV */
7508 pf->eeprom_version = 0xDEAD;
7509 pf->lan_veb = I40E_NO_VEB;
7510 pf->lan_vsi = I40E_NO_VSI;
7511
7512 /* set up queue assignment tracking */
7513 size = sizeof(struct i40e_lump_tracking)
7514 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7515 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7516 if (!pf->qp_pile) {
7517 err = -ENOMEM;
7518 goto sw_init_done;
7519 }
7520 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7521 pf->qp_pile->search_hint = 0;
7522
7523 /* set up vector assignment tracking */
7524 size = sizeof(struct i40e_lump_tracking)
7525 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7526 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7527 if (!pf->irq_pile) {
7528 kfree(pf->qp_pile);
7529 err = -ENOMEM;
7530 goto sw_init_done;
7531 }
7532 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7533 pf->irq_pile->search_hint = 0;
7534
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007535 pf->tx_timeout_recovery_level = 1;
7536
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007537 mutex_init(&pf->switch_mutex);
7538
7539sw_init_done:
7540 return err;
7541}
7542
7543/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007544 * i40e_set_ntuple - set the ntuple feature flag and take action
7545 * @pf: board private structure to initialize
7546 * @features: the feature set that the stack is suggesting
7547 *
7548 * returns a bool to indicate if reset needs to happen
7549 **/
7550bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7551{
7552 bool need_reset = false;
7553
7554 /* Check if Flow Director n-tuple support was enabled or disabled. If
7555 * the state changed, we need to reset.
7556 */
7557 if (features & NETIF_F_NTUPLE) {
7558 /* Enable filters and mark for reset */
7559 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7560 need_reset = true;
7561 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7562 } else {
7563 /* turn off filters, mark for reset and clear SW filter list */
7564 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7565 need_reset = true;
7566 i40e_fdir_filter_exit(pf);
7567 }
7568 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007569 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007570 /* reset fd counters */
7571 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7572 pf->fdir_pf_active_filters = 0;
7573 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7574 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007575 /* if ATR was auto disabled it can be re-enabled. */
7576 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7577 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7578 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007579 }
7580 return need_reset;
7581}
7582
7583/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007584 * i40e_set_features - set the netdev feature flags
7585 * @netdev: ptr to the netdev being adjusted
7586 * @features: the feature set that the stack is suggesting
7587 **/
7588static int i40e_set_features(struct net_device *netdev,
7589 netdev_features_t features)
7590{
7591 struct i40e_netdev_priv *np = netdev_priv(netdev);
7592 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007593 struct i40e_pf *pf = vsi->back;
7594 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007595
7596 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7597 i40e_vlan_stripping_enable(vsi);
7598 else
7599 i40e_vlan_stripping_disable(vsi);
7600
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007601 need_reset = i40e_set_ntuple(pf, features);
7602
7603 if (need_reset)
7604 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7605
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007606 return 0;
7607}
7608
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007609#ifdef CONFIG_I40E_VXLAN
7610/**
7611 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7612 * @pf: board private structure
7613 * @port: The UDP port to look up
7614 *
7615 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7616 **/
7617static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7618{
7619 u8 i;
7620
7621 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7622 if (pf->vxlan_ports[i] == port)
7623 return i;
7624 }
7625
7626 return i;
7627}
7628
7629/**
7630 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7631 * @netdev: This physical port's netdev
7632 * @sa_family: Socket Family that VXLAN is notifying us about
7633 * @port: New UDP port number that VXLAN started listening to
7634 **/
7635static void i40e_add_vxlan_port(struct net_device *netdev,
7636 sa_family_t sa_family, __be16 port)
7637{
7638 struct i40e_netdev_priv *np = netdev_priv(netdev);
7639 struct i40e_vsi *vsi = np->vsi;
7640 struct i40e_pf *pf = vsi->back;
7641 u8 next_idx;
7642 u8 idx;
7643
7644 if (sa_family == AF_INET6)
7645 return;
7646
7647 idx = i40e_get_vxlan_port_idx(pf, port);
7648
7649 /* Check if port already exists */
7650 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7651 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7652 return;
7653 }
7654
7655 /* Now check if there is space to add the new port */
7656 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7657
7658 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7659 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7660 ntohs(port));
7661 return;
7662 }
7663
7664 /* New port: add it and mark its index in the bitmap */
7665 pf->vxlan_ports[next_idx] = port;
7666 pf->pending_vxlan_bitmap |= (1 << next_idx);
7667
7668 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7669}
7670
7671/**
7672 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7673 * @netdev: This physical port's netdev
7674 * @sa_family: Socket Family that VXLAN is notifying us about
7675 * @port: UDP port number that VXLAN stopped listening to
7676 **/
7677static void i40e_del_vxlan_port(struct net_device *netdev,
7678 sa_family_t sa_family, __be16 port)
7679{
7680 struct i40e_netdev_priv *np = netdev_priv(netdev);
7681 struct i40e_vsi *vsi = np->vsi;
7682 struct i40e_pf *pf = vsi->back;
7683 u8 idx;
7684
7685 if (sa_family == AF_INET6)
7686 return;
7687
7688 idx = i40e_get_vxlan_port_idx(pf, port);
7689
7690 /* Check if port already exists */
7691 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7692 /* if port exists, set it to 0 (mark for deletion)
7693 * and make it pending
7694 */
7695 pf->vxlan_ports[idx] = 0;
7696
7697 pf->pending_vxlan_bitmap |= (1 << idx);
7698
7699 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7700 } else {
7701 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7702 ntohs(port));
7703 }
7704}
7705
7706#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007707static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007708 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007709{
7710 struct i40e_netdev_priv *np = netdev_priv(netdev);
7711 struct i40e_pf *pf = np->vsi->back;
7712 struct i40e_hw *hw = &pf->hw;
7713
7714 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7715 return -EOPNOTSUPP;
7716
7717 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7718 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7719
7720 return 0;
7721}
7722
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08007723/**
7724 * i40e_ndo_fdb_add - add an entry to the hardware database
7725 * @ndm: the input from the stack
7726 * @tb: pointer to array of nladdr (unused)
7727 * @dev: the net device pointer
7728 * @addr: the MAC address entry being added
7729 * @flags: instructions from stack about fdb operation
7730 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00007731static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7732 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01007733 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007734 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00007735{
7736 struct i40e_netdev_priv *np = netdev_priv(dev);
7737 struct i40e_pf *pf = np->vsi->back;
7738 int err = 0;
7739
7740 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7741 return -EOPNOTSUPP;
7742
Or Gerlitz65891fe2014-12-14 18:19:05 +02007743 if (vid) {
7744 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
7745 return -EINVAL;
7746 }
7747
Greg Rose4ba0dea2014-03-06 08:59:55 +00007748 /* Hardware does not support aging addresses so if a
7749 * ndm_state is given only allow permanent addresses
7750 */
7751 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7752 netdev_info(dev, "FDB only supports static addresses\n");
7753 return -EINVAL;
7754 }
7755
7756 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7757 err = dev_uc_add_excl(dev, addr);
7758 else if (is_multicast_ether_addr(addr))
7759 err = dev_mc_add_excl(dev, addr);
7760 else
7761 err = -EINVAL;
7762
7763 /* Only return duplicate errors if NLM_F_EXCL is set */
7764 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7765 err = 0;
7766
7767 return err;
7768}
7769
Neerav Parikh51616012015-02-06 08:52:14 +00007770#ifdef HAVE_BRIDGE_ATTRIBS
7771/**
7772 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
7773 * @dev: the netdev being configured
7774 * @nlh: RTNL message
7775 *
7776 * Inserts a new hardware bridge if not already created and
7777 * enables the bridging mode requested (VEB or VEPA). If the
7778 * hardware bridge has already been inserted and the request
7779 * is to change the mode then that requires a PF reset to
7780 * allow rebuild of the components with required hardware
7781 * bridge mode enabled.
7782 **/
7783static int i40e_ndo_bridge_setlink(struct net_device *dev,
7784 struct nlmsghdr *nlh)
7785{
7786 struct i40e_netdev_priv *np = netdev_priv(dev);
7787 struct i40e_vsi *vsi = np->vsi;
7788 struct i40e_pf *pf = vsi->back;
7789 struct i40e_veb *veb = NULL;
7790 struct nlattr *attr, *br_spec;
7791 int i, rem;
7792
7793 /* Only for PF VSI for now */
7794 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
7795 return -EOPNOTSUPP;
7796
7797 /* Find the HW bridge for PF VSI */
7798 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
7799 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
7800 veb = pf->veb[i];
7801 }
7802
7803 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
7804
7805 nla_for_each_nested(attr, br_spec, rem) {
7806 __u16 mode;
7807
7808 if (nla_type(attr) != IFLA_BRIDGE_MODE)
7809 continue;
7810
7811 mode = nla_get_u16(attr);
7812 if ((mode != BRIDGE_MODE_VEPA) &&
7813 (mode != BRIDGE_MODE_VEB))
7814 return -EINVAL;
7815
7816 /* Insert a new HW bridge */
7817 if (!veb) {
7818 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
7819 vsi->tc_config.enabled_tc);
7820 if (veb) {
7821 veb->bridge_mode = mode;
7822 i40e_config_bridge_mode(veb);
7823 } else {
7824 /* No Bridge HW offload available */
7825 return -ENOENT;
7826 }
7827 break;
7828 } else if (mode != veb->bridge_mode) {
7829 /* Existing HW bridge but different mode needs reset */
7830 veb->bridge_mode = mode;
7831 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7832 break;
7833 }
7834 }
7835
7836 return 0;
7837}
7838
7839/**
7840 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
7841 * @skb: skb buff
7842 * @pid: process id
7843 * @seq: RTNL message seq #
7844 * @dev: the netdev being configured
7845 * @filter_mask: unused
7846 *
7847 * Return the mode in which the hardware bridge is operating in
7848 * i.e VEB or VEPA.
7849 **/
7850#ifdef HAVE_BRIDGE_FILTER
7851static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
7852 struct net_device *dev,
7853 u32 __always_unused filter_mask)
7854#else
7855static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
7856 struct net_device *dev)
7857#endif /* HAVE_BRIDGE_FILTER */
7858{
7859 struct i40e_netdev_priv *np = netdev_priv(dev);
7860 struct i40e_vsi *vsi = np->vsi;
7861 struct i40e_pf *pf = vsi->back;
7862 struct i40e_veb *veb = NULL;
7863 int i;
7864
7865 /* Only for PF VSI for now */
7866 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
7867 return -EOPNOTSUPP;
7868
7869 /* Find the HW bridge for the PF VSI */
7870 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
7871 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
7872 veb = pf->veb[i];
7873 }
7874
7875 if (!veb)
7876 return 0;
7877
7878 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode);
7879}
7880#endif /* HAVE_BRIDGE_ATTRIBS */
7881
Greg Rose96664482015-02-06 08:52:13 +00007882const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007883 .ndo_open = i40e_open,
7884 .ndo_stop = i40e_close,
7885 .ndo_start_xmit = i40e_lan_xmit_frame,
7886 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7887 .ndo_set_rx_mode = i40e_set_rx_mode,
7888 .ndo_validate_addr = eth_validate_addr,
7889 .ndo_set_mac_address = i40e_set_mac,
7890 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007891 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007892 .ndo_tx_timeout = i40e_tx_timeout,
7893 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7894 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7895#ifdef CONFIG_NET_POLL_CONTROLLER
7896 .ndo_poll_controller = i40e_netpoll,
7897#endif
7898 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007899#ifdef I40E_FCOE
7900 .ndo_fcoe_enable = i40e_fcoe_enable,
7901 .ndo_fcoe_disable = i40e_fcoe_disable,
7902#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007903 .ndo_set_features = i40e_set_features,
7904 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7905 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007906 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007907 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007908 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00007909 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007910#ifdef CONFIG_I40E_VXLAN
7911 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7912 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7913#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007914 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007915 .ndo_fdb_add = i40e_ndo_fdb_add,
Neerav Parikh51616012015-02-06 08:52:14 +00007916#ifdef HAVE_BRIDGE_ATTRIBS
7917 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
7918 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
7919#endif /* HAVE_BRIDGE_ATTRIBS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007920};
7921
7922/**
7923 * i40e_config_netdev - Setup the netdev flags
7924 * @vsi: the VSI being configured
7925 *
7926 * Returns 0 on success, negative value on failure
7927 **/
7928static int i40e_config_netdev(struct i40e_vsi *vsi)
7929{
Greg Rose1a103702013-11-28 06:42:39 +00007930 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007931 struct i40e_pf *pf = vsi->back;
7932 struct i40e_hw *hw = &pf->hw;
7933 struct i40e_netdev_priv *np;
7934 struct net_device *netdev;
7935 u8 mac_addr[ETH_ALEN];
7936 int etherdev_size;
7937
7938 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007939 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007940 if (!netdev)
7941 return -ENOMEM;
7942
7943 vsi->netdev = netdev;
7944 np = netdev_priv(netdev);
7945 np->vsi = vsi;
7946
Or Gerlitzd70e9412014-03-18 10:36:45 +02007947 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007948 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007949 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007950
7951 netdev->features = NETIF_F_SG |
7952 NETIF_F_IP_CSUM |
7953 NETIF_F_SCTP_CSUM |
7954 NETIF_F_HIGHDMA |
7955 NETIF_F_GSO_UDP_TUNNEL |
7956 NETIF_F_HW_VLAN_CTAG_TX |
7957 NETIF_F_HW_VLAN_CTAG_RX |
7958 NETIF_F_HW_VLAN_CTAG_FILTER |
7959 NETIF_F_IPV6_CSUM |
7960 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007961 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007962 NETIF_F_TSO6 |
7963 NETIF_F_RXCSUM |
7964 NETIF_F_RXHASH |
7965 0;
7966
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007967 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7968 netdev->features |= NETIF_F_NTUPLE;
7969
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007970 /* copy netdev features into list of user selectable features */
7971 netdev->hw_features |= netdev->features;
7972
7973 if (vsi->type == I40E_VSI_MAIN) {
7974 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007975 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00007976 /* The following steps are necessary to prevent reception
7977 * of tagged packets - some older NVM configurations load a
7978 * default a MAC-VLAN filter that accepts any tagged packet
7979 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00007980 */
Shannon Nelson30650cc2014-07-29 04:01:50 +00007981 if (!i40e_rm_default_mac_filter(vsi, mac_addr))
7982 i40e_add_filter(vsi, mac_addr,
7983 I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007984 } else {
7985 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7986 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7987 pf->vsi[pf->lan_vsi]->netdev->name);
7988 random_ether_addr(mac_addr);
7989 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7990 }
Greg Rose1a103702013-11-28 06:42:39 +00007991 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007992
Greg Rose9a173902014-05-22 06:32:02 +00007993 ether_addr_copy(netdev->dev_addr, mac_addr);
7994 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007995 /* vlan gets same features (except vlan offload)
7996 * after any tweaks for specific VSI types
7997 */
7998 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
7999 NETIF_F_HW_VLAN_CTAG_RX |
8000 NETIF_F_HW_VLAN_CTAG_FILTER);
8001 netdev->priv_flags |= IFF_UNICAST_FLT;
8002 netdev->priv_flags |= IFF_SUPP_NOFCS;
8003 /* Setup netdev TC information */
8004 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
8005
8006 netdev->netdev_ops = &i40e_netdev_ops;
8007 netdev->watchdog_timeo = 5 * HZ;
8008 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07008009#ifdef I40E_FCOE
8010 i40e_fcoe_config_netdev(netdev, vsi);
8011#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008012
8013 return 0;
8014}
8015
8016/**
8017 * i40e_vsi_delete - Delete a VSI from the switch
8018 * @vsi: the VSI being removed
8019 *
8020 * Returns 0 on success, negative value on failure
8021 **/
8022static void i40e_vsi_delete(struct i40e_vsi *vsi)
8023{
8024 /* remove default VSI is not allowed */
8025 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
8026 return;
8027
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008028 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008029}
8030
8031/**
Neerav Parikh51616012015-02-06 08:52:14 +00008032 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
8033 * @vsi: the VSI being queried
8034 *
8035 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
8036 **/
8037int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
8038{
8039 struct i40e_veb *veb;
8040 struct i40e_pf *pf = vsi->back;
8041
8042 /* Uplink is not a bridge so default to VEB */
8043 if (vsi->veb_idx == I40E_NO_VEB)
8044 return 1;
8045
8046 veb = pf->veb[vsi->veb_idx];
8047 /* Uplink is a bridge in VEPA mode */
8048 if (veb && (veb->bridge_mode & BRIDGE_MODE_VEPA))
8049 return 0;
8050
8051 /* Uplink is a bridge in VEB mode */
8052 return 1;
8053}
8054
8055/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008056 * i40e_add_vsi - Add a VSI to the switch
8057 * @vsi: the VSI being configured
8058 *
8059 * This initializes a VSI context depending on the VSI type to be added and
8060 * passes it down to the add_vsi aq command.
8061 **/
8062static int i40e_add_vsi(struct i40e_vsi *vsi)
8063{
8064 int ret = -ENODEV;
8065 struct i40e_mac_filter *f, *ftmp;
8066 struct i40e_pf *pf = vsi->back;
8067 struct i40e_hw *hw = &pf->hw;
8068 struct i40e_vsi_context ctxt;
8069 u8 enabled_tc = 0x1; /* TC0 enabled */
8070 int f_count = 0;
8071
8072 memset(&ctxt, 0, sizeof(ctxt));
8073 switch (vsi->type) {
8074 case I40E_VSI_MAIN:
8075 /* The PF's main VSI is already setup as part of the
8076 * device initialization, so we'll not bother with
8077 * the add_vsi call, but we will retrieve the current
8078 * VSI context.
8079 */
8080 ctxt.seid = pf->main_vsi_seid;
8081 ctxt.pf_num = pf->hw.pf_id;
8082 ctxt.vf_num = 0;
8083 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
8084 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
8085 if (ret) {
8086 dev_info(&pf->pdev->dev,
8087 "couldn't get pf vsi config, err %d, aq_err %d\n",
8088 ret, pf->hw.aq.asq_last_status);
8089 return -ENOENT;
8090 }
8091 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
8092 vsi->info.valid_sections = 0;
8093
8094 vsi->seid = ctxt.seid;
8095 vsi->id = ctxt.vsi_number;
8096
8097 enabled_tc = i40e_pf_get_tc_map(pf);
8098
8099 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00008100 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
8101 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008102 memset(&ctxt, 0, sizeof(ctxt));
8103 ctxt.seid = pf->main_vsi_seid;
8104 ctxt.pf_num = pf->hw.pf_id;
8105 ctxt.vf_num = 0;
8106 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
8107 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
8108 if (ret) {
8109 dev_info(&pf->pdev->dev,
8110 "update vsi failed, aq_err=%d\n",
8111 pf->hw.aq.asq_last_status);
8112 ret = -ENOENT;
8113 goto err;
8114 }
8115 /* update the local VSI info queue map */
8116 i40e_vsi_update_queue_map(vsi, &ctxt);
8117 vsi->info.valid_sections = 0;
8118 } else {
8119 /* Default/Main VSI is only enabled for TC0
8120 * reconfigure it to enable all TCs that are
8121 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00008122 * For MFP case the iSCSI PF would use this
8123 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008124 */
8125 ret = i40e_vsi_config_tc(vsi, enabled_tc);
8126 if (ret) {
8127 dev_info(&pf->pdev->dev,
8128 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
8129 enabled_tc, ret,
8130 pf->hw.aq.asq_last_status);
8131 ret = -ENOENT;
8132 }
8133 }
8134 break;
8135
8136 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008137 ctxt.pf_num = hw->pf_id;
8138 ctxt.vf_num = 0;
8139 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00008140 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008141 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Neerav Parikh51616012015-02-06 08:52:14 +00008142 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
8143 ctxt.info.valid_sections |=
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008144 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00008145 ctxt.info.switch_id =
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008146 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00008147 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008148 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008149 break;
8150
8151 case I40E_VSI_VMDQ2:
8152 ctxt.pf_num = hw->pf_id;
8153 ctxt.vf_num = 0;
8154 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00008155 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008156 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
8157
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008158 /* This VSI is connected to VEB so the switch_id
8159 * should be set to zero by default.
8160 */
Neerav Parikh51616012015-02-06 08:52:14 +00008161 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
8162 ctxt.info.valid_sections |=
8163 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
8164 ctxt.info.switch_id =
8165 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
8166 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008167
8168 /* Setup the VSI tx/rx queue map for TC0 only for now */
8169 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
8170 break;
8171
8172 case I40E_VSI_SRIOV:
8173 ctxt.pf_num = hw->pf_id;
8174 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
8175 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00008176 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008177 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
8178
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008179 /* This VSI is connected to VEB so the switch_id
8180 * should be set to zero by default.
8181 */
Neerav Parikh51616012015-02-06 08:52:14 +00008182 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
8183 ctxt.info.valid_sections |=
8184 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
8185 ctxt.info.switch_id =
8186 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
8187 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008188
8189 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
8190 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00008191 if (pf->vf[vsi->vf_id].spoofchk) {
8192 ctxt.info.valid_sections |=
8193 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
8194 ctxt.info.sec_flags |=
8195 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
8196 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
8197 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008198 /* Setup the VSI tx/rx queue map for TC0 only for now */
8199 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
8200 break;
8201
Vasu Dev38e00432014-08-01 13:27:03 -07008202#ifdef I40E_FCOE
8203 case I40E_VSI_FCOE:
8204 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
8205 if (ret) {
8206 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
8207 return ret;
8208 }
8209 break;
8210
8211#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008212 default:
8213 return -ENODEV;
8214 }
8215
8216 if (vsi->type != I40E_VSI_MAIN) {
8217 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
8218 if (ret) {
8219 dev_info(&vsi->back->pdev->dev,
8220 "add vsi failed, aq_err=%d\n",
8221 vsi->back->hw.aq.asq_last_status);
8222 ret = -ENOENT;
8223 goto err;
8224 }
8225 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
8226 vsi->info.valid_sections = 0;
8227 vsi->seid = ctxt.seid;
8228 vsi->id = ctxt.vsi_number;
8229 }
8230
8231 /* If macvlan filters already exist, force them to get loaded */
8232 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
8233 f->changed = true;
8234 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00008235
8236 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Shannon Nelson30650cc2014-07-29 04:01:50 +00008237 struct i40e_aqc_remove_macvlan_element_data element;
8238
8239 memset(&element, 0, sizeof(element));
8240 ether_addr_copy(element.mac_addr, f->macaddr);
8241 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
8242 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
8243 &element, 1, NULL);
8244 if (ret) {
8245 /* some older FW has a different default */
8246 element.flags |=
8247 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
8248 i40e_aq_remove_macvlan(hw, vsi->seid,
8249 &element, 1, NULL);
8250 }
8251
8252 i40e_aq_mac_address_write(hw,
Shannon Nelson6252c7e2014-06-04 01:23:23 +00008253 I40E_AQC_WRITE_TYPE_LAA_WOL,
8254 f->macaddr, NULL);
8255 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008256 }
8257 if (f_count) {
8258 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
8259 pf->flags |= I40E_FLAG_FILTER_SYNC;
8260 }
8261
8262 /* Update VSI BW information */
8263 ret = i40e_vsi_get_bw_info(vsi);
8264 if (ret) {
8265 dev_info(&pf->pdev->dev,
8266 "couldn't get vsi bw info, err %d, aq_err %d\n",
8267 ret, pf->hw.aq.asq_last_status);
8268 /* VSI is already added so not tearing that up */
8269 ret = 0;
8270 }
8271
8272err:
8273 return ret;
8274}
8275
8276/**
8277 * i40e_vsi_release - Delete a VSI and free its resources
8278 * @vsi: the VSI being removed
8279 *
8280 * Returns 0 on success or < 0 on error
8281 **/
8282int i40e_vsi_release(struct i40e_vsi *vsi)
8283{
8284 struct i40e_mac_filter *f, *ftmp;
8285 struct i40e_veb *veb = NULL;
8286 struct i40e_pf *pf;
8287 u16 uplink_seid;
8288 int i, n;
8289
8290 pf = vsi->back;
8291
8292 /* release of a VEB-owner or last VSI is not allowed */
8293 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
8294 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
8295 vsi->seid, vsi->uplink_seid);
8296 return -ENODEV;
8297 }
8298 if (vsi == pf->vsi[pf->lan_vsi] &&
8299 !test_bit(__I40E_DOWN, &pf->state)) {
8300 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
8301 return -ENODEV;
8302 }
8303
8304 uplink_seid = vsi->uplink_seid;
8305 if (vsi->type != I40E_VSI_SRIOV) {
8306 if (vsi->netdev_registered) {
8307 vsi->netdev_registered = false;
8308 if (vsi->netdev) {
8309 /* results in a call to i40e_close() */
8310 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008311 }
8312 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00008313 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008314 }
8315 i40e_vsi_disable_irq(vsi);
8316 }
8317
8318 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
8319 i40e_del_filter(vsi, f->macaddr, f->vlan,
8320 f->is_vf, f->is_netdev);
8321 i40e_sync_vsi_filters(vsi);
8322
8323 i40e_vsi_delete(vsi);
8324 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00008325 if (vsi->netdev) {
8326 free_netdev(vsi->netdev);
8327 vsi->netdev = NULL;
8328 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008329 i40e_vsi_clear_rings(vsi);
8330 i40e_vsi_clear(vsi);
8331
8332 /* If this was the last thing on the VEB, except for the
8333 * controlling VSI, remove the VEB, which puts the controlling
8334 * VSI onto the next level down in the switch.
8335 *
8336 * Well, okay, there's one more exception here: don't remove
8337 * the orphan VEBs yet. We'll wait for an explicit remove request
8338 * from up the network stack.
8339 */
Mitch Williams505682c2014-05-20 08:01:37 +00008340 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008341 if (pf->vsi[i] &&
8342 pf->vsi[i]->uplink_seid == uplink_seid &&
8343 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8344 n++; /* count the VSIs */
8345 }
8346 }
8347 for (i = 0; i < I40E_MAX_VEB; i++) {
8348 if (!pf->veb[i])
8349 continue;
8350 if (pf->veb[i]->uplink_seid == uplink_seid)
8351 n++; /* count the VEBs */
8352 if (pf->veb[i]->seid == uplink_seid)
8353 veb = pf->veb[i];
8354 }
8355 if (n == 0 && veb && veb->uplink_seid != 0)
8356 i40e_veb_release(veb);
8357
8358 return 0;
8359}
8360
8361/**
8362 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
8363 * @vsi: ptr to the VSI
8364 *
8365 * This should only be called after i40e_vsi_mem_alloc() which allocates the
8366 * corresponding SW VSI structure and initializes num_queue_pairs for the
8367 * newly allocated VSI.
8368 *
8369 * Returns 0 on success or negative on failure
8370 **/
8371static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
8372{
8373 int ret = -ENOENT;
8374 struct i40e_pf *pf = vsi->back;
8375
Alexander Duyck493fb302013-09-28 07:01:44 +00008376 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008377 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
8378 vsi->seid);
8379 return -EEXIST;
8380 }
8381
8382 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00008383 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008384 vsi->seid, vsi->base_vector);
8385 return -EEXIST;
8386 }
8387
Greg Rose90e04072014-03-06 08:59:57 +00008388 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008389 if (ret) {
8390 dev_info(&pf->pdev->dev,
8391 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
8392 vsi->num_q_vectors, vsi->seid, ret);
8393 vsi->num_q_vectors = 0;
8394 goto vector_setup_out;
8395 }
8396
Shannon Nelson958a3e32013-09-28 07:13:28 +00008397 if (vsi->num_q_vectors)
8398 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
8399 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008400 if (vsi->base_vector < 0) {
8401 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00008402 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
8403 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008404 i40e_vsi_free_q_vectors(vsi);
8405 ret = -ENOENT;
8406 goto vector_setup_out;
8407 }
8408
8409vector_setup_out:
8410 return ret;
8411}
8412
8413/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008414 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
8415 * @vsi: pointer to the vsi.
8416 *
8417 * This re-allocates a vsi's queue resources.
8418 *
8419 * Returns pointer to the successfully allocated and configured VSI sw struct
8420 * on success, otherwise returns NULL on failure.
8421 **/
8422static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
8423{
8424 struct i40e_pf *pf = vsi->back;
8425 u8 enabled_tc;
8426 int ret;
8427
8428 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
8429 i40e_vsi_clear_rings(vsi);
8430
8431 i40e_vsi_free_arrays(vsi, false);
8432 i40e_set_num_rings_in_vsi(vsi);
8433 ret = i40e_vsi_alloc_arrays(vsi, false);
8434 if (ret)
8435 goto err_vsi;
8436
8437 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
8438 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008439 dev_info(&pf->pdev->dev,
8440 "failed to get tracking for %d queues for VSI %d err=%d\n",
8441 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008442 goto err_vsi;
8443 }
8444 vsi->base_queue = ret;
8445
8446 /* Update the FW view of the VSI. Force a reset of TC and queue
8447 * layout configurations.
8448 */
8449 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8450 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8451 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8452 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8453
8454 /* assign it some queues */
8455 ret = i40e_alloc_rings(vsi);
8456 if (ret)
8457 goto err_rings;
8458
8459 /* map all of the rings to the q_vectors */
8460 i40e_vsi_map_rings_to_vectors(vsi);
8461 return vsi;
8462
8463err_rings:
8464 i40e_vsi_free_q_vectors(vsi);
8465 if (vsi->netdev_registered) {
8466 vsi->netdev_registered = false;
8467 unregister_netdev(vsi->netdev);
8468 free_netdev(vsi->netdev);
8469 vsi->netdev = NULL;
8470 }
8471 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8472err_vsi:
8473 i40e_vsi_clear(vsi);
8474 return NULL;
8475}
8476
8477/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008478 * i40e_vsi_setup - Set up a VSI by a given type
8479 * @pf: board private structure
8480 * @type: VSI type
8481 * @uplink_seid: the switch element to link to
8482 * @param1: usage depends upon VSI type. For VF types, indicates VF id
8483 *
8484 * This allocates the sw VSI structure and its queue resources, then add a VSI
8485 * to the identified VEB.
8486 *
8487 * Returns pointer to the successfully allocated and configure VSI sw struct on
8488 * success, otherwise returns NULL on failure.
8489 **/
8490struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
8491 u16 uplink_seid, u32 param1)
8492{
8493 struct i40e_vsi *vsi = NULL;
8494 struct i40e_veb *veb = NULL;
8495 int ret, i;
8496 int v_idx;
8497
8498 /* The requested uplink_seid must be either
8499 * - the PF's port seid
8500 * no VEB is needed because this is the PF
8501 * or this is a Flow Director special case VSI
8502 * - seid of an existing VEB
8503 * - seid of a VSI that owns an existing VEB
8504 * - seid of a VSI that doesn't own a VEB
8505 * a new VEB is created and the VSI becomes the owner
8506 * - seid of the PF VSI, which is what creates the first VEB
8507 * this is a special case of the previous
8508 *
8509 * Find which uplink_seid we were given and create a new VEB if needed
8510 */
8511 for (i = 0; i < I40E_MAX_VEB; i++) {
8512 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
8513 veb = pf->veb[i];
8514 break;
8515 }
8516 }
8517
8518 if (!veb && uplink_seid != pf->mac_seid) {
8519
Mitch Williams505682c2014-05-20 08:01:37 +00008520 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008521 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8522 vsi = pf->vsi[i];
8523 break;
8524 }
8525 }
8526 if (!vsi) {
8527 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8528 uplink_seid);
8529 return NULL;
8530 }
8531
8532 if (vsi->uplink_seid == pf->mac_seid)
8533 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8534 vsi->tc_config.enabled_tc);
8535 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8536 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8537 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008538 if (veb) {
8539 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
8540 dev_info(&vsi->back->pdev->dev,
8541 "%s: New VSI creation error, uplink seid of LAN VSI expected.\n",
8542 __func__);
8543 return NULL;
8544 }
Neerav Parikh51616012015-02-06 08:52:14 +00008545 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008546 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008547 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8548 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8549 veb = pf->veb[i];
8550 }
8551 if (!veb) {
8552 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8553 return NULL;
8554 }
8555
8556 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8557 uplink_seid = veb->seid;
8558 }
8559
8560 /* get vsi sw struct */
8561 v_idx = i40e_vsi_mem_alloc(pf, type);
8562 if (v_idx < 0)
8563 goto err_alloc;
8564 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008565 if (!vsi)
8566 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008567 vsi->type = type;
8568 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8569
8570 if (type == I40E_VSI_MAIN)
8571 pf->lan_vsi = v_idx;
8572 else if (type == I40E_VSI_SRIOV)
8573 vsi->vf_id = param1;
8574 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008575 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8576 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008577 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008578 dev_info(&pf->pdev->dev,
8579 "failed to get tracking for %d queues for VSI %d err=%d\n",
8580 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008581 goto err_vsi;
8582 }
8583 vsi->base_queue = ret;
8584
8585 /* get a VSI from the hardware */
8586 vsi->uplink_seid = uplink_seid;
8587 ret = i40e_add_vsi(vsi);
8588 if (ret)
8589 goto err_vsi;
8590
8591 switch (vsi->type) {
8592 /* setup the netdev if needed */
8593 case I40E_VSI_MAIN:
8594 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008595 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008596 ret = i40e_config_netdev(vsi);
8597 if (ret)
8598 goto err_netdev;
8599 ret = register_netdev(vsi->netdev);
8600 if (ret)
8601 goto err_netdev;
8602 vsi->netdev_registered = true;
8603 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008604#ifdef CONFIG_I40E_DCB
8605 /* Setup DCB netlink interface */
8606 i40e_dcbnl_setup(vsi);
8607#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008608 /* fall through */
8609
8610 case I40E_VSI_FDIR:
8611 /* set up vectors and rings if needed */
8612 ret = i40e_vsi_setup_vectors(vsi);
8613 if (ret)
8614 goto err_msix;
8615
8616 ret = i40e_alloc_rings(vsi);
8617 if (ret)
8618 goto err_rings;
8619
8620 /* map all of the rings to the q_vectors */
8621 i40e_vsi_map_rings_to_vectors(vsi);
8622
8623 i40e_vsi_reset_stats(vsi);
8624 break;
8625
8626 default:
8627 /* no netdev or rings for the other VSI types */
8628 break;
8629 }
8630
8631 return vsi;
8632
8633err_rings:
8634 i40e_vsi_free_q_vectors(vsi);
8635err_msix:
8636 if (vsi->netdev_registered) {
8637 vsi->netdev_registered = false;
8638 unregister_netdev(vsi->netdev);
8639 free_netdev(vsi->netdev);
8640 vsi->netdev = NULL;
8641 }
8642err_netdev:
8643 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8644err_vsi:
8645 i40e_vsi_clear(vsi);
8646err_alloc:
8647 return NULL;
8648}
8649
8650/**
8651 * i40e_veb_get_bw_info - Query VEB BW information
8652 * @veb: the veb to query
8653 *
8654 * Query the Tx scheduler BW configuration data for given VEB
8655 **/
8656static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8657{
8658 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8659 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8660 struct i40e_pf *pf = veb->pf;
8661 struct i40e_hw *hw = &pf->hw;
8662 u32 tc_bw_max;
8663 int ret = 0;
8664 int i;
8665
8666 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8667 &bw_data, NULL);
8668 if (ret) {
8669 dev_info(&pf->pdev->dev,
8670 "query veb bw config failed, aq_err=%d\n",
8671 hw->aq.asq_last_status);
8672 goto out;
8673 }
8674
8675 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8676 &ets_data, NULL);
8677 if (ret) {
8678 dev_info(&pf->pdev->dev,
8679 "query veb bw ets config failed, aq_err=%d\n",
8680 hw->aq.asq_last_status);
8681 goto out;
8682 }
8683
8684 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8685 veb->bw_max_quanta = ets_data.tc_bw_max;
8686 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00008687 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008688 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8689 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8690 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8691 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8692 veb->bw_tc_limit_credits[i] =
8693 le16_to_cpu(bw_data.tc_bw_limits[i]);
8694 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8695 }
8696
8697out:
8698 return ret;
8699}
8700
8701/**
8702 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8703 * @pf: board private structure
8704 *
8705 * On error: returns error code (negative)
8706 * On success: returns vsi index in PF (positive)
8707 **/
8708static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8709{
8710 int ret = -ENOENT;
8711 struct i40e_veb *veb;
8712 int i;
8713
8714 /* Need to protect the allocation of switch elements at the PF level */
8715 mutex_lock(&pf->switch_mutex);
8716
8717 /* VEB list may be fragmented if VEB creation/destruction has
8718 * been happening. We can afford to do a quick scan to look
8719 * for any free slots in the list.
8720 *
8721 * find next empty veb slot, looping back around if necessary
8722 */
8723 i = 0;
8724 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8725 i++;
8726 if (i >= I40E_MAX_VEB) {
8727 ret = -ENOMEM;
8728 goto err_alloc_veb; /* out of VEB slots! */
8729 }
8730
8731 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8732 if (!veb) {
8733 ret = -ENOMEM;
8734 goto err_alloc_veb;
8735 }
8736 veb->pf = pf;
8737 veb->idx = i;
8738 veb->enabled_tc = 1;
8739
8740 pf->veb[i] = veb;
8741 ret = i;
8742err_alloc_veb:
8743 mutex_unlock(&pf->switch_mutex);
8744 return ret;
8745}
8746
8747/**
8748 * i40e_switch_branch_release - Delete a branch of the switch tree
8749 * @branch: where to start deleting
8750 *
8751 * This uses recursion to find the tips of the branch to be
8752 * removed, deleting until we get back to and can delete this VEB.
8753 **/
8754static void i40e_switch_branch_release(struct i40e_veb *branch)
8755{
8756 struct i40e_pf *pf = branch->pf;
8757 u16 branch_seid = branch->seid;
8758 u16 veb_idx = branch->idx;
8759 int i;
8760
8761 /* release any VEBs on this VEB - RECURSION */
8762 for (i = 0; i < I40E_MAX_VEB; i++) {
8763 if (!pf->veb[i])
8764 continue;
8765 if (pf->veb[i]->uplink_seid == branch->seid)
8766 i40e_switch_branch_release(pf->veb[i]);
8767 }
8768
8769 /* Release the VSIs on this VEB, but not the owner VSI.
8770 *
8771 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8772 * the VEB itself, so don't use (*branch) after this loop.
8773 */
Mitch Williams505682c2014-05-20 08:01:37 +00008774 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008775 if (!pf->vsi[i])
8776 continue;
8777 if (pf->vsi[i]->uplink_seid == branch_seid &&
8778 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8779 i40e_vsi_release(pf->vsi[i]);
8780 }
8781 }
8782
8783 /* There's one corner case where the VEB might not have been
8784 * removed, so double check it here and remove it if needed.
8785 * This case happens if the veb was created from the debugfs
8786 * commands and no VSIs were added to it.
8787 */
8788 if (pf->veb[veb_idx])
8789 i40e_veb_release(pf->veb[veb_idx]);
8790}
8791
8792/**
8793 * i40e_veb_clear - remove veb struct
8794 * @veb: the veb to remove
8795 **/
8796static void i40e_veb_clear(struct i40e_veb *veb)
8797{
8798 if (!veb)
8799 return;
8800
8801 if (veb->pf) {
8802 struct i40e_pf *pf = veb->pf;
8803
8804 mutex_lock(&pf->switch_mutex);
8805 if (pf->veb[veb->idx] == veb)
8806 pf->veb[veb->idx] = NULL;
8807 mutex_unlock(&pf->switch_mutex);
8808 }
8809
8810 kfree(veb);
8811}
8812
8813/**
8814 * i40e_veb_release - Delete a VEB and free its resources
8815 * @veb: the VEB being removed
8816 **/
8817void i40e_veb_release(struct i40e_veb *veb)
8818{
8819 struct i40e_vsi *vsi = NULL;
8820 struct i40e_pf *pf;
8821 int i, n = 0;
8822
8823 pf = veb->pf;
8824
8825 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008826 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008827 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8828 n++;
8829 vsi = pf->vsi[i];
8830 }
8831 }
8832 if (n != 1) {
8833 dev_info(&pf->pdev->dev,
8834 "can't remove VEB %d with %d VSIs left\n",
8835 veb->seid, n);
8836 return;
8837 }
8838
8839 /* move the remaining VSI to uplink veb */
8840 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8841 if (veb->uplink_seid) {
8842 vsi->uplink_seid = veb->uplink_seid;
8843 if (veb->uplink_seid == pf->mac_seid)
8844 vsi->veb_idx = I40E_NO_VEB;
8845 else
8846 vsi->veb_idx = veb->veb_idx;
8847 } else {
8848 /* floating VEB */
8849 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8850 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8851 }
8852
8853 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8854 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008855}
8856
8857/**
8858 * i40e_add_veb - create the VEB in the switch
8859 * @veb: the VEB to be instantiated
8860 * @vsi: the controlling VSI
8861 **/
8862static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8863{
Greg Rose56747262013-11-28 06:39:37 +00008864 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008865 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008866 int ret;
8867
8868 /* get a VEB from the hardware */
8869 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008870 veb->enabled_tc, is_default,
8871 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008872 if (ret) {
8873 dev_info(&veb->pf->pdev->dev,
8874 "couldn't add VEB, err %d, aq_err %d\n",
8875 ret, veb->pf->hw.aq.asq_last_status);
8876 return -EPERM;
8877 }
8878
8879 /* get statistics counter */
8880 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8881 &veb->stats_idx, NULL, NULL, NULL);
8882 if (ret) {
8883 dev_info(&veb->pf->pdev->dev,
8884 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8885 ret, veb->pf->hw.aq.asq_last_status);
8886 return -EPERM;
8887 }
8888 ret = i40e_veb_get_bw_info(veb);
8889 if (ret) {
8890 dev_info(&veb->pf->pdev->dev,
8891 "couldn't get VEB bw info, err %d, aq_err %d\n",
8892 ret, veb->pf->hw.aq.asq_last_status);
8893 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8894 return -ENOENT;
8895 }
8896
8897 vsi->uplink_seid = veb->seid;
8898 vsi->veb_idx = veb->idx;
8899 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8900
8901 return 0;
8902}
8903
8904/**
8905 * i40e_veb_setup - Set up a VEB
8906 * @pf: board private structure
8907 * @flags: VEB setup flags
8908 * @uplink_seid: the switch element to link to
8909 * @vsi_seid: the initial VSI seid
8910 * @enabled_tc: Enabled TC bit-map
8911 *
8912 * This allocates the sw VEB structure and links it into the switch
8913 * It is possible and legal for this to be a duplicate of an already
8914 * existing VEB. It is also possible for both uplink and vsi seids
8915 * to be zero, in order to create a floating VEB.
8916 *
8917 * Returns pointer to the successfully allocated VEB sw struct on
8918 * success, otherwise returns NULL on failure.
8919 **/
8920struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8921 u16 uplink_seid, u16 vsi_seid,
8922 u8 enabled_tc)
8923{
8924 struct i40e_veb *veb, *uplink_veb = NULL;
8925 int vsi_idx, veb_idx;
8926 int ret;
8927
8928 /* if one seid is 0, the other must be 0 to create a floating relay */
8929 if ((uplink_seid == 0 || vsi_seid == 0) &&
8930 (uplink_seid + vsi_seid != 0)) {
8931 dev_info(&pf->pdev->dev,
8932 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8933 uplink_seid, vsi_seid);
8934 return NULL;
8935 }
8936
8937 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008938 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008939 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8940 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008941 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008942 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8943 vsi_seid);
8944 return NULL;
8945 }
8946
8947 if (uplink_seid && uplink_seid != pf->mac_seid) {
8948 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8949 if (pf->veb[veb_idx] &&
8950 pf->veb[veb_idx]->seid == uplink_seid) {
8951 uplink_veb = pf->veb[veb_idx];
8952 break;
8953 }
8954 }
8955 if (!uplink_veb) {
8956 dev_info(&pf->pdev->dev,
8957 "uplink seid %d not found\n", uplink_seid);
8958 return NULL;
8959 }
8960 }
8961
8962 /* get veb sw struct */
8963 veb_idx = i40e_veb_mem_alloc(pf);
8964 if (veb_idx < 0)
8965 goto err_alloc;
8966 veb = pf->veb[veb_idx];
8967 veb->flags = flags;
8968 veb->uplink_seid = uplink_seid;
8969 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8970 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8971
8972 /* create the VEB in the switch */
8973 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8974 if (ret)
8975 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008976 if (vsi_idx == pf->lan_vsi)
8977 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008978
8979 return veb;
8980
8981err_veb:
8982 i40e_veb_clear(veb);
8983err_alloc:
8984 return NULL;
8985}
8986
8987/**
8988 * i40e_setup_pf_switch_element - set pf vars based on switch type
8989 * @pf: board private structure
8990 * @ele: element we are building info from
8991 * @num_reported: total number of elements
8992 * @printconfig: should we print the contents
8993 *
8994 * helper function to assist in extracting a few useful SEID values.
8995 **/
8996static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
8997 struct i40e_aqc_switch_config_element_resp *ele,
8998 u16 num_reported, bool printconfig)
8999{
9000 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
9001 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
9002 u8 element_type = ele->element_type;
9003 u16 seid = le16_to_cpu(ele->seid);
9004
9005 if (printconfig)
9006 dev_info(&pf->pdev->dev,
9007 "type=%d seid=%d uplink=%d downlink=%d\n",
9008 element_type, seid, uplink_seid, downlink_seid);
9009
9010 switch (element_type) {
9011 case I40E_SWITCH_ELEMENT_TYPE_MAC:
9012 pf->mac_seid = seid;
9013 break;
9014 case I40E_SWITCH_ELEMENT_TYPE_VEB:
9015 /* Main VEB? */
9016 if (uplink_seid != pf->mac_seid)
9017 break;
9018 if (pf->lan_veb == I40E_NO_VEB) {
9019 int v;
9020
9021 /* find existing or else empty VEB */
9022 for (v = 0; v < I40E_MAX_VEB; v++) {
9023 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
9024 pf->lan_veb = v;
9025 break;
9026 }
9027 }
9028 if (pf->lan_veb == I40E_NO_VEB) {
9029 v = i40e_veb_mem_alloc(pf);
9030 if (v < 0)
9031 break;
9032 pf->lan_veb = v;
9033 }
9034 }
9035
9036 pf->veb[pf->lan_veb]->seid = seid;
9037 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
9038 pf->veb[pf->lan_veb]->pf = pf;
9039 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
9040 break;
9041 case I40E_SWITCH_ELEMENT_TYPE_VSI:
9042 if (num_reported != 1)
9043 break;
9044 /* This is immediately after a reset so we can assume this is
9045 * the PF's VSI
9046 */
9047 pf->mac_seid = uplink_seid;
9048 pf->pf_seid = downlink_seid;
9049 pf->main_vsi_seid = seid;
9050 if (printconfig)
9051 dev_info(&pf->pdev->dev,
9052 "pf_seid=%d main_vsi_seid=%d\n",
9053 pf->pf_seid, pf->main_vsi_seid);
9054 break;
9055 case I40E_SWITCH_ELEMENT_TYPE_PF:
9056 case I40E_SWITCH_ELEMENT_TYPE_VF:
9057 case I40E_SWITCH_ELEMENT_TYPE_EMP:
9058 case I40E_SWITCH_ELEMENT_TYPE_BMC:
9059 case I40E_SWITCH_ELEMENT_TYPE_PE:
9060 case I40E_SWITCH_ELEMENT_TYPE_PA:
9061 /* ignore these for now */
9062 break;
9063 default:
9064 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
9065 element_type, seid);
9066 break;
9067 }
9068}
9069
9070/**
9071 * i40e_fetch_switch_configuration - Get switch config from firmware
9072 * @pf: board private structure
9073 * @printconfig: should we print the contents
9074 *
9075 * Get the current switch configuration from the device and
9076 * extract a few useful SEID values.
9077 **/
9078int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
9079{
9080 struct i40e_aqc_get_switch_config_resp *sw_config;
9081 u16 next_seid = 0;
9082 int ret = 0;
9083 u8 *aq_buf;
9084 int i;
9085
9086 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
9087 if (!aq_buf)
9088 return -ENOMEM;
9089
9090 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
9091 do {
9092 u16 num_reported, num_total;
9093
9094 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
9095 I40E_AQ_LARGE_BUF,
9096 &next_seid, NULL);
9097 if (ret) {
9098 dev_info(&pf->pdev->dev,
9099 "get switch config failed %d aq_err=%x\n",
9100 ret, pf->hw.aq.asq_last_status);
9101 kfree(aq_buf);
9102 return -ENOENT;
9103 }
9104
9105 num_reported = le16_to_cpu(sw_config->header.num_reported);
9106 num_total = le16_to_cpu(sw_config->header.num_total);
9107
9108 if (printconfig)
9109 dev_info(&pf->pdev->dev,
9110 "header: %d reported %d total\n",
9111 num_reported, num_total);
9112
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009113 for (i = 0; i < num_reported; i++) {
9114 struct i40e_aqc_switch_config_element_resp *ele =
9115 &sw_config->element[i];
9116
9117 i40e_setup_pf_switch_element(pf, ele, num_reported,
9118 printconfig);
9119 }
9120 } while (next_seid != 0);
9121
9122 kfree(aq_buf);
9123 return ret;
9124}
9125
9126/**
9127 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
9128 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009129 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009130 *
9131 * Returns 0 on success, negative value on failure
9132 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009133static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009134{
9135 int ret;
9136
9137 /* find out what's out there already */
9138 ret = i40e_fetch_switch_configuration(pf, false);
9139 if (ret) {
9140 dev_info(&pf->pdev->dev,
9141 "couldn't fetch switch config, err %d, aq_err %d\n",
9142 ret, pf->hw.aq.asq_last_status);
9143 return ret;
9144 }
9145 i40e_pf_reset_stats(pf);
9146
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009147 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009148 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009149 struct i40e_vsi *vsi = NULL;
9150 u16 uplink_seid;
9151
9152 /* Set up the PF VSI associated with the PF's main VSI
9153 * that is already in the HW switch
9154 */
9155 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
9156 uplink_seid = pf->veb[pf->lan_veb]->seid;
9157 else
9158 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009159 if (pf->lan_vsi == I40E_NO_VSI)
9160 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
9161 else if (reinit)
9162 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009163 if (!vsi) {
9164 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
9165 i40e_fdir_teardown(pf);
9166 return -EAGAIN;
9167 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009168 } else {
9169 /* force a reset of TC and queue layout configurations */
9170 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9171 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9172 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9173 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
9174 }
9175 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
9176
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009177 i40e_fdir_sb_setup(pf);
9178
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009179 /* Setup static PF queue filter control settings */
9180 ret = i40e_setup_pf_filter_control(pf);
9181 if (ret) {
9182 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
9183 ret);
9184 /* Failure here should not stop continuing other steps */
9185 }
9186
9187 /* enable RSS in the HW, even for only one queue, as the stack can use
9188 * the hash
9189 */
9190 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
9191 i40e_config_rss(pf);
9192
9193 /* fill in link information and enable LSE reporting */
Catherine Sullivan21af70f2015-01-24 09:58:41 +00009194 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009195 i40e_link_event(pf);
9196
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009197 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009198 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
9199 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009200
Mitch Williamsa34a6712014-09-13 07:40:46 +00009201 /* fill in link information and enable LSE reporting */
Catherine Sullivan21af70f2015-01-24 09:58:41 +00009202 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
Mitch Williamsa34a6712014-09-13 07:40:46 +00009203 i40e_link_event(pf);
9204
9205 /* Initialize user-specific link properties */
9206 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
9207 I40E_AQ_AN_COMPLETED) ? true : false);
9208
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009209 i40e_ptp_init(pf);
9210
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009211 return ret;
9212}
9213
9214/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009215 * i40e_determine_queue_usage - Work out queue distribution
9216 * @pf: board private structure
9217 **/
9218static void i40e_determine_queue_usage(struct i40e_pf *pf)
9219{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009220 int queues_left;
9221
9222 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07009223#ifdef I40E_FCOE
9224 pf->num_fcoe_qps = 0;
9225#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009226
9227 /* Find the max queues to be put into basic use. We'll always be
9228 * using TC0, whether or not DCB is running, and TC0 will get the
9229 * big RSS set.
9230 */
9231 queues_left = pf->hw.func_caps.num_tx_qp;
9232
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009233 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00009234 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009235 /* one qp for PF, no queues for anything else */
9236 queues_left = 0;
9237 pf->rss_size = pf->num_lan_qps = 1;
9238
9239 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009240 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07009241#ifdef I40E_FCOE
9242 I40E_FLAG_FCOE_ENABLED |
9243#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009244 I40E_FLAG_FD_SB_ENABLED |
9245 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009246 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009247 I40E_FLAG_SRIOV_ENABLED |
9248 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00009249 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
9250 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00009251 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009252 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00009253 /* one qp for PF */
9254 pf->rss_size = pf->num_lan_qps = 1;
9255 queues_left -= pf->num_lan_qps;
9256
9257 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07009258#ifdef I40E_FCOE
9259 I40E_FLAG_FCOE_ENABLED |
9260#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00009261 I40E_FLAG_FD_SB_ENABLED |
9262 I40E_FLAG_FD_ATR_ENABLED |
9263 I40E_FLAG_DCB_ENABLED |
9264 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009265 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009266 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009267 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009268 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009269 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009270 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
9271 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00009272 pf->num_lan_qps = max_t(int, pf->rss_size_max,
9273 num_online_cpus());
9274 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
9275 pf->hw.func_caps.num_tx_qp);
9276
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009277 queues_left -= pf->num_lan_qps;
9278 }
9279
Vasu Dev38e00432014-08-01 13:27:03 -07009280#ifdef I40E_FCOE
9281 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
9282 if (I40E_DEFAULT_FCOE <= queues_left) {
9283 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
9284 } else if (I40E_MINIMUM_FCOE <= queues_left) {
9285 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
9286 } else {
9287 pf->num_fcoe_qps = 0;
9288 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
9289 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
9290 }
9291
9292 queues_left -= pf->num_fcoe_qps;
9293 }
9294
9295#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009296 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9297 if (queues_left > 1) {
9298 queues_left -= 1; /* save 1 queue for FD */
9299 } else {
9300 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
9301 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
9302 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009303 }
9304
9305 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
9306 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009307 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
9308 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009309 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
9310 }
9311
9312 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
9313 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
9314 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
9315 (queues_left / pf->num_vmdq_qps));
9316 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
9317 }
9318
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009319 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07009320#ifdef I40E_FCOE
9321 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
9322#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009323}
9324
9325/**
9326 * i40e_setup_pf_filter_control - Setup PF static filter control
9327 * @pf: PF to be setup
9328 *
9329 * i40e_setup_pf_filter_control sets up a pf's initial filter control
9330 * settings. If PE/FCoE are enabled then it will also set the per PF
9331 * based filter sizes required for them. It also enables Flow director,
9332 * ethertype and macvlan type filter settings for the pf.
9333 *
9334 * Returns 0 on success, negative on failure
9335 **/
9336static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
9337{
9338 struct i40e_filter_control_settings *settings = &pf->filter_settings;
9339
9340 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
9341
9342 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009343 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009344 settings->enable_fdir = true;
9345
9346 /* Ethtype and MACVLAN filters enabled for PF */
9347 settings->enable_ethtype = true;
9348 settings->enable_macvlan = true;
9349
9350 if (i40e_set_filter_control(&pf->hw, settings))
9351 return -ENOENT;
9352
9353 return 0;
9354}
9355
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009356#define INFO_STRING_LEN 255
9357static void i40e_print_features(struct i40e_pf *pf)
9358{
9359 struct i40e_hw *hw = &pf->hw;
9360 char *buf, *string;
9361
9362 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
9363 if (!string) {
9364 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
9365 return;
9366 }
9367
9368 buf = string;
9369
9370 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
9371#ifdef CONFIG_PCI_IOV
9372 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
9373#endif
Mitch Williamsaba237d2015-02-06 08:52:17 +00009374 buf += sprintf(buf, "VSIs: %d QP: %d RX: %s ",
9375 pf->hw.func_caps.num_vsis,
9376 pf->vsi[pf->lan_vsi]->num_queue_pairs,
9377 pf->flags & I40E_FLAG_RX_PS_ENABLED ? "PS" : "1BUF");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009378
9379 if (pf->flags & I40E_FLAG_RSS_ENABLED)
9380 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009381 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009382 buf += sprintf(buf, "FD_ATR ");
9383 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9384 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009385 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009386 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009387 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009388 buf += sprintf(buf, "DCB ");
9389 if (pf->flags & I40E_FLAG_PTP)
9390 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07009391#ifdef I40E_FCOE
9392 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
9393 buf += sprintf(buf, "FCOE ");
9394#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009395
9396 BUG_ON(buf > (string + INFO_STRING_LEN));
9397 dev_info(&pf->pdev->dev, "%s\n", string);
9398 kfree(string);
9399}
9400
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009401/**
9402 * i40e_probe - Device initialization routine
9403 * @pdev: PCI device information struct
9404 * @ent: entry in i40e_pci_tbl
9405 *
9406 * i40e_probe initializes a pf identified by a pci_dev structure.
9407 * The OS initialization, configuring of the pf private structure,
9408 * and a hardware reset occur.
9409 *
9410 * Returns 0 on success, negative on failure
9411 **/
9412static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
9413{
Catherine Sullivane8278452015-02-06 08:52:08 +00009414 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009415 struct i40e_pf *pf;
9416 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009417 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009418 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009419 int err = 0;
9420 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009421 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009422
9423 err = pci_enable_device_mem(pdev);
9424 if (err)
9425 return err;
9426
9427 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00009428 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00009429 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00009430 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
9431 if (err) {
9432 dev_err(&pdev->dev,
9433 "DMA configuration failed: 0x%x\n", err);
9434 goto err_dma;
9435 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009436 }
9437
9438 /* set up pci connections */
9439 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
9440 IORESOURCE_MEM), i40e_driver_name);
9441 if (err) {
9442 dev_info(&pdev->dev,
9443 "pci_request_selected_regions failed %d\n", err);
9444 goto err_pci_reg;
9445 }
9446
9447 pci_enable_pcie_error_reporting(pdev);
9448 pci_set_master(pdev);
9449
9450 /* Now that we have a PCI connection, we need to do the
9451 * low level device setup. This is primarily setting up
9452 * the Admin Queue structures and then querying for the
9453 * device's current profile information.
9454 */
9455 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
9456 if (!pf) {
9457 err = -ENOMEM;
9458 goto err_pf_alloc;
9459 }
9460 pf->next_vsi = 0;
9461 pf->pdev = pdev;
9462 set_bit(__I40E_DOWN, &pf->state);
9463
9464 hw = &pf->hw;
9465 hw->back = pf;
9466 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
9467 pci_resource_len(pdev, 0));
9468 if (!hw->hw_addr) {
9469 err = -EIO;
9470 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
9471 (unsigned int)pci_resource_start(pdev, 0),
9472 (unsigned int)pci_resource_len(pdev, 0), err);
9473 goto err_ioremap;
9474 }
9475 hw->vendor_id = pdev->vendor;
9476 hw->device_id = pdev->device;
9477 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
9478 hw->subsystem_vendor_id = pdev->subsystem_vendor;
9479 hw->subsystem_device_id = pdev->subsystem_device;
9480 hw->bus.device = PCI_SLOT(pdev->devfn);
9481 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009482 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009483
Shannon Nelson5b5faa42014-10-17 03:14:51 +00009484 if (debug != -1) {
9485 pf->msg_enable = pf->hw.debug_mask;
9486 pf->msg_enable = debug;
9487 }
9488
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00009489 /* do a special CORER for clearing PXE mode once at init */
9490 if (hw->revision_id == 0 &&
9491 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
9492 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
9493 i40e_flush(hw);
9494 msleep(200);
9495 pf->corer_count++;
9496
9497 i40e_clear_pxe_mode(hw);
9498 }
9499
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009500 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00009501 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009502 err = i40e_pf_reset(hw);
9503 if (err) {
9504 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
9505 goto err_pf_reset;
9506 }
9507 pf->pfr_count++;
9508
9509 hw->aq.num_arq_entries = I40E_AQ_LEN;
9510 hw->aq.num_asq_entries = I40E_AQ_LEN;
9511 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9512 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9513 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009514
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00009515 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009516 "%s-%s:misc",
9517 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009518
9519 err = i40e_init_shared_code(hw);
9520 if (err) {
9521 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
9522 goto err_pf_reset;
9523 }
9524
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009525 /* set up a default setting for link flow control */
9526 pf->hw.fc.requested_mode = I40E_FC_NONE;
9527
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009528 err = i40e_init_adminq(hw);
9529 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
9530 if (err) {
9531 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009532 "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");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009533 goto err_pf_reset;
9534 }
9535
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009536 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
9537 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00009538 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009539 "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");
9540 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
9541 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00009542 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009543 "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 +00009544
9545
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009546 i40e_verify_eeprom(pf);
9547
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009548 /* Rev 0 hardware was never productized */
9549 if (hw->revision_id < 1)
9550 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");
9551
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009552 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009553 err = i40e_get_capabilities(pf);
9554 if (err)
9555 goto err_adminq_setup;
9556
9557 err = i40e_sw_init(pf);
9558 if (err) {
9559 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9560 goto err_sw_init;
9561 }
9562
9563 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9564 hw->func_caps.num_rx_qp,
9565 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9566 if (err) {
9567 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9568 goto err_init_lan_hmc;
9569 }
9570
9571 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9572 if (err) {
9573 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9574 err = -ENOENT;
9575 goto err_configure_lan_hmc;
9576 }
9577
Neerav Parikhb686ece2014-12-14 01:55:11 +00009578 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
9579 * Ignore error return codes because if it was already disabled via
9580 * hardware settings this will fail
9581 */
9582 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
9583 (pf->hw.aq.fw_maj_ver < 4)) {
9584 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
9585 i40e_aq_stop_lldp(hw, true, NULL);
9586 }
9587
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009588 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009589 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009590 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9591 err = -EIO;
9592 goto err_mac_addr;
9593 }
9594 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009595 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009596 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9597 if (is_valid_ether_addr(hw->mac.port_addr))
9598 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009599#ifdef I40E_FCOE
9600 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9601 if (err)
9602 dev_info(&pdev->dev,
9603 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9604 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9605 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9606 hw->mac.san_addr);
9607 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9608 }
9609 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9610#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009611
9612 pci_set_drvdata(pdev, pf);
9613 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009614#ifdef CONFIG_I40E_DCB
9615 err = i40e_init_pf_dcb(pf);
9616 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00009617 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009618 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009619 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009620 }
9621#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009622
9623 /* set up periodic task facility */
9624 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9625 pf->service_timer_period = HZ;
9626
9627 INIT_WORK(&pf->service_task, i40e_service_task);
9628 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9629 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9630 pf->link_check_timeout = jiffies;
9631
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009632 /* WoL defaults to disabled */
9633 pf->wol_en = false;
9634 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9635
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009636 /* set up the main switch operations */
9637 i40e_determine_queue_usage(pf);
9638 i40e_init_interrupt_scheme(pf);
9639
Mitch Williams505682c2014-05-20 08:01:37 +00009640 /* The number of VSIs reported by the FW is the minimum guaranteed
9641 * to us; HW supports far more and we share the remaining pool with
9642 * the other PFs. We allocate space for more than the guarantee with
9643 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009644 */
Mitch Williams505682c2014-05-20 08:01:37 +00009645 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9646 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9647 else
9648 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9649
9650 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9651 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009652 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009653 if (!pf->vsi) {
9654 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009655 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009656 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009657
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009658 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009659 if (err) {
9660 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9661 goto err_vsis;
9662 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009663 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009664 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009665 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9666 i40e_vsi_open(pf->vsi[i]);
9667 break;
9668 }
9669 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009670
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00009671 /* driver is only interested in link up/down and module qualification
9672 * reports from firmware
9673 */
9674 err = i40e_aq_set_phy_int_mask(&pf->hw,
9675 I40E_AQ_EVENT_LINK_UPDOWN |
9676 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
9677 if (err)
9678 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err);
9679
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00009680 msleep(75);
9681 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
9682 if (err) {
9683 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
9684 pf->hw.aq.asq_last_status);
9685 }
9686
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009687 /* The main driver is (mostly) up and happy. We need to set this state
9688 * before setting up the misc vector or we get a race and the vector
9689 * ends up disabled forever.
9690 */
9691 clear_bit(__I40E_DOWN, &pf->state);
9692
9693 /* In case of MSIX we are going to setup the misc vector right here
9694 * to handle admin queue events etc. In case of legacy and MSI
9695 * the misc functionality and queue processing is combined in
9696 * the same vector and that gets setup at open.
9697 */
9698 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9699 err = i40e_setup_misc_vector(pf);
9700 if (err) {
9701 dev_info(&pdev->dev,
9702 "setup of misc vector failed: %d\n", err);
9703 goto err_vsis;
9704 }
9705 }
9706
Greg Rosedf805f62014-04-04 04:43:16 +00009707#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009708 /* prep for VF support */
9709 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009710 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9711 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009712 u32 val;
9713
9714 /* disable link interrupts for VFs */
9715 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9716 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9717 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9718 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009719
9720 if (pci_num_vf(pdev)) {
9721 dev_info(&pdev->dev,
9722 "Active VFs found, allocating resources.\n");
9723 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9724 if (err)
9725 dev_info(&pdev->dev,
9726 "Error %d allocating resources for existing VFs\n",
9727 err);
9728 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009729 }
Greg Rosedf805f62014-04-04 04:43:16 +00009730#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009731
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009732 pfs_found++;
9733
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009734 i40e_dbg_pf_init(pf);
9735
9736 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009737 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009738
9739 /* since everything's happy, start the service_task timer */
9740 mod_timer(&pf->service_timer,
9741 round_jiffies(jiffies + pf->service_timer_period));
9742
Vasu Dev38e00432014-08-01 13:27:03 -07009743#ifdef I40E_FCOE
9744 /* create FCoE interface */
9745 i40e_fcoe_vsi_setup(pf);
9746
9747#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009748 /* Get the negotiated link width and speed from PCI config space */
9749 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9750
9751 i40e_set_pci_config_data(hw, link_status);
9752
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009753 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009754 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9755 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9756 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9757 "Unknown"),
9758 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9759 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9760 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9761 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9762 "Unknown"));
9763
9764 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9765 hw->bus.speed < i40e_bus_speed_8000) {
9766 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9767 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9768 }
9769
Catherine Sullivane8278452015-02-06 08:52:08 +00009770 /* get the requested speeds from the fw */
9771 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
9772 if (err)
9773 dev_info(&pf->pdev->dev, "get phy abilities failed, aq_err %d, advertised speed settings may not be correct\n",
9774 err);
9775 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
9776
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009777 /* print a string summarizing features */
9778 i40e_print_features(pf);
9779
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009780 return 0;
9781
9782 /* Unwind what we've done if something failed in the setup */
9783err_vsis:
9784 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009785 i40e_clear_interrupt_scheme(pf);
9786 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009787err_switch_setup:
9788 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009789 del_timer_sync(&pf->service_timer);
9790err_mac_addr:
9791err_configure_lan_hmc:
9792 (void)i40e_shutdown_lan_hmc(hw);
9793err_init_lan_hmc:
9794 kfree(pf->qp_pile);
9795 kfree(pf->irq_pile);
9796err_sw_init:
9797err_adminq_setup:
9798 (void)i40e_shutdown_adminq(hw);
9799err_pf_reset:
9800 iounmap(hw->hw_addr);
9801err_ioremap:
9802 kfree(pf);
9803err_pf_alloc:
9804 pci_disable_pcie_error_reporting(pdev);
9805 pci_release_selected_regions(pdev,
9806 pci_select_bars(pdev, IORESOURCE_MEM));
9807err_pci_reg:
9808err_dma:
9809 pci_disable_device(pdev);
9810 return err;
9811}
9812
9813/**
9814 * i40e_remove - Device removal routine
9815 * @pdev: PCI device information struct
9816 *
9817 * i40e_remove is called by the PCI subsystem to alert the driver
9818 * that is should release a PCI device. This could be caused by a
9819 * Hot-Plug event, or because the driver is going to be removed from
9820 * memory.
9821 **/
9822static void i40e_remove(struct pci_dev *pdev)
9823{
9824 struct i40e_pf *pf = pci_get_drvdata(pdev);
9825 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009826 int i;
9827
9828 i40e_dbg_pf_exit(pf);
9829
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009830 i40e_ptp_stop(pf);
9831
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009832 /* no more scheduling of any task */
9833 set_bit(__I40E_DOWN, &pf->state);
9834 del_timer_sync(&pf->service_timer);
9835 cancel_work_sync(&pf->service_task);
9836
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009837 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9838 i40e_free_vfs(pf);
9839 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9840 }
9841
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009842 i40e_fdir_teardown(pf);
9843
9844 /* If there is a switch structure or any orphans, remove them.
9845 * This will leave only the PF's VSI remaining.
9846 */
9847 for (i = 0; i < I40E_MAX_VEB; i++) {
9848 if (!pf->veb[i])
9849 continue;
9850
9851 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9852 pf->veb[i]->uplink_seid == 0)
9853 i40e_switch_branch_release(pf->veb[i]);
9854 }
9855
9856 /* Now we can shutdown the PF's VSI, just before we kill
9857 * adminq and hmc.
9858 */
9859 if (pf->vsi[pf->lan_vsi])
9860 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9861
9862 i40e_stop_misc_vector(pf);
9863 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9864 synchronize_irq(pf->msix_entries[0].vector);
9865 free_irq(pf->msix_entries[0].vector, pf);
9866 }
9867
9868 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009869 if (pf->hw.hmc.hmc_obj) {
9870 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9871 if (ret_code)
9872 dev_warn(&pdev->dev,
9873 "Failed to destroy the HMC resources: %d\n",
9874 ret_code);
9875 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009876
9877 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009878 ret_code = i40e_shutdown_adminq(&pf->hw);
9879 if (ret_code)
9880 dev_warn(&pdev->dev,
9881 "Failed to destroy the Admin Queue resources: %d\n",
9882 ret_code);
9883
9884 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9885 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009886 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009887 if (pf->vsi[i]) {
9888 i40e_vsi_clear_rings(pf->vsi[i]);
9889 i40e_vsi_clear(pf->vsi[i]);
9890 pf->vsi[i] = NULL;
9891 }
9892 }
9893
9894 for (i = 0; i < I40E_MAX_VEB; i++) {
9895 kfree(pf->veb[i]);
9896 pf->veb[i] = NULL;
9897 }
9898
9899 kfree(pf->qp_pile);
9900 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009901 kfree(pf->vsi);
9902
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009903 iounmap(pf->hw.hw_addr);
9904 kfree(pf);
9905 pci_release_selected_regions(pdev,
9906 pci_select_bars(pdev, IORESOURCE_MEM));
9907
9908 pci_disable_pcie_error_reporting(pdev);
9909 pci_disable_device(pdev);
9910}
9911
9912/**
9913 * i40e_pci_error_detected - warning that something funky happened in PCI land
9914 * @pdev: PCI device information struct
9915 *
9916 * Called to warn that something happened and the error handling steps
9917 * are in progress. Allows the driver to quiesce things, be ready for
9918 * remediation.
9919 **/
9920static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9921 enum pci_channel_state error)
9922{
9923 struct i40e_pf *pf = pci_get_drvdata(pdev);
9924
9925 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9926
9927 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009928 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9929 rtnl_lock();
9930 i40e_prep_for_reset(pf);
9931 rtnl_unlock();
9932 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009933
9934 /* Request a slot reset */
9935 return PCI_ERS_RESULT_NEED_RESET;
9936}
9937
9938/**
9939 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9940 * @pdev: PCI device information struct
9941 *
9942 * Called to find if the driver can work with the device now that
9943 * the pci slot has been reset. If a basic connection seems good
9944 * (registers are readable and have sane content) then return a
9945 * happy little PCI_ERS_RESULT_xxx.
9946 **/
9947static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9948{
9949 struct i40e_pf *pf = pci_get_drvdata(pdev);
9950 pci_ers_result_t result;
9951 int err;
9952 u32 reg;
9953
9954 dev_info(&pdev->dev, "%s\n", __func__);
9955 if (pci_enable_device_mem(pdev)) {
9956 dev_info(&pdev->dev,
9957 "Cannot re-enable PCI device after reset.\n");
9958 result = PCI_ERS_RESULT_DISCONNECT;
9959 } else {
9960 pci_set_master(pdev);
9961 pci_restore_state(pdev);
9962 pci_save_state(pdev);
9963 pci_wake_from_d3(pdev, false);
9964
9965 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9966 if (reg == 0)
9967 result = PCI_ERS_RESULT_RECOVERED;
9968 else
9969 result = PCI_ERS_RESULT_DISCONNECT;
9970 }
9971
9972 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9973 if (err) {
9974 dev_info(&pdev->dev,
9975 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9976 err);
9977 /* non-fatal, continue */
9978 }
9979
9980 return result;
9981}
9982
9983/**
9984 * i40e_pci_error_resume - restart operations after PCI error recovery
9985 * @pdev: PCI device information struct
9986 *
9987 * Called to allow the driver to bring things back up after PCI error
9988 * and/or reset recovery has finished.
9989 **/
9990static void i40e_pci_error_resume(struct pci_dev *pdev)
9991{
9992 struct i40e_pf *pf = pci_get_drvdata(pdev);
9993
9994 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009995 if (test_bit(__I40E_SUSPENDED, &pf->state))
9996 return;
9997
9998 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009999 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010000 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010001}
10002
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010003/**
10004 * i40e_shutdown - PCI callback for shutting down
10005 * @pdev: PCI device information struct
10006 **/
10007static void i40e_shutdown(struct pci_dev *pdev)
10008{
10009 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010010 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010011
10012 set_bit(__I40E_SUSPENDED, &pf->state);
10013 set_bit(__I40E_DOWN, &pf->state);
10014 rtnl_lock();
10015 i40e_prep_for_reset(pf);
10016 rtnl_unlock();
10017
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010018 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
10019 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
10020
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010021 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010022 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010023 pci_set_power_state(pdev, PCI_D3hot);
10024 }
10025}
10026
10027#ifdef CONFIG_PM
10028/**
10029 * i40e_suspend - PCI callback for moving to D3
10030 * @pdev: PCI device information struct
10031 **/
10032static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
10033{
10034 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010035 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010036
10037 set_bit(__I40E_SUSPENDED, &pf->state);
10038 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams88086e5d2015-01-09 11:18:19 +000010039 del_timer_sync(&pf->service_timer);
10040 cancel_work_sync(&pf->service_task);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010041 rtnl_lock();
10042 i40e_prep_for_reset(pf);
10043 rtnl_unlock();
10044
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010045 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
10046 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
10047
10048 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010049 pci_set_power_state(pdev, PCI_D3hot);
10050
10051 return 0;
10052}
10053
10054/**
10055 * i40e_resume - PCI callback for waking up from D3
10056 * @pdev: PCI device information struct
10057 **/
10058static int i40e_resume(struct pci_dev *pdev)
10059{
10060 struct i40e_pf *pf = pci_get_drvdata(pdev);
10061 u32 err;
10062
10063 pci_set_power_state(pdev, PCI_D0);
10064 pci_restore_state(pdev);
10065 /* pci_restore_state() clears dev->state_saves, so
10066 * call pci_save_state() again to restore it.
10067 */
10068 pci_save_state(pdev);
10069
10070 err = pci_enable_device_mem(pdev);
10071 if (err) {
10072 dev_err(&pdev->dev,
10073 "%s: Cannot enable PCI device from suspend\n",
10074 __func__);
10075 return err;
10076 }
10077 pci_set_master(pdev);
10078
10079 /* no wakeup events while running */
10080 pci_wake_from_d3(pdev, false);
10081
10082 /* handling the reset will rebuild the device state */
10083 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
10084 clear_bit(__I40E_DOWN, &pf->state);
10085 rtnl_lock();
10086 i40e_reset_and_rebuild(pf, false);
10087 rtnl_unlock();
10088 }
10089
10090 return 0;
10091}
10092
10093#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010094static const struct pci_error_handlers i40e_err_handler = {
10095 .error_detected = i40e_pci_error_detected,
10096 .slot_reset = i40e_pci_error_slot_reset,
10097 .resume = i40e_pci_error_resume,
10098};
10099
10100static struct pci_driver i40e_driver = {
10101 .name = i40e_driver_name,
10102 .id_table = i40e_pci_tbl,
10103 .probe = i40e_probe,
10104 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010105#ifdef CONFIG_PM
10106 .suspend = i40e_suspend,
10107 .resume = i40e_resume,
10108#endif
10109 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010110 .err_handler = &i40e_err_handler,
10111 .sriov_configure = i40e_pci_sriov_configure,
10112};
10113
10114/**
10115 * i40e_init_module - Driver registration routine
10116 *
10117 * i40e_init_module is the first routine called when the driver is
10118 * loaded. All it does is register with the PCI subsystem.
10119 **/
10120static int __init i40e_init_module(void)
10121{
10122 pr_info("%s: %s - version %s\n", i40e_driver_name,
10123 i40e_driver_string, i40e_driver_version_str);
10124 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000010125
10126#if IS_ENABLED(CONFIG_CONFIGFS_FS)
10127 i40e_configfs_init();
10128#endif /* CONFIG_CONFIGFS_FS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010129 i40e_dbg_init();
10130 return pci_register_driver(&i40e_driver);
10131}
10132module_init(i40e_init_module);
10133
10134/**
10135 * i40e_exit_module - Driver exit cleanup routine
10136 *
10137 * i40e_exit_module is called just before the driver is removed
10138 * from memory.
10139 **/
10140static void __exit i40e_exit_module(void)
10141{
10142 pci_unregister_driver(&i40e_driver);
10143 i40e_dbg_exit();
Greg Rose96664482015-02-06 08:52:13 +000010144#if IS_ENABLED(CONFIG_CONFIGFS_FS)
10145 i40e_configfs_exit();
10146#endif /* CONFIG_CONFIGFS_FS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010147}
10148module_exit(i40e_exit_module);