blob: fae83ac8c822c349855fb6633e2345537c80adde [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
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00004554 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
4555 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
4556 (pf->hw.aq.fw_maj_ver < 4))
4557 goto out;
4558
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004559 /* Get the initial DCB configuration */
4560 err = i40e_init_dcb(hw);
4561 if (!err) {
4562 /* Device/Function is not DCBX capable */
4563 if ((!hw->func_caps.dcb) ||
4564 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4565 dev_info(&pf->pdev->dev,
4566 "DCBX offload is not supported or is disabled for this PF.\n");
4567
4568 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4569 goto out;
4570
4571 } else {
4572 /* When status is not DISABLED then DCBX in FW */
4573 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4574 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004575
4576 pf->flags |= I40E_FLAG_DCB_CAPABLE;
4577 /* Enable DCB tagging only when more than one TC */
4578 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4579 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00004580 dev_dbg(&pf->pdev->dev,
4581 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004582 }
Neerav Parikh014269f2014-04-01 07:11:48 +00004583 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00004584 dev_info(&pf->pdev->dev,
4585 "AQ Querying DCB configuration failed: aq_err %d\n",
Neerav Parikh014269f2014-04-01 07:11:48 +00004586 pf->hw.aq.asq_last_status);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004587 }
4588
4589out:
4590 return err;
4591}
4592#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004593#define SPEED_SIZE 14
4594#define FC_SIZE 8
4595/**
4596 * i40e_print_link_message - print link up or down
4597 * @vsi: the VSI for which link needs a message
4598 */
4599static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
4600{
4601 char speed[SPEED_SIZE] = "Unknown";
4602 char fc[FC_SIZE] = "RX/TX";
4603
4604 if (!isup) {
4605 netdev_info(vsi->netdev, "NIC Link is Down\n");
4606 return;
4607 }
4608
Greg Rose148c2d82014-12-11 07:06:27 +00004609 /* Warn user if link speed on NPAR enabled partition is not at
4610 * least 10GB
4611 */
4612 if (vsi->back->hw.func_caps.npar_enable &&
4613 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
4614 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
4615 netdev_warn(vsi->netdev,
4616 "The partition detected link speed that is less than 10Gbps\n");
4617
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004618 switch (vsi->back->hw.phy.link_info.link_speed) {
4619 case I40E_LINK_SPEED_40GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004620 strlcpy(speed, "40 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004621 break;
4622 case I40E_LINK_SPEED_10GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004623 strlcpy(speed, "10 Gbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004624 break;
4625 case I40E_LINK_SPEED_1GB:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004626 strlcpy(speed, "1000 Mbps", SPEED_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004627 break;
Mitch Williams5960d332014-09-13 07:40:47 +00004628 case I40E_LINK_SPEED_100MB:
4629 strncpy(speed, "100 Mbps", SPEED_SIZE);
4630 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004631 default:
4632 break;
4633 }
4634
4635 switch (vsi->back->hw.fc.current_mode) {
4636 case I40E_FC_FULL:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004637 strlcpy(fc, "RX/TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004638 break;
4639 case I40E_FC_TX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004640 strlcpy(fc, "TX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004641 break;
4642 case I40E_FC_RX_PAUSE:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004643 strlcpy(fc, "RX", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004644 break;
4645 default:
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00004646 strlcpy(fc, "None", FC_SIZE);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004647 break;
4648 }
4649
4650 netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n",
4651 speed, fc);
4652}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004653
4654/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004655 * i40e_up_complete - Finish the last steps of bringing up a connection
4656 * @vsi: the VSI being configured
4657 **/
4658static int i40e_up_complete(struct i40e_vsi *vsi)
4659{
4660 struct i40e_pf *pf = vsi->back;
4661 int err;
4662
4663 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4664 i40e_vsi_configure_msix(vsi);
4665 else
4666 i40e_configure_msi_and_legacy(vsi);
4667
4668 /* start rings */
4669 err = i40e_vsi_control_rings(vsi, true);
4670 if (err)
4671 return err;
4672
4673 clear_bit(__I40E_DOWN, &vsi->state);
4674 i40e_napi_enable_all(vsi);
4675 i40e_vsi_enable_irq(vsi);
4676
4677 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
4678 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004679 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004680 netif_tx_start_all_queues(vsi->netdev);
4681 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00004682 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00004683 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00004684 /* need to check for qualified module here*/
4685 if ((pf->hw.phy.link_info.link_info &
4686 I40E_AQ_MEDIA_AVAILABLE) &&
4687 (!(pf->hw.phy.link_info.an_info &
4688 I40E_AQ_QUALIFIED_MODULE)))
4689 netdev_err(vsi->netdev,
4690 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004691 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004692
4693 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004694 if (vsi->type == I40E_VSI_FDIR) {
4695 /* reset fd counters */
4696 pf->fd_add_err = pf->fd_atr_cnt = 0;
4697 if (pf->fd_tcp_rule > 0) {
4698 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
4699 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
4700 pf->fd_tcp_rule = 0;
4701 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00004702 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00004703 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004704 i40e_service_event_schedule(pf);
4705
4706 return 0;
4707}
4708
4709/**
4710 * i40e_vsi_reinit_locked - Reset the VSI
4711 * @vsi: the VSI being configured
4712 *
4713 * Rebuild the ring structs after some configuration
4714 * has changed, e.g. MTU size.
4715 **/
4716static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
4717{
4718 struct i40e_pf *pf = vsi->back;
4719
4720 WARN_ON(in_interrupt());
4721 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
4722 usleep_range(1000, 2000);
4723 i40e_down(vsi);
4724
4725 /* Give a VF some time to respond to the reset. The
4726 * two second wait is based upon the watchdog cycle in
4727 * the VF driver.
4728 */
4729 if (vsi->type == I40E_VSI_SRIOV)
4730 msleep(2000);
4731 i40e_up(vsi);
4732 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
4733}
4734
4735/**
4736 * i40e_up - Bring the connection back up after being down
4737 * @vsi: the VSI being configured
4738 **/
4739int i40e_up(struct i40e_vsi *vsi)
4740{
4741 int err;
4742
4743 err = i40e_vsi_configure(vsi);
4744 if (!err)
4745 err = i40e_up_complete(vsi);
4746
4747 return err;
4748}
4749
4750/**
4751 * i40e_down - Shutdown the connection processing
4752 * @vsi: the VSI being stopped
4753 **/
4754void i40e_down(struct i40e_vsi *vsi)
4755{
4756 int i;
4757
4758 /* It is assumed that the caller of this function
4759 * sets the vsi->state __I40E_DOWN bit.
4760 */
4761 if (vsi->netdev) {
4762 netif_carrier_off(vsi->netdev);
4763 netif_tx_disable(vsi->netdev);
4764 }
4765 i40e_vsi_disable_irq(vsi);
4766 i40e_vsi_control_rings(vsi, false);
4767 i40e_napi_disable_all(vsi);
4768
4769 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004770 i40e_clean_tx_ring(vsi->tx_rings[i]);
4771 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004772 }
4773}
4774
4775/**
4776 * i40e_setup_tc - configure multiple traffic classes
4777 * @netdev: net device to configure
4778 * @tc: number of traffic classes to enable
4779 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004780#ifdef I40E_FCOE
4781int i40e_setup_tc(struct net_device *netdev, u8 tc)
4782#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004783static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07004784#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004785{
4786 struct i40e_netdev_priv *np = netdev_priv(netdev);
4787 struct i40e_vsi *vsi = np->vsi;
4788 struct i40e_pf *pf = vsi->back;
4789 u8 enabled_tc = 0;
4790 int ret = -EINVAL;
4791 int i;
4792
4793 /* Check if DCB enabled to continue */
4794 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
4795 netdev_info(netdev, "DCB is not enabled for adapter\n");
4796 goto exit;
4797 }
4798
4799 /* Check if MFP enabled */
4800 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
4801 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
4802 goto exit;
4803 }
4804
4805 /* Check whether tc count is within enabled limit */
4806 if (tc > i40e_pf_get_num_tc(pf)) {
4807 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
4808 goto exit;
4809 }
4810
4811 /* Generate TC map for number of tc requested */
4812 for (i = 0; i < tc; i++)
4813 enabled_tc |= (1 << i);
4814
4815 /* Requesting same TC configuration as already enabled */
4816 if (enabled_tc == vsi->tc_config.enabled_tc)
4817 return 0;
4818
4819 /* Quiesce VSI queues */
4820 i40e_quiesce_vsi(vsi);
4821
4822 /* Configure VSI for enabled TCs */
4823 ret = i40e_vsi_config_tc(vsi, enabled_tc);
4824 if (ret) {
4825 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
4826 vsi->seid);
4827 goto exit;
4828 }
4829
4830 /* Unquiesce VSI */
4831 i40e_unquiesce_vsi(vsi);
4832
4833exit:
4834 return ret;
4835}
4836
4837/**
4838 * i40e_open - Called when a network interface is made active
4839 * @netdev: network interface device structure
4840 *
4841 * The open entry point is called when a network interface is made
4842 * active by the system (IFF_UP). At this point all resources needed
4843 * for transmit and receive operations are allocated, the interrupt
4844 * handler is registered with the OS, the netdev watchdog subtask is
4845 * enabled, and the stack is notified that the interface is ready.
4846 *
4847 * Returns 0 on success, negative value on failure
4848 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004849int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004850{
4851 struct i40e_netdev_priv *np = netdev_priv(netdev);
4852 struct i40e_vsi *vsi = np->vsi;
4853 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004854 int err;
4855
Shannon Nelson4eb3f762014-03-06 08:59:58 +00004856 /* disallow open during test or if eeprom is broken */
4857 if (test_bit(__I40E_TESTING, &pf->state) ||
4858 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004859 return -EBUSY;
4860
4861 netif_carrier_off(netdev);
4862
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004863 err = i40e_vsi_open(vsi);
4864 if (err)
4865 return err;
4866
Jesse Brandeburg059dab62014-04-01 09:07:20 +00004867 /* configure global TSO hardware offload settings */
4868 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
4869 TCP_FLAG_FIN) >> 16);
4870 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
4871 TCP_FLAG_FIN |
4872 TCP_FLAG_CWR) >> 16);
4873 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
4874
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004875#ifdef CONFIG_I40E_VXLAN
4876 vxlan_get_rx_port(netdev);
4877#endif
4878
4879 return 0;
4880}
4881
4882/**
4883 * i40e_vsi_open -
4884 * @vsi: the VSI to open
4885 *
4886 * Finish initialization of the VSI.
4887 *
4888 * Returns 0 on success, negative value on failure
4889 **/
4890int i40e_vsi_open(struct i40e_vsi *vsi)
4891{
4892 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00004893 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004894 int err;
4895
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004896 /* allocate descriptors */
4897 err = i40e_vsi_setup_tx_resources(vsi);
4898 if (err)
4899 goto err_setup_tx;
4900 err = i40e_vsi_setup_rx_resources(vsi);
4901 if (err)
4902 goto err_setup_rx;
4903
4904 err = i40e_vsi_configure(vsi);
4905 if (err)
4906 goto err_setup_rx;
4907
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004908 if (vsi->netdev) {
4909 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
4910 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
4911 err = i40e_vsi_request_irq(vsi, int_name);
4912 if (err)
4913 goto err_setup_rx;
4914
4915 /* Notify the stack of the actual queue counts. */
4916 err = netif_set_real_num_tx_queues(vsi->netdev,
4917 vsi->num_queue_pairs);
4918 if (err)
4919 goto err_set_queues;
4920
4921 err = netif_set_real_num_rx_queues(vsi->netdev,
4922 vsi->num_queue_pairs);
4923 if (err)
4924 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004925
4926 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00004927 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004928 dev_driver_string(&pf->pdev->dev),
4929 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00004930 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00004931
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00004932 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00004933 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00004934 goto err_setup_rx;
4935 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004936
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004937 err = i40e_up_complete(vsi);
4938 if (err)
4939 goto err_up_complete;
4940
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004941 return 0;
4942
4943err_up_complete:
4944 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00004945err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004946 i40e_vsi_free_irq(vsi);
4947err_setup_rx:
4948 i40e_vsi_free_rx_resources(vsi);
4949err_setup_tx:
4950 i40e_vsi_free_tx_resources(vsi);
4951 if (vsi == pf->vsi[pf->lan_vsi])
4952 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
4953
4954 return err;
4955}
4956
4957/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00004958 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
4959 * @pf: Pointer to pf
4960 *
4961 * This function destroys the hlist where all the Flow Director
4962 * filters were saved.
4963 **/
4964static void i40e_fdir_filter_exit(struct i40e_pf *pf)
4965{
4966 struct i40e_fdir_filter *filter;
4967 struct hlist_node *node2;
4968
4969 hlist_for_each_entry_safe(filter, node2,
4970 &pf->fdir_filter_list, fdir_node) {
4971 hlist_del(&filter->fdir_node);
4972 kfree(filter);
4973 }
4974 pf->fdir_pf_active_filters = 0;
4975}
4976
4977/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004978 * i40e_close - Disables a network interface
4979 * @netdev: network interface device structure
4980 *
4981 * The close entry point is called when an interface is de-activated
4982 * by the OS. The hardware is still under the driver's control, but
4983 * this netdev interface is disabled.
4984 *
4985 * Returns 0, this is not allowed to fail
4986 **/
Vasu Dev38e00432014-08-01 13:27:03 -07004987#ifdef I40E_FCOE
4988int i40e_close(struct net_device *netdev)
4989#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004990static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07004991#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004992{
4993 struct i40e_netdev_priv *np = netdev_priv(netdev);
4994 struct i40e_vsi *vsi = np->vsi;
4995
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004996 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004997
4998 return 0;
4999}
5000
5001/**
5002 * i40e_do_reset - Start a PF or Core Reset sequence
5003 * @pf: board private structure
5004 * @reset_flags: which reset is requested
5005 *
5006 * The essential difference in resets is that the PF Reset
5007 * doesn't clear the packet buffers, doesn't reset the PE
5008 * firmware, and doesn't bother the other PFs on the chip.
5009 **/
5010void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5011{
5012 u32 val;
5013
5014 WARN_ON(in_interrupt());
5015
Mitch Williams263fc482014-04-23 04:50:11 +00005016 if (i40e_check_asq_alive(&pf->hw))
5017 i40e_vc_notify_reset(pf);
5018
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005019 /* do the biggest reset indicated */
5020 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
5021
5022 /* Request a Global Reset
5023 *
5024 * This will start the chip's countdown to the actual full
5025 * chip reset event, and a warning interrupt to be sent
5026 * to all PFs, including the requestor. Our handler
5027 * for the warning interrupt will deal with the shutdown
5028 * and recovery of the switch setup.
5029 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005030 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005031 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5032 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5033 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5034
5035 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
5036
5037 /* Request a Core Reset
5038 *
5039 * Same as Global Reset, except does *not* include the MAC/PHY
5040 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005041 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005042 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5043 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5044 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5045 i40e_flush(&pf->hw);
5046
5047 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
5048
5049 /* Request a PF Reset
5050 *
5051 * Resets only the PF-specific registers
5052 *
5053 * This goes directly to the tear-down and rebuild of
5054 * the switch, since we need to do all the recovery as
5055 * for the Core Reset.
5056 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005057 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005058 i40e_handle_reset_warning(pf);
5059
5060 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
5061 int v;
5062
5063 /* Find the VSI(s) that requested a re-init */
5064 dev_info(&pf->pdev->dev,
5065 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005066 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005067 struct i40e_vsi *vsi = pf->vsi[v];
5068 if (vsi != NULL &&
5069 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5070 i40e_vsi_reinit_locked(pf->vsi[v]);
5071 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5072 }
5073 }
5074
5075 /* no further action needed, so return now */
5076 return;
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005077 } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) {
5078 int v;
5079
5080 /* Find the VSI(s) that needs to be brought down */
5081 dev_info(&pf->pdev->dev, "VSI down requested\n");
5082 for (v = 0; v < pf->num_alloc_vsi; v++) {
5083 struct i40e_vsi *vsi = pf->vsi[v];
5084 if (vsi != NULL &&
5085 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5086 set_bit(__I40E_DOWN, &vsi->state);
5087 i40e_down(vsi);
5088 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5089 }
5090 }
5091
5092 /* no further action needed, so return now */
5093 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005094 } else {
5095 dev_info(&pf->pdev->dev,
5096 "bad reset request 0x%08x\n", reset_flags);
5097 return;
5098 }
5099}
5100
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005101#ifdef CONFIG_I40E_DCB
5102/**
5103 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5104 * @pf: board private structure
5105 * @old_cfg: current DCB config
5106 * @new_cfg: new DCB config
5107 **/
5108bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5109 struct i40e_dcbx_config *old_cfg,
5110 struct i40e_dcbx_config *new_cfg)
5111{
5112 bool need_reconfig = false;
5113
5114 /* Check if ETS configuration has changed */
5115 if (memcmp(&new_cfg->etscfg,
5116 &old_cfg->etscfg,
5117 sizeof(new_cfg->etscfg))) {
5118 /* If Priority Table has changed reconfig is needed */
5119 if (memcmp(&new_cfg->etscfg.prioritytable,
5120 &old_cfg->etscfg.prioritytable,
5121 sizeof(new_cfg->etscfg.prioritytable))) {
5122 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005123 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005124 }
5125
5126 if (memcmp(&new_cfg->etscfg.tcbwtable,
5127 &old_cfg->etscfg.tcbwtable,
5128 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005129 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005130
5131 if (memcmp(&new_cfg->etscfg.tsatable,
5132 &old_cfg->etscfg.tsatable,
5133 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005134 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005135 }
5136
5137 /* Check if PFC configuration has changed */
5138 if (memcmp(&new_cfg->pfc,
5139 &old_cfg->pfc,
5140 sizeof(new_cfg->pfc))) {
5141 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005142 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005143 }
5144
5145 /* Check if APP Table has changed */
5146 if (memcmp(&new_cfg->app,
5147 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005148 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005149 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005150 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005151 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005152
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005153 dev_dbg(&pf->pdev->dev, "%s: need_reconfig=%d\n", __func__,
5154 need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005155 return need_reconfig;
5156}
5157
5158/**
5159 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5160 * @pf: board private structure
5161 * @e: event info posted on ARQ
5162 **/
5163static int i40e_handle_lldp_event(struct i40e_pf *pf,
5164 struct i40e_arq_event_info *e)
5165{
5166 struct i40e_aqc_lldp_get_mib *mib =
5167 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5168 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005169 struct i40e_dcbx_config tmp_dcbx_cfg;
5170 bool need_reconfig = false;
5171 int ret = 0;
5172 u8 type;
5173
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005174 /* Not DCB capable or capability disabled */
5175 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5176 return ret;
5177
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005178 /* Ignore if event is not for Nearest Bridge */
5179 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5180 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005181 dev_dbg(&pf->pdev->dev,
5182 "%s: LLDP event mib bridge type 0x%x\n", __func__, type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005183 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5184 return ret;
5185
5186 /* Check MIB Type and return if event for Remote MIB update */
5187 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005188 dev_dbg(&pf->pdev->dev,
5189 "%s: LLDP event mib type %s\n", __func__,
5190 type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005191 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5192 /* Update the remote cached instance and return */
5193 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5194 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5195 &hw->remote_dcbx_config);
5196 goto exit;
5197 }
5198
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005199 memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005200 /* Store the old configuration */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005201 memcpy(&tmp_dcbx_cfg, &hw->local_dcbx_config, sizeof(tmp_dcbx_cfg));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005202
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005203 /* Reset the old DCBx configuration data */
5204 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005205 /* Get updated DCBX data from firmware */
5206 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005207 if (ret) {
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005208 dev_info(&pf->pdev->dev, "Failed querying DCB configuration data from firmware.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005209 goto exit;
5210 }
5211
5212 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005213 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
5214 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005215 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005216 goto exit;
5217 }
5218
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005219 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
5220 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005221
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005222 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005223
5224 if (!need_reconfig)
5225 goto exit;
5226
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005227 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005228 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005229 pf->flags |= I40E_FLAG_DCB_ENABLED;
5230 else
5231 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5232
Neerav Parikh69129dc2014-11-12 00:18:46 +00005233 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005234 /* Reconfiguration needed quiesce all VSIs */
5235 i40e_pf_quiesce_all_vsi(pf);
5236
5237 /* Changes in configuration update VEB/VSI */
5238 i40e_dcb_reconfigure(pf);
5239
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005240 ret = i40e_resume_port_tx(pf);
5241
Neerav Parikh69129dc2014-11-12 00:18:46 +00005242 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005243 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005244 if (ret)
5245 goto exit;
5246
5247 /* Wait for the PF's Tx queues to be disabled */
5248 ret = i40e_pf_wait_txq_disabled(pf);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005249 if (!ret)
5250 i40e_pf_unquiesce_all_vsi(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005251exit:
5252 return ret;
5253}
5254#endif /* CONFIG_I40E_DCB */
5255
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005256/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005257 * i40e_do_reset_safe - Protected reset path for userland calls.
5258 * @pf: board private structure
5259 * @reset_flags: which reset is requested
5260 *
5261 **/
5262void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5263{
5264 rtnl_lock();
5265 i40e_do_reset(pf, reset_flags);
5266 rtnl_unlock();
5267}
5268
5269/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005270 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5271 * @pf: board private structure
5272 * @e: event info posted on ARQ
5273 *
5274 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5275 * and VF queues
5276 **/
5277static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5278 struct i40e_arq_event_info *e)
5279{
5280 struct i40e_aqc_lan_overflow *data =
5281 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5282 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5283 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5284 struct i40e_hw *hw = &pf->hw;
5285 struct i40e_vf *vf;
5286 u16 vf_id;
5287
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005288 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5289 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005290
5291 /* Queue belongs to VF, find the VF and issue VF reset */
5292 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5293 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5294 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5295 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5296 vf_id -= hw->func_caps.vf_base_id;
5297 vf = &pf->vf[vf_id];
5298 i40e_vc_notify_vf_reset(vf);
5299 /* Allow VF to process pending reset notification */
5300 msleep(20);
5301 i40e_reset_vf(vf, false);
5302 }
5303}
5304
5305/**
5306 * i40e_service_event_complete - Finish up the service event
5307 * @pf: board private structure
5308 **/
5309static void i40e_service_event_complete(struct i40e_pf *pf)
5310{
5311 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
5312
5313 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005314 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005315 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5316}
5317
5318/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005319 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5320 * @pf: board private structure
5321 **/
5322int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
5323{
5324 int val, fcnt_prog;
5325
5326 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5327 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5328 return fcnt_prog;
5329}
5330
5331/**
5332 * i40e_get_current_fd_count - Get the count of total FD filters programmed
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005333 * @pf: board private structure
5334 **/
5335int i40e_get_current_fd_count(struct i40e_pf *pf)
5336{
5337 int val, fcnt_prog;
5338 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5339 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5340 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5341 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5342 return fcnt_prog;
5343}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005344
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005345/**
5346 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5347 * @pf: board private structure
5348 **/
5349void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5350{
5351 u32 fcnt_prog, fcnt_avail;
5352
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005353 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5354 return;
5355
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005356 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5357 * to re-enable
5358 */
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005359 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
5360 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005361 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5362 (pf->fd_add_err == 0) ||
5363 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005364 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5365 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5366 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5367 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
5368 }
5369 }
5370 /* Wait for some more space to be available to turn on ATR */
5371 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5372 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5373 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5374 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5375 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
5376 }
5377 }
5378}
5379
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005380#define I40E_MIN_FD_FLUSH_INTERVAL 10
5381/**
5382 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5383 * @pf: board private structure
5384 **/
5385static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5386{
5387 int flush_wait_retry = 50;
5388 int reg;
5389
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005390 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5391 return;
5392
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005393 if (time_after(jiffies, pf->fd_flush_timestamp +
5394 (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) {
5395 set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5396 pf->fd_flush_timestamp = jiffies;
5397 pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED;
5398 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5399 /* flush all filters */
5400 wr32(&pf->hw, I40E_PFQF_CTL_1,
5401 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5402 i40e_flush(&pf->hw);
Anjali Singhai Jain60793f42014-07-09 07:46:23 +00005403 pf->fd_flush_cnt++;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005404 pf->fd_add_err = 0;
5405 do {
5406 /* Check FD flush status every 5-6msec */
5407 usleep_range(5000, 6000);
5408 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5409 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5410 break;
5411 } while (flush_wait_retry--);
5412 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5413 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5414 } else {
5415 /* replay sideband filters */
5416 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5417
5418 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5419 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5420 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
5421 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5422 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5423 }
5424 }
5425}
5426
5427/**
5428 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5429 * @pf: board private structure
5430 **/
5431int i40e_get_current_atr_cnt(struct i40e_pf *pf)
5432{
5433 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5434}
5435
5436/* We can see up to 256 filter programming desc in transit if the filters are
5437 * being applied really fast; before we see the first
5438 * filter miss error on Rx queue 0. Accumulating enough error messages before
5439 * reacting will make sure we don't cause flush too often.
5440 */
5441#define I40E_MAX_FD_PROGRAM_ERROR 256
5442
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005443/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005444 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5445 * @pf: board private structure
5446 **/
5447static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5448{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005449
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005450 /* if interface is down do nothing */
5451 if (test_bit(__I40E_DOWN, &pf->state))
5452 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005453
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005454 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5455 return;
5456
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005457 if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) &&
5458 (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) &&
5459 (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count))
5460 i40e_fdir_flush_and_replay(pf);
5461
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005462 i40e_fdir_check_and_reenable(pf);
5463
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005464}
5465
5466/**
5467 * i40e_vsi_link_event - notify VSI of a link event
5468 * @vsi: vsi to be notified
5469 * @link_up: link up or down
5470 **/
5471static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5472{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005473 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005474 return;
5475
5476 switch (vsi->type) {
5477 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005478#ifdef I40E_FCOE
5479 case I40E_VSI_FCOE:
5480#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005481 if (!vsi->netdev || !vsi->netdev_registered)
5482 break;
5483
5484 if (link_up) {
5485 netif_carrier_on(vsi->netdev);
5486 netif_tx_wake_all_queues(vsi->netdev);
5487 } else {
5488 netif_carrier_off(vsi->netdev);
5489 netif_tx_stop_all_queues(vsi->netdev);
5490 }
5491 break;
5492
5493 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005494 case I40E_VSI_VMDQ2:
5495 case I40E_VSI_CTRL:
5496 case I40E_VSI_MIRROR:
5497 default:
5498 /* there is no notification for other VSIs */
5499 break;
5500 }
5501}
5502
5503/**
5504 * i40e_veb_link_event - notify elements on the veb of a link event
5505 * @veb: veb to be notified
5506 * @link_up: link up or down
5507 **/
5508static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5509{
5510 struct i40e_pf *pf;
5511 int i;
5512
5513 if (!veb || !veb->pf)
5514 return;
5515 pf = veb->pf;
5516
5517 /* depth first... */
5518 for (i = 0; i < I40E_MAX_VEB; i++)
5519 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
5520 i40e_veb_link_event(pf->veb[i], link_up);
5521
5522 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00005523 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005524 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
5525 i40e_vsi_link_event(pf->vsi[i], link_up);
5526}
5527
5528/**
5529 * i40e_link_event - Update netif_carrier status
5530 * @pf: board private structure
5531 **/
5532static void i40e_link_event(struct i40e_pf *pf)
5533{
5534 bool new_link, old_link;
Mitch Williams320684c2014-10-17 03:14:43 +00005535 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005536 u8 new_link_speed, old_link_speed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005537
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005538 /* set this to force the get_link_status call to refresh state */
5539 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005540
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005541 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
5542 new_link = i40e_get_link_status(&pf->hw);
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005543 old_link_speed = pf->hw.phy.link_info_old.link_speed;
5544 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005545
5546 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00005547 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00005548 (test_bit(__I40E_DOWN, &vsi->state) ||
5549 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005550 return;
Mitch Williams320684c2014-10-17 03:14:43 +00005551
5552 if (!test_bit(__I40E_DOWN, &vsi->state))
5553 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005554
5555 /* Notify the base of the switch tree connected to
5556 * the link. Floating VEBs are not notified.
5557 */
5558 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
5559 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
5560 else
Mitch Williams320684c2014-10-17 03:14:43 +00005561 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005562
5563 if (pf->vf)
5564 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005565
5566 if (pf->flags & I40E_FLAG_PTP)
5567 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005568}
5569
5570/**
5571 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
5572 * @pf: board private structure
5573 *
5574 * Set the per-queue flags to request a check for stuck queues in the irq
5575 * clean functions, then force interrupts to be sure the irq clean is called.
5576 **/
5577static void i40e_check_hang_subtask(struct i40e_pf *pf)
5578{
5579 int i, v;
5580
5581 /* If we're down or resetting, just bail */
5582 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
5583 return;
5584
5585 /* for each VSI/netdev
5586 * for each Tx queue
5587 * set the check flag
5588 * for each q_vector
5589 * force an interrupt
5590 */
Mitch Williams505682c2014-05-20 08:01:37 +00005591 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005592 struct i40e_vsi *vsi = pf->vsi[v];
5593 int armed = 0;
5594
5595 if (!pf->vsi[v] ||
5596 test_bit(__I40E_DOWN, &vsi->state) ||
5597 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
5598 continue;
5599
5600 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005601 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005602 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005603 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005604 armed++;
5605 }
5606
5607 if (armed) {
5608 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
5609 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
5610 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005611 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK |
5612 I40E_PFINT_DYN_CTL0_ITR_INDX_MASK |
5613 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK |
5614 I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005615 } else {
5616 u16 vec = vsi->base_vector - 1;
5617 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
Shannon Nelson5d1ff1062014-11-11 20:04:35 +00005618 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK |
5619 I40E_PFINT_DYN_CTLN_ITR_INDX_MASK |
5620 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_ENA_MASK |
5621 I40E_PFINT_DYN_CTLN_SW_ITR_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005622 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
5623 wr32(&vsi->back->hw,
5624 I40E_PFINT_DYN_CTLN(vec), val);
5625 }
5626 i40e_flush(&vsi->back->hw);
5627 }
5628 }
5629}
5630
5631/**
Shannon Nelson21536712014-10-25 10:35:25 +00005632 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005633 * @pf: board private structure
5634 **/
5635static void i40e_watchdog_subtask(struct i40e_pf *pf)
5636{
5637 int i;
5638
5639 /* if interface is down do nothing */
5640 if (test_bit(__I40E_DOWN, &pf->state) ||
5641 test_bit(__I40E_CONFIG_BUSY, &pf->state))
5642 return;
5643
Shannon Nelson21536712014-10-25 10:35:25 +00005644 /* make sure we don't do these things too often */
5645 if (time_before(jiffies, (pf->service_timer_previous +
5646 pf->service_timer_period)))
5647 return;
5648 pf->service_timer_previous = jiffies;
5649
5650 i40e_check_hang_subtask(pf);
5651 i40e_link_event(pf);
5652
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005653 /* Update the stats for active netdevs so the network stack
5654 * can look at updated numbers whenever it cares to
5655 */
Mitch Williams505682c2014-05-20 08:01:37 +00005656 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005657 if (pf->vsi[i] && pf->vsi[i]->netdev)
5658 i40e_update_stats(pf->vsi[i]);
5659
5660 /* Update the stats for the active switching components */
5661 for (i = 0; i < I40E_MAX_VEB; i++)
5662 if (pf->veb[i])
5663 i40e_update_veb_stats(pf->veb[i]);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00005664
5665 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005666}
5667
5668/**
5669 * i40e_reset_subtask - Set up for resetting the device and driver
5670 * @pf: board private structure
5671 **/
5672static void i40e_reset_subtask(struct i40e_pf *pf)
5673{
5674 u32 reset_flags = 0;
5675
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005676 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005677 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
5678 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
5679 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
5680 }
5681 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
5682 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
5683 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5684 }
5685 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
5686 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
5687 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
5688 }
5689 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
5690 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
5691 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
5692 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005693 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
5694 reset_flags |= (1 << __I40E_DOWN_REQUESTED);
5695 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
5696 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005697
5698 /* If there's a recovery already waiting, it takes
5699 * precedence before starting a new reset sequence.
5700 */
5701 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
5702 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005703 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005704 }
5705
5706 /* If we're already down or resetting, just bail */
5707 if (reset_flags &&
5708 !test_bit(__I40E_DOWN, &pf->state) &&
5709 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
5710 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005711
5712unlock:
5713 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005714}
5715
5716/**
5717 * i40e_handle_link_event - Handle link event
5718 * @pf: board private structure
5719 * @e: event info posted on ARQ
5720 **/
5721static void i40e_handle_link_event(struct i40e_pf *pf,
5722 struct i40e_arq_event_info *e)
5723{
5724 struct i40e_hw *hw = &pf->hw;
5725 struct i40e_aqc_get_link_status *status =
5726 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
5727 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
5728
5729 /* save off old link status information */
5730 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
5731 sizeof(pf->hw.phy.link_info_old));
5732
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00005733 /* Do a new status request to re-enable LSE reporting
5734 * and load new status information into the hw struct
5735 * This completely ignores any state information
5736 * in the ARQ event info, instead choosing to always
5737 * issue the AQ update link status command.
5738 */
5739 i40e_link_event(pf);
5740
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005741 /* check for unqualified module, if link is down */
5742 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
5743 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
5744 (!(status->link_info & I40E_AQ_LINK_UP)))
5745 dev_err(&pf->pdev->dev,
5746 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005747}
5748
5749/**
5750 * i40e_clean_adminq_subtask - Clean the AdminQ rings
5751 * @pf: board private structure
5752 **/
5753static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
5754{
5755 struct i40e_arq_event_info event;
5756 struct i40e_hw *hw = &pf->hw;
5757 u16 pending, i = 0;
5758 i40e_status ret;
5759 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00005760 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005761 u32 val;
5762
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00005763 /* Do not run clean AQ when PF reset fails */
5764 if (test_bit(__I40E_RESET_FAILED, &pf->state))
5765 return;
5766
Shannon Nelson86df2422014-05-20 08:01:35 +00005767 /* check for error indications */
5768 val = rd32(&pf->hw, pf->hw.aq.arq.len);
5769 oldval = val;
5770 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
5771 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
5772 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
5773 }
5774 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
5775 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
5776 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
5777 }
5778 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
5779 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
5780 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
5781 }
5782 if (oldval != val)
5783 wr32(&pf->hw, pf->hw.aq.arq.len, val);
5784
5785 val = rd32(&pf->hw, pf->hw.aq.asq.len);
5786 oldval = val;
5787 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
5788 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
5789 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
5790 }
5791 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
5792 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
5793 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
5794 }
5795 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
5796 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
5797 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
5798 }
5799 if (oldval != val)
5800 wr32(&pf->hw, pf->hw.aq.asq.len, val);
5801
Mitch Williams1001dc32014-11-11 20:02:19 +00005802 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
5803 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005804 if (!event.msg_buf)
5805 return;
5806
5807 do {
5808 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00005809 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005810 break;
Mitch Williams56497972014-06-04 08:45:18 +00005811 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005812 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
5813 break;
5814 }
5815
5816 opcode = le16_to_cpu(event.desc.opcode);
5817 switch (opcode) {
5818
5819 case i40e_aqc_opc_get_link_status:
5820 i40e_handle_link_event(pf, &event);
5821 break;
5822 case i40e_aqc_opc_send_msg_to_pf:
5823 ret = i40e_vc_process_vf_msg(pf,
5824 le16_to_cpu(event.desc.retval),
5825 le32_to_cpu(event.desc.cookie_high),
5826 le32_to_cpu(event.desc.cookie_low),
5827 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00005828 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005829 break;
5830 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005831 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005832#ifdef CONFIG_I40E_DCB
5833 rtnl_lock();
5834 ret = i40e_handle_lldp_event(pf, &event);
5835 rtnl_unlock();
5836#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005837 break;
5838 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005839 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005840 i40e_handle_lan_overflow_event(pf, &event);
5841 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00005842 case i40e_aqc_opc_send_msg_to_peer:
5843 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
5844 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005845 default:
5846 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00005847 "ARQ Error: Unknown event 0x%04x received\n",
5848 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005849 break;
5850 }
5851 } while (pending && (i++ < pf->adminq_work_limit));
5852
5853 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
5854 /* re-enable Admin queue interrupt cause */
5855 val = rd32(hw, I40E_PFINT_ICR0_ENA);
5856 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
5857 wr32(hw, I40E_PFINT_ICR0_ENA, val);
5858 i40e_flush(hw);
5859
5860 kfree(event.msg_buf);
5861}
5862
5863/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005864 * i40e_verify_eeprom - make sure eeprom is good to use
5865 * @pf: board private structure
5866 **/
5867static void i40e_verify_eeprom(struct i40e_pf *pf)
5868{
5869 int err;
5870
5871 err = i40e_diag_eeprom_test(&pf->hw);
5872 if (err) {
5873 /* retry in case of garbage read */
5874 err = i40e_diag_eeprom_test(&pf->hw);
5875 if (err) {
5876 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
5877 err);
5878 set_bit(__I40E_BAD_EEPROM, &pf->state);
5879 }
5880 }
5881
5882 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
5883 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
5884 clear_bit(__I40E_BAD_EEPROM, &pf->state);
5885 }
5886}
5887
5888/**
Neerav Parikh51616012015-02-06 08:52:14 +00005889 * i40e_config_bridge_mode - Configure the HW bridge mode
5890 * @veb: pointer to the bridge instance
5891 *
5892 * Configure the loop back mode for the LAN VSI that is downlink to the
5893 * specified HW bridge instance. It is expected this function is called
5894 * when a new HW bridge is instantiated.
5895 **/
5896static void i40e_config_bridge_mode(struct i40e_veb *veb)
5897{
5898 struct i40e_pf *pf = veb->pf;
5899
5900 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
5901 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
5902 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
5903 i40e_disable_pf_switch_lb(pf);
5904 else
5905 i40e_enable_pf_switch_lb(pf);
5906}
5907
5908/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005909 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
5910 * @veb: pointer to the VEB instance
5911 *
5912 * This is a recursive function that first builds the attached VSIs then
5913 * recurses in to build the next layer of VEB. We track the connections
5914 * through our own index numbers because the seid's from the HW could
5915 * change across the reset.
5916 **/
5917static int i40e_reconstitute_veb(struct i40e_veb *veb)
5918{
5919 struct i40e_vsi *ctl_vsi = NULL;
5920 struct i40e_pf *pf = veb->pf;
5921 int v, veb_idx;
5922 int ret;
5923
5924 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005925 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005926 if (pf->vsi[v] &&
5927 pf->vsi[v]->veb_idx == veb->idx &&
5928 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
5929 ctl_vsi = pf->vsi[v];
5930 break;
5931 }
5932 }
5933 if (!ctl_vsi) {
5934 dev_info(&pf->pdev->dev,
5935 "missing owner VSI for veb_idx %d\n", veb->idx);
5936 ret = -ENOENT;
5937 goto end_reconstitute;
5938 }
5939 if (ctl_vsi != pf->vsi[pf->lan_vsi])
5940 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
5941 ret = i40e_add_vsi(ctl_vsi);
5942 if (ret) {
5943 dev_info(&pf->pdev->dev,
5944 "rebuild of owner VSI failed: %d\n", ret);
5945 goto end_reconstitute;
5946 }
5947 i40e_vsi_reset_stats(ctl_vsi);
5948
5949 /* create the VEB in the switch and move the VSI onto the VEB */
5950 ret = i40e_add_veb(veb, ctl_vsi);
5951 if (ret)
5952 goto end_reconstitute;
5953
Neerav Parikh51616012015-02-06 08:52:14 +00005954 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00005955
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005956 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00005957 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005958 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
5959 continue;
5960
5961 if (pf->vsi[v]->veb_idx == veb->idx) {
5962 struct i40e_vsi *vsi = pf->vsi[v];
5963 vsi->uplink_seid = veb->seid;
5964 ret = i40e_add_vsi(vsi);
5965 if (ret) {
5966 dev_info(&pf->pdev->dev,
5967 "rebuild of vsi_idx %d failed: %d\n",
5968 v, ret);
5969 goto end_reconstitute;
5970 }
5971 i40e_vsi_reset_stats(vsi);
5972 }
5973 }
5974
5975 /* create any VEBs attached to this VEB - RECURSION */
5976 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
5977 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
5978 pf->veb[veb_idx]->uplink_seid = veb->seid;
5979 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
5980 if (ret)
5981 break;
5982 }
5983 }
5984
5985end_reconstitute:
5986 return ret;
5987}
5988
5989/**
5990 * i40e_get_capabilities - get info about the HW
5991 * @pf: the PF struct
5992 **/
5993static int i40e_get_capabilities(struct i40e_pf *pf)
5994{
5995 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
5996 u16 data_size;
5997 int buf_len;
5998 int err;
5999
6000 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6001 do {
6002 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6003 if (!cap_buf)
6004 return -ENOMEM;
6005
6006 /* this loads the data into the hw struct for us */
6007 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6008 &data_size,
6009 i40e_aqc_opc_list_func_capabilities,
6010 NULL);
6011 /* data loaded, buffer no longer needed */
6012 kfree(cap_buf);
6013
6014 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6015 /* retry with a larger buffer */
6016 buf_len = data_size;
6017 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6018 dev_info(&pf->pdev->dev,
6019 "capability discovery failed: aq=%d\n",
6020 pf->hw.aq.asq_last_status);
6021 return -ENODEV;
6022 }
6023 } while (err);
6024
Anjali Singhai Jainac71b7b2014-02-06 05:51:08 +00006025 if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) ||
6026 (pf->hw.aq.fw_maj_ver < 2)) {
6027 pf->hw.func_caps.num_msix_vectors++;
6028 pf->hw.func_caps.num_msix_vectors_vf++;
6029 }
6030
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006031 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6032 dev_info(&pf->pdev->dev,
6033 "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",
6034 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6035 pf->hw.func_caps.num_msix_vectors,
6036 pf->hw.func_caps.num_msix_vectors_vf,
6037 pf->hw.func_caps.fd_filters_guaranteed,
6038 pf->hw.func_caps.fd_filters_best_effort,
6039 pf->hw.func_caps.num_tx_qp,
6040 pf->hw.func_caps.num_vsis);
6041
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006042#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6043 + pf->hw.func_caps.num_vfs)
6044 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6045 dev_info(&pf->pdev->dev,
6046 "got num_vsis %d, setting num_vsis to %d\n",
6047 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6048 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6049 }
6050
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006051 return 0;
6052}
6053
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006054static int i40e_vsi_clear(struct i40e_vsi *vsi);
6055
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006056/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006057 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006058 * @pf: board private structure
6059 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006060static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006061{
6062 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006063 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006064
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006065 /* quick workaround for an NVM issue that leaves a critical register
6066 * uninitialized
6067 */
6068 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6069 static const u32 hkey[] = {
6070 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6071 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6072 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6073 0x95b3a76d};
6074
6075 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6076 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6077 }
6078
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006079 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006080 return;
6081
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006082 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006083 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006084 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006085 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006086 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006087 break;
6088 }
6089 }
6090
6091 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006092 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006093 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6094 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006095 if (!vsi) {
6096 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006097 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6098 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006099 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006100 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006101
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006102 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006103}
6104
6105/**
6106 * i40e_fdir_teardown - release the Flow Director resources
6107 * @pf: board private structure
6108 **/
6109static void i40e_fdir_teardown(struct i40e_pf *pf)
6110{
6111 int i;
6112
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006113 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006114 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006115 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6116 i40e_vsi_release(pf->vsi[i]);
6117 break;
6118 }
6119 }
6120}
6121
6122/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006123 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006124 * @pf: board private structure
6125 *
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006126 * Close up the VFs and other things in prep for pf Reset.
6127 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006128static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006129{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006130 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006131 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006132 u32 v;
6133
6134 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6135 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006136 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006137
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006138 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006139
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006140 /* quiesce the VSIs and their queues that are not already DOWN */
6141 i40e_pf_quiesce_all_vsi(pf);
6142
Mitch Williams505682c2014-05-20 08:01:37 +00006143 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006144 if (pf->vsi[v])
6145 pf->vsi[v]->seid = 0;
6146 }
6147
6148 i40e_shutdown_adminq(&pf->hw);
6149
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006150 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006151 if (hw->hmc.hmc_obj) {
6152 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006153 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006154 dev_warn(&pf->pdev->dev,
6155 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006156 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006157}
6158
6159/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006160 * i40e_send_version - update firmware with driver version
6161 * @pf: PF struct
6162 */
6163static void i40e_send_version(struct i40e_pf *pf)
6164{
6165 struct i40e_driver_version dv;
6166
6167 dv.major_version = DRV_VERSION_MAJOR;
6168 dv.minor_version = DRV_VERSION_MINOR;
6169 dv.build_version = DRV_VERSION_BUILD;
6170 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006171 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006172 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6173}
6174
6175/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006176 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006177 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006178 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006179 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006180static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006181{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006182 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006183 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006184 i40e_status ret;
6185 u32 v;
6186
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006187 /* Now we wait for GRST to settle out.
6188 * We don't have to delete the VEBs or VSIs from the hw switch
6189 * because the reset will make them disappear.
6190 */
6191 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006192 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006193 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006194 set_bit(__I40E_RESET_FAILED, &pf->state);
6195 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006196 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006197 pf->pfr_count++;
6198
6199 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006200 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006201 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006202
6203 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6204 ret = i40e_init_adminq(&pf->hw);
6205 if (ret) {
6206 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006207 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006208 }
6209
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006210 /* re-verify the eeprom if we just had an EMP reset */
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00006211 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006212 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006213
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006214 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006215 ret = i40e_get_capabilities(pf);
6216 if (ret) {
6217 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
6218 ret);
6219 goto end_core_reset;
6220 }
6221
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006222 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6223 hw->func_caps.num_rx_qp,
6224 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6225 if (ret) {
6226 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6227 goto end_core_reset;
6228 }
6229 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6230 if (ret) {
6231 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6232 goto end_core_reset;
6233 }
6234
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006235#ifdef CONFIG_I40E_DCB
6236 ret = i40e_init_pf_dcb(pf);
6237 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006238 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6239 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6240 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006241 }
6242#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006243#ifdef I40E_FCOE
6244 ret = i40e_init_pf_fcoe(pf);
6245 if (ret)
6246 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006247
Vasu Dev38e00432014-08-01 13:27:03 -07006248#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006249 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006250 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006251 if (ret)
6252 goto end_core_reset;
6253
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006254 /* driver is only interested in link up/down and module qualification
6255 * reports from firmware
6256 */
6257 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6258 I40E_AQ_EVENT_LINK_UPDOWN |
6259 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6260 if (ret)
6261 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret);
6262
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006263 /* make sure our flow control settings are restored */
6264 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6265 if (ret)
6266 dev_info(&pf->pdev->dev, "set fc fail, aq_err %d\n", ret);
6267
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006268 /* Rebuild the VSIs and VEBs that existed before reset.
6269 * They are still in our local switch element arrays, so only
6270 * need to rebuild the switch model in the HW.
6271 *
6272 * If there were VEBs but the reconstitution failed, we'll try
6273 * try to recover minimal use by getting the basic PF VSI working.
6274 */
6275 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006276 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006277 /* find the one VEB connected to the MAC, and find orphans */
6278 for (v = 0; v < I40E_MAX_VEB; v++) {
6279 if (!pf->veb[v])
6280 continue;
6281
6282 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6283 pf->veb[v]->uplink_seid == 0) {
6284 ret = i40e_reconstitute_veb(pf->veb[v]);
6285
6286 if (!ret)
6287 continue;
6288
6289 /* If Main VEB failed, we're in deep doodoo,
6290 * so give up rebuilding the switch and set up
6291 * for minimal rebuild of PF VSI.
6292 * If orphan failed, we'll report the error
6293 * but try to keep going.
6294 */
6295 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6296 dev_info(&pf->pdev->dev,
6297 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6298 ret);
6299 pf->vsi[pf->lan_vsi]->uplink_seid
6300 = pf->mac_seid;
6301 break;
6302 } else if (pf->veb[v]->uplink_seid == 0) {
6303 dev_info(&pf->pdev->dev,
6304 "rebuild of orphan VEB failed: %d\n",
6305 ret);
6306 }
6307 }
6308 }
6309 }
6310
6311 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006312 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006313 /* no VEB, so rebuild only the Main VSI */
6314 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6315 if (ret) {
6316 dev_info(&pf->pdev->dev,
6317 "rebuild of Main VSI failed: %d\n", ret);
6318 goto end_core_reset;
6319 }
6320 }
6321
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00006322 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
6323 (pf->hw.aq.fw_maj_ver < 4)) {
6324 msleep(75);
6325 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6326 if (ret)
6327 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
6328 pf->hw.aq.asq_last_status);
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006329 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006330 /* reinit the misc interrupt */
6331 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6332 ret = i40e_setup_misc_vector(pf);
6333
6334 /* restart the VSIs that were rebuilt and running before the reset */
6335 i40e_pf_unquiesce_all_vsi(pf);
6336
Mitch Williams69f64b22014-02-13 03:48:46 -08006337 if (pf->num_alloc_vfs) {
6338 for (v = 0; v < pf->num_alloc_vfs; v++)
6339 i40e_reset_vf(&pf->vf[v], true);
6340 }
6341
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006342 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006343 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006344
6345end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006346 clear_bit(__I40E_RESET_FAILED, &pf->state);
6347clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006348 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6349}
6350
6351/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006352 * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild
6353 * @pf: board private structure
6354 *
6355 * Close up the VFs and other things in prep for a Core Reset,
6356 * then get ready to rebuild the world.
6357 **/
6358static void i40e_handle_reset_warning(struct i40e_pf *pf)
6359{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006360 i40e_prep_for_reset(pf);
6361 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006362}
6363
6364/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006365 * i40e_handle_mdd_event
6366 * @pf: pointer to the pf structure
6367 *
6368 * Called from the MDD irq handler to identify possibly malicious vfs
6369 **/
6370static void i40e_handle_mdd_event(struct i40e_pf *pf)
6371{
6372 struct i40e_hw *hw = &pf->hw;
6373 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006374 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006375 struct i40e_vf *vf;
6376 u32 reg;
6377 int i;
6378
6379 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6380 return;
6381
6382 /* find what triggered the MDD event */
6383 reg = rd32(hw, I40E_GL_MDET_TX);
6384 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006385 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6386 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006387 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006388 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006389 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006390 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006391 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6392 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6393 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006394 if (netif_msg_tx_err(pf))
6395 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n",
6396 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006397 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6398 mdd_detected = true;
6399 }
6400 reg = rd32(hw, I40E_GL_MDET_RX);
6401 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006402 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6403 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006404 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006405 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006406 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6407 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6408 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006409 if (netif_msg_rx_err(pf))
6410 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6411 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006412 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6413 mdd_detected = true;
6414 }
6415
Neerav Parikhdf430b12014-06-04 01:23:15 +00006416 if (mdd_detected) {
6417 reg = rd32(hw, I40E_PF_MDET_TX);
6418 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6419 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006420 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006421 pf_mdd_detected = true;
6422 }
6423 reg = rd32(hw, I40E_PF_MDET_RX);
6424 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6425 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006426 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006427 pf_mdd_detected = true;
6428 }
6429 /* Queue belongs to the PF, initiate a reset */
6430 if (pf_mdd_detected) {
6431 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6432 i40e_service_event_schedule(pf);
6433 }
6434 }
6435
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006436 /* see if one of the VFs needs its hand slapped */
6437 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6438 vf = &(pf->vf[i]);
6439 reg = rd32(hw, I40E_VP_MDET_TX(i));
6440 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6441 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6442 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006443 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6444 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006445 }
6446
6447 reg = rd32(hw, I40E_VP_MDET_RX(i));
6448 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6449 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6450 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006451 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6452 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006453 }
6454
6455 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6456 dev_info(&pf->pdev->dev,
6457 "Too many MDD events on VF %d, disabled\n", i);
6458 dev_info(&pf->pdev->dev,
6459 "Use PF Control I/F to re-enable the VF\n");
6460 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6461 }
6462 }
6463
6464 /* re-enable mdd interrupt cause */
6465 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
6466 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
6467 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
6468 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
6469 i40e_flush(hw);
6470}
6471
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006472#ifdef CONFIG_I40E_VXLAN
6473/**
6474 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
6475 * @pf: board private structure
6476 **/
6477static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
6478{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006479 struct i40e_hw *hw = &pf->hw;
6480 i40e_status ret;
6481 u8 filter_index;
6482 __be16 port;
6483 int i;
6484
6485 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
6486 return;
6487
6488 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
6489
6490 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6491 if (pf->pending_vxlan_bitmap & (1 << i)) {
6492 pf->pending_vxlan_bitmap &= ~(1 << i);
6493 port = pf->vxlan_ports[i];
6494 ret = port ?
6495 i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006496 I40E_AQC_TUNNEL_TYPE_VXLAN,
6497 &filter_index, NULL)
6498 : i40e_aq_del_udp_tunnel(hw, i, NULL);
6499
6500 if (ret) {
6501 dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n",
6502 port ? "adding" : "deleting",
6503 ntohs(port), port ? i : i);
6504
6505 pf->vxlan_ports[i] = 0;
6506 } else {
6507 dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n",
6508 port ? "Added" : "Deleted",
6509 ntohs(port), port ? i : filter_index);
6510 }
6511 }
6512 }
6513}
6514
6515#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006516/**
6517 * i40e_service_task - Run the driver's async subtasks
6518 * @work: pointer to work_struct containing our data
6519 **/
6520static void i40e_service_task(struct work_struct *work)
6521{
6522 struct i40e_pf *pf = container_of(work,
6523 struct i40e_pf,
6524 service_task);
6525 unsigned long start_time = jiffies;
6526
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00006527 /* don't bother with service tasks if a reset is in progress */
6528 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
6529 i40e_service_event_complete(pf);
6530 return;
6531 }
6532
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006533 i40e_reset_subtask(pf);
6534 i40e_handle_mdd_event(pf);
6535 i40e_vc_process_vflr_event(pf);
6536 i40e_watchdog_subtask(pf);
6537 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006538 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00006539#ifdef CONFIG_I40E_VXLAN
6540 i40e_sync_vxlan_filters_subtask(pf);
6541#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006542 i40e_clean_adminq_subtask(pf);
6543
6544 i40e_service_event_complete(pf);
6545
6546 /* If the tasks have taken longer than one timer cycle or there
6547 * is more work to be done, reschedule the service task now
6548 * rather than wait for the timer to tick again.
6549 */
6550 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
6551 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
6552 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
6553 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
6554 i40e_service_event_schedule(pf);
6555}
6556
6557/**
6558 * i40e_service_timer - timer callback
6559 * @data: pointer to PF struct
6560 **/
6561static void i40e_service_timer(unsigned long data)
6562{
6563 struct i40e_pf *pf = (struct i40e_pf *)data;
6564
6565 mod_timer(&pf->service_timer,
6566 round_jiffies(jiffies + pf->service_timer_period));
6567 i40e_service_event_schedule(pf);
6568}
6569
6570/**
6571 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
6572 * @vsi: the VSI being configured
6573 **/
6574static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
6575{
6576 struct i40e_pf *pf = vsi->back;
6577
6578 switch (vsi->type) {
6579 case I40E_VSI_MAIN:
6580 vsi->alloc_queue_pairs = pf->num_lan_qps;
6581 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6582 I40E_REQ_DESCRIPTOR_MULTIPLE);
6583 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6584 vsi->num_q_vectors = pf->num_lan_msix;
6585 else
6586 vsi->num_q_vectors = 1;
6587
6588 break;
6589
6590 case I40E_VSI_FDIR:
6591 vsi->alloc_queue_pairs = 1;
6592 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
6593 I40E_REQ_DESCRIPTOR_MULTIPLE);
6594 vsi->num_q_vectors = 1;
6595 break;
6596
6597 case I40E_VSI_VMDQ2:
6598 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
6599 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6600 I40E_REQ_DESCRIPTOR_MULTIPLE);
6601 vsi->num_q_vectors = pf->num_vmdq_msix;
6602 break;
6603
6604 case I40E_VSI_SRIOV:
6605 vsi->alloc_queue_pairs = pf->num_vf_qps;
6606 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6607 I40E_REQ_DESCRIPTOR_MULTIPLE);
6608 break;
6609
Vasu Dev38e00432014-08-01 13:27:03 -07006610#ifdef I40E_FCOE
6611 case I40E_VSI_FCOE:
6612 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
6613 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
6614 I40E_REQ_DESCRIPTOR_MULTIPLE);
6615 vsi->num_q_vectors = pf->num_fcoe_msix;
6616 break;
6617
6618#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006619 default:
6620 WARN_ON(1);
6621 return -ENODATA;
6622 }
6623
6624 return 0;
6625}
6626
6627/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006628 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
6629 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006630 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006631 *
6632 * On error: returns error code (negative)
6633 * On success: returns 0
6634 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006635static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006636{
6637 int size;
6638 int ret = 0;
6639
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006640 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006641 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
6642 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
6643 if (!vsi->tx_rings)
6644 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006645 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
6646
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006647 if (alloc_qvectors) {
6648 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00006649 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006650 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
6651 if (!vsi->q_vectors) {
6652 ret = -ENOMEM;
6653 goto err_vectors;
6654 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006655 }
6656 return ret;
6657
6658err_vectors:
6659 kfree(vsi->tx_rings);
6660 return ret;
6661}
6662
6663/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006664 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
6665 * @pf: board private structure
6666 * @type: type of VSI
6667 *
6668 * On error: returns error code (negative)
6669 * On success: returns vsi index in PF (positive)
6670 **/
6671static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
6672{
6673 int ret = -ENODEV;
6674 struct i40e_vsi *vsi;
6675 int vsi_idx;
6676 int i;
6677
6678 /* Need to protect the allocation of the VSIs at the PF level */
6679 mutex_lock(&pf->switch_mutex);
6680
6681 /* VSI list may be fragmented if VSI creation/destruction has
6682 * been happening. We can afford to do a quick scan to look
6683 * for any free VSIs in the list.
6684 *
6685 * find next empty vsi slot, looping back around if necessary
6686 */
6687 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00006688 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006689 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00006690 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006691 i = 0;
6692 while (i < pf->next_vsi && pf->vsi[i])
6693 i++;
6694 }
6695
Mitch Williams505682c2014-05-20 08:01:37 +00006696 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006697 vsi_idx = i; /* Found one! */
6698 } else {
6699 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00006700 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006701 }
6702 pf->next_vsi = ++i;
6703
6704 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
6705 if (!vsi) {
6706 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00006707 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006708 }
6709 vsi->type = type;
6710 vsi->back = pf;
6711 set_bit(__I40E_DOWN, &vsi->state);
6712 vsi->flags = 0;
6713 vsi->idx = vsi_idx;
6714 vsi->rx_itr_setting = pf->rx_itr_default;
6715 vsi->tx_itr_setting = pf->tx_itr_default;
6716 vsi->netdev_registered = false;
6717 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
6718 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00006719 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006720
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006721 ret = i40e_set_num_rings_in_vsi(vsi);
6722 if (ret)
6723 goto err_rings;
6724
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006725 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006726 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006727 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00006728
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006729 /* Setup default MSIX irq handler for VSI */
6730 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
6731
6732 pf->vsi[vsi_idx] = vsi;
6733 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00006734 goto unlock_pf;
6735
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006736err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00006737 pf->next_vsi = i - 1;
6738 kfree(vsi);
6739unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006740 mutex_unlock(&pf->switch_mutex);
6741 return ret;
6742}
6743
6744/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006745 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
6746 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006747 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006748 *
6749 * On error: returns error code (negative)
6750 * On success: returns 0
6751 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006752static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006753{
6754 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006755 if (free_qvectors) {
6756 kfree(vsi->q_vectors);
6757 vsi->q_vectors = NULL;
6758 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006759 kfree(vsi->tx_rings);
6760 vsi->tx_rings = NULL;
6761 vsi->rx_rings = NULL;
6762}
6763
6764/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006765 * i40e_vsi_clear - Deallocate the VSI provided
6766 * @vsi: the VSI being un-configured
6767 **/
6768static int i40e_vsi_clear(struct i40e_vsi *vsi)
6769{
6770 struct i40e_pf *pf;
6771
6772 if (!vsi)
6773 return 0;
6774
6775 if (!vsi->back)
6776 goto free_vsi;
6777 pf = vsi->back;
6778
6779 mutex_lock(&pf->switch_mutex);
6780 if (!pf->vsi[vsi->idx]) {
6781 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
6782 vsi->idx, vsi->idx, vsi, vsi->type);
6783 goto unlock_vsi;
6784 }
6785
6786 if (pf->vsi[vsi->idx] != vsi) {
6787 dev_err(&pf->pdev->dev,
6788 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
6789 pf->vsi[vsi->idx]->idx,
6790 pf->vsi[vsi->idx],
6791 pf->vsi[vsi->idx]->type,
6792 vsi->idx, vsi, vsi->type);
6793 goto unlock_vsi;
6794 }
6795
6796 /* updates the pf for this cleared vsi */
6797 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
6798 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
6799
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006800 i40e_vsi_free_arrays(vsi, true);
Alexander Duyck493fb302013-09-28 07:01:44 +00006801
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006802 pf->vsi[vsi->idx] = NULL;
6803 if (vsi->idx < pf->next_vsi)
6804 pf->next_vsi = vsi->idx;
6805
6806unlock_vsi:
6807 mutex_unlock(&pf->switch_mutex);
6808free_vsi:
6809 kfree(vsi);
6810
6811 return 0;
6812}
6813
6814/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006815 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
6816 * @vsi: the VSI being cleaned
6817 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006818static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006819{
6820 int i;
6821
Greg Rose8e9dca52013-12-18 13:45:53 +00006822 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00006823 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00006824 kfree_rcu(vsi->tx_rings[i], rcu);
6825 vsi->tx_rings[i] = NULL;
6826 vsi->rx_rings[i] = NULL;
6827 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00006828 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006829}
6830
6831/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006832 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
6833 * @vsi: the VSI being configured
6834 **/
6835static int i40e_alloc_rings(struct i40e_vsi *vsi)
6836{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00006837 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006838 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006839 int i;
6840
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006841 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00006842 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00006843 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006844 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
6845 if (!tx_ring)
6846 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006847
6848 tx_ring->queue_index = i;
6849 tx_ring->reg_idx = vsi->base_queue + i;
6850 tx_ring->ring_active = false;
6851 tx_ring->vsi = vsi;
6852 tx_ring->netdev = vsi->netdev;
6853 tx_ring->dev = &pf->pdev->dev;
6854 tx_ring->count = vsi->num_desc;
6855 tx_ring->size = 0;
6856 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006857 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006858
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006859 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006860 rx_ring->queue_index = i;
6861 rx_ring->reg_idx = vsi->base_queue + i;
6862 rx_ring->ring_active = false;
6863 rx_ring->vsi = vsi;
6864 rx_ring->netdev = vsi->netdev;
6865 rx_ring->dev = &pf->pdev->dev;
6866 rx_ring->count = vsi->num_desc;
6867 rx_ring->size = 0;
6868 rx_ring->dcb_tc = 0;
6869 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
6870 set_ring_16byte_desc_enabled(rx_ring);
6871 else
6872 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006873 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006874 }
6875
6876 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00006877
6878err_out:
6879 i40e_vsi_clear_rings(vsi);
6880 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006881}
6882
6883/**
6884 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
6885 * @pf: board private structure
6886 * @vectors: the number of MSI-X vectors to request
6887 *
6888 * Returns the number of vectors reserved, or error
6889 **/
6890static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
6891{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006892 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
6893 I40E_MIN_MSIX, vectors);
6894 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006895 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01006896 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006897 vectors = 0;
6898 }
6899
6900 return vectors;
6901}
6902
6903/**
6904 * i40e_init_msix - Setup the MSIX capability
6905 * @pf: board private structure
6906 *
6907 * Work with the OS to set up the MSIX vectors needed.
6908 *
6909 * Returns 0 on success, negative on failure
6910 **/
6911static int i40e_init_msix(struct i40e_pf *pf)
6912{
6913 i40e_status err = 0;
6914 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006915 int other_vecs = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006916 int v_budget, i;
6917 int vec;
6918
6919 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
6920 return -ENODEV;
6921
6922 /* The number of vectors we'll request will be comprised of:
6923 * - Add 1 for "other" cause for Admin Queue events, etc.
6924 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00006925 * - Queues being used for RSS.
6926 * We don't need as many as max_rss_size vectors.
6927 * use rss_size instead in the calculation since that
6928 * is governed by number of cpus in the system.
6929 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006930 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07006931#ifdef I40E_FCOE
6932 * - The number of FCOE qps.
6933#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006934 * Once we count this up, try the request.
6935 *
6936 * If we can't get what we want, we'll simplify to nearly nothing
6937 * and try again. If that still fails, we punt.
6938 */
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00006939 pf->num_lan_msix = min_t(int, num_online_cpus(),
6940 hw->func_caps.num_msix_vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006941 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006942 other_vecs = 1;
6943 other_vecs += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08006944 if (pf->flags & I40E_FLAG_FD_SB_ENABLED)
Shannon Nelsonc135b0d2014-10-17 03:14:49 +00006945 other_vecs++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006946
John W Linville83840e42015-01-14 03:06:28 +00006947 /* Scale down if necessary, and the rings will share vectors */
6948 pf->num_lan_msix = min_t(int, pf->num_lan_msix,
6949 (hw->func_caps.num_msix_vectors - other_vecs));
6950 v_budget = pf->num_lan_msix + other_vecs;
6951
Vasu Dev38e00432014-08-01 13:27:03 -07006952#ifdef I40E_FCOE
6953 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
6954 pf->num_fcoe_msix = pf->num_fcoe_qps;
6955 v_budget += pf->num_fcoe_msix;
6956 }
Vasu Dev38e00432014-08-01 13:27:03 -07006957#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006958
6959 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
6960 GFP_KERNEL);
6961 if (!pf->msix_entries)
6962 return -ENOMEM;
6963
6964 for (i = 0; i < v_budget; i++)
6965 pf->msix_entries[i].entry = i;
6966 vec = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006967
6968 if (vec != v_budget) {
6969 /* If we have limited resources, we will start with no vectors
6970 * for the special features and then allocate vectors to some
6971 * of these features based on the policy and at the end disable
6972 * the features that did not get any vectors.
6973 */
Vasu Dev38e00432014-08-01 13:27:03 -07006974#ifdef I40E_FCOE
6975 pf->num_fcoe_qps = 0;
6976 pf->num_fcoe_msix = 0;
6977#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006978 pf->num_vmdq_msix = 0;
6979 }
6980
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006981 if (vec < I40E_MIN_MSIX) {
6982 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
6983 kfree(pf->msix_entries);
6984 pf->msix_entries = NULL;
6985 return -ENODEV;
6986
6987 } else if (vec == I40E_MIN_MSIX) {
6988 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006989 pf->num_vmdq_vsis = 0;
6990 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006991 pf->num_lan_qps = 1;
6992 pf->num_lan_msix = 1;
6993
6994 } else if (vec != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00006995 /* reserve the misc vector */
6996 vec--;
6997
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006998 /* Scale vector usage down */
6999 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007000 pf->num_vmdq_vsis = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007001
7002 /* partition out the remaining vectors */
7003 switch (vec) {
7004 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007005 pf->num_lan_msix = 1;
7006 break;
7007 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07007008#ifdef I40E_FCOE
7009 /* give one vector to FCoE */
7010 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7011 pf->num_lan_msix = 1;
7012 pf->num_fcoe_msix = 1;
7013 }
7014#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007015 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07007016#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007017 break;
7018 default:
Vasu Dev38e00432014-08-01 13:27:03 -07007019#ifdef I40E_FCOE
7020 /* give one vector to FCoE */
7021 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7022 pf->num_fcoe_msix = 1;
7023 vec--;
7024 }
7025#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007026 pf->num_lan_msix = min_t(int, (vec / 2),
7027 pf->num_lan_qps);
7028 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
7029 I40E_DEFAULT_NUM_VMDQ_VSI);
7030 break;
7031 }
7032 }
7033
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007034 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7035 (pf->num_vmdq_msix == 0)) {
7036 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7037 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7038 }
Vasu Dev38e00432014-08-01 13:27:03 -07007039#ifdef I40E_FCOE
7040
7041 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7042 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7043 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7044 }
7045#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007046 return err;
7047}
7048
7049/**
Greg Rose90e04072014-03-06 08:59:57 +00007050 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007051 * @vsi: the VSI being configured
7052 * @v_idx: index of the vector in the vsi struct
7053 *
7054 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7055 **/
Greg Rose90e04072014-03-06 08:59:57 +00007056static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00007057{
7058 struct i40e_q_vector *q_vector;
7059
7060 /* allocate q_vector */
7061 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7062 if (!q_vector)
7063 return -ENOMEM;
7064
7065 q_vector->vsi = vsi;
7066 q_vector->v_idx = v_idx;
7067 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
7068 if (vsi->netdev)
7069 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007070 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007071
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007072 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7073 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7074
Alexander Duyck493fb302013-09-28 07:01:44 +00007075 /* tie q_vector and vsi together */
7076 vsi->q_vectors[v_idx] = q_vector;
7077
7078 return 0;
7079}
7080
7081/**
Greg Rose90e04072014-03-06 08:59:57 +00007082 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007083 * @vsi: the VSI being configured
7084 *
7085 * We allocate one q_vector per queue interrupt. If allocation fails we
7086 * return -ENOMEM.
7087 **/
Greg Rose90e04072014-03-06 08:59:57 +00007088static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007089{
7090 struct i40e_pf *pf = vsi->back;
7091 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007092 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007093
7094 /* if not MSIX, give the one vector only to the LAN VSI */
7095 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7096 num_q_vectors = vsi->num_q_vectors;
7097 else if (vsi == pf->vsi[pf->lan_vsi])
7098 num_q_vectors = 1;
7099 else
7100 return -EINVAL;
7101
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007102 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007103 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007104 if (err)
7105 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007106 }
7107
7108 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007109
7110err_out:
7111 while (v_idx--)
7112 i40e_free_q_vector(vsi, v_idx);
7113
7114 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007115}
7116
7117/**
7118 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7119 * @pf: board private structure to initialize
7120 **/
7121static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
7122{
7123 int err = 0;
7124
7125 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7126 err = i40e_init_msix(pf);
7127 if (err) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007128 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007129#ifdef I40E_FCOE
7130 I40E_FLAG_FCOE_ENABLED |
7131#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007132 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007133 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007134 I40E_FLAG_SRIOV_ENABLED |
7135 I40E_FLAG_FD_SB_ENABLED |
7136 I40E_FLAG_FD_ATR_ENABLED |
7137 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007138
7139 /* rework the queue expectations without MSIX */
7140 i40e_determine_queue_usage(pf);
7141 }
7142 }
7143
7144 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7145 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007146 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007147 err = pci_enable_msi(pf->pdev);
7148 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00007149 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007150 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7151 }
7152 }
7153
Shannon Nelson958a3e32013-09-28 07:13:28 +00007154 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007155 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007156
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007157 /* track first vector for misc interrupts */
7158 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
7159}
7160
7161/**
7162 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7163 * @pf: board private structure
7164 *
7165 * This sets up the handler for MSIX 0, which is used to manage the
7166 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7167 * when in MSI or Legacy interrupt mode.
7168 **/
7169static int i40e_setup_misc_vector(struct i40e_pf *pf)
7170{
7171 struct i40e_hw *hw = &pf->hw;
7172 int err = 0;
7173
7174 /* Only request the irq if this is the first time through, and
7175 * not when we're rebuilding after a Reset
7176 */
7177 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7178 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007179 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007180 if (err) {
7181 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007182 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007183 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007184 return -EFAULT;
7185 }
7186 }
7187
Jacob Kellerab437b52014-12-14 01:55:08 +00007188 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007189
7190 /* associate no queues to the misc vector */
7191 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7192 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7193
7194 i40e_flush(hw);
7195
7196 i40e_irq_dynamic_enable_icr0(pf);
7197
7198 return err;
7199}
7200
7201/**
7202 * i40e_config_rss - Prepare for RSS if used
7203 * @pf: board private structure
7204 **/
7205static int i40e_config_rss(struct i40e_pf *pf)
7206{
Eric Dumazet22f258a2014-11-16 06:23:13 -08007207 u32 rss_key[I40E_PFQF_HKEY_MAX_INDEX + 1];
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00007208 struct i40e_hw *hw = &pf->hw;
7209 u32 lut = 0;
7210 int i, j;
7211 u64 hena;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007212 u32 reg_val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007213
Eric Dumazet22f258a2014-11-16 06:23:13 -08007214 netdev_rss_key_fill(rss_key, sizeof(rss_key));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007215 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Eric Dumazet22f258a2014-11-16 06:23:13 -08007216 wr32(hw, I40E_PFQF_HKEY(i), rss_key[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007217
7218 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
7219 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
7220 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Mitch Williams12dc4fe2013-11-28 06:39:32 +00007221 hena |= I40E_DEFAULT_RSS_HENA;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007222 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
7223 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
7224
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007225 /* Check capability and Set table size and register per hw expectation*/
7226 reg_val = rd32(hw, I40E_PFQF_CTL_0);
7227 if (hw->func_caps.rss_table_size == 512) {
7228 reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7229 pf->rss_table_size = 512;
7230 } else {
7231 pf->rss_table_size = 128;
7232 reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512;
7233 }
7234 wr32(hw, I40E_PFQF_CTL_0, reg_val);
7235
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007236 /* Populate the LUT with max no. of queues in round robin fashion */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00007237 for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007238
7239 /* The assumption is that lan qp count will be the highest
7240 * qp count for any PF VSI that needs RSS.
7241 * If multiple VSIs need RSS support, all the qp counts
7242 * for those VSIs should be a power of 2 for RSS to work.
7243 * If LAN VSI is the only consumer for RSS then this requirement
7244 * is not necessary.
7245 */
7246 if (j == pf->rss_size)
7247 j = 0;
7248 /* lut = 4-byte sliding window of 4 lut entries */
7249 lut = (lut << 8) | (j &
7250 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
7251 /* On i = 3, we have 4 entries in lut; write to the register */
7252 if ((i & 3) == 3)
7253 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
7254 }
7255 i40e_flush(hw);
7256
7257 return 0;
7258}
7259
7260/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007261 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
7262 * @pf: board private structure
7263 * @queue_count: the requested queue count for rss.
7264 *
7265 * returns 0 if rss is not enabled, if enabled returns the final rss queue
7266 * count which may be different from the requested queue count.
7267 **/
7268int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
7269{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007270 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
7271 int new_rss_size;
7272
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007273 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
7274 return 0;
7275
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007276 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007277
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007278 if (queue_count != vsi->num_queue_pairs) {
7279 vsi->req_queue_pairs = queue_count;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007280 i40e_prep_for_reset(pf);
7281
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00007282 pf->rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007283
7284 i40e_reset_and_rebuild(pf, true);
7285 i40e_config_rss(pf);
7286 }
7287 dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size);
7288 return pf->rss_size;
7289}
7290
7291/**
Greg Rosef4492db2015-02-06 08:52:12 +00007292 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
7293 * @pf: board private structure
7294 **/
7295i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
7296{
7297 i40e_status status;
7298 bool min_valid, max_valid;
7299 u32 max_bw, min_bw;
7300
7301 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
7302 &min_valid, &max_valid);
7303
7304 if (!status) {
7305 if (min_valid)
7306 pf->npar_min_bw = min_bw;
7307 if (max_valid)
7308 pf->npar_max_bw = max_bw;
7309 }
7310
7311 return status;
7312}
7313
7314/**
7315 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
7316 * @pf: board private structure
7317 **/
7318i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
7319{
7320 struct i40e_aqc_configure_partition_bw_data bw_data;
7321 i40e_status status;
7322
7323 /* Set the valid bit for this pf */
7324 bw_data.pf_valid_bits = cpu_to_le16(1 << pf->hw.pf_id);
7325 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
7326 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
7327
7328 /* Set the new bandwidths */
7329 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
7330
7331 return status;
7332}
7333
7334/**
7335 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
7336 * @pf: board private structure
7337 **/
7338i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
7339{
7340 /* Commit temporary BW setting to permanent NVM image */
7341 enum i40e_admin_queue_err last_aq_status;
7342 i40e_status ret;
7343 u16 nvm_word;
7344
7345 if (pf->hw.partition_id != 1) {
7346 dev_info(&pf->pdev->dev,
7347 "Commit BW only works on partition 1! This is partition %d",
7348 pf->hw.partition_id);
7349 ret = I40E_NOT_SUPPORTED;
7350 goto bw_commit_out;
7351 }
7352
7353 /* Acquire NVM for read access */
7354 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
7355 last_aq_status = pf->hw.aq.asq_last_status;
7356 if (ret) {
7357 dev_info(&pf->pdev->dev,
7358 "Cannot acquire NVM for read access, err %d: aq_err %d\n",
7359 ret, last_aq_status);
7360 goto bw_commit_out;
7361 }
7362
7363 /* Read word 0x10 of NVM - SW compatibility word 1 */
7364 ret = i40e_aq_read_nvm(&pf->hw,
7365 I40E_SR_NVM_CONTROL_WORD,
7366 0x10, sizeof(nvm_word), &nvm_word,
7367 false, NULL);
7368 /* Save off last admin queue command status before releasing
7369 * the NVM
7370 */
7371 last_aq_status = pf->hw.aq.asq_last_status;
7372 i40e_release_nvm(&pf->hw);
7373 if (ret) {
7374 dev_info(&pf->pdev->dev, "NVM read error, err %d aq_err %d\n",
7375 ret, last_aq_status);
7376 goto bw_commit_out;
7377 }
7378
7379 /* Wait a bit for NVM release to complete */
7380 msleep(50);
7381
7382 /* Acquire NVM for write access */
7383 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
7384 last_aq_status = pf->hw.aq.asq_last_status;
7385 if (ret) {
7386 dev_info(&pf->pdev->dev,
7387 "Cannot acquire NVM for write access, err %d: aq_err %d\n",
7388 ret, last_aq_status);
7389 goto bw_commit_out;
7390 }
7391 /* Write it back out unchanged to initiate update NVM,
7392 * which will force a write of the shadow (alt) RAM to
7393 * the NVM - thus storing the bandwidth values permanently.
7394 */
7395 ret = i40e_aq_update_nvm(&pf->hw,
7396 I40E_SR_NVM_CONTROL_WORD,
7397 0x10, sizeof(nvm_word),
7398 &nvm_word, true, NULL);
7399 /* Save off last admin queue command status before releasing
7400 * the NVM
7401 */
7402 last_aq_status = pf->hw.aq.asq_last_status;
7403 i40e_release_nvm(&pf->hw);
7404 if (ret)
7405 dev_info(&pf->pdev->dev,
7406 "BW settings NOT SAVED, err %d aq_err %d\n",
7407 ret, last_aq_status);
7408bw_commit_out:
7409
7410 return ret;
7411}
7412
7413/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007414 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
7415 * @pf: board private structure to initialize
7416 *
7417 * i40e_sw_init initializes the Adapter private data structure.
7418 * Fields are initialized based on PCI device information and
7419 * OS network device settings (MTU size).
7420 **/
7421static int i40e_sw_init(struct i40e_pf *pf)
7422{
7423 int err = 0;
7424 int size;
7425
7426 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
7427 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00007428 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007429 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
7430 if (I40E_DEBUG_USER & debug)
7431 pf->hw.debug_mask = debug;
7432 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
7433 I40E_DEFAULT_MSG_ENABLE);
7434 }
7435
7436 /* Set default capability flags */
7437 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
7438 I40E_FLAG_MSI_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00007439 I40E_FLAG_MSIX_ENABLED;
7440
7441 if (iommu_present(&pci_bus_type))
7442 pf->flags |= I40E_FLAG_RX_PS_ENABLED;
7443 else
7444 pf->flags |= I40E_FLAG_RX_1BUF_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007445
Mitch Williamsca99eb92014-04-04 04:43:07 +00007446 /* Set default ITR */
7447 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
7448 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
7449
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007450 /* Depending on PF configurations, it is possible that the RSS
7451 * maximum might end up larger than the available queues
7452 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007453 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
Paul M Stillwell Jrec9a7db2014-07-09 07:46:10 +00007454 pf->rss_size = 1;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00007455 pf->rss_size_max = min_t(int, pf->rss_size_max,
7456 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007457 if (pf->hw.func_caps.rss) {
7458 pf->flags |= I40E_FLAG_RSS_ENABLED;
Jesse Brandeburgbf051a32013-11-26 10:49:17 +00007459 pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007460 }
7461
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007462 /* MFP mode enabled */
7463 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
7464 pf->flags |= I40E_FLAG_MFP_ENABLED;
7465 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Greg Rosef4492db2015-02-06 08:52:12 +00007466 if (i40e_get_npar_bw_setting(pf))
7467 dev_warn(&pf->pdev->dev,
7468 "Could not get NPAR bw settings\n");
7469 else
7470 dev_info(&pf->pdev->dev,
7471 "Min BW = %8.8x, Max BW = %8.8x\n",
7472 pf->npar_min_bw, pf->npar_max_bw);
Catherine Sullivan2050bc62013-12-18 13:46:03 +00007473 }
7474
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007475 /* FW/NVM is not yet fixed in this regard */
7476 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
7477 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
7478 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7479 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007480 /* Setup a counter for fd_atr per pf */
7481 pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007482 if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007483 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00007484 /* Setup a counter for fd_sb per pf */
7485 pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007486 } else {
7487 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00007488 "Flow Director Sideband mode Disabled in MFP mode\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007489 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007490 pf->fdir_pf_filter_count =
7491 pf->hw.func_caps.fd_filters_guaranteed;
7492 pf->hw.fdir_shared_filter_count =
7493 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007494 }
7495
7496 if (pf->hw.func_caps.vmdq) {
7497 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
7498 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
7499 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
7500 }
7501
Vasu Dev38e00432014-08-01 13:27:03 -07007502#ifdef I40E_FCOE
7503 err = i40e_init_pf_fcoe(pf);
7504 if (err)
7505 dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err);
7506
7507#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007508#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f12014-12-11 07:06:34 +00007509 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007510 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
7511 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
7512 pf->num_req_vfs = min_t(int,
7513 pf->hw.func_caps.num_vfs,
7514 I40E_MAX_VF_COUNT);
7515 }
7516#endif /* CONFIG_PCI_IOV */
7517 pf->eeprom_version = 0xDEAD;
7518 pf->lan_veb = I40E_NO_VEB;
7519 pf->lan_vsi = I40E_NO_VSI;
7520
7521 /* set up queue assignment tracking */
7522 size = sizeof(struct i40e_lump_tracking)
7523 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
7524 pf->qp_pile = kzalloc(size, GFP_KERNEL);
7525 if (!pf->qp_pile) {
7526 err = -ENOMEM;
7527 goto sw_init_done;
7528 }
7529 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
7530 pf->qp_pile->search_hint = 0;
7531
7532 /* set up vector assignment tracking */
7533 size = sizeof(struct i40e_lump_tracking)
7534 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
7535 pf->irq_pile = kzalloc(size, GFP_KERNEL);
7536 if (!pf->irq_pile) {
7537 kfree(pf->qp_pile);
7538 err = -ENOMEM;
7539 goto sw_init_done;
7540 }
7541 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
7542 pf->irq_pile->search_hint = 0;
7543
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00007544 pf->tx_timeout_recovery_level = 1;
7545
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007546 mutex_init(&pf->switch_mutex);
7547
7548sw_init_done:
7549 return err;
7550}
7551
7552/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007553 * i40e_set_ntuple - set the ntuple feature flag and take action
7554 * @pf: board private structure to initialize
7555 * @features: the feature set that the stack is suggesting
7556 *
7557 * returns a bool to indicate if reset needs to happen
7558 **/
7559bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
7560{
7561 bool need_reset = false;
7562
7563 /* Check if Flow Director n-tuple support was enabled or disabled. If
7564 * the state changed, we need to reset.
7565 */
7566 if (features & NETIF_F_NTUPLE) {
7567 /* Enable filters and mark for reset */
7568 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
7569 need_reset = true;
7570 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7571 } else {
7572 /* turn off filters, mark for reset and clear SW filter list */
7573 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7574 need_reset = true;
7575 i40e_fdir_filter_exit(pf);
7576 }
7577 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007578 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00007579 /* reset fd counters */
7580 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
7581 pf->fdir_pf_active_filters = 0;
7582 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
7583 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00007584 /* if ATR was auto disabled it can be re-enabled. */
7585 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
7586 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
7587 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007588 }
7589 return need_reset;
7590}
7591
7592/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007593 * i40e_set_features - set the netdev feature flags
7594 * @netdev: ptr to the netdev being adjusted
7595 * @features: the feature set that the stack is suggesting
7596 **/
7597static int i40e_set_features(struct net_device *netdev,
7598 netdev_features_t features)
7599{
7600 struct i40e_netdev_priv *np = netdev_priv(netdev);
7601 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007602 struct i40e_pf *pf = vsi->back;
7603 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007604
7605 if (features & NETIF_F_HW_VLAN_CTAG_RX)
7606 i40e_vlan_stripping_enable(vsi);
7607 else
7608 i40e_vlan_stripping_disable(vsi);
7609
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00007610 need_reset = i40e_set_ntuple(pf, features);
7611
7612 if (need_reset)
7613 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7614
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007615 return 0;
7616}
7617
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007618#ifdef CONFIG_I40E_VXLAN
7619/**
7620 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
7621 * @pf: board private structure
7622 * @port: The UDP port to look up
7623 *
7624 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
7625 **/
7626static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
7627{
7628 u8 i;
7629
7630 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7631 if (pf->vxlan_ports[i] == port)
7632 return i;
7633 }
7634
7635 return i;
7636}
7637
7638/**
7639 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
7640 * @netdev: This physical port's netdev
7641 * @sa_family: Socket Family that VXLAN is notifying us about
7642 * @port: New UDP port number that VXLAN started listening to
7643 **/
7644static void i40e_add_vxlan_port(struct net_device *netdev,
7645 sa_family_t sa_family, __be16 port)
7646{
7647 struct i40e_netdev_priv *np = netdev_priv(netdev);
7648 struct i40e_vsi *vsi = np->vsi;
7649 struct i40e_pf *pf = vsi->back;
7650 u8 next_idx;
7651 u8 idx;
7652
7653 if (sa_family == AF_INET6)
7654 return;
7655
7656 idx = i40e_get_vxlan_port_idx(pf, port);
7657
7658 /* Check if port already exists */
7659 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7660 netdev_info(netdev, "Port %d already offloaded\n", ntohs(port));
7661 return;
7662 }
7663
7664 /* Now check if there is space to add the new port */
7665 next_idx = i40e_get_vxlan_port_idx(pf, 0);
7666
7667 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7668 netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n",
7669 ntohs(port));
7670 return;
7671 }
7672
7673 /* New port: add it and mark its index in the bitmap */
7674 pf->vxlan_ports[next_idx] = port;
7675 pf->pending_vxlan_bitmap |= (1 << next_idx);
7676
7677 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7678}
7679
7680/**
7681 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
7682 * @netdev: This physical port's netdev
7683 * @sa_family: Socket Family that VXLAN is notifying us about
7684 * @port: UDP port number that VXLAN stopped listening to
7685 **/
7686static void i40e_del_vxlan_port(struct net_device *netdev,
7687 sa_family_t sa_family, __be16 port)
7688{
7689 struct i40e_netdev_priv *np = netdev_priv(netdev);
7690 struct i40e_vsi *vsi = np->vsi;
7691 struct i40e_pf *pf = vsi->back;
7692 u8 idx;
7693
7694 if (sa_family == AF_INET6)
7695 return;
7696
7697 idx = i40e_get_vxlan_port_idx(pf, port);
7698
7699 /* Check if port already exists */
7700 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
7701 /* if port exists, set it to 0 (mark for deletion)
7702 * and make it pending
7703 */
7704 pf->vxlan_ports[idx] = 0;
7705
7706 pf->pending_vxlan_bitmap |= (1 << idx);
7707
7708 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
7709 } else {
7710 netdev_warn(netdev, "Port %d was not found, not deleting\n",
7711 ntohs(port));
7712 }
7713}
7714
7715#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007716static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007717 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007718{
7719 struct i40e_netdev_priv *np = netdev_priv(netdev);
7720 struct i40e_pf *pf = np->vsi->back;
7721 struct i40e_hw *hw = &pf->hw;
7722
7723 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
7724 return -EOPNOTSUPP;
7725
7726 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
7727 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
7728
7729 return 0;
7730}
7731
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08007732/**
7733 * i40e_ndo_fdb_add - add an entry to the hardware database
7734 * @ndm: the input from the stack
7735 * @tb: pointer to array of nladdr (unused)
7736 * @dev: the net device pointer
7737 * @addr: the MAC address entry being added
7738 * @flags: instructions from stack about fdb operation
7739 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00007740static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
7741 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01007742 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007743 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00007744{
7745 struct i40e_netdev_priv *np = netdev_priv(dev);
7746 struct i40e_pf *pf = np->vsi->back;
7747 int err = 0;
7748
7749 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
7750 return -EOPNOTSUPP;
7751
Or Gerlitz65891fe2014-12-14 18:19:05 +02007752 if (vid) {
7753 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
7754 return -EINVAL;
7755 }
7756
Greg Rose4ba0dea2014-03-06 08:59:55 +00007757 /* Hardware does not support aging addresses so if a
7758 * ndm_state is given only allow permanent addresses
7759 */
7760 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
7761 netdev_info(dev, "FDB only supports static addresses\n");
7762 return -EINVAL;
7763 }
7764
7765 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
7766 err = dev_uc_add_excl(dev, addr);
7767 else if (is_multicast_ether_addr(addr))
7768 err = dev_mc_add_excl(dev, addr);
7769 else
7770 err = -EINVAL;
7771
7772 /* Only return duplicate errors if NLM_F_EXCL is set */
7773 if (err == -EEXIST && !(flags & NLM_F_EXCL))
7774 err = 0;
7775
7776 return err;
7777}
7778
Neerav Parikh51616012015-02-06 08:52:14 +00007779#ifdef HAVE_BRIDGE_ATTRIBS
7780/**
7781 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
7782 * @dev: the netdev being configured
7783 * @nlh: RTNL message
7784 *
7785 * Inserts a new hardware bridge if not already created and
7786 * enables the bridging mode requested (VEB or VEPA). If the
7787 * hardware bridge has already been inserted and the request
7788 * is to change the mode then that requires a PF reset to
7789 * allow rebuild of the components with required hardware
7790 * bridge mode enabled.
7791 **/
7792static int i40e_ndo_bridge_setlink(struct net_device *dev,
7793 struct nlmsghdr *nlh)
7794{
7795 struct i40e_netdev_priv *np = netdev_priv(dev);
7796 struct i40e_vsi *vsi = np->vsi;
7797 struct i40e_pf *pf = vsi->back;
7798 struct i40e_veb *veb = NULL;
7799 struct nlattr *attr, *br_spec;
7800 int i, rem;
7801
7802 /* Only for PF VSI for now */
7803 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
7804 return -EOPNOTSUPP;
7805
7806 /* Find the HW bridge for PF VSI */
7807 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
7808 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
7809 veb = pf->veb[i];
7810 }
7811
7812 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
7813
7814 nla_for_each_nested(attr, br_spec, rem) {
7815 __u16 mode;
7816
7817 if (nla_type(attr) != IFLA_BRIDGE_MODE)
7818 continue;
7819
7820 mode = nla_get_u16(attr);
7821 if ((mode != BRIDGE_MODE_VEPA) &&
7822 (mode != BRIDGE_MODE_VEB))
7823 return -EINVAL;
7824
7825 /* Insert a new HW bridge */
7826 if (!veb) {
7827 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
7828 vsi->tc_config.enabled_tc);
7829 if (veb) {
7830 veb->bridge_mode = mode;
7831 i40e_config_bridge_mode(veb);
7832 } else {
7833 /* No Bridge HW offload available */
7834 return -ENOENT;
7835 }
7836 break;
7837 } else if (mode != veb->bridge_mode) {
7838 /* Existing HW bridge but different mode needs reset */
7839 veb->bridge_mode = mode;
7840 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
7841 break;
7842 }
7843 }
7844
7845 return 0;
7846}
7847
7848/**
7849 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
7850 * @skb: skb buff
7851 * @pid: process id
7852 * @seq: RTNL message seq #
7853 * @dev: the netdev being configured
7854 * @filter_mask: unused
7855 *
7856 * Return the mode in which the hardware bridge is operating in
7857 * i.e VEB or VEPA.
7858 **/
7859#ifdef HAVE_BRIDGE_FILTER
7860static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
7861 struct net_device *dev,
7862 u32 __always_unused filter_mask)
7863#else
7864static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
7865 struct net_device *dev)
7866#endif /* HAVE_BRIDGE_FILTER */
7867{
7868 struct i40e_netdev_priv *np = netdev_priv(dev);
7869 struct i40e_vsi *vsi = np->vsi;
7870 struct i40e_pf *pf = vsi->back;
7871 struct i40e_veb *veb = NULL;
7872 int i;
7873
7874 /* Only for PF VSI for now */
7875 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
7876 return -EOPNOTSUPP;
7877
7878 /* Find the HW bridge for the PF VSI */
7879 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
7880 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
7881 veb = pf->veb[i];
7882 }
7883
7884 if (!veb)
7885 return 0;
7886
7887 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode);
7888}
7889#endif /* HAVE_BRIDGE_ATTRIBS */
7890
Greg Rose96664482015-02-06 08:52:13 +00007891const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007892 .ndo_open = i40e_open,
7893 .ndo_stop = i40e_close,
7894 .ndo_start_xmit = i40e_lan_xmit_frame,
7895 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
7896 .ndo_set_rx_mode = i40e_set_rx_mode,
7897 .ndo_validate_addr = eth_validate_addr,
7898 .ndo_set_mac_address = i40e_set_mac,
7899 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00007900 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007901 .ndo_tx_timeout = i40e_tx_timeout,
7902 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
7903 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
7904#ifdef CONFIG_NET_POLL_CONTROLLER
7905 .ndo_poll_controller = i40e_netpoll,
7906#endif
7907 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07007908#ifdef I40E_FCOE
7909 .ndo_fcoe_enable = i40e_fcoe_enable,
7910 .ndo_fcoe_disable = i40e_fcoe_disable,
7911#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007912 .ndo_set_features = i40e_set_features,
7913 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
7914 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04007915 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007916 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00007917 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00007918 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007919#ifdef CONFIG_I40E_VXLAN
7920 .ndo_add_vxlan_port = i40e_add_vxlan_port,
7921 .ndo_del_vxlan_port = i40e_del_vxlan_port,
7922#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00007923 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00007924 .ndo_fdb_add = i40e_ndo_fdb_add,
Neerav Parikh51616012015-02-06 08:52:14 +00007925#ifdef HAVE_BRIDGE_ATTRIBS
7926 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
7927 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
7928#endif /* HAVE_BRIDGE_ATTRIBS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007929};
7930
7931/**
7932 * i40e_config_netdev - Setup the netdev flags
7933 * @vsi: the VSI being configured
7934 *
7935 * Returns 0 on success, negative value on failure
7936 **/
7937static int i40e_config_netdev(struct i40e_vsi *vsi)
7938{
Greg Rose1a103702013-11-28 06:42:39 +00007939 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007940 struct i40e_pf *pf = vsi->back;
7941 struct i40e_hw *hw = &pf->hw;
7942 struct i40e_netdev_priv *np;
7943 struct net_device *netdev;
7944 u8 mac_addr[ETH_ALEN];
7945 int etherdev_size;
7946
7947 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007948 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007949 if (!netdev)
7950 return -ENOMEM;
7951
7952 vsi->netdev = netdev;
7953 np = netdev_priv(netdev);
7954 np->vsi = vsi;
7955
Or Gerlitzd70e9412014-03-18 10:36:45 +02007956 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007957 NETIF_F_GSO_UDP_TUNNEL |
Or Gerlitzd70e9412014-03-18 10:36:45 +02007958 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007959
7960 netdev->features = NETIF_F_SG |
7961 NETIF_F_IP_CSUM |
7962 NETIF_F_SCTP_CSUM |
7963 NETIF_F_HIGHDMA |
7964 NETIF_F_GSO_UDP_TUNNEL |
7965 NETIF_F_HW_VLAN_CTAG_TX |
7966 NETIF_F_HW_VLAN_CTAG_RX |
7967 NETIF_F_HW_VLAN_CTAG_FILTER |
7968 NETIF_F_IPV6_CSUM |
7969 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00007970 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007971 NETIF_F_TSO6 |
7972 NETIF_F_RXCSUM |
7973 NETIF_F_RXHASH |
7974 0;
7975
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00007976 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
7977 netdev->features |= NETIF_F_NTUPLE;
7978
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007979 /* copy netdev features into list of user selectable features */
7980 netdev->hw_features |= netdev->features;
7981
7982 if (vsi->type == I40E_VSI_MAIN) {
7983 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00007984 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00007985 /* The following steps are necessary to prevent reception
7986 * of tagged packets - some older NVM configurations load a
7987 * default a MAC-VLAN filter that accepts any tagged packet
7988 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00007989 */
Shannon Nelson30650cc2014-07-29 04:01:50 +00007990 if (!i40e_rm_default_mac_filter(vsi, mac_addr))
7991 i40e_add_filter(vsi, mac_addr,
7992 I40E_VLAN_ANY, false, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007993 } else {
7994 /* relate the VSI_VMDQ name to the VSI_MAIN name */
7995 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
7996 pf->vsi[pf->lan_vsi]->netdev->name);
7997 random_ether_addr(mac_addr);
7998 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
7999 }
Greg Rose1a103702013-11-28 06:42:39 +00008000 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008001
Greg Rose9a173902014-05-22 06:32:02 +00008002 ether_addr_copy(netdev->dev_addr, mac_addr);
8003 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008004 /* vlan gets same features (except vlan offload)
8005 * after any tweaks for specific VSI types
8006 */
8007 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
8008 NETIF_F_HW_VLAN_CTAG_RX |
8009 NETIF_F_HW_VLAN_CTAG_FILTER);
8010 netdev->priv_flags |= IFF_UNICAST_FLT;
8011 netdev->priv_flags |= IFF_SUPP_NOFCS;
8012 /* Setup netdev TC information */
8013 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
8014
8015 netdev->netdev_ops = &i40e_netdev_ops;
8016 netdev->watchdog_timeo = 5 * HZ;
8017 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07008018#ifdef I40E_FCOE
8019 i40e_fcoe_config_netdev(netdev, vsi);
8020#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008021
8022 return 0;
8023}
8024
8025/**
8026 * i40e_vsi_delete - Delete a VSI from the switch
8027 * @vsi: the VSI being removed
8028 *
8029 * Returns 0 on success, negative value on failure
8030 **/
8031static void i40e_vsi_delete(struct i40e_vsi *vsi)
8032{
8033 /* remove default VSI is not allowed */
8034 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
8035 return;
8036
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008037 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008038}
8039
8040/**
Neerav Parikh51616012015-02-06 08:52:14 +00008041 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
8042 * @vsi: the VSI being queried
8043 *
8044 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
8045 **/
8046int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
8047{
8048 struct i40e_veb *veb;
8049 struct i40e_pf *pf = vsi->back;
8050
8051 /* Uplink is not a bridge so default to VEB */
8052 if (vsi->veb_idx == I40E_NO_VEB)
8053 return 1;
8054
8055 veb = pf->veb[vsi->veb_idx];
8056 /* Uplink is a bridge in VEPA mode */
8057 if (veb && (veb->bridge_mode & BRIDGE_MODE_VEPA))
8058 return 0;
8059
8060 /* Uplink is a bridge in VEB mode */
8061 return 1;
8062}
8063
8064/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008065 * i40e_add_vsi - Add a VSI to the switch
8066 * @vsi: the VSI being configured
8067 *
8068 * This initializes a VSI context depending on the VSI type to be added and
8069 * passes it down to the add_vsi aq command.
8070 **/
8071static int i40e_add_vsi(struct i40e_vsi *vsi)
8072{
8073 int ret = -ENODEV;
8074 struct i40e_mac_filter *f, *ftmp;
8075 struct i40e_pf *pf = vsi->back;
8076 struct i40e_hw *hw = &pf->hw;
8077 struct i40e_vsi_context ctxt;
8078 u8 enabled_tc = 0x1; /* TC0 enabled */
8079 int f_count = 0;
8080
8081 memset(&ctxt, 0, sizeof(ctxt));
8082 switch (vsi->type) {
8083 case I40E_VSI_MAIN:
8084 /* The PF's main VSI is already setup as part of the
8085 * device initialization, so we'll not bother with
8086 * the add_vsi call, but we will retrieve the current
8087 * VSI context.
8088 */
8089 ctxt.seid = pf->main_vsi_seid;
8090 ctxt.pf_num = pf->hw.pf_id;
8091 ctxt.vf_num = 0;
8092 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
8093 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
8094 if (ret) {
8095 dev_info(&pf->pdev->dev,
8096 "couldn't get pf vsi config, err %d, aq_err %d\n",
8097 ret, pf->hw.aq.asq_last_status);
8098 return -ENOENT;
8099 }
8100 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
8101 vsi->info.valid_sections = 0;
8102
8103 vsi->seid = ctxt.seid;
8104 vsi->id = ctxt.vsi_number;
8105
8106 enabled_tc = i40e_pf_get_tc_map(pf);
8107
8108 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00008109 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
8110 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008111 memset(&ctxt, 0, sizeof(ctxt));
8112 ctxt.seid = pf->main_vsi_seid;
8113 ctxt.pf_num = pf->hw.pf_id;
8114 ctxt.vf_num = 0;
8115 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
8116 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
8117 if (ret) {
8118 dev_info(&pf->pdev->dev,
8119 "update vsi failed, aq_err=%d\n",
8120 pf->hw.aq.asq_last_status);
8121 ret = -ENOENT;
8122 goto err;
8123 }
8124 /* update the local VSI info queue map */
8125 i40e_vsi_update_queue_map(vsi, &ctxt);
8126 vsi->info.valid_sections = 0;
8127 } else {
8128 /* Default/Main VSI is only enabled for TC0
8129 * reconfigure it to enable all TCs that are
8130 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00008131 * For MFP case the iSCSI PF would use this
8132 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008133 */
8134 ret = i40e_vsi_config_tc(vsi, enabled_tc);
8135 if (ret) {
8136 dev_info(&pf->pdev->dev,
8137 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
8138 enabled_tc, ret,
8139 pf->hw.aq.asq_last_status);
8140 ret = -ENOENT;
8141 }
8142 }
8143 break;
8144
8145 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008146 ctxt.pf_num = hw->pf_id;
8147 ctxt.vf_num = 0;
8148 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00008149 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008150 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Neerav Parikh51616012015-02-06 08:52:14 +00008151 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
8152 ctxt.info.valid_sections |=
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008153 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00008154 ctxt.info.switch_id =
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008155 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00008156 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008157 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008158 break;
8159
8160 case I40E_VSI_VMDQ2:
8161 ctxt.pf_num = hw->pf_id;
8162 ctxt.vf_num = 0;
8163 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00008164 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008165 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
8166
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008167 /* This VSI is connected to VEB so the switch_id
8168 * should be set to zero by default.
8169 */
Neerav Parikh51616012015-02-06 08:52:14 +00008170 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
8171 ctxt.info.valid_sections |=
8172 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
8173 ctxt.info.switch_id =
8174 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
8175 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008176
8177 /* Setup the VSI tx/rx queue map for TC0 only for now */
8178 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
8179 break;
8180
8181 case I40E_VSI_SRIOV:
8182 ctxt.pf_num = hw->pf_id;
8183 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
8184 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00008185 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008186 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
8187
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008188 /* This VSI is connected to VEB so the switch_id
8189 * should be set to zero by default.
8190 */
Neerav Parikh51616012015-02-06 08:52:14 +00008191 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
8192 ctxt.info.valid_sections |=
8193 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
8194 ctxt.info.switch_id =
8195 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
8196 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008197
8198 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
8199 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00008200 if (pf->vf[vsi->vf_id].spoofchk) {
8201 ctxt.info.valid_sections |=
8202 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
8203 ctxt.info.sec_flags |=
8204 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
8205 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
8206 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008207 /* Setup the VSI tx/rx queue map for TC0 only for now */
8208 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
8209 break;
8210
Vasu Dev38e00432014-08-01 13:27:03 -07008211#ifdef I40E_FCOE
8212 case I40E_VSI_FCOE:
8213 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
8214 if (ret) {
8215 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
8216 return ret;
8217 }
8218 break;
8219
8220#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008221 default:
8222 return -ENODEV;
8223 }
8224
8225 if (vsi->type != I40E_VSI_MAIN) {
8226 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
8227 if (ret) {
8228 dev_info(&vsi->back->pdev->dev,
8229 "add vsi failed, aq_err=%d\n",
8230 vsi->back->hw.aq.asq_last_status);
8231 ret = -ENOENT;
8232 goto err;
8233 }
8234 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
8235 vsi->info.valid_sections = 0;
8236 vsi->seid = ctxt.seid;
8237 vsi->id = ctxt.vsi_number;
8238 }
8239
8240 /* If macvlan filters already exist, force them to get loaded */
8241 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
8242 f->changed = true;
8243 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00008244
8245 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Shannon Nelson30650cc2014-07-29 04:01:50 +00008246 struct i40e_aqc_remove_macvlan_element_data element;
8247
8248 memset(&element, 0, sizeof(element));
8249 ether_addr_copy(element.mac_addr, f->macaddr);
8250 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
8251 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
8252 &element, 1, NULL);
8253 if (ret) {
8254 /* some older FW has a different default */
8255 element.flags |=
8256 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
8257 i40e_aq_remove_macvlan(hw, vsi->seid,
8258 &element, 1, NULL);
8259 }
8260
8261 i40e_aq_mac_address_write(hw,
Shannon Nelson6252c7e2014-06-04 01:23:23 +00008262 I40E_AQC_WRITE_TYPE_LAA_WOL,
8263 f->macaddr, NULL);
8264 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008265 }
8266 if (f_count) {
8267 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
8268 pf->flags |= I40E_FLAG_FILTER_SYNC;
8269 }
8270
8271 /* Update VSI BW information */
8272 ret = i40e_vsi_get_bw_info(vsi);
8273 if (ret) {
8274 dev_info(&pf->pdev->dev,
8275 "couldn't get vsi bw info, err %d, aq_err %d\n",
8276 ret, pf->hw.aq.asq_last_status);
8277 /* VSI is already added so not tearing that up */
8278 ret = 0;
8279 }
8280
8281err:
8282 return ret;
8283}
8284
8285/**
8286 * i40e_vsi_release - Delete a VSI and free its resources
8287 * @vsi: the VSI being removed
8288 *
8289 * Returns 0 on success or < 0 on error
8290 **/
8291int i40e_vsi_release(struct i40e_vsi *vsi)
8292{
8293 struct i40e_mac_filter *f, *ftmp;
8294 struct i40e_veb *veb = NULL;
8295 struct i40e_pf *pf;
8296 u16 uplink_seid;
8297 int i, n;
8298
8299 pf = vsi->back;
8300
8301 /* release of a VEB-owner or last VSI is not allowed */
8302 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
8303 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
8304 vsi->seid, vsi->uplink_seid);
8305 return -ENODEV;
8306 }
8307 if (vsi == pf->vsi[pf->lan_vsi] &&
8308 !test_bit(__I40E_DOWN, &pf->state)) {
8309 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
8310 return -ENODEV;
8311 }
8312
8313 uplink_seid = vsi->uplink_seid;
8314 if (vsi->type != I40E_VSI_SRIOV) {
8315 if (vsi->netdev_registered) {
8316 vsi->netdev_registered = false;
8317 if (vsi->netdev) {
8318 /* results in a call to i40e_close() */
8319 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008320 }
8321 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00008322 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008323 }
8324 i40e_vsi_disable_irq(vsi);
8325 }
8326
8327 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
8328 i40e_del_filter(vsi, f->macaddr, f->vlan,
8329 f->is_vf, f->is_netdev);
8330 i40e_sync_vsi_filters(vsi);
8331
8332 i40e_vsi_delete(vsi);
8333 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00008334 if (vsi->netdev) {
8335 free_netdev(vsi->netdev);
8336 vsi->netdev = NULL;
8337 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008338 i40e_vsi_clear_rings(vsi);
8339 i40e_vsi_clear(vsi);
8340
8341 /* If this was the last thing on the VEB, except for the
8342 * controlling VSI, remove the VEB, which puts the controlling
8343 * VSI onto the next level down in the switch.
8344 *
8345 * Well, okay, there's one more exception here: don't remove
8346 * the orphan VEBs yet. We'll wait for an explicit remove request
8347 * from up the network stack.
8348 */
Mitch Williams505682c2014-05-20 08:01:37 +00008349 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008350 if (pf->vsi[i] &&
8351 pf->vsi[i]->uplink_seid == uplink_seid &&
8352 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8353 n++; /* count the VSIs */
8354 }
8355 }
8356 for (i = 0; i < I40E_MAX_VEB; i++) {
8357 if (!pf->veb[i])
8358 continue;
8359 if (pf->veb[i]->uplink_seid == uplink_seid)
8360 n++; /* count the VEBs */
8361 if (pf->veb[i]->seid == uplink_seid)
8362 veb = pf->veb[i];
8363 }
8364 if (n == 0 && veb && veb->uplink_seid != 0)
8365 i40e_veb_release(veb);
8366
8367 return 0;
8368}
8369
8370/**
8371 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
8372 * @vsi: ptr to the VSI
8373 *
8374 * This should only be called after i40e_vsi_mem_alloc() which allocates the
8375 * corresponding SW VSI structure and initializes num_queue_pairs for the
8376 * newly allocated VSI.
8377 *
8378 * Returns 0 on success or negative on failure
8379 **/
8380static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
8381{
8382 int ret = -ENOENT;
8383 struct i40e_pf *pf = vsi->back;
8384
Alexander Duyck493fb302013-09-28 07:01:44 +00008385 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008386 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
8387 vsi->seid);
8388 return -EEXIST;
8389 }
8390
8391 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00008392 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008393 vsi->seid, vsi->base_vector);
8394 return -EEXIST;
8395 }
8396
Greg Rose90e04072014-03-06 08:59:57 +00008397 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008398 if (ret) {
8399 dev_info(&pf->pdev->dev,
8400 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
8401 vsi->num_q_vectors, vsi->seid, ret);
8402 vsi->num_q_vectors = 0;
8403 goto vector_setup_out;
8404 }
8405
Shannon Nelson958a3e32013-09-28 07:13:28 +00008406 if (vsi->num_q_vectors)
8407 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
8408 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008409 if (vsi->base_vector < 0) {
8410 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00008411 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
8412 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008413 i40e_vsi_free_q_vectors(vsi);
8414 ret = -ENOENT;
8415 goto vector_setup_out;
8416 }
8417
8418vector_setup_out:
8419 return ret;
8420}
8421
8422/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008423 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
8424 * @vsi: pointer to the vsi.
8425 *
8426 * This re-allocates a vsi's queue resources.
8427 *
8428 * Returns pointer to the successfully allocated and configured VSI sw struct
8429 * on success, otherwise returns NULL on failure.
8430 **/
8431static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
8432{
8433 struct i40e_pf *pf = vsi->back;
8434 u8 enabled_tc;
8435 int ret;
8436
8437 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
8438 i40e_vsi_clear_rings(vsi);
8439
8440 i40e_vsi_free_arrays(vsi, false);
8441 i40e_set_num_rings_in_vsi(vsi);
8442 ret = i40e_vsi_alloc_arrays(vsi, false);
8443 if (ret)
8444 goto err_vsi;
8445
8446 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
8447 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008448 dev_info(&pf->pdev->dev,
8449 "failed to get tracking for %d queues for VSI %d err=%d\n",
8450 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00008451 goto err_vsi;
8452 }
8453 vsi->base_queue = ret;
8454
8455 /* Update the FW view of the VSI. Force a reset of TC and queue
8456 * layout configurations.
8457 */
8458 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
8459 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
8460 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
8461 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
8462
8463 /* assign it some queues */
8464 ret = i40e_alloc_rings(vsi);
8465 if (ret)
8466 goto err_rings;
8467
8468 /* map all of the rings to the q_vectors */
8469 i40e_vsi_map_rings_to_vectors(vsi);
8470 return vsi;
8471
8472err_rings:
8473 i40e_vsi_free_q_vectors(vsi);
8474 if (vsi->netdev_registered) {
8475 vsi->netdev_registered = false;
8476 unregister_netdev(vsi->netdev);
8477 free_netdev(vsi->netdev);
8478 vsi->netdev = NULL;
8479 }
8480 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8481err_vsi:
8482 i40e_vsi_clear(vsi);
8483 return NULL;
8484}
8485
8486/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008487 * i40e_vsi_setup - Set up a VSI by a given type
8488 * @pf: board private structure
8489 * @type: VSI type
8490 * @uplink_seid: the switch element to link to
8491 * @param1: usage depends upon VSI type. For VF types, indicates VF id
8492 *
8493 * This allocates the sw VSI structure and its queue resources, then add a VSI
8494 * to the identified VEB.
8495 *
8496 * Returns pointer to the successfully allocated and configure VSI sw struct on
8497 * success, otherwise returns NULL on failure.
8498 **/
8499struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
8500 u16 uplink_seid, u32 param1)
8501{
8502 struct i40e_vsi *vsi = NULL;
8503 struct i40e_veb *veb = NULL;
8504 int ret, i;
8505 int v_idx;
8506
8507 /* The requested uplink_seid must be either
8508 * - the PF's port seid
8509 * no VEB is needed because this is the PF
8510 * or this is a Flow Director special case VSI
8511 * - seid of an existing VEB
8512 * - seid of a VSI that owns an existing VEB
8513 * - seid of a VSI that doesn't own a VEB
8514 * a new VEB is created and the VSI becomes the owner
8515 * - seid of the PF VSI, which is what creates the first VEB
8516 * this is a special case of the previous
8517 *
8518 * Find which uplink_seid we were given and create a new VEB if needed
8519 */
8520 for (i = 0; i < I40E_MAX_VEB; i++) {
8521 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
8522 veb = pf->veb[i];
8523 break;
8524 }
8525 }
8526
8527 if (!veb && uplink_seid != pf->mac_seid) {
8528
Mitch Williams505682c2014-05-20 08:01:37 +00008529 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008530 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
8531 vsi = pf->vsi[i];
8532 break;
8533 }
8534 }
8535 if (!vsi) {
8536 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
8537 uplink_seid);
8538 return NULL;
8539 }
8540
8541 if (vsi->uplink_seid == pf->mac_seid)
8542 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
8543 vsi->tc_config.enabled_tc);
8544 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
8545 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8546 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008547 if (veb) {
8548 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
8549 dev_info(&vsi->back->pdev->dev,
8550 "%s: New VSI creation error, uplink seid of LAN VSI expected.\n",
8551 __func__);
8552 return NULL;
8553 }
Neerav Parikh51616012015-02-06 08:52:14 +00008554 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00008555 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008556 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8557 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8558 veb = pf->veb[i];
8559 }
8560 if (!veb) {
8561 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
8562 return NULL;
8563 }
8564
8565 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8566 uplink_seid = veb->seid;
8567 }
8568
8569 /* get vsi sw struct */
8570 v_idx = i40e_vsi_mem_alloc(pf, type);
8571 if (v_idx < 0)
8572 goto err_alloc;
8573 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008574 if (!vsi)
8575 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008576 vsi->type = type;
8577 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
8578
8579 if (type == I40E_VSI_MAIN)
8580 pf->lan_vsi = v_idx;
8581 else if (type == I40E_VSI_SRIOV)
8582 vsi->vf_id = param1;
8583 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008584 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
8585 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008586 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00008587 dev_info(&pf->pdev->dev,
8588 "failed to get tracking for %d queues for VSI %d err=%d\n",
8589 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008590 goto err_vsi;
8591 }
8592 vsi->base_queue = ret;
8593
8594 /* get a VSI from the hardware */
8595 vsi->uplink_seid = uplink_seid;
8596 ret = i40e_add_vsi(vsi);
8597 if (ret)
8598 goto err_vsi;
8599
8600 switch (vsi->type) {
8601 /* setup the netdev if needed */
8602 case I40E_VSI_MAIN:
8603 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07008604 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008605 ret = i40e_config_netdev(vsi);
8606 if (ret)
8607 goto err_netdev;
8608 ret = register_netdev(vsi->netdev);
8609 if (ret)
8610 goto err_netdev;
8611 vsi->netdev_registered = true;
8612 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08008613#ifdef CONFIG_I40E_DCB
8614 /* Setup DCB netlink interface */
8615 i40e_dcbnl_setup(vsi);
8616#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008617 /* fall through */
8618
8619 case I40E_VSI_FDIR:
8620 /* set up vectors and rings if needed */
8621 ret = i40e_vsi_setup_vectors(vsi);
8622 if (ret)
8623 goto err_msix;
8624
8625 ret = i40e_alloc_rings(vsi);
8626 if (ret)
8627 goto err_rings;
8628
8629 /* map all of the rings to the q_vectors */
8630 i40e_vsi_map_rings_to_vectors(vsi);
8631
8632 i40e_vsi_reset_stats(vsi);
8633 break;
8634
8635 default:
8636 /* no netdev or rings for the other VSI types */
8637 break;
8638 }
8639
8640 return vsi;
8641
8642err_rings:
8643 i40e_vsi_free_q_vectors(vsi);
8644err_msix:
8645 if (vsi->netdev_registered) {
8646 vsi->netdev_registered = false;
8647 unregister_netdev(vsi->netdev);
8648 free_netdev(vsi->netdev);
8649 vsi->netdev = NULL;
8650 }
8651err_netdev:
8652 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
8653err_vsi:
8654 i40e_vsi_clear(vsi);
8655err_alloc:
8656 return NULL;
8657}
8658
8659/**
8660 * i40e_veb_get_bw_info - Query VEB BW information
8661 * @veb: the veb to query
8662 *
8663 * Query the Tx scheduler BW configuration data for given VEB
8664 **/
8665static int i40e_veb_get_bw_info(struct i40e_veb *veb)
8666{
8667 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
8668 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
8669 struct i40e_pf *pf = veb->pf;
8670 struct i40e_hw *hw = &pf->hw;
8671 u32 tc_bw_max;
8672 int ret = 0;
8673 int i;
8674
8675 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
8676 &bw_data, NULL);
8677 if (ret) {
8678 dev_info(&pf->pdev->dev,
8679 "query veb bw config failed, aq_err=%d\n",
8680 hw->aq.asq_last_status);
8681 goto out;
8682 }
8683
8684 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
8685 &ets_data, NULL);
8686 if (ret) {
8687 dev_info(&pf->pdev->dev,
8688 "query veb bw ets config failed, aq_err=%d\n",
8689 hw->aq.asq_last_status);
8690 goto out;
8691 }
8692
8693 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
8694 veb->bw_max_quanta = ets_data.tc_bw_max;
8695 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00008696 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008697 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
8698 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
8699 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
8700 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
8701 veb->bw_tc_limit_credits[i] =
8702 le16_to_cpu(bw_data.tc_bw_limits[i]);
8703 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
8704 }
8705
8706out:
8707 return ret;
8708}
8709
8710/**
8711 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
8712 * @pf: board private structure
8713 *
8714 * On error: returns error code (negative)
8715 * On success: returns vsi index in PF (positive)
8716 **/
8717static int i40e_veb_mem_alloc(struct i40e_pf *pf)
8718{
8719 int ret = -ENOENT;
8720 struct i40e_veb *veb;
8721 int i;
8722
8723 /* Need to protect the allocation of switch elements at the PF level */
8724 mutex_lock(&pf->switch_mutex);
8725
8726 /* VEB list may be fragmented if VEB creation/destruction has
8727 * been happening. We can afford to do a quick scan to look
8728 * for any free slots in the list.
8729 *
8730 * find next empty veb slot, looping back around if necessary
8731 */
8732 i = 0;
8733 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
8734 i++;
8735 if (i >= I40E_MAX_VEB) {
8736 ret = -ENOMEM;
8737 goto err_alloc_veb; /* out of VEB slots! */
8738 }
8739
8740 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
8741 if (!veb) {
8742 ret = -ENOMEM;
8743 goto err_alloc_veb;
8744 }
8745 veb->pf = pf;
8746 veb->idx = i;
8747 veb->enabled_tc = 1;
8748
8749 pf->veb[i] = veb;
8750 ret = i;
8751err_alloc_veb:
8752 mutex_unlock(&pf->switch_mutex);
8753 return ret;
8754}
8755
8756/**
8757 * i40e_switch_branch_release - Delete a branch of the switch tree
8758 * @branch: where to start deleting
8759 *
8760 * This uses recursion to find the tips of the branch to be
8761 * removed, deleting until we get back to and can delete this VEB.
8762 **/
8763static void i40e_switch_branch_release(struct i40e_veb *branch)
8764{
8765 struct i40e_pf *pf = branch->pf;
8766 u16 branch_seid = branch->seid;
8767 u16 veb_idx = branch->idx;
8768 int i;
8769
8770 /* release any VEBs on this VEB - RECURSION */
8771 for (i = 0; i < I40E_MAX_VEB; i++) {
8772 if (!pf->veb[i])
8773 continue;
8774 if (pf->veb[i]->uplink_seid == branch->seid)
8775 i40e_switch_branch_release(pf->veb[i]);
8776 }
8777
8778 /* Release the VSIs on this VEB, but not the owner VSI.
8779 *
8780 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
8781 * the VEB itself, so don't use (*branch) after this loop.
8782 */
Mitch Williams505682c2014-05-20 08:01:37 +00008783 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008784 if (!pf->vsi[i])
8785 continue;
8786 if (pf->vsi[i]->uplink_seid == branch_seid &&
8787 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
8788 i40e_vsi_release(pf->vsi[i]);
8789 }
8790 }
8791
8792 /* There's one corner case where the VEB might not have been
8793 * removed, so double check it here and remove it if needed.
8794 * This case happens if the veb was created from the debugfs
8795 * commands and no VSIs were added to it.
8796 */
8797 if (pf->veb[veb_idx])
8798 i40e_veb_release(pf->veb[veb_idx]);
8799}
8800
8801/**
8802 * i40e_veb_clear - remove veb struct
8803 * @veb: the veb to remove
8804 **/
8805static void i40e_veb_clear(struct i40e_veb *veb)
8806{
8807 if (!veb)
8808 return;
8809
8810 if (veb->pf) {
8811 struct i40e_pf *pf = veb->pf;
8812
8813 mutex_lock(&pf->switch_mutex);
8814 if (pf->veb[veb->idx] == veb)
8815 pf->veb[veb->idx] = NULL;
8816 mutex_unlock(&pf->switch_mutex);
8817 }
8818
8819 kfree(veb);
8820}
8821
8822/**
8823 * i40e_veb_release - Delete a VEB and free its resources
8824 * @veb: the VEB being removed
8825 **/
8826void i40e_veb_release(struct i40e_veb *veb)
8827{
8828 struct i40e_vsi *vsi = NULL;
8829 struct i40e_pf *pf;
8830 int i, n = 0;
8831
8832 pf = veb->pf;
8833
8834 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00008835 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008836 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
8837 n++;
8838 vsi = pf->vsi[i];
8839 }
8840 }
8841 if (n != 1) {
8842 dev_info(&pf->pdev->dev,
8843 "can't remove VEB %d with %d VSIs left\n",
8844 veb->seid, n);
8845 return;
8846 }
8847
8848 /* move the remaining VSI to uplink veb */
8849 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
8850 if (veb->uplink_seid) {
8851 vsi->uplink_seid = veb->uplink_seid;
8852 if (veb->uplink_seid == pf->mac_seid)
8853 vsi->veb_idx = I40E_NO_VEB;
8854 else
8855 vsi->veb_idx = veb->veb_idx;
8856 } else {
8857 /* floating VEB */
8858 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
8859 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
8860 }
8861
8862 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
8863 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008864}
8865
8866/**
8867 * i40e_add_veb - create the VEB in the switch
8868 * @veb: the VEB to be instantiated
8869 * @vsi: the controlling VSI
8870 **/
8871static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
8872{
Greg Rose56747262013-11-28 06:39:37 +00008873 bool is_default = false;
Kevin Scotte1c51b952013-11-20 10:02:51 +00008874 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008875 int ret;
8876
8877 /* get a VEB from the hardware */
8878 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00008879 veb->enabled_tc, is_default,
8880 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008881 if (ret) {
8882 dev_info(&veb->pf->pdev->dev,
8883 "couldn't add VEB, err %d, aq_err %d\n",
8884 ret, veb->pf->hw.aq.asq_last_status);
8885 return -EPERM;
8886 }
8887
8888 /* get statistics counter */
8889 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
8890 &veb->stats_idx, NULL, NULL, NULL);
8891 if (ret) {
8892 dev_info(&veb->pf->pdev->dev,
8893 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
8894 ret, veb->pf->hw.aq.asq_last_status);
8895 return -EPERM;
8896 }
8897 ret = i40e_veb_get_bw_info(veb);
8898 if (ret) {
8899 dev_info(&veb->pf->pdev->dev,
8900 "couldn't get VEB bw info, err %d, aq_err %d\n",
8901 ret, veb->pf->hw.aq.asq_last_status);
8902 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
8903 return -ENOENT;
8904 }
8905
8906 vsi->uplink_seid = veb->seid;
8907 vsi->veb_idx = veb->idx;
8908 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
8909
8910 return 0;
8911}
8912
8913/**
8914 * i40e_veb_setup - Set up a VEB
8915 * @pf: board private structure
8916 * @flags: VEB setup flags
8917 * @uplink_seid: the switch element to link to
8918 * @vsi_seid: the initial VSI seid
8919 * @enabled_tc: Enabled TC bit-map
8920 *
8921 * This allocates the sw VEB structure and links it into the switch
8922 * It is possible and legal for this to be a duplicate of an already
8923 * existing VEB. It is also possible for both uplink and vsi seids
8924 * to be zero, in order to create a floating VEB.
8925 *
8926 * Returns pointer to the successfully allocated VEB sw struct on
8927 * success, otherwise returns NULL on failure.
8928 **/
8929struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
8930 u16 uplink_seid, u16 vsi_seid,
8931 u8 enabled_tc)
8932{
8933 struct i40e_veb *veb, *uplink_veb = NULL;
8934 int vsi_idx, veb_idx;
8935 int ret;
8936
8937 /* if one seid is 0, the other must be 0 to create a floating relay */
8938 if ((uplink_seid == 0 || vsi_seid == 0) &&
8939 (uplink_seid + vsi_seid != 0)) {
8940 dev_info(&pf->pdev->dev,
8941 "one, not both seid's are 0: uplink=%d vsi=%d\n",
8942 uplink_seid, vsi_seid);
8943 return NULL;
8944 }
8945
8946 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00008947 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008948 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
8949 break;
Mitch Williams505682c2014-05-20 08:01:37 +00008950 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008951 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
8952 vsi_seid);
8953 return NULL;
8954 }
8955
8956 if (uplink_seid && uplink_seid != pf->mac_seid) {
8957 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
8958 if (pf->veb[veb_idx] &&
8959 pf->veb[veb_idx]->seid == uplink_seid) {
8960 uplink_veb = pf->veb[veb_idx];
8961 break;
8962 }
8963 }
8964 if (!uplink_veb) {
8965 dev_info(&pf->pdev->dev,
8966 "uplink seid %d not found\n", uplink_seid);
8967 return NULL;
8968 }
8969 }
8970
8971 /* get veb sw struct */
8972 veb_idx = i40e_veb_mem_alloc(pf);
8973 if (veb_idx < 0)
8974 goto err_alloc;
8975 veb = pf->veb[veb_idx];
8976 veb->flags = flags;
8977 veb->uplink_seid = uplink_seid;
8978 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
8979 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
8980
8981 /* create the VEB in the switch */
8982 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
8983 if (ret)
8984 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00008985 if (vsi_idx == pf->lan_vsi)
8986 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008987
8988 return veb;
8989
8990err_veb:
8991 i40e_veb_clear(veb);
8992err_alloc:
8993 return NULL;
8994}
8995
8996/**
8997 * i40e_setup_pf_switch_element - set pf vars based on switch type
8998 * @pf: board private structure
8999 * @ele: element we are building info from
9000 * @num_reported: total number of elements
9001 * @printconfig: should we print the contents
9002 *
9003 * helper function to assist in extracting a few useful SEID values.
9004 **/
9005static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
9006 struct i40e_aqc_switch_config_element_resp *ele,
9007 u16 num_reported, bool printconfig)
9008{
9009 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
9010 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
9011 u8 element_type = ele->element_type;
9012 u16 seid = le16_to_cpu(ele->seid);
9013
9014 if (printconfig)
9015 dev_info(&pf->pdev->dev,
9016 "type=%d seid=%d uplink=%d downlink=%d\n",
9017 element_type, seid, uplink_seid, downlink_seid);
9018
9019 switch (element_type) {
9020 case I40E_SWITCH_ELEMENT_TYPE_MAC:
9021 pf->mac_seid = seid;
9022 break;
9023 case I40E_SWITCH_ELEMENT_TYPE_VEB:
9024 /* Main VEB? */
9025 if (uplink_seid != pf->mac_seid)
9026 break;
9027 if (pf->lan_veb == I40E_NO_VEB) {
9028 int v;
9029
9030 /* find existing or else empty VEB */
9031 for (v = 0; v < I40E_MAX_VEB; v++) {
9032 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
9033 pf->lan_veb = v;
9034 break;
9035 }
9036 }
9037 if (pf->lan_veb == I40E_NO_VEB) {
9038 v = i40e_veb_mem_alloc(pf);
9039 if (v < 0)
9040 break;
9041 pf->lan_veb = v;
9042 }
9043 }
9044
9045 pf->veb[pf->lan_veb]->seid = seid;
9046 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
9047 pf->veb[pf->lan_veb]->pf = pf;
9048 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
9049 break;
9050 case I40E_SWITCH_ELEMENT_TYPE_VSI:
9051 if (num_reported != 1)
9052 break;
9053 /* This is immediately after a reset so we can assume this is
9054 * the PF's VSI
9055 */
9056 pf->mac_seid = uplink_seid;
9057 pf->pf_seid = downlink_seid;
9058 pf->main_vsi_seid = seid;
9059 if (printconfig)
9060 dev_info(&pf->pdev->dev,
9061 "pf_seid=%d main_vsi_seid=%d\n",
9062 pf->pf_seid, pf->main_vsi_seid);
9063 break;
9064 case I40E_SWITCH_ELEMENT_TYPE_PF:
9065 case I40E_SWITCH_ELEMENT_TYPE_VF:
9066 case I40E_SWITCH_ELEMENT_TYPE_EMP:
9067 case I40E_SWITCH_ELEMENT_TYPE_BMC:
9068 case I40E_SWITCH_ELEMENT_TYPE_PE:
9069 case I40E_SWITCH_ELEMENT_TYPE_PA:
9070 /* ignore these for now */
9071 break;
9072 default:
9073 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
9074 element_type, seid);
9075 break;
9076 }
9077}
9078
9079/**
9080 * i40e_fetch_switch_configuration - Get switch config from firmware
9081 * @pf: board private structure
9082 * @printconfig: should we print the contents
9083 *
9084 * Get the current switch configuration from the device and
9085 * extract a few useful SEID values.
9086 **/
9087int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
9088{
9089 struct i40e_aqc_get_switch_config_resp *sw_config;
9090 u16 next_seid = 0;
9091 int ret = 0;
9092 u8 *aq_buf;
9093 int i;
9094
9095 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
9096 if (!aq_buf)
9097 return -ENOMEM;
9098
9099 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
9100 do {
9101 u16 num_reported, num_total;
9102
9103 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
9104 I40E_AQ_LARGE_BUF,
9105 &next_seid, NULL);
9106 if (ret) {
9107 dev_info(&pf->pdev->dev,
9108 "get switch config failed %d aq_err=%x\n",
9109 ret, pf->hw.aq.asq_last_status);
9110 kfree(aq_buf);
9111 return -ENOENT;
9112 }
9113
9114 num_reported = le16_to_cpu(sw_config->header.num_reported);
9115 num_total = le16_to_cpu(sw_config->header.num_total);
9116
9117 if (printconfig)
9118 dev_info(&pf->pdev->dev,
9119 "header: %d reported %d total\n",
9120 num_reported, num_total);
9121
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009122 for (i = 0; i < num_reported; i++) {
9123 struct i40e_aqc_switch_config_element_resp *ele =
9124 &sw_config->element[i];
9125
9126 i40e_setup_pf_switch_element(pf, ele, num_reported,
9127 printconfig);
9128 }
9129 } while (next_seid != 0);
9130
9131 kfree(aq_buf);
9132 return ret;
9133}
9134
9135/**
9136 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
9137 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009138 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009139 *
9140 * Returns 0 on success, negative value on failure
9141 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009142static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009143{
9144 int ret;
9145
9146 /* find out what's out there already */
9147 ret = i40e_fetch_switch_configuration(pf, false);
9148 if (ret) {
9149 dev_info(&pf->pdev->dev,
9150 "couldn't fetch switch config, err %d, aq_err %d\n",
9151 ret, pf->hw.aq.asq_last_status);
9152 return ret;
9153 }
9154 i40e_pf_reset_stats(pf);
9155
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009156 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009157 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009158 struct i40e_vsi *vsi = NULL;
9159 u16 uplink_seid;
9160
9161 /* Set up the PF VSI associated with the PF's main VSI
9162 * that is already in the HW switch
9163 */
9164 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
9165 uplink_seid = pf->veb[pf->lan_veb]->seid;
9166 else
9167 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009168 if (pf->lan_vsi == I40E_NO_VSI)
9169 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
9170 else if (reinit)
9171 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009172 if (!vsi) {
9173 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
9174 i40e_fdir_teardown(pf);
9175 return -EAGAIN;
9176 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009177 } else {
9178 /* force a reset of TC and queue layout configurations */
9179 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9180 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9181 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9182 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
9183 }
9184 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
9185
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009186 i40e_fdir_sb_setup(pf);
9187
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009188 /* Setup static PF queue filter control settings */
9189 ret = i40e_setup_pf_filter_control(pf);
9190 if (ret) {
9191 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
9192 ret);
9193 /* Failure here should not stop continuing other steps */
9194 }
9195
9196 /* enable RSS in the HW, even for only one queue, as the stack can use
9197 * the hash
9198 */
9199 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
9200 i40e_config_rss(pf);
9201
9202 /* fill in link information and enable LSE reporting */
Catherine Sullivan21af70f2015-01-24 09:58:41 +00009203 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009204 i40e_link_event(pf);
9205
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009206 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009207 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
9208 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009209
Mitch Williamsa34a6712014-09-13 07:40:46 +00009210 /* fill in link information and enable LSE reporting */
Catherine Sullivan21af70f2015-01-24 09:58:41 +00009211 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
Mitch Williamsa34a6712014-09-13 07:40:46 +00009212 i40e_link_event(pf);
9213
9214 /* Initialize user-specific link properties */
9215 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
9216 I40E_AQ_AN_COMPLETED) ? true : false);
9217
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009218 i40e_ptp_init(pf);
9219
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009220 return ret;
9221}
9222
9223/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009224 * i40e_determine_queue_usage - Work out queue distribution
9225 * @pf: board private structure
9226 **/
9227static void i40e_determine_queue_usage(struct i40e_pf *pf)
9228{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009229 int queues_left;
9230
9231 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07009232#ifdef I40E_FCOE
9233 pf->num_fcoe_qps = 0;
9234#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009235
9236 /* Find the max queues to be put into basic use. We'll always be
9237 * using TC0, whether or not DCB is running, and TC0 will get the
9238 * big RSS set.
9239 */
9240 queues_left = pf->hw.func_caps.num_tx_qp;
9241
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009242 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +00009243 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009244 /* one qp for PF, no queues for anything else */
9245 queues_left = 0;
9246 pf->rss_size = pf->num_lan_qps = 1;
9247
9248 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009249 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07009250#ifdef I40E_FCOE
9251 I40E_FLAG_FCOE_ENABLED |
9252#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009253 I40E_FLAG_FD_SB_ENABLED |
9254 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009255 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009256 I40E_FLAG_SRIOV_ENABLED |
9257 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +00009258 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
9259 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +00009260 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009261 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +00009262 /* one qp for PF */
9263 pf->rss_size = pf->num_lan_qps = 1;
9264 queues_left -= pf->num_lan_qps;
9265
9266 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07009267#ifdef I40E_FCOE
9268 I40E_FLAG_FCOE_ENABLED |
9269#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +00009270 I40E_FLAG_FD_SB_ENABLED |
9271 I40E_FLAG_FD_ATR_ENABLED |
9272 I40E_FLAG_DCB_ENABLED |
9273 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009274 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009275 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009276 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009277 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009278 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009279 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
9280 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00009281 pf->num_lan_qps = max_t(int, pf->rss_size_max,
9282 num_online_cpus());
9283 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
9284 pf->hw.func_caps.num_tx_qp);
9285
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009286 queues_left -= pf->num_lan_qps;
9287 }
9288
Vasu Dev38e00432014-08-01 13:27:03 -07009289#ifdef I40E_FCOE
9290 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
9291 if (I40E_DEFAULT_FCOE <= queues_left) {
9292 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
9293 } else if (I40E_MINIMUM_FCOE <= queues_left) {
9294 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
9295 } else {
9296 pf->num_fcoe_qps = 0;
9297 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
9298 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
9299 }
9300
9301 queues_left -= pf->num_fcoe_qps;
9302 }
9303
9304#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009305 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9306 if (queues_left > 1) {
9307 queues_left -= 1; /* save 1 queue for FD */
9308 } else {
9309 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
9310 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
9311 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009312 }
9313
9314 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
9315 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009316 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
9317 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009318 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
9319 }
9320
9321 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
9322 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
9323 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
9324 (queues_left / pf->num_vmdq_qps));
9325 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
9326 }
9327
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009328 pf->queues_left = queues_left;
Vasu Dev38e00432014-08-01 13:27:03 -07009329#ifdef I40E_FCOE
9330 dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
9331#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009332}
9333
9334/**
9335 * i40e_setup_pf_filter_control - Setup PF static filter control
9336 * @pf: PF to be setup
9337 *
9338 * i40e_setup_pf_filter_control sets up a pf's initial filter control
9339 * settings. If PE/FCoE are enabled then it will also set the per PF
9340 * based filter sizes required for them. It also enables Flow director,
9341 * ethertype and macvlan type filter settings for the pf.
9342 *
9343 * Returns 0 on success, negative on failure
9344 **/
9345static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
9346{
9347 struct i40e_filter_control_settings *settings = &pf->filter_settings;
9348
9349 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
9350
9351 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08009352 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009353 settings->enable_fdir = true;
9354
9355 /* Ethtype and MACVLAN filters enabled for PF */
9356 settings->enable_ethtype = true;
9357 settings->enable_macvlan = true;
9358
9359 if (i40e_set_filter_control(&pf->hw, settings))
9360 return -ENOENT;
9361
9362 return 0;
9363}
9364
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009365#define INFO_STRING_LEN 255
9366static void i40e_print_features(struct i40e_pf *pf)
9367{
9368 struct i40e_hw *hw = &pf->hw;
9369 char *buf, *string;
9370
9371 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
9372 if (!string) {
9373 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
9374 return;
9375 }
9376
9377 buf = string;
9378
9379 buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id);
9380#ifdef CONFIG_PCI_IOV
9381 buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs);
9382#endif
Mitch Williamsaba237d2015-02-06 08:52:17 +00009383 buf += sprintf(buf, "VSIs: %d QP: %d RX: %s ",
9384 pf->hw.func_caps.num_vsis,
9385 pf->vsi[pf->lan_vsi]->num_queue_pairs,
9386 pf->flags & I40E_FLAG_RX_PS_ENABLED ? "PS" : "1BUF");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009387
9388 if (pf->flags & I40E_FLAG_RSS_ENABLED)
9389 buf += sprintf(buf, "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009390 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009391 buf += sprintf(buf, "FD_ATR ");
9392 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9393 buf += sprintf(buf, "FD_SB ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009394 buf += sprintf(buf, "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +00009395 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009396 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009397 buf += sprintf(buf, "DCB ");
9398 if (pf->flags & I40E_FLAG_PTP)
9399 buf += sprintf(buf, "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -07009400#ifdef I40E_FCOE
9401 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
9402 buf += sprintf(buf, "FCOE ");
9403#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009404
9405 BUG_ON(buf > (string + INFO_STRING_LEN));
9406 dev_info(&pf->pdev->dev, "%s\n", string);
9407 kfree(string);
9408}
9409
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009410/**
9411 * i40e_probe - Device initialization routine
9412 * @pdev: PCI device information struct
9413 * @ent: entry in i40e_pci_tbl
9414 *
9415 * i40e_probe initializes a pf identified by a pci_dev structure.
9416 * The OS initialization, configuring of the pf private structure,
9417 * and a hardware reset occur.
9418 *
9419 * Returns 0 on success, negative on failure
9420 **/
9421static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
9422{
Catherine Sullivane8278452015-02-06 08:52:08 +00009423 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009424 struct i40e_pf *pf;
9425 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009426 static u16 pfs_found;
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009427 u16 link_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009428 int err = 0;
9429 u32 len;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009430 u32 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009431
9432 err = pci_enable_device_mem(pdev);
9433 if (err)
9434 return err;
9435
9436 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +00009437 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +00009438 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +00009439 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
9440 if (err) {
9441 dev_err(&pdev->dev,
9442 "DMA configuration failed: 0x%x\n", err);
9443 goto err_dma;
9444 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009445 }
9446
9447 /* set up pci connections */
9448 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
9449 IORESOURCE_MEM), i40e_driver_name);
9450 if (err) {
9451 dev_info(&pdev->dev,
9452 "pci_request_selected_regions failed %d\n", err);
9453 goto err_pci_reg;
9454 }
9455
9456 pci_enable_pcie_error_reporting(pdev);
9457 pci_set_master(pdev);
9458
9459 /* Now that we have a PCI connection, we need to do the
9460 * low level device setup. This is primarily setting up
9461 * the Admin Queue structures and then querying for the
9462 * device's current profile information.
9463 */
9464 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
9465 if (!pf) {
9466 err = -ENOMEM;
9467 goto err_pf_alloc;
9468 }
9469 pf->next_vsi = 0;
9470 pf->pdev = pdev;
9471 set_bit(__I40E_DOWN, &pf->state);
9472
9473 hw = &pf->hw;
9474 hw->back = pf;
9475 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
9476 pci_resource_len(pdev, 0));
9477 if (!hw->hw_addr) {
9478 err = -EIO;
9479 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
9480 (unsigned int)pci_resource_start(pdev, 0),
9481 (unsigned int)pci_resource_len(pdev, 0), err);
9482 goto err_ioremap;
9483 }
9484 hw->vendor_id = pdev->vendor;
9485 hw->device_id = pdev->device;
9486 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
9487 hw->subsystem_vendor_id = pdev->subsystem_vendor;
9488 hw->subsystem_device_id = pdev->subsystem_device;
9489 hw->bus.device = PCI_SLOT(pdev->devfn);
9490 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009491 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009492
Shannon Nelson5b5faa42014-10-17 03:14:51 +00009493 if (debug != -1) {
9494 pf->msg_enable = pf->hw.debug_mask;
9495 pf->msg_enable = debug;
9496 }
9497
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00009498 /* do a special CORER for clearing PXE mode once at init */
9499 if (hw->revision_id == 0 &&
9500 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
9501 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
9502 i40e_flush(hw);
9503 msleep(200);
9504 pf->corer_count++;
9505
9506 i40e_clear_pxe_mode(hw);
9507 }
9508
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009509 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +00009510 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009511 err = i40e_pf_reset(hw);
9512 if (err) {
9513 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
9514 goto err_pf_reset;
9515 }
9516 pf->pfr_count++;
9517
9518 hw->aq.num_arq_entries = I40E_AQ_LEN;
9519 hw->aq.num_asq_entries = I40E_AQ_LEN;
9520 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9521 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
9522 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009523
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00009524 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00009525 "%s-%s:misc",
9526 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009527
9528 err = i40e_init_shared_code(hw);
9529 if (err) {
9530 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
9531 goto err_pf_reset;
9532 }
9533
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +00009534 /* set up a default setting for link flow control */
9535 pf->hw.fc.requested_mode = I40E_FC_NONE;
9536
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009537 err = i40e_init_adminq(hw);
9538 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
9539 if (err) {
9540 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009541 "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 +00009542 goto err_pf_reset;
9543 }
9544
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009545 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
9546 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +00009547 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009548 "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");
9549 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
9550 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +00009551 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +00009552 "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 +00009553
9554
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009555 i40e_verify_eeprom(pf);
9556
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +00009557 /* Rev 0 hardware was never productized */
9558 if (hw->revision_id < 1)
9559 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");
9560
Shannon Nelson6ff4ef82013-12-21 05:44:49 +00009561 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009562 err = i40e_get_capabilities(pf);
9563 if (err)
9564 goto err_adminq_setup;
9565
9566 err = i40e_sw_init(pf);
9567 if (err) {
9568 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
9569 goto err_sw_init;
9570 }
9571
9572 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
9573 hw->func_caps.num_rx_qp,
9574 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
9575 if (err) {
9576 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
9577 goto err_init_lan_hmc;
9578 }
9579
9580 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
9581 if (err) {
9582 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
9583 err = -ENOENT;
9584 goto err_configure_lan_hmc;
9585 }
9586
Neerav Parikhb686ece2014-12-14 01:55:11 +00009587 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
9588 * Ignore error return codes because if it was already disabled via
9589 * hardware settings this will fail
9590 */
9591 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
9592 (pf->hw.aq.fw_maj_ver < 4)) {
9593 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
9594 i40e_aq_stop_lldp(hw, true, NULL);
9595 }
9596
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009597 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +00009598 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009599 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
9600 err = -EIO;
9601 goto err_mac_addr;
9602 }
9603 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +00009604 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009605 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
9606 if (is_valid_ether_addr(hw->mac.port_addr))
9607 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -07009608#ifdef I40E_FCOE
9609 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
9610 if (err)
9611 dev_info(&pdev->dev,
9612 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
9613 if (!is_valid_ether_addr(hw->mac.san_addr)) {
9614 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
9615 hw->mac.san_addr);
9616 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
9617 }
9618 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
9619#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009620
9621 pci_set_drvdata(pdev, pf);
9622 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009623#ifdef CONFIG_I40E_DCB
9624 err = i40e_init_pf_dcb(pf);
9625 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00009626 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +00009627 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +00009628 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009629 }
9630#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009631
9632 /* set up periodic task facility */
9633 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
9634 pf->service_timer_period = HZ;
9635
9636 INIT_WORK(&pf->service_task, i40e_service_task);
9637 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
9638 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
9639 pf->link_check_timeout = jiffies;
9640
Shannon Nelson8e2773a2013-11-28 06:39:22 +00009641 /* WoL defaults to disabled */
9642 pf->wol_en = false;
9643 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
9644
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009645 /* set up the main switch operations */
9646 i40e_determine_queue_usage(pf);
9647 i40e_init_interrupt_scheme(pf);
9648
Mitch Williams505682c2014-05-20 08:01:37 +00009649 /* The number of VSIs reported by the FW is the minimum guaranteed
9650 * to us; HW supports far more and we share the remaining pool with
9651 * the other PFs. We allocate space for more than the guarantee with
9652 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009653 */
Mitch Williams505682c2014-05-20 08:01:37 +00009654 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
9655 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
9656 else
9657 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
9658
9659 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
9660 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009661 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00009662 if (!pf->vsi) {
9663 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009664 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00009665 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009666
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009667 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009668 if (err) {
9669 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
9670 goto err_vsis;
9671 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009672 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +00009673 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00009674 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
9675 i40e_vsi_open(pf->vsi[i]);
9676 break;
9677 }
9678 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009679
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00009680 /* driver is only interested in link up/down and module qualification
9681 * reports from firmware
9682 */
9683 err = i40e_aq_set_phy_int_mask(&pf->hw,
9684 I40E_AQ_EVENT_LINK_UPDOWN |
9685 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
9686 if (err)
9687 dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err);
9688
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00009689 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
9690 (pf->hw.aq.fw_maj_ver < 4)) {
9691 msleep(75);
9692 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
9693 if (err)
9694 dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n",
9695 pf->hw.aq.asq_last_status);
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00009696 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009697 /* The main driver is (mostly) up and happy. We need to set this state
9698 * before setting up the misc vector or we get a race and the vector
9699 * ends up disabled forever.
9700 */
9701 clear_bit(__I40E_DOWN, &pf->state);
9702
9703 /* In case of MSIX we are going to setup the misc vector right here
9704 * to handle admin queue events etc. In case of legacy and MSI
9705 * the misc functionality and queue processing is combined in
9706 * the same vector and that gets setup at open.
9707 */
9708 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9709 err = i40e_setup_misc_vector(pf);
9710 if (err) {
9711 dev_info(&pdev->dev,
9712 "setup of misc vector failed: %d\n", err);
9713 goto err_vsis;
9714 }
9715 }
9716
Greg Rosedf805f62014-04-04 04:43:16 +00009717#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009718 /* prep for VF support */
9719 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +00009720 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
9721 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009722 u32 val;
9723
9724 /* disable link interrupts for VFs */
9725 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
9726 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
9727 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
9728 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -08009729
9730 if (pci_num_vf(pdev)) {
9731 dev_info(&pdev->dev,
9732 "Active VFs found, allocating resources.\n");
9733 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
9734 if (err)
9735 dev_info(&pdev->dev,
9736 "Error %d allocating resources for existing VFs\n",
9737 err);
9738 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009739 }
Greg Rosedf805f62014-04-04 04:43:16 +00009740#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009741
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +00009742 pfs_found++;
9743
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009744 i40e_dbg_pf_init(pf);
9745
9746 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00009747 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009748
9749 /* since everything's happy, start the service_task timer */
9750 mod_timer(&pf->service_timer,
9751 round_jiffies(jiffies + pf->service_timer_period));
9752
Vasu Dev38e00432014-08-01 13:27:03 -07009753#ifdef I40E_FCOE
9754 /* create FCoE interface */
9755 i40e_fcoe_vsi_setup(pf);
9756
9757#endif
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009758 /* Get the negotiated link width and speed from PCI config space */
9759 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status);
9760
9761 i40e_set_pci_config_data(hw, link_status);
9762
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00009763 dev_info(&pdev->dev, "PCI-Express: %s %s\n",
Catherine Sullivand4dfb812013-11-28 06:39:21 +00009764 (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" :
9765 hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" :
9766 hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" :
9767 "Unknown"),
9768 (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" :
9769 hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" :
9770 hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" :
9771 hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" :
9772 "Unknown"));
9773
9774 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
9775 hw->bus.speed < i40e_bus_speed_8000) {
9776 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
9777 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
9778 }
9779
Catherine Sullivane8278452015-02-06 08:52:08 +00009780 /* get the requested speeds from the fw */
9781 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
9782 if (err)
9783 dev_info(&pf->pdev->dev, "get phy abilities failed, aq_err %d, advertised speed settings may not be correct\n",
9784 err);
9785 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
9786
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +00009787 /* print a string summarizing features */
9788 i40e_print_features(pf);
9789
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009790 return 0;
9791
9792 /* Unwind what we've done if something failed in the setup */
9793err_vsis:
9794 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009795 i40e_clear_interrupt_scheme(pf);
9796 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +00009797err_switch_setup:
9798 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009799 del_timer_sync(&pf->service_timer);
9800err_mac_addr:
9801err_configure_lan_hmc:
9802 (void)i40e_shutdown_lan_hmc(hw);
9803err_init_lan_hmc:
9804 kfree(pf->qp_pile);
9805 kfree(pf->irq_pile);
9806err_sw_init:
9807err_adminq_setup:
9808 (void)i40e_shutdown_adminq(hw);
9809err_pf_reset:
9810 iounmap(hw->hw_addr);
9811err_ioremap:
9812 kfree(pf);
9813err_pf_alloc:
9814 pci_disable_pcie_error_reporting(pdev);
9815 pci_release_selected_regions(pdev,
9816 pci_select_bars(pdev, IORESOURCE_MEM));
9817err_pci_reg:
9818err_dma:
9819 pci_disable_device(pdev);
9820 return err;
9821}
9822
9823/**
9824 * i40e_remove - Device removal routine
9825 * @pdev: PCI device information struct
9826 *
9827 * i40e_remove is called by the PCI subsystem to alert the driver
9828 * that is should release a PCI device. This could be caused by a
9829 * Hot-Plug event, or because the driver is going to be removed from
9830 * memory.
9831 **/
9832static void i40e_remove(struct pci_dev *pdev)
9833{
9834 struct i40e_pf *pf = pci_get_drvdata(pdev);
9835 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009836 int i;
9837
9838 i40e_dbg_pf_exit(pf);
9839
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009840 i40e_ptp_stop(pf);
9841
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009842 /* no more scheduling of any task */
9843 set_bit(__I40E_DOWN, &pf->state);
9844 del_timer_sync(&pf->service_timer);
9845 cancel_work_sync(&pf->service_task);
9846
Mitch Williamseb2d80b2014-02-13 03:48:48 -08009847 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
9848 i40e_free_vfs(pf);
9849 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
9850 }
9851
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009852 i40e_fdir_teardown(pf);
9853
9854 /* If there is a switch structure or any orphans, remove them.
9855 * This will leave only the PF's VSI remaining.
9856 */
9857 for (i = 0; i < I40E_MAX_VEB; i++) {
9858 if (!pf->veb[i])
9859 continue;
9860
9861 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
9862 pf->veb[i]->uplink_seid == 0)
9863 i40e_switch_branch_release(pf->veb[i]);
9864 }
9865
9866 /* Now we can shutdown the PF's VSI, just before we kill
9867 * adminq and hmc.
9868 */
9869 if (pf->vsi[pf->lan_vsi])
9870 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
9871
9872 i40e_stop_misc_vector(pf);
9873 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
9874 synchronize_irq(pf->msix_entries[0].vector);
9875 free_irq(pf->msix_entries[0].vector, pf);
9876 }
9877
9878 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00009879 if (pf->hw.hmc.hmc_obj) {
9880 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
9881 if (ret_code)
9882 dev_warn(&pdev->dev,
9883 "Failed to destroy the HMC resources: %d\n",
9884 ret_code);
9885 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009886
9887 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009888 ret_code = i40e_shutdown_adminq(&pf->hw);
9889 if (ret_code)
9890 dev_warn(&pdev->dev,
9891 "Failed to destroy the Admin Queue resources: %d\n",
9892 ret_code);
9893
9894 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
9895 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00009896 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009897 if (pf->vsi[i]) {
9898 i40e_vsi_clear_rings(pf->vsi[i]);
9899 i40e_vsi_clear(pf->vsi[i]);
9900 pf->vsi[i] = NULL;
9901 }
9902 }
9903
9904 for (i = 0; i < I40E_MAX_VEB; i++) {
9905 kfree(pf->veb[i]);
9906 pf->veb[i] = NULL;
9907 }
9908
9909 kfree(pf->qp_pile);
9910 kfree(pf->irq_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009911 kfree(pf->vsi);
9912
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009913 iounmap(pf->hw.hw_addr);
9914 kfree(pf);
9915 pci_release_selected_regions(pdev,
9916 pci_select_bars(pdev, IORESOURCE_MEM));
9917
9918 pci_disable_pcie_error_reporting(pdev);
9919 pci_disable_device(pdev);
9920}
9921
9922/**
9923 * i40e_pci_error_detected - warning that something funky happened in PCI land
9924 * @pdev: PCI device information struct
9925 *
9926 * Called to warn that something happened and the error handling steps
9927 * are in progress. Allows the driver to quiesce things, be ready for
9928 * remediation.
9929 **/
9930static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
9931 enum pci_channel_state error)
9932{
9933 struct i40e_pf *pf = pci_get_drvdata(pdev);
9934
9935 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
9936
9937 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +00009938 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
9939 rtnl_lock();
9940 i40e_prep_for_reset(pf);
9941 rtnl_unlock();
9942 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009943
9944 /* Request a slot reset */
9945 return PCI_ERS_RESULT_NEED_RESET;
9946}
9947
9948/**
9949 * i40e_pci_error_slot_reset - a PCI slot reset just happened
9950 * @pdev: PCI device information struct
9951 *
9952 * Called to find if the driver can work with the device now that
9953 * the pci slot has been reset. If a basic connection seems good
9954 * (registers are readable and have sane content) then return a
9955 * happy little PCI_ERS_RESULT_xxx.
9956 **/
9957static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
9958{
9959 struct i40e_pf *pf = pci_get_drvdata(pdev);
9960 pci_ers_result_t result;
9961 int err;
9962 u32 reg;
9963
9964 dev_info(&pdev->dev, "%s\n", __func__);
9965 if (pci_enable_device_mem(pdev)) {
9966 dev_info(&pdev->dev,
9967 "Cannot re-enable PCI device after reset.\n");
9968 result = PCI_ERS_RESULT_DISCONNECT;
9969 } else {
9970 pci_set_master(pdev);
9971 pci_restore_state(pdev);
9972 pci_save_state(pdev);
9973 pci_wake_from_d3(pdev, false);
9974
9975 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
9976 if (reg == 0)
9977 result = PCI_ERS_RESULT_RECOVERED;
9978 else
9979 result = PCI_ERS_RESULT_DISCONNECT;
9980 }
9981
9982 err = pci_cleanup_aer_uncorrect_error_status(pdev);
9983 if (err) {
9984 dev_info(&pdev->dev,
9985 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
9986 err);
9987 /* non-fatal, continue */
9988 }
9989
9990 return result;
9991}
9992
9993/**
9994 * i40e_pci_error_resume - restart operations after PCI error recovery
9995 * @pdev: PCI device information struct
9996 *
9997 * Called to allow the driver to bring things back up after PCI error
9998 * and/or reset recovery has finished.
9999 **/
10000static void i40e_pci_error_resume(struct pci_dev *pdev)
10001{
10002 struct i40e_pf *pf = pci_get_drvdata(pdev);
10003
10004 dev_info(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010005 if (test_bit(__I40E_SUSPENDED, &pf->state))
10006 return;
10007
10008 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010009 i40e_handle_reset_warning(pf);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010010 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010011}
10012
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010013/**
10014 * i40e_shutdown - PCI callback for shutting down
10015 * @pdev: PCI device information struct
10016 **/
10017static void i40e_shutdown(struct pci_dev *pdev)
10018{
10019 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010020 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010021
10022 set_bit(__I40E_SUSPENDED, &pf->state);
10023 set_bit(__I40E_DOWN, &pf->state);
10024 rtnl_lock();
10025 i40e_prep_for_reset(pf);
10026 rtnl_unlock();
10027
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010028 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
10029 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
10030
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010031 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010032 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010033 pci_set_power_state(pdev, PCI_D3hot);
10034 }
10035}
10036
10037#ifdef CONFIG_PM
10038/**
10039 * i40e_suspend - PCI callback for moving to D3
10040 * @pdev: PCI device information struct
10041 **/
10042static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
10043{
10044 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010045 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010046
10047 set_bit(__I40E_SUSPENDED, &pf->state);
10048 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams88086e5d2015-01-09 11:18:19 +000010049 del_timer_sync(&pf->service_timer);
10050 cancel_work_sync(&pf->service_task);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010051 rtnl_lock();
10052 i40e_prep_for_reset(pf);
10053 rtnl_unlock();
10054
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010055 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
10056 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
10057
10058 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010059 pci_set_power_state(pdev, PCI_D3hot);
10060
10061 return 0;
10062}
10063
10064/**
10065 * i40e_resume - PCI callback for waking up from D3
10066 * @pdev: PCI device information struct
10067 **/
10068static int i40e_resume(struct pci_dev *pdev)
10069{
10070 struct i40e_pf *pf = pci_get_drvdata(pdev);
10071 u32 err;
10072
10073 pci_set_power_state(pdev, PCI_D0);
10074 pci_restore_state(pdev);
10075 /* pci_restore_state() clears dev->state_saves, so
10076 * call pci_save_state() again to restore it.
10077 */
10078 pci_save_state(pdev);
10079
10080 err = pci_enable_device_mem(pdev);
10081 if (err) {
10082 dev_err(&pdev->dev,
10083 "%s: Cannot enable PCI device from suspend\n",
10084 __func__);
10085 return err;
10086 }
10087 pci_set_master(pdev);
10088
10089 /* no wakeup events while running */
10090 pci_wake_from_d3(pdev, false);
10091
10092 /* handling the reset will rebuild the device state */
10093 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
10094 clear_bit(__I40E_DOWN, &pf->state);
10095 rtnl_lock();
10096 i40e_reset_and_rebuild(pf, false);
10097 rtnl_unlock();
10098 }
10099
10100 return 0;
10101}
10102
10103#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010104static const struct pci_error_handlers i40e_err_handler = {
10105 .error_detected = i40e_pci_error_detected,
10106 .slot_reset = i40e_pci_error_slot_reset,
10107 .resume = i40e_pci_error_resume,
10108};
10109
10110static struct pci_driver i40e_driver = {
10111 .name = i40e_driver_name,
10112 .id_table = i40e_pci_tbl,
10113 .probe = i40e_probe,
10114 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010115#ifdef CONFIG_PM
10116 .suspend = i40e_suspend,
10117 .resume = i40e_resume,
10118#endif
10119 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010120 .err_handler = &i40e_err_handler,
10121 .sriov_configure = i40e_pci_sriov_configure,
10122};
10123
10124/**
10125 * i40e_init_module - Driver registration routine
10126 *
10127 * i40e_init_module is the first routine called when the driver is
10128 * loaded. All it does is register with the PCI subsystem.
10129 **/
10130static int __init i40e_init_module(void)
10131{
10132 pr_info("%s: %s - version %s\n", i40e_driver_name,
10133 i40e_driver_string, i40e_driver_version_str);
10134 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000010135
10136#if IS_ENABLED(CONFIG_CONFIGFS_FS)
10137 i40e_configfs_init();
10138#endif /* CONFIG_CONFIGFS_FS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010139 i40e_dbg_init();
10140 return pci_register_driver(&i40e_driver);
10141}
10142module_init(i40e_init_module);
10143
10144/**
10145 * i40e_exit_module - Driver exit cleanup routine
10146 *
10147 * i40e_exit_module is called just before the driver is removed
10148 * from memory.
10149 **/
10150static void __exit i40e_exit_module(void)
10151{
10152 pci_unregister_driver(&i40e_driver);
10153 i40e_dbg_exit();
Greg Rose96664482015-02-06 08:52:13 +000010154#if IS_ENABLED(CONFIG_CONFIGFS_FS)
10155 i40e_configfs_exit();
10156#endif /* CONFIG_CONFIGFS_FS */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010157}
10158module_exit(i40e_exit_module);