blob: d60673ebf139ff4772fda80164517290a32f859b [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
4 * Copyright(c) 2013 Intel Corporation.
5 *
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 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * The full GNU General Public License is included in this distribution in
20 * the file called "COPYING".
21 *
22 * Contact Information:
23 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *
26 ******************************************************************************/
27
28/* Local includes */
29#include "i40e.h"
30
31const char i40e_driver_name[] = "i40e";
32static const char i40e_driver_string[] =
33 "Intel(R) Ethernet Connection XL710 Network Driver";
34
35#define DRV_KERN "-k"
36
37#define DRV_VERSION_MAJOR 0
38#define DRV_VERSION_MINOR 3
Catherine Sullivan1de046b2013-09-28 07:13:23 +000039#define DRV_VERSION_BUILD 11
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000040#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
41 __stringify(DRV_VERSION_MINOR) "." \
42 __stringify(DRV_VERSION_BUILD) DRV_KERN
43const char i40e_driver_version_str[] = DRV_VERSION;
44static const char i40e_copyright[] = "Copyright (c) 2013 Intel Corporation.";
45
46/* a bit of forward declarations */
47static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
48static void i40e_handle_reset_warning(struct i40e_pf *pf);
49static int i40e_add_vsi(struct i40e_vsi *vsi);
50static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
51static int i40e_setup_pf_switch(struct i40e_pf *pf);
52static int i40e_setup_misc_vector(struct i40e_pf *pf);
53static void i40e_determine_queue_usage(struct i40e_pf *pf);
54static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
55
56/* i40e_pci_tbl - PCI Device ID Table
57 *
58 * Last entry must be all 0s
59 *
60 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
61 * Class, Class Mask, private data (not used) }
62 */
63static DEFINE_PCI_DEVICE_TABLE(i40e_pci_tbl) = {
64 {PCI_VDEVICE(INTEL, I40E_SFP_XL710_DEVICE_ID), 0},
65 {PCI_VDEVICE(INTEL, I40E_SFP_X710_DEVICE_ID), 0},
66 {PCI_VDEVICE(INTEL, I40E_QEMU_DEVICE_ID), 0},
67 {PCI_VDEVICE(INTEL, I40E_KX_A_DEVICE_ID), 0},
68 {PCI_VDEVICE(INTEL, I40E_KX_B_DEVICE_ID), 0},
69 {PCI_VDEVICE(INTEL, I40E_KX_C_DEVICE_ID), 0},
70 {PCI_VDEVICE(INTEL, I40E_KX_D_DEVICE_ID), 0},
71 {PCI_VDEVICE(INTEL, I40E_QSFP_A_DEVICE_ID), 0},
72 {PCI_VDEVICE(INTEL, I40E_QSFP_B_DEVICE_ID), 0},
73 {PCI_VDEVICE(INTEL, I40E_QSFP_C_DEVICE_ID), 0},
74 /* required last entry */
75 {0, }
76};
77MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
78
79#define I40E_MAX_VF_COUNT 128
80static int debug = -1;
81module_param(debug, int, 0);
82MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
83
84MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
85MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
86MODULE_LICENSE("GPL");
87MODULE_VERSION(DRV_VERSION);
88
89/**
90 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
91 * @hw: pointer to the HW structure
92 * @mem: ptr to mem struct to fill out
93 * @size: size of memory requested
94 * @alignment: what to align the allocation to
95 **/
96int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
97 u64 size, u32 alignment)
98{
99 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
100
101 mem->size = ALIGN(size, alignment);
102 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
103 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000104 if (!mem->va)
105 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000106
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000107 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000108}
109
110/**
111 * i40e_free_dma_mem_d - OS specific memory free for shared code
112 * @hw: pointer to the HW structure
113 * @mem: ptr to mem struct to free
114 **/
115int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
116{
117 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
118
119 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
120 mem->va = NULL;
121 mem->pa = 0;
122 mem->size = 0;
123
124 return 0;
125}
126
127/**
128 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
129 * @hw: pointer to the HW structure
130 * @mem: ptr to mem struct to fill out
131 * @size: size of memory requested
132 **/
133int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
134 u32 size)
135{
136 mem->size = size;
137 mem->va = kzalloc(size, GFP_KERNEL);
138
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000139 if (!mem->va)
140 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000141
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000142 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000143}
144
145/**
146 * i40e_free_virt_mem_d - OS specific memory free for shared code
147 * @hw: pointer to the HW structure
148 * @mem: ptr to mem struct to free
149 **/
150int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
151{
152 /* it's ok to kfree a NULL pointer */
153 kfree(mem->va);
154 mem->va = NULL;
155 mem->size = 0;
156
157 return 0;
158}
159
160/**
161 * i40e_get_lump - find a lump of free generic resource
162 * @pf: board private structure
163 * @pile: the pile of resource to search
164 * @needed: the number of items needed
165 * @id: an owner id to stick on the items assigned
166 *
167 * Returns the base item index of the lump, or negative for error
168 *
169 * The search_hint trick and lack of advanced fit-finding only work
170 * because we're highly likely to have all the same size lump requests.
171 * Linear search time and any fragmentation should be minimal.
172 **/
173static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
174 u16 needed, u16 id)
175{
176 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000177 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000178
179 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
180 dev_info(&pf->pdev->dev,
181 "param err: pile=%p needed=%d id=0x%04x\n",
182 pile, needed, id);
183 return -EINVAL;
184 }
185
186 /* start the linear search with an imperfect hint */
187 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000188 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000189 /* skip already allocated entries */
190 if (pile->list[i] & I40E_PILE_VALID_BIT) {
191 i++;
192 continue;
193 }
194
195 /* do we have enough in this lump? */
196 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
197 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
198 break;
199 }
200
201 if (j == needed) {
202 /* there was enough, so assign it to the requestor */
203 for (j = 0; j < needed; j++)
204 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
205 ret = i;
206 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000207 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000208 } else {
209 /* not enough, so skip over it and continue looking */
210 i += j;
211 }
212 }
213
214 return ret;
215}
216
217/**
218 * i40e_put_lump - return a lump of generic resource
219 * @pile: the pile of resource to search
220 * @index: the base item index
221 * @id: the owner id of the items assigned
222 *
223 * Returns the count of items in the lump
224 **/
225static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
226{
227 int valid_id = (id | I40E_PILE_VALID_BIT);
228 int count = 0;
229 int i;
230
231 if (!pile || index >= pile->num_entries)
232 return -EINVAL;
233
234 for (i = index;
235 i < pile->num_entries && pile->list[i] == valid_id;
236 i++) {
237 pile->list[i] = 0;
238 count++;
239 }
240
241 if (count && index < pile->search_hint)
242 pile->search_hint = index;
243
244 return count;
245}
246
247/**
248 * i40e_service_event_schedule - Schedule the service task to wake up
249 * @pf: board private structure
250 *
251 * If not already scheduled, this puts the task into the work queue
252 **/
253static void i40e_service_event_schedule(struct i40e_pf *pf)
254{
255 if (!test_bit(__I40E_DOWN, &pf->state) &&
256 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
257 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
258 schedule_work(&pf->service_task);
259}
260
261/**
262 * i40e_tx_timeout - Respond to a Tx Hang
263 * @netdev: network interface device structure
264 *
265 * If any port has noticed a Tx timeout, it is likely that the whole
266 * device is munged, not just the one netdev port, so go for the full
267 * reset.
268 **/
269static void i40e_tx_timeout(struct net_device *netdev)
270{
271 struct i40e_netdev_priv *np = netdev_priv(netdev);
272 struct i40e_vsi *vsi = np->vsi;
273 struct i40e_pf *pf = vsi->back;
274
275 pf->tx_timeout_count++;
276
277 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
278 pf->tx_timeout_recovery_level = 0;
279 pf->tx_timeout_last_recovery = jiffies;
280 netdev_info(netdev, "tx_timeout recovery level %d\n",
281 pf->tx_timeout_recovery_level);
282
283 switch (pf->tx_timeout_recovery_level) {
284 case 0:
285 /* disable and re-enable queues for the VSI */
286 if (in_interrupt()) {
287 set_bit(__I40E_REINIT_REQUESTED, &pf->state);
288 set_bit(__I40E_REINIT_REQUESTED, &vsi->state);
289 } else {
290 i40e_vsi_reinit_locked(vsi);
291 }
292 break;
293 case 1:
294 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
295 break;
296 case 2:
297 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
298 break;
299 case 3:
300 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
301 break;
302 default:
303 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
304 i40e_down(vsi);
305 break;
306 }
307 i40e_service_event_schedule(pf);
308 pf->tx_timeout_recovery_level++;
309}
310
311/**
312 * i40e_release_rx_desc - Store the new tail and head values
313 * @rx_ring: ring to bump
314 * @val: new head index
315 **/
316static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
317{
318 rx_ring->next_to_use = val;
319
320 /* Force memory writes to complete before letting h/w
321 * know there are new descriptors to fetch. (Only
322 * applicable for weak-ordered memory model archs,
323 * such as IA-64).
324 */
325 wmb();
326 writel(val, rx_ring->tail);
327}
328
329/**
330 * i40e_get_vsi_stats_struct - Get System Network Statistics
331 * @vsi: the VSI we care about
332 *
333 * Returns the address of the device statistics structure.
334 * The statistics are actually updated from the service task.
335 **/
336struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
337{
338 return &vsi->net_stats;
339}
340
341/**
342 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
343 * @netdev: network interface device structure
344 *
345 * Returns the address of the device statistics structure.
346 * The statistics are actually updated from the service task.
347 **/
348static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
349 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000350 struct rtnl_link_stats64 *stats)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000351{
352 struct i40e_netdev_priv *np = netdev_priv(netdev);
353 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000354 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
355 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000356
Alexander Duyck980e9b12013-09-28 06:01:03 +0000357 rcu_read_lock();
358 for (i = 0; i < vsi->num_queue_pairs; i++) {
359 struct i40e_ring *tx_ring, *rx_ring;
360 u64 bytes, packets;
361 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000362
Alexander Duyck980e9b12013-09-28 06:01:03 +0000363 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
364 if (!tx_ring)
365 continue;
366
367 do {
368 start = u64_stats_fetch_begin_bh(&tx_ring->syncp);
369 packets = tx_ring->stats.packets;
370 bytes = tx_ring->stats.bytes;
371 } while (u64_stats_fetch_retry_bh(&tx_ring->syncp, start));
372
373 stats->tx_packets += packets;
374 stats->tx_bytes += bytes;
375 rx_ring = &tx_ring[1];
376
377 do {
378 start = u64_stats_fetch_begin_bh(&rx_ring->syncp);
379 packets = rx_ring->stats.packets;
380 bytes = rx_ring->stats.bytes;
381 } while (u64_stats_fetch_retry_bh(&rx_ring->syncp, start));
382
383 stats->rx_packets += packets;
384 stats->rx_bytes += bytes;
385 }
386 rcu_read_unlock();
387
388 /* following stats updated by ixgbe_watchdog_task() */
389 stats->multicast = vsi_stats->multicast;
390 stats->tx_errors = vsi_stats->tx_errors;
391 stats->tx_dropped = vsi_stats->tx_dropped;
392 stats->rx_errors = vsi_stats->rx_errors;
393 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
394 stats->rx_length_errors = vsi_stats->rx_length_errors;
395
396 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000397}
398
399/**
400 * i40e_vsi_reset_stats - Resets all stats of the given vsi
401 * @vsi: the VSI to have its stats reset
402 **/
403void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
404{
405 struct rtnl_link_stats64 *ns;
406 int i;
407
408 if (!vsi)
409 return;
410
411 ns = i40e_get_vsi_stats_struct(vsi);
412 memset(ns, 0, sizeof(*ns));
413 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
414 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
415 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
416 if (vsi->rx_rings)
417 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000418 memset(&vsi->rx_rings[i]->stats, 0 ,
419 sizeof(vsi->rx_rings[i]->stats));
420 memset(&vsi->rx_rings[i]->rx_stats, 0 ,
421 sizeof(vsi->rx_rings[i]->rx_stats));
422 memset(&vsi->tx_rings[i]->stats, 0 ,
423 sizeof(vsi->tx_rings[i]->stats));
424 memset(&vsi->tx_rings[i]->tx_stats, 0,
425 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000426 }
427 vsi->stat_offsets_loaded = false;
428}
429
430/**
431 * i40e_pf_reset_stats - Reset all of the stats for the given pf
432 * @pf: the PF to be reset
433 **/
434void i40e_pf_reset_stats(struct i40e_pf *pf)
435{
436 memset(&pf->stats, 0, sizeof(pf->stats));
437 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
438 pf->stat_offsets_loaded = false;
439}
440
441/**
442 * i40e_stat_update48 - read and update a 48 bit stat from the chip
443 * @hw: ptr to the hardware info
444 * @hireg: the high 32 bit reg to read
445 * @loreg: the low 32 bit reg to read
446 * @offset_loaded: has the initial offset been loaded yet
447 * @offset: ptr to current offset value
448 * @stat: ptr to the stat
449 *
450 * Since the device stats are not reset at PFReset, they likely will not
451 * be zeroed when the driver starts. We'll save the first values read
452 * and use them as offsets to be subtracted from the raw values in order
453 * to report stats that count from zero. In the process, we also manage
454 * the potential roll-over.
455 **/
456static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
457 bool offset_loaded, u64 *offset, u64 *stat)
458{
459 u64 new_data;
460
461 if (hw->device_id == I40E_QEMU_DEVICE_ID) {
462 new_data = rd32(hw, loreg);
463 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
464 } else {
465 new_data = rd64(hw, loreg);
466 }
467 if (!offset_loaded)
468 *offset = new_data;
469 if (likely(new_data >= *offset))
470 *stat = new_data - *offset;
471 else
472 *stat = (new_data + ((u64)1 << 48)) - *offset;
473 *stat &= 0xFFFFFFFFFFFFULL;
474}
475
476/**
477 * i40e_stat_update32 - read and update a 32 bit stat from the chip
478 * @hw: ptr to the hardware info
479 * @reg: the hw 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 **/
484static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
485 bool offset_loaded, u64 *offset, u64 *stat)
486{
487 u32 new_data;
488
489 new_data = rd32(hw, reg);
490 if (!offset_loaded)
491 *offset = new_data;
492 if (likely(new_data >= *offset))
493 *stat = (u32)(new_data - *offset);
494 else
495 *stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
496}
497
498/**
499 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
500 * @vsi: the VSI to be updated
501 **/
502void i40e_update_eth_stats(struct i40e_vsi *vsi)
503{
504 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
505 struct i40e_pf *pf = vsi->back;
506 struct i40e_hw *hw = &pf->hw;
507 struct i40e_eth_stats *oes;
508 struct i40e_eth_stats *es; /* device's eth stats */
509
510 es = &vsi->eth_stats;
511 oes = &vsi->eth_stats_offsets;
512
513 /* Gather up the stats that the hw collects */
514 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
515 vsi->stat_offsets_loaded,
516 &oes->tx_errors, &es->tx_errors);
517 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
518 vsi->stat_offsets_loaded,
519 &oes->rx_discards, &es->rx_discards);
520
521 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
522 I40E_GLV_GORCL(stat_idx),
523 vsi->stat_offsets_loaded,
524 &oes->rx_bytes, &es->rx_bytes);
525 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
526 I40E_GLV_UPRCL(stat_idx),
527 vsi->stat_offsets_loaded,
528 &oes->rx_unicast, &es->rx_unicast);
529 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
530 I40E_GLV_MPRCL(stat_idx),
531 vsi->stat_offsets_loaded,
532 &oes->rx_multicast, &es->rx_multicast);
533 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
534 I40E_GLV_BPRCL(stat_idx),
535 vsi->stat_offsets_loaded,
536 &oes->rx_broadcast, &es->rx_broadcast);
537
538 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
539 I40E_GLV_GOTCL(stat_idx),
540 vsi->stat_offsets_loaded,
541 &oes->tx_bytes, &es->tx_bytes);
542 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
543 I40E_GLV_UPTCL(stat_idx),
544 vsi->stat_offsets_loaded,
545 &oes->tx_unicast, &es->tx_unicast);
546 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
547 I40E_GLV_MPTCL(stat_idx),
548 vsi->stat_offsets_loaded,
549 &oes->tx_multicast, &es->tx_multicast);
550 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
551 I40E_GLV_BPTCL(stat_idx),
552 vsi->stat_offsets_loaded,
553 &oes->tx_broadcast, &es->tx_broadcast);
554 vsi->stat_offsets_loaded = true;
555}
556
557/**
558 * i40e_update_veb_stats - Update Switch component statistics
559 * @veb: the VEB being updated
560 **/
561static void i40e_update_veb_stats(struct i40e_veb *veb)
562{
563 struct i40e_pf *pf = veb->pf;
564 struct i40e_hw *hw = &pf->hw;
565 struct i40e_eth_stats *oes;
566 struct i40e_eth_stats *es; /* device's eth stats */
567 int idx = 0;
568
569 idx = veb->stats_idx;
570 es = &veb->stats;
571 oes = &veb->stats_offsets;
572
573 /* Gather up the stats that the hw collects */
574 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
575 veb->stat_offsets_loaded,
576 &oes->tx_discards, &es->tx_discards);
577 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
578 veb->stat_offsets_loaded,
579 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
580
581 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
582 veb->stat_offsets_loaded,
583 &oes->rx_bytes, &es->rx_bytes);
584 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
585 veb->stat_offsets_loaded,
586 &oes->rx_unicast, &es->rx_unicast);
587 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
588 veb->stat_offsets_loaded,
589 &oes->rx_multicast, &es->rx_multicast);
590 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
591 veb->stat_offsets_loaded,
592 &oes->rx_broadcast, &es->rx_broadcast);
593
594 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
595 veb->stat_offsets_loaded,
596 &oes->tx_bytes, &es->tx_bytes);
597 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
598 veb->stat_offsets_loaded,
599 &oes->tx_unicast, &es->tx_unicast);
600 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
601 veb->stat_offsets_loaded,
602 &oes->tx_multicast, &es->tx_multicast);
603 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
604 veb->stat_offsets_loaded,
605 &oes->tx_broadcast, &es->tx_broadcast);
606 veb->stat_offsets_loaded = true;
607}
608
609/**
610 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
611 * @pf: the corresponding PF
612 *
613 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
614 **/
615static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
616{
617 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
618 struct i40e_hw_port_stats *nsd = &pf->stats;
619 struct i40e_hw *hw = &pf->hw;
620 u64 xoff = 0;
621 u16 i, v;
622
623 if ((hw->fc.current_mode != I40E_FC_FULL) &&
624 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
625 return;
626
627 xoff = nsd->link_xoff_rx;
628 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
629 pf->stat_offsets_loaded,
630 &osd->link_xoff_rx, &nsd->link_xoff_rx);
631
632 /* No new LFC xoff rx */
633 if (!(nsd->link_xoff_rx - xoff))
634 return;
635
636 /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */
637 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
638 struct i40e_vsi *vsi = pf->vsi[v];
639
640 if (!vsi)
641 continue;
642
643 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000644 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000645 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
646 }
647 }
648}
649
650/**
651 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
652 * @pf: the corresponding PF
653 *
654 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
655 **/
656static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
657{
658 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
659 struct i40e_hw_port_stats *nsd = &pf->stats;
660 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
661 struct i40e_dcbx_config *dcb_cfg;
662 struct i40e_hw *hw = &pf->hw;
663 u16 i, v;
664 u8 tc;
665
666 dcb_cfg = &hw->local_dcbx_config;
667
668 /* See if DCB enabled with PFC TC */
669 if (!(pf->flags & I40E_FLAG_DCB_ENABLED) ||
670 !(dcb_cfg->pfc.pfcenable)) {
671 i40e_update_link_xoff_rx(pf);
672 return;
673 }
674
675 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
676 u64 prio_xoff = nsd->priority_xoff_rx[i];
677 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
678 pf->stat_offsets_loaded,
679 &osd->priority_xoff_rx[i],
680 &nsd->priority_xoff_rx[i]);
681
682 /* No new PFC xoff rx */
683 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
684 continue;
685 /* Get the TC for given priority */
686 tc = dcb_cfg->etscfg.prioritytable[i];
687 xoff[tc] = true;
688 }
689
690 /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */
691 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
692 struct i40e_vsi *vsi = pf->vsi[v];
693
694 if (!vsi)
695 continue;
696
697 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000698 struct i40e_ring *ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000699
700 tc = ring->dcb_tc;
701 if (xoff[tc])
702 clear_bit(__I40E_HANG_CHECK_ARMED,
703 &ring->state);
704 }
705 }
706}
707
708/**
709 * i40e_update_stats - Update the board statistics counters.
710 * @vsi: the VSI to be updated
711 *
712 * There are a few instances where we store the same stat in a
713 * couple of different structs. This is partly because we have
714 * the netdev stats that need to be filled out, which is slightly
715 * different from the "eth_stats" defined by the chip and used in
716 * VF communications. We sort it all out here in a central place.
717 **/
718void i40e_update_stats(struct i40e_vsi *vsi)
719{
720 struct i40e_pf *pf = vsi->back;
721 struct i40e_hw *hw = &pf->hw;
722 struct rtnl_link_stats64 *ons;
723 struct rtnl_link_stats64 *ns; /* netdev stats */
724 struct i40e_eth_stats *oes;
725 struct i40e_eth_stats *es; /* device's eth stats */
726 u32 tx_restart, tx_busy;
727 u32 rx_page, rx_buf;
728 u64 rx_p, rx_b;
729 u64 tx_p, tx_b;
730 int i;
731 u16 q;
732
733 if (test_bit(__I40E_DOWN, &vsi->state) ||
734 test_bit(__I40E_CONFIG_BUSY, &pf->state))
735 return;
736
737 ns = i40e_get_vsi_stats_struct(vsi);
738 ons = &vsi->net_stats_offsets;
739 es = &vsi->eth_stats;
740 oes = &vsi->eth_stats_offsets;
741
742 /* Gather up the netdev and vsi stats that the driver collects
743 * on the fly during packet processing
744 */
745 rx_b = rx_p = 0;
746 tx_b = tx_p = 0;
747 tx_restart = tx_busy = 0;
748 rx_page = 0;
749 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000750 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000751 for (q = 0; q < vsi->num_queue_pairs; q++) {
752 struct i40e_ring *p;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000753 u64 bytes, packets;
754 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000755
Alexander Duyck980e9b12013-09-28 06:01:03 +0000756 /* locate Tx ring */
757 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000758
Alexander Duyck980e9b12013-09-28 06:01:03 +0000759 do {
760 start = u64_stats_fetch_begin_bh(&p->syncp);
761 packets = p->stats.packets;
762 bytes = p->stats.bytes;
763 } while (u64_stats_fetch_retry_bh(&p->syncp, start));
764 tx_b += bytes;
765 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000766 tx_restart += p->tx_stats.restart_queue;
767 tx_busy += p->tx_stats.tx_busy;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000768
769 /* Rx queue is part of the same block as Tx queue */
770 p = &p[1];
771 do {
772 start = u64_stats_fetch_begin_bh(&p->syncp);
773 packets = p->stats.packets;
774 bytes = p->stats.bytes;
775 } while (u64_stats_fetch_retry_bh(&p->syncp, start));
776 rx_b += bytes;
777 rx_p += packets;
778 rx_buf += p->rx_stats.alloc_rx_buff_failed;
779 rx_page += p->rx_stats.alloc_rx_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000780 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000781 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000782 vsi->tx_restart = tx_restart;
783 vsi->tx_busy = tx_busy;
784 vsi->rx_page_failed = rx_page;
785 vsi->rx_buf_failed = rx_buf;
786
787 ns->rx_packets = rx_p;
788 ns->rx_bytes = rx_b;
789 ns->tx_packets = tx_p;
790 ns->tx_bytes = tx_b;
791
792 i40e_update_eth_stats(vsi);
793 /* update netdev stats from eth stats */
794 ons->rx_errors = oes->rx_errors;
795 ns->rx_errors = es->rx_errors;
796 ons->tx_errors = oes->tx_errors;
797 ns->tx_errors = es->tx_errors;
798 ons->multicast = oes->rx_multicast;
799 ns->multicast = es->rx_multicast;
800 ons->tx_dropped = oes->tx_discards;
801 ns->tx_dropped = es->tx_discards;
802
803 /* Get the port data only if this is the main PF VSI */
804 if (vsi == pf->vsi[pf->lan_vsi]) {
805 struct i40e_hw_port_stats *nsd = &pf->stats;
806 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
807
808 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
809 I40E_GLPRT_GORCL(hw->port),
810 pf->stat_offsets_loaded,
811 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
812 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
813 I40E_GLPRT_GOTCL(hw->port),
814 pf->stat_offsets_loaded,
815 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
816 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
817 pf->stat_offsets_loaded,
818 &osd->eth.rx_discards,
819 &nsd->eth.rx_discards);
820 i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port),
821 pf->stat_offsets_loaded,
822 &osd->eth.tx_discards,
823 &nsd->eth.tx_discards);
824 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
825 I40E_GLPRT_MPRCL(hw->port),
826 pf->stat_offsets_loaded,
827 &osd->eth.rx_multicast,
828 &nsd->eth.rx_multicast);
829
830 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
831 pf->stat_offsets_loaded,
832 &osd->tx_dropped_link_down,
833 &nsd->tx_dropped_link_down);
834
835 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
836 pf->stat_offsets_loaded,
837 &osd->crc_errors, &nsd->crc_errors);
838 ns->rx_crc_errors = nsd->crc_errors;
839
840 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
841 pf->stat_offsets_loaded,
842 &osd->illegal_bytes, &nsd->illegal_bytes);
843 ns->rx_errors = nsd->crc_errors
844 + nsd->illegal_bytes;
845
846 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
847 pf->stat_offsets_loaded,
848 &osd->mac_local_faults,
849 &nsd->mac_local_faults);
850 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
851 pf->stat_offsets_loaded,
852 &osd->mac_remote_faults,
853 &nsd->mac_remote_faults);
854
855 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
856 pf->stat_offsets_loaded,
857 &osd->rx_length_errors,
858 &nsd->rx_length_errors);
859 ns->rx_length_errors = nsd->rx_length_errors;
860
861 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
862 pf->stat_offsets_loaded,
863 &osd->link_xon_rx, &nsd->link_xon_rx);
864 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
865 pf->stat_offsets_loaded,
866 &osd->link_xon_tx, &nsd->link_xon_tx);
867 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
868 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
869 pf->stat_offsets_loaded,
870 &osd->link_xoff_tx, &nsd->link_xoff_tx);
871
872 for (i = 0; i < 8; i++) {
873 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
874 pf->stat_offsets_loaded,
875 &osd->priority_xon_rx[i],
876 &nsd->priority_xon_rx[i]);
877 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
878 pf->stat_offsets_loaded,
879 &osd->priority_xon_tx[i],
880 &nsd->priority_xon_tx[i]);
881 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
882 pf->stat_offsets_loaded,
883 &osd->priority_xoff_tx[i],
884 &nsd->priority_xoff_tx[i]);
885 i40e_stat_update32(hw,
886 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
887 pf->stat_offsets_loaded,
888 &osd->priority_xon_2_xoff[i],
889 &nsd->priority_xon_2_xoff[i]);
890 }
891
892 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
893 I40E_GLPRT_PRC64L(hw->port),
894 pf->stat_offsets_loaded,
895 &osd->rx_size_64, &nsd->rx_size_64);
896 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
897 I40E_GLPRT_PRC127L(hw->port),
898 pf->stat_offsets_loaded,
899 &osd->rx_size_127, &nsd->rx_size_127);
900 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
901 I40E_GLPRT_PRC255L(hw->port),
902 pf->stat_offsets_loaded,
903 &osd->rx_size_255, &nsd->rx_size_255);
904 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
905 I40E_GLPRT_PRC511L(hw->port),
906 pf->stat_offsets_loaded,
907 &osd->rx_size_511, &nsd->rx_size_511);
908 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
909 I40E_GLPRT_PRC1023L(hw->port),
910 pf->stat_offsets_loaded,
911 &osd->rx_size_1023, &nsd->rx_size_1023);
912 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
913 I40E_GLPRT_PRC1522L(hw->port),
914 pf->stat_offsets_loaded,
915 &osd->rx_size_1522, &nsd->rx_size_1522);
916 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
917 I40E_GLPRT_PRC9522L(hw->port),
918 pf->stat_offsets_loaded,
919 &osd->rx_size_big, &nsd->rx_size_big);
920
921 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
922 I40E_GLPRT_PTC64L(hw->port),
923 pf->stat_offsets_loaded,
924 &osd->tx_size_64, &nsd->tx_size_64);
925 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
926 I40E_GLPRT_PTC127L(hw->port),
927 pf->stat_offsets_loaded,
928 &osd->tx_size_127, &nsd->tx_size_127);
929 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
930 I40E_GLPRT_PTC255L(hw->port),
931 pf->stat_offsets_loaded,
932 &osd->tx_size_255, &nsd->tx_size_255);
933 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
934 I40E_GLPRT_PTC511L(hw->port),
935 pf->stat_offsets_loaded,
936 &osd->tx_size_511, &nsd->tx_size_511);
937 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
938 I40E_GLPRT_PTC1023L(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->tx_size_1023, &nsd->tx_size_1023);
941 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
942 I40E_GLPRT_PTC1522L(hw->port),
943 pf->stat_offsets_loaded,
944 &osd->tx_size_1522, &nsd->tx_size_1522);
945 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
946 I40E_GLPRT_PTC9522L(hw->port),
947 pf->stat_offsets_loaded,
948 &osd->tx_size_big, &nsd->tx_size_big);
949
950 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
951 pf->stat_offsets_loaded,
952 &osd->rx_undersize, &nsd->rx_undersize);
953 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->rx_fragments, &nsd->rx_fragments);
956 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
957 pf->stat_offsets_loaded,
958 &osd->rx_oversize, &nsd->rx_oversize);
959 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
960 pf->stat_offsets_loaded,
961 &osd->rx_jabber, &nsd->rx_jabber);
962 }
963
964 pf->stat_offsets_loaded = true;
965}
966
967/**
968 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
969 * @vsi: the VSI to be searched
970 * @macaddr: the MAC address
971 * @vlan: the vlan
972 * @is_vf: make sure its a vf filter, else doesn't matter
973 * @is_netdev: make sure its a netdev filter, else doesn't matter
974 *
975 * Returns ptr to the filter object or NULL
976 **/
977static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
978 u8 *macaddr, s16 vlan,
979 bool is_vf, bool is_netdev)
980{
981 struct i40e_mac_filter *f;
982
983 if (!vsi || !macaddr)
984 return NULL;
985
986 list_for_each_entry(f, &vsi->mac_filter_list, list) {
987 if ((ether_addr_equal(macaddr, f->macaddr)) &&
988 (vlan == f->vlan) &&
989 (!is_vf || f->is_vf) &&
990 (!is_netdev || f->is_netdev))
991 return f;
992 }
993 return NULL;
994}
995
996/**
997 * i40e_find_mac - Find a mac addr in the macvlan filters list
998 * @vsi: the VSI to be searched
999 * @macaddr: the MAC address we are searching for
1000 * @is_vf: make sure its a vf filter, else doesn't matter
1001 * @is_netdev: make sure its a netdev filter, else doesn't matter
1002 *
1003 * Returns the first filter with the provided MAC address or NULL if
1004 * MAC address was not found
1005 **/
1006struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1007 bool is_vf, bool is_netdev)
1008{
1009 struct i40e_mac_filter *f;
1010
1011 if (!vsi || !macaddr)
1012 return NULL;
1013
1014 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1015 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1016 (!is_vf || f->is_vf) &&
1017 (!is_netdev || f->is_netdev))
1018 return f;
1019 }
1020 return NULL;
1021}
1022
1023/**
1024 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1025 * @vsi: the VSI to be searched
1026 *
1027 * Returns true if VSI is in vlan mode or false otherwise
1028 **/
1029bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1030{
1031 struct i40e_mac_filter *f;
1032
1033 /* Only -1 for all the filters denotes not in vlan mode
1034 * so we have to go through all the list in order to make sure
1035 */
1036 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1037 if (f->vlan >= 0)
1038 return true;
1039 }
1040
1041 return false;
1042}
1043
1044/**
1045 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1046 * @vsi: the VSI to be searched
1047 * @macaddr: the mac address to be filtered
1048 * @is_vf: true if it is a vf
1049 * @is_netdev: true if it is a netdev
1050 *
1051 * Goes through all the macvlan filters and adds a
1052 * macvlan filter for each unique vlan that already exists
1053 *
1054 * Returns first filter found on success, else NULL
1055 **/
1056struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1057 bool is_vf, bool is_netdev)
1058{
1059 struct i40e_mac_filter *f;
1060
1061 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1062 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1063 is_vf, is_netdev)) {
1064 if (!i40e_add_filter(vsi, macaddr, f->vlan,
1065 is_vf, is_netdev))
1066 return NULL;
1067 }
1068 }
1069
1070 return list_first_entry_or_null(&vsi->mac_filter_list,
1071 struct i40e_mac_filter, list);
1072}
1073
1074/**
1075 * i40e_add_filter - Add a mac/vlan filter to the VSI
1076 * @vsi: the VSI to be searched
1077 * @macaddr: the MAC address
1078 * @vlan: the vlan
1079 * @is_vf: make sure its a vf filter, else doesn't matter
1080 * @is_netdev: make sure its a netdev filter, else doesn't matter
1081 *
1082 * Returns ptr to the filter object or NULL when no memory available.
1083 **/
1084struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1085 u8 *macaddr, s16 vlan,
1086 bool is_vf, bool is_netdev)
1087{
1088 struct i40e_mac_filter *f;
1089
1090 if (!vsi || !macaddr)
1091 return NULL;
1092
1093 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1094 if (!f) {
1095 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1096 if (!f)
1097 goto add_filter_out;
1098
1099 memcpy(f->macaddr, macaddr, ETH_ALEN);
1100 f->vlan = vlan;
1101 f->changed = true;
1102
1103 INIT_LIST_HEAD(&f->list);
1104 list_add(&f->list, &vsi->mac_filter_list);
1105 }
1106
1107 /* increment counter and add a new flag if needed */
1108 if (is_vf) {
1109 if (!f->is_vf) {
1110 f->is_vf = true;
1111 f->counter++;
1112 }
1113 } else if (is_netdev) {
1114 if (!f->is_netdev) {
1115 f->is_netdev = true;
1116 f->counter++;
1117 }
1118 } else {
1119 f->counter++;
1120 }
1121
1122 /* changed tells sync_filters_subtask to
1123 * push the filter down to the firmware
1124 */
1125 if (f->changed) {
1126 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1127 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1128 }
1129
1130add_filter_out:
1131 return f;
1132}
1133
1134/**
1135 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1136 * @vsi: the VSI to be searched
1137 * @macaddr: the MAC address
1138 * @vlan: the vlan
1139 * @is_vf: make sure it's a vf filter, else doesn't matter
1140 * @is_netdev: make sure it's a netdev filter, else doesn't matter
1141 **/
1142void i40e_del_filter(struct i40e_vsi *vsi,
1143 u8 *macaddr, s16 vlan,
1144 bool is_vf, bool is_netdev)
1145{
1146 struct i40e_mac_filter *f;
1147
1148 if (!vsi || !macaddr)
1149 return;
1150
1151 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1152 if (!f || f->counter == 0)
1153 return;
1154
1155 if (is_vf) {
1156 if (f->is_vf) {
1157 f->is_vf = false;
1158 f->counter--;
1159 }
1160 } else if (is_netdev) {
1161 if (f->is_netdev) {
1162 f->is_netdev = false;
1163 f->counter--;
1164 }
1165 } else {
1166 /* make sure we don't remove a filter in use by vf or netdev */
1167 int min_f = 0;
1168 min_f += (f->is_vf ? 1 : 0);
1169 min_f += (f->is_netdev ? 1 : 0);
1170
1171 if (f->counter > min_f)
1172 f->counter--;
1173 }
1174
1175 /* counter == 0 tells sync_filters_subtask to
1176 * remove the filter from the firmware's list
1177 */
1178 if (f->counter == 0) {
1179 f->changed = true;
1180 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1181 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1182 }
1183}
1184
1185/**
1186 * i40e_set_mac - NDO callback to set mac address
1187 * @netdev: network interface device structure
1188 * @p: pointer to an address structure
1189 *
1190 * Returns 0 on success, negative on failure
1191 **/
1192static int i40e_set_mac(struct net_device *netdev, void *p)
1193{
1194 struct i40e_netdev_priv *np = netdev_priv(netdev);
1195 struct i40e_vsi *vsi = np->vsi;
1196 struct sockaddr *addr = p;
1197 struct i40e_mac_filter *f;
1198
1199 if (!is_valid_ether_addr(addr->sa_data))
1200 return -EADDRNOTAVAIL;
1201
1202 netdev_info(netdev, "set mac address=%pM\n", addr->sa_data);
1203
1204 if (ether_addr_equal(netdev->dev_addr, addr->sa_data))
1205 return 0;
1206
1207 if (vsi->type == I40E_VSI_MAIN) {
1208 i40e_status ret;
1209 ret = i40e_aq_mac_address_write(&vsi->back->hw,
1210 I40E_AQC_WRITE_TYPE_LAA_ONLY,
1211 addr->sa_data, NULL);
1212 if (ret) {
1213 netdev_info(netdev,
1214 "Addr change for Main VSI failed: %d\n",
1215 ret);
1216 return -EADDRNOTAVAIL;
1217 }
1218
1219 memcpy(vsi->back->hw.mac.addr, addr->sa_data, netdev->addr_len);
1220 }
1221
1222 /* In order to be sure to not drop any packets, add the new address
1223 * then delete the old one.
1224 */
1225 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY, false, false);
1226 if (!f)
1227 return -ENOMEM;
1228
1229 i40e_sync_vsi_filters(vsi);
1230 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY, false, false);
1231 i40e_sync_vsi_filters(vsi);
1232
1233 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1234
1235 return 0;
1236}
1237
1238/**
1239 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1240 * @vsi: the VSI being setup
1241 * @ctxt: VSI context structure
1242 * @enabled_tc: Enabled TCs bitmap
1243 * @is_add: True if called before Add VSI
1244 *
1245 * Setup VSI queue mapping for enabled traffic classes.
1246 **/
1247static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1248 struct i40e_vsi_context *ctxt,
1249 u8 enabled_tc,
1250 bool is_add)
1251{
1252 struct i40e_pf *pf = vsi->back;
1253 u16 sections = 0;
1254 u8 netdev_tc = 0;
1255 u16 numtc = 0;
1256 u16 qcount;
1257 u8 offset;
1258 u16 qmap;
1259 int i;
1260
1261 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1262 offset = 0;
1263
1264 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1265 /* Find numtc from enabled TC bitmap */
1266 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1267 if (enabled_tc & (1 << i)) /* TC is enabled */
1268 numtc++;
1269 }
1270 if (!numtc) {
1271 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1272 numtc = 1;
1273 }
1274 } else {
1275 /* At least TC0 is enabled in case of non-DCB case */
1276 numtc = 1;
1277 }
1278
1279 vsi->tc_config.numtc = numtc;
1280 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
1281
1282 /* Setup queue offset/count for all TCs for given VSI */
1283 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1284 /* See if the given TC is enabled for the given VSI */
1285 if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */
1286 int pow, num_qps;
1287
1288 vsi->tc_config.tc_info[i].qoffset = offset;
1289 switch (vsi->type) {
1290 case I40E_VSI_MAIN:
1291 if (i == 0)
1292 qcount = pf->rss_size;
1293 else
1294 qcount = pf->num_tc_qps;
1295 vsi->tc_config.tc_info[i].qcount = qcount;
1296 break;
1297 case I40E_VSI_FDIR:
1298 case I40E_VSI_SRIOV:
1299 case I40E_VSI_VMDQ2:
1300 default:
1301 qcount = vsi->alloc_queue_pairs;
1302 vsi->tc_config.tc_info[i].qcount = qcount;
1303 WARN_ON(i != 0);
1304 break;
1305 }
1306
1307 /* find the power-of-2 of the number of queue pairs */
1308 num_qps = vsi->tc_config.tc_info[i].qcount;
1309 pow = 0;
1310 while (num_qps &&
1311 ((1 << pow) < vsi->tc_config.tc_info[i].qcount)) {
1312 pow++;
1313 num_qps >>= 1;
1314 }
1315
1316 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1317 qmap =
1318 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1319 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1320
1321 offset += vsi->tc_config.tc_info[i].qcount;
1322 } else {
1323 /* TC is not enabled so set the offset to
1324 * default queue and allocate one queue
1325 * for the given TC.
1326 */
1327 vsi->tc_config.tc_info[i].qoffset = 0;
1328 vsi->tc_config.tc_info[i].qcount = 1;
1329 vsi->tc_config.tc_info[i].netdev_tc = 0;
1330
1331 qmap = 0;
1332 }
1333 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1334 }
1335
1336 /* Set actual Tx/Rx queue pairs */
1337 vsi->num_queue_pairs = offset;
1338
1339 /* Scheduler section valid can only be set for ADD VSI */
1340 if (is_add) {
1341 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1342
1343 ctxt->info.up_enable_bits = enabled_tc;
1344 }
1345 if (vsi->type == I40E_VSI_SRIOV) {
1346 ctxt->info.mapping_flags |=
1347 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1348 for (i = 0; i < vsi->num_queue_pairs; i++)
1349 ctxt->info.queue_mapping[i] =
1350 cpu_to_le16(vsi->base_queue + i);
1351 } else {
1352 ctxt->info.mapping_flags |=
1353 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1354 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1355 }
1356 ctxt->info.valid_sections |= cpu_to_le16(sections);
1357}
1358
1359/**
1360 * i40e_set_rx_mode - NDO callback to set the netdev filters
1361 * @netdev: network interface device structure
1362 **/
1363static void i40e_set_rx_mode(struct net_device *netdev)
1364{
1365 struct i40e_netdev_priv *np = netdev_priv(netdev);
1366 struct i40e_mac_filter *f, *ftmp;
1367 struct i40e_vsi *vsi = np->vsi;
1368 struct netdev_hw_addr *uca;
1369 struct netdev_hw_addr *mca;
1370 struct netdev_hw_addr *ha;
1371
1372 /* add addr if not already in the filter list */
1373 netdev_for_each_uc_addr(uca, netdev) {
1374 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1375 if (i40e_is_vsi_in_vlan(vsi))
1376 i40e_put_mac_in_vlan(vsi, uca->addr,
1377 false, true);
1378 else
1379 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1380 false, true);
1381 }
1382 }
1383
1384 netdev_for_each_mc_addr(mca, netdev) {
1385 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1386 if (i40e_is_vsi_in_vlan(vsi))
1387 i40e_put_mac_in_vlan(vsi, mca->addr,
1388 false, true);
1389 else
1390 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1391 false, true);
1392 }
1393 }
1394
1395 /* remove filter if not in netdev list */
1396 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1397 bool found = false;
1398
1399 if (!f->is_netdev)
1400 continue;
1401
1402 if (is_multicast_ether_addr(f->macaddr)) {
1403 netdev_for_each_mc_addr(mca, netdev) {
1404 if (ether_addr_equal(mca->addr, f->macaddr)) {
1405 found = true;
1406 break;
1407 }
1408 }
1409 } else {
1410 netdev_for_each_uc_addr(uca, netdev) {
1411 if (ether_addr_equal(uca->addr, f->macaddr)) {
1412 found = true;
1413 break;
1414 }
1415 }
1416
1417 for_each_dev_addr(netdev, ha) {
1418 if (ether_addr_equal(ha->addr, f->macaddr)) {
1419 found = true;
1420 break;
1421 }
1422 }
1423 }
1424 if (!found)
1425 i40e_del_filter(
1426 vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1427 }
1428
1429 /* check for other flag changes */
1430 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1431 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1432 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1433 }
1434}
1435
1436/**
1437 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1438 * @vsi: ptr to the VSI
1439 *
1440 * Push any outstanding VSI filter changes through the AdminQ.
1441 *
1442 * Returns 0 or error value
1443 **/
1444int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
1445{
1446 struct i40e_mac_filter *f, *ftmp;
1447 bool promisc_forced_on = false;
1448 bool add_happened = false;
1449 int filter_list_len = 0;
1450 u32 changed_flags = 0;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001451 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001452 struct i40e_pf *pf;
1453 int num_add = 0;
1454 int num_del = 0;
1455 u16 cmd_flags;
1456
1457 /* empty array typed pointers, kcalloc later */
1458 struct i40e_aqc_add_macvlan_element_data *add_list;
1459 struct i40e_aqc_remove_macvlan_element_data *del_list;
1460
1461 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1462 usleep_range(1000, 2000);
1463 pf = vsi->back;
1464
1465 if (vsi->netdev) {
1466 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1467 vsi->current_netdev_flags = vsi->netdev->flags;
1468 }
1469
1470 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1471 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1472
1473 filter_list_len = pf->hw.aq.asq_buf_size /
1474 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1475 del_list = kcalloc(filter_list_len,
1476 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1477 GFP_KERNEL);
1478 if (!del_list)
1479 return -ENOMEM;
1480
1481 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1482 if (!f->changed)
1483 continue;
1484
1485 if (f->counter != 0)
1486 continue;
1487 f->changed = false;
1488 cmd_flags = 0;
1489
1490 /* add to delete list */
1491 memcpy(del_list[num_del].mac_addr,
1492 f->macaddr, ETH_ALEN);
1493 del_list[num_del].vlan_tag =
1494 cpu_to_le16((u16)(f->vlan ==
1495 I40E_VLAN_ANY ? 0 : f->vlan));
1496
1497 /* vlan0 as wild card to allow packets from all vlans */
1498 if (f->vlan == I40E_VLAN_ANY ||
1499 (vsi->netdev && !(vsi->netdev->features &
1500 NETIF_F_HW_VLAN_CTAG_FILTER)))
1501 cmd_flags |= I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1502 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1503 del_list[num_del].flags = cmd_flags;
1504 num_del++;
1505
1506 /* unlink from filter list */
1507 list_del(&f->list);
1508 kfree(f);
1509
1510 /* flush a full buffer */
1511 if (num_del == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001512 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001513 vsi->seid, del_list, num_del,
1514 NULL);
1515 num_del = 0;
1516 memset(del_list, 0, sizeof(*del_list));
1517
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001518 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001519 dev_info(&pf->pdev->dev,
1520 "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001521 aq_ret,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001522 pf->hw.aq.asq_last_status);
1523 }
1524 }
1525 if (num_del) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001526 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001527 del_list, num_del, NULL);
1528 num_del = 0;
1529
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001530 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001531 dev_info(&pf->pdev->dev,
1532 "ignoring delete macvlan error, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001533 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001534 }
1535
1536 kfree(del_list);
1537 del_list = NULL;
1538
1539 /* do all the adds now */
1540 filter_list_len = pf->hw.aq.asq_buf_size /
1541 sizeof(struct i40e_aqc_add_macvlan_element_data),
1542 add_list = kcalloc(filter_list_len,
1543 sizeof(struct i40e_aqc_add_macvlan_element_data),
1544 GFP_KERNEL);
1545 if (!add_list)
1546 return -ENOMEM;
1547
1548 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1549 if (!f->changed)
1550 continue;
1551
1552 if (f->counter == 0)
1553 continue;
1554 f->changed = false;
1555 add_happened = true;
1556 cmd_flags = 0;
1557
1558 /* add to add array */
1559 memcpy(add_list[num_add].mac_addr,
1560 f->macaddr, ETH_ALEN);
1561 add_list[num_add].vlan_tag =
1562 cpu_to_le16(
1563 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
1564 add_list[num_add].queue_number = 0;
1565
1566 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
1567
1568 /* vlan0 as wild card to allow packets from all vlans */
1569 if (f->vlan == I40E_VLAN_ANY || (vsi->netdev &&
1570 !(vsi->netdev->features &
1571 NETIF_F_HW_VLAN_CTAG_FILTER)))
1572 cmd_flags |= I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
1573 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1574 num_add++;
1575
1576 /* flush a full buffer */
1577 if (num_add == filter_list_len) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001578 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1579 add_list, num_add,
1580 NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001581 num_add = 0;
1582
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001583 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001584 break;
1585 memset(add_list, 0, sizeof(*add_list));
1586 }
1587 }
1588 if (num_add) {
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001589 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
1590 add_list, num_add, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001591 num_add = 0;
1592 }
1593 kfree(add_list);
1594 add_list = NULL;
1595
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001596 if (add_happened && (!aq_ret)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001597 /* do nothing */;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001598 } else if (add_happened && (aq_ret)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001599 dev_info(&pf->pdev->dev,
1600 "add filter failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001601 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001602 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
1603 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1604 &vsi->state)) {
1605 promisc_forced_on = true;
1606 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1607 &vsi->state);
1608 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
1609 }
1610 }
1611 }
1612
1613 /* check for changes in promiscuous modes */
1614 if (changed_flags & IFF_ALLMULTI) {
1615 bool cur_multipromisc;
1616 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001617 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1618 vsi->seid,
1619 cur_multipromisc,
1620 NULL);
1621 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001622 dev_info(&pf->pdev->dev,
1623 "set multi promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001624 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001625 }
1626 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
1627 bool cur_promisc;
1628 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
1629 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1630 &vsi->state));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001631 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw,
1632 vsi->seid,
1633 cur_promisc, NULL);
1634 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001635 dev_info(&pf->pdev->dev,
1636 "set uni promisc failed, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00001637 aq_ret, pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001638 }
1639
1640 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
1641 return 0;
1642}
1643
1644/**
1645 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
1646 * @pf: board private structure
1647 **/
1648static void i40e_sync_filters_subtask(struct i40e_pf *pf)
1649{
1650 int v;
1651
1652 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
1653 return;
1654 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
1655
1656 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
1657 if (pf->vsi[v] &&
1658 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
1659 i40e_sync_vsi_filters(pf->vsi[v]);
1660 }
1661}
1662
1663/**
1664 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
1665 * @netdev: network interface device structure
1666 * @new_mtu: new value for maximum frame size
1667 *
1668 * Returns 0 on success, negative on failure
1669 **/
1670static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
1671{
1672 struct i40e_netdev_priv *np = netdev_priv(netdev);
1673 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN;
1674 struct i40e_vsi *vsi = np->vsi;
1675
1676 /* MTU < 68 is an error and causes problems on some kernels */
1677 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
1678 return -EINVAL;
1679
1680 netdev_info(netdev, "changing MTU from %d to %d\n",
1681 netdev->mtu, new_mtu);
1682 netdev->mtu = new_mtu;
1683 if (netif_running(netdev))
1684 i40e_vsi_reinit_locked(vsi);
1685
1686 return 0;
1687}
1688
1689/**
1690 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
1691 * @vsi: the vsi being adjusted
1692 **/
1693void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
1694{
1695 struct i40e_vsi_context ctxt;
1696 i40e_status ret;
1697
1698 if ((vsi->info.valid_sections &
1699 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1700 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
1701 return; /* already enabled */
1702
1703 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1704 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1705 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
1706
1707 ctxt.seid = vsi->seid;
1708 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1709 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1710 if (ret) {
1711 dev_info(&vsi->back->pdev->dev,
1712 "%s: update vsi failed, aq_err=%d\n",
1713 __func__, vsi->back->hw.aq.asq_last_status);
1714 }
1715}
1716
1717/**
1718 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
1719 * @vsi: the vsi being adjusted
1720 **/
1721void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
1722{
1723 struct i40e_vsi_context ctxt;
1724 i40e_status ret;
1725
1726 if ((vsi->info.valid_sections &
1727 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
1728 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
1729 I40E_AQ_VSI_PVLAN_EMOD_MASK))
1730 return; /* already disabled */
1731
1732 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
1733 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
1734 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
1735
1736 ctxt.seid = vsi->seid;
1737 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1738 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
1739 if (ret) {
1740 dev_info(&vsi->back->pdev->dev,
1741 "%s: update vsi failed, aq_err=%d\n",
1742 __func__, vsi->back->hw.aq.asq_last_status);
1743 }
1744}
1745
1746/**
1747 * i40e_vlan_rx_register - Setup or shutdown vlan offload
1748 * @netdev: network interface to be adjusted
1749 * @features: netdev features to test if VLAN offload is enabled or not
1750 **/
1751static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
1752{
1753 struct i40e_netdev_priv *np = netdev_priv(netdev);
1754 struct i40e_vsi *vsi = np->vsi;
1755
1756 if (features & NETIF_F_HW_VLAN_CTAG_RX)
1757 i40e_vlan_stripping_enable(vsi);
1758 else
1759 i40e_vlan_stripping_disable(vsi);
1760}
1761
1762/**
1763 * i40e_vsi_add_vlan - Add vsi membership for given vlan
1764 * @vsi: the vsi being configured
1765 * @vid: vlan id to be added (0 = untagged only , -1 = any)
1766 **/
1767int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
1768{
1769 struct i40e_mac_filter *f, *add_f;
1770 bool is_netdev, is_vf;
1771 int ret;
1772
1773 is_vf = (vsi->type == I40E_VSI_SRIOV);
1774 is_netdev = !!(vsi->netdev);
1775
1776 if (is_netdev) {
1777 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
1778 is_vf, is_netdev);
1779 if (!add_f) {
1780 dev_info(&vsi->back->pdev->dev,
1781 "Could not add vlan filter %d for %pM\n",
1782 vid, vsi->netdev->dev_addr);
1783 return -ENOMEM;
1784 }
1785 }
1786
1787 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1788 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
1789 if (!add_f) {
1790 dev_info(&vsi->back->pdev->dev,
1791 "Could not add vlan filter %d for %pM\n",
1792 vid, f->macaddr);
1793 return -ENOMEM;
1794 }
1795 }
1796
1797 ret = i40e_sync_vsi_filters(vsi);
1798 if (ret) {
1799 dev_info(&vsi->back->pdev->dev,
1800 "Could not sync filters for vid %d\n", vid);
1801 return ret;
1802 }
1803
1804 /* Now if we add a vlan tag, make sure to check if it is the first
1805 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
1806 * with 0, so we now accept untagged and specified tagged traffic
1807 * (and not any taged and untagged)
1808 */
1809 if (vid > 0) {
1810 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
1811 I40E_VLAN_ANY,
1812 is_vf, is_netdev)) {
1813 i40e_del_filter(vsi, vsi->netdev->dev_addr,
1814 I40E_VLAN_ANY, is_vf, is_netdev);
1815 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
1816 is_vf, is_netdev);
1817 if (!add_f) {
1818 dev_info(&vsi->back->pdev->dev,
1819 "Could not add filter 0 for %pM\n",
1820 vsi->netdev->dev_addr);
1821 return -ENOMEM;
1822 }
1823 }
1824
1825 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1826 if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
1827 is_vf, is_netdev)) {
1828 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
1829 is_vf, is_netdev);
1830 add_f = i40e_add_filter(vsi, f->macaddr,
1831 0, is_vf, is_netdev);
1832 if (!add_f) {
1833 dev_info(&vsi->back->pdev->dev,
1834 "Could not add filter 0 for %pM\n",
1835 f->macaddr);
1836 return -ENOMEM;
1837 }
1838 }
1839 }
1840 ret = i40e_sync_vsi_filters(vsi);
1841 }
1842
1843 return ret;
1844}
1845
1846/**
1847 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
1848 * @vsi: the vsi being configured
1849 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001850 *
1851 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001852 **/
1853int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
1854{
1855 struct net_device *netdev = vsi->netdev;
1856 struct i40e_mac_filter *f, *add_f;
1857 bool is_vf, is_netdev;
1858 int filter_count = 0;
1859 int ret;
1860
1861 is_vf = (vsi->type == I40E_VSI_SRIOV);
1862 is_netdev = !!(netdev);
1863
1864 if (is_netdev)
1865 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
1866
1867 list_for_each_entry(f, &vsi->mac_filter_list, list)
1868 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
1869
1870 ret = i40e_sync_vsi_filters(vsi);
1871 if (ret) {
1872 dev_info(&vsi->back->pdev->dev, "Could not sync filters\n");
1873 return ret;
1874 }
1875
1876 /* go through all the filters for this VSI and if there is only
1877 * vid == 0 it means there are no other filters, so vid 0 must
1878 * be replaced with -1. This signifies that we should from now
1879 * on accept any traffic (with any tag present, or untagged)
1880 */
1881 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1882 if (is_netdev) {
1883 if (f->vlan &&
1884 ether_addr_equal(netdev->dev_addr, f->macaddr))
1885 filter_count++;
1886 }
1887
1888 if (f->vlan)
1889 filter_count++;
1890 }
1891
1892 if (!filter_count && is_netdev) {
1893 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
1894 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1895 is_vf, is_netdev);
1896 if (!f) {
1897 dev_info(&vsi->back->pdev->dev,
1898 "Could not add filter %d for %pM\n",
1899 I40E_VLAN_ANY, netdev->dev_addr);
1900 return -ENOMEM;
1901 }
1902 }
1903
1904 if (!filter_count) {
1905 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1906 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
1907 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
1908 is_vf, is_netdev);
1909 if (!add_f) {
1910 dev_info(&vsi->back->pdev->dev,
1911 "Could not add filter %d for %pM\n",
1912 I40E_VLAN_ANY, f->macaddr);
1913 return -ENOMEM;
1914 }
1915 }
1916 }
1917
1918 return i40e_sync_vsi_filters(vsi);
1919}
1920
1921/**
1922 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
1923 * @netdev: network interface to be adjusted
1924 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001925 *
1926 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001927 **/
1928static int i40e_vlan_rx_add_vid(struct net_device *netdev,
1929 __always_unused __be16 proto, u16 vid)
1930{
1931 struct i40e_netdev_priv *np = netdev_priv(netdev);
1932 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001933 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001934
1935 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001936 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001937
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001938 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
1939
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001940 /* If the network stack called us with vid = 0, we should
1941 * indicate to i40e_vsi_add_vlan() that we want to receive
1942 * any traffic (i.e. with any vlan tag, or untagged)
1943 */
1944 ret = i40e_vsi_add_vlan(vsi, vid ? vid : I40E_VLAN_ANY);
1945
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001946 if (!ret && (vid < VLAN_N_VID))
1947 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001948
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001949 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001950}
1951
1952/**
1953 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
1954 * @netdev: network interface to be adjusted
1955 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001956 *
1957 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001958 **/
1959static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
1960 __always_unused __be16 proto, u16 vid)
1961{
1962 struct i40e_netdev_priv *np = netdev_priv(netdev);
1963 struct i40e_vsi *vsi = np->vsi;
1964
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001965 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
1966
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001967 /* return code is ignored as there is nothing a user
1968 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001969 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001970 */
1971 i40e_vsi_kill_vlan(vsi, vid);
1972
1973 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00001974
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001975 return 0;
1976}
1977
1978/**
1979 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
1980 * @vsi: the vsi being brought back up
1981 **/
1982static void i40e_restore_vlan(struct i40e_vsi *vsi)
1983{
1984 u16 vid;
1985
1986 if (!vsi->netdev)
1987 return;
1988
1989 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
1990
1991 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
1992 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
1993 vid);
1994}
1995
1996/**
1997 * i40e_vsi_add_pvid - Add pvid for the VSI
1998 * @vsi: the vsi being adjusted
1999 * @vid: the vlan id to set as a PVID
2000 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002001int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002002{
2003 struct i40e_vsi_context ctxt;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002004 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002005
2006 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2007 vsi->info.pvid = cpu_to_le16(vid);
2008 vsi->info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_INSERT_PVID;
2009 vsi->info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_UNTAGGED;
2010
2011 ctxt.seid = vsi->seid;
2012 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002013 aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2014 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002015 dev_info(&vsi->back->pdev->dev,
2016 "%s: update vsi failed, aq_err=%d\n",
2017 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002018 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002019 }
2020
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002021 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002022}
2023
2024/**
2025 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2026 * @vsi: the vsi being adjusted
2027 *
2028 * Just use the vlan_rx_register() service to put it back to normal
2029 **/
2030void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2031{
2032 vsi->info.pvid = 0;
2033 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2034}
2035
2036/**
2037 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2038 * @vsi: ptr to the VSI
2039 *
2040 * If this function returns with an error, then it's possible one or
2041 * more of the rings is populated (while the rest are not). It is the
2042 * callers duty to clean those orphaned rings.
2043 *
2044 * Return 0 on success, negative on failure
2045 **/
2046static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2047{
2048 int i, err = 0;
2049
2050 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002051 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002052
2053 return err;
2054}
2055
2056/**
2057 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2058 * @vsi: ptr to the VSI
2059 *
2060 * Free VSI's transmit software resources
2061 **/
2062static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2063{
2064 int i;
2065
2066 for (i = 0; i < vsi->num_queue_pairs; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002067 if (vsi->tx_rings[i]->desc)
2068 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002069}
2070
2071/**
2072 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2073 * @vsi: ptr to the VSI
2074 *
2075 * If this function returns with an error, then it's possible one or
2076 * more of the rings is populated (while the rest are not). It is the
2077 * callers duty to clean those orphaned rings.
2078 *
2079 * Return 0 on success, negative on failure
2080 **/
2081static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2082{
2083 int i, err = 0;
2084
2085 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002086 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002087 return err;
2088}
2089
2090/**
2091 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2092 * @vsi: ptr to the VSI
2093 *
2094 * Free all receive software resources
2095 **/
2096static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2097{
2098 int i;
2099
2100 for (i = 0; i < vsi->num_queue_pairs; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002101 if (vsi->rx_rings[i]->desc)
2102 i40e_free_rx_resources(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002103}
2104
2105/**
2106 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2107 * @ring: The Tx ring to configure
2108 *
2109 * Configure the Tx descriptor ring in the HMC context.
2110 **/
2111static int i40e_configure_tx_ring(struct i40e_ring *ring)
2112{
2113 struct i40e_vsi *vsi = ring->vsi;
2114 u16 pf_q = vsi->base_queue + ring->queue_index;
2115 struct i40e_hw *hw = &vsi->back->hw;
2116 struct i40e_hmc_obj_txq tx_ctx;
2117 i40e_status err = 0;
2118 u32 qtx_ctl = 0;
2119
2120 /* some ATR related tx ring init */
2121 if (vsi->back->flags & I40E_FLAG_FDIR_ATR_ENABLED) {
2122 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2123 ring->atr_count = 0;
2124 } else {
2125 ring->atr_sample_rate = 0;
2126 }
2127
2128 /* initialize XPS */
2129 if (ring->q_vector && ring->netdev &&
2130 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
2131 netif_set_xps_queue(ring->netdev,
2132 &ring->q_vector->affinity_mask,
2133 ring->queue_index);
2134
2135 /* clear the context structure first */
2136 memset(&tx_ctx, 0, sizeof(tx_ctx));
2137
2138 tx_ctx.new_context = 1;
2139 tx_ctx.base = (ring->dma / 128);
2140 tx_ctx.qlen = ring->count;
2141 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FDIR_ENABLED |
2142 I40E_FLAG_FDIR_ATR_ENABLED));
2143
2144 /* As part of VSI creation/update, FW allocates certain
2145 * Tx arbitration queue sets for each TC enabled for
2146 * the VSI. The FW returns the handles to these queue
2147 * sets as part of the response buffer to Add VSI,
2148 * Update VSI, etc. AQ commands. It is expected that
2149 * these queue set handles be associated with the Tx
2150 * queues by the driver as part of the TX queue context
2151 * initialization. This has to be done regardless of
2152 * DCB as by default everything is mapped to TC0.
2153 */
2154 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2155 tx_ctx.rdylist_act = 0;
2156
2157 /* clear the context in the HMC */
2158 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2159 if (err) {
2160 dev_info(&vsi->back->pdev->dev,
2161 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2162 ring->queue_index, pf_q, err);
2163 return -ENOMEM;
2164 }
2165
2166 /* set the context in the HMC */
2167 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2168 if (err) {
2169 dev_info(&vsi->back->pdev->dev,
2170 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2171 ring->queue_index, pf_q, err);
2172 return -ENOMEM;
2173 }
2174
2175 /* Now associate this queue with this PCI function */
2176 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Shannon Nelson13fd9772013-09-28 07:14:19 +00002177 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2178 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002179 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2180 i40e_flush(hw);
2181
2182 clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state);
2183
2184 /* cache tail off for easier writes later */
2185 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2186
2187 return 0;
2188}
2189
2190/**
2191 * i40e_configure_rx_ring - Configure a receive ring context
2192 * @ring: The Rx ring to configure
2193 *
2194 * Configure the Rx descriptor ring in the HMC context.
2195 **/
2196static int i40e_configure_rx_ring(struct i40e_ring *ring)
2197{
2198 struct i40e_vsi *vsi = ring->vsi;
2199 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2200 u16 pf_q = vsi->base_queue + ring->queue_index;
2201 struct i40e_hw *hw = &vsi->back->hw;
2202 struct i40e_hmc_obj_rxq rx_ctx;
2203 i40e_status err = 0;
2204
2205 ring->state = 0;
2206
2207 /* clear the context structure first */
2208 memset(&rx_ctx, 0, sizeof(rx_ctx));
2209
2210 ring->rx_buf_len = vsi->rx_buf_len;
2211 ring->rx_hdr_len = vsi->rx_hdr_len;
2212
2213 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2214 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2215
2216 rx_ctx.base = (ring->dma / 128);
2217 rx_ctx.qlen = ring->count;
2218
2219 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2220 set_ring_16byte_desc_enabled(ring);
2221 rx_ctx.dsize = 0;
2222 } else {
2223 rx_ctx.dsize = 1;
2224 }
2225
2226 rx_ctx.dtype = vsi->dtype;
2227 if (vsi->dtype) {
2228 set_ring_ps_enabled(ring);
2229 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2230 I40E_RX_SPLIT_IP |
2231 I40E_RX_SPLIT_TCP_UDP |
2232 I40E_RX_SPLIT_SCTP;
2233 } else {
2234 rx_ctx.hsplit_0 = 0;
2235 }
2236
2237 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2238 (chain_len * ring->rx_buf_len));
2239 rx_ctx.tphrdesc_ena = 1;
2240 rx_ctx.tphwdesc_ena = 1;
2241 rx_ctx.tphdata_ena = 1;
2242 rx_ctx.tphhead_ena = 1;
2243 rx_ctx.lrxqthresh = 2;
2244 rx_ctx.crcstrip = 1;
2245 rx_ctx.l2tsel = 1;
2246 rx_ctx.showiv = 1;
2247
2248 /* clear the context in the HMC */
2249 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2250 if (err) {
2251 dev_info(&vsi->back->pdev->dev,
2252 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2253 ring->queue_index, pf_q, err);
2254 return -ENOMEM;
2255 }
2256
2257 /* set the context in the HMC */
2258 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2259 if (err) {
2260 dev_info(&vsi->back->pdev->dev,
2261 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2262 ring->queue_index, pf_q, err);
2263 return -ENOMEM;
2264 }
2265
2266 /* cache tail for quicker writes, and clear the reg before use */
2267 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2268 writel(0, ring->tail);
2269
2270 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
2271
2272 return 0;
2273}
2274
2275/**
2276 * i40e_vsi_configure_tx - Configure the VSI for Tx
2277 * @vsi: VSI structure describing this set of rings and resources
2278 *
2279 * Configure the Tx VSI for operation.
2280 **/
2281static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2282{
2283 int err = 0;
2284 u16 i;
2285
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002286 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2287 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002288
2289 return err;
2290}
2291
2292/**
2293 * i40e_vsi_configure_rx - Configure the VSI for Rx
2294 * @vsi: the VSI being configured
2295 *
2296 * Configure the Rx VSI for operation.
2297 **/
2298static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2299{
2300 int err = 0;
2301 u16 i;
2302
2303 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2304 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2305 + ETH_FCS_LEN + VLAN_HLEN;
2306 else
2307 vsi->max_frame = I40E_RXBUFFER_2048;
2308
2309 /* figure out correct receive buffer length */
2310 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2311 I40E_FLAG_RX_PS_ENABLED)) {
2312 case I40E_FLAG_RX_1BUF_ENABLED:
2313 vsi->rx_hdr_len = 0;
2314 vsi->rx_buf_len = vsi->max_frame;
2315 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2316 break;
2317 case I40E_FLAG_RX_PS_ENABLED:
2318 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2319 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2320 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2321 break;
2322 default:
2323 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2324 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2325 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2326 break;
2327 }
2328
2329 /* round up for the chip's needs */
2330 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
2331 (1 << I40E_RXQ_CTX_HBUFF_SHIFT));
2332 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
2333 (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
2334
2335 /* set up individual rings */
2336 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002337 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002338
2339 return err;
2340}
2341
2342/**
2343 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2344 * @vsi: ptr to the VSI
2345 **/
2346static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2347{
2348 u16 qoffset, qcount;
2349 int i, n;
2350
2351 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED))
2352 return;
2353
2354 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
2355 if (!(vsi->tc_config.enabled_tc & (1 << n)))
2356 continue;
2357
2358 qoffset = vsi->tc_config.tc_info[n].qoffset;
2359 qcount = vsi->tc_config.tc_info[n].qcount;
2360 for (i = qoffset; i < (qoffset + qcount); i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002361 struct i40e_ring *rx_ring = vsi->rx_rings[i];
2362 struct i40e_ring *tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002363 rx_ring->dcb_tc = n;
2364 tx_ring->dcb_tc = n;
2365 }
2366 }
2367}
2368
2369/**
2370 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2371 * @vsi: ptr to the VSI
2372 **/
2373static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2374{
2375 if (vsi->netdev)
2376 i40e_set_rx_mode(vsi->netdev);
2377}
2378
2379/**
2380 * i40e_vsi_configure - Set up the VSI for action
2381 * @vsi: the VSI being configured
2382 **/
2383static int i40e_vsi_configure(struct i40e_vsi *vsi)
2384{
2385 int err;
2386
2387 i40e_set_vsi_rx_mode(vsi);
2388 i40e_restore_vlan(vsi);
2389 i40e_vsi_config_dcb_rings(vsi);
2390 err = i40e_vsi_configure_tx(vsi);
2391 if (!err)
2392 err = i40e_vsi_configure_rx(vsi);
2393
2394 return err;
2395}
2396
2397/**
2398 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
2399 * @vsi: the VSI being configured
2400 **/
2401static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
2402{
2403 struct i40e_pf *pf = vsi->back;
2404 struct i40e_q_vector *q_vector;
2405 struct i40e_hw *hw = &pf->hw;
2406 u16 vector;
2407 int i, q;
2408 u32 val;
2409 u32 qp;
2410
2411 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
2412 * and PFINT_LNKLSTn registers, e.g.:
2413 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
2414 */
2415 qp = vsi->base_queue;
2416 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00002417 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
2418 q_vector = vsi->q_vectors[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002419 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2420 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2421 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
2422 q_vector->rx.itr);
2423 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2424 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2425 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
2426 q_vector->tx.itr);
2427
2428 /* Linked list for the queuepairs assigned to this vector */
2429 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
2430 for (q = 0; q < q_vector->num_ringpairs; q++) {
2431 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2432 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2433 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
2434 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
2435 (I40E_QUEUE_TYPE_TX
2436 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
2437
2438 wr32(hw, I40E_QINT_RQCTL(qp), val);
2439
2440 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2441 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2442 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
2443 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
2444 (I40E_QUEUE_TYPE_RX
2445 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2446
2447 /* Terminate the linked list */
2448 if (q == (q_vector->num_ringpairs - 1))
2449 val |= (I40E_QUEUE_END_OF_LIST
2450 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2451
2452 wr32(hw, I40E_QINT_TQCTL(qp), val);
2453 qp++;
2454 }
2455 }
2456
2457 i40e_flush(hw);
2458}
2459
2460/**
2461 * i40e_enable_misc_int_causes - enable the non-queue interrupts
2462 * @hw: ptr to the hardware info
2463 **/
2464static void i40e_enable_misc_int_causes(struct i40e_hw *hw)
2465{
2466 u32 val;
2467
2468 /* clear things first */
2469 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
2470 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
2471
2472 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
2473 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
2474 I40E_PFINT_ICR0_ENA_GRST_MASK |
2475 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
2476 I40E_PFINT_ICR0_ENA_GPIO_MASK |
2477 I40E_PFINT_ICR0_ENA_STORM_DETECT_MASK |
2478 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
2479 I40E_PFINT_ICR0_ENA_VFLR_MASK |
2480 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2481
2482 wr32(hw, I40E_PFINT_ICR0_ENA, val);
2483
2484 /* SW_ITR_IDX = 0, but don't change INTENA */
2485 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTLN_SW_ITR_INDX_MASK |
2486 I40E_PFINT_DYN_CTLN_INTENA_MSK_MASK);
2487
2488 /* OTHER_ITR_IDX = 0 */
2489 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
2490}
2491
2492/**
2493 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
2494 * @vsi: the VSI being configured
2495 **/
2496static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
2497{
Alexander Duyck493fb302013-09-28 07:01:44 +00002498 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002499 struct i40e_pf *pf = vsi->back;
2500 struct i40e_hw *hw = &pf->hw;
2501 u32 val;
2502
2503 /* set the ITR configuration */
2504 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
2505 q_vector->rx.latency_range = I40E_LOW_LATENCY;
2506 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
2507 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
2508 q_vector->tx.latency_range = I40E_LOW_LATENCY;
2509 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
2510
2511 i40e_enable_misc_int_causes(hw);
2512
2513 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
2514 wr32(hw, I40E_PFINT_LNKLST0, 0);
2515
2516 /* Associate the queue pair to the vector and enable the q int */
2517 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
2518 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
2519 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
2520
2521 wr32(hw, I40E_QINT_RQCTL(0), val);
2522
2523 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
2524 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
2525 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
2526
2527 wr32(hw, I40E_QINT_TQCTL(0), val);
2528 i40e_flush(hw);
2529}
2530
2531/**
2532 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
2533 * @pf: board private structure
2534 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00002535void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002536{
2537 struct i40e_hw *hw = &pf->hw;
2538 u32 val;
2539
2540 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
2541 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
2542 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
2543
2544 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2545 i40e_flush(hw);
2546}
2547
2548/**
2549 * i40e_irq_dynamic_enable - Enable default interrupt generation settings
2550 * @vsi: pointer to a vsi
2551 * @vector: enable a particular Hw Interrupt vector
2552 **/
2553void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector)
2554{
2555 struct i40e_pf *pf = vsi->back;
2556 struct i40e_hw *hw = &pf->hw;
2557 u32 val;
2558
2559 val = I40E_PFINT_DYN_CTLN_INTENA_MASK |
2560 I40E_PFINT_DYN_CTLN_CLEARPBA_MASK |
2561 (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
2562 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002563 /* skip the flush */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002564}
2565
2566/**
2567 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
2568 * @irq: interrupt number
2569 * @data: pointer to a q_vector
2570 **/
2571static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
2572{
2573 struct i40e_q_vector *q_vector = data;
2574
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002575 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002576 return IRQ_HANDLED;
2577
2578 napi_schedule(&q_vector->napi);
2579
2580 return IRQ_HANDLED;
2581}
2582
2583/**
2584 * i40e_fdir_clean_rings - Interrupt Handler for FDIR rings
2585 * @irq: interrupt number
2586 * @data: pointer to a q_vector
2587 **/
2588static irqreturn_t i40e_fdir_clean_rings(int irq, void *data)
2589{
2590 struct i40e_q_vector *q_vector = data;
2591
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002592 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002593 return IRQ_HANDLED;
2594
2595 pr_info("fdir ring cleaning needed\n");
2596
2597 return IRQ_HANDLED;
2598}
2599
2600/**
2601 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
2602 * @vsi: the VSI being configured
2603 * @basename: name for the vector
2604 *
2605 * Allocates MSI-X vectors and requests interrupts from the kernel.
2606 **/
2607static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
2608{
2609 int q_vectors = vsi->num_q_vectors;
2610 struct i40e_pf *pf = vsi->back;
2611 int base = vsi->base_vector;
2612 int rx_int_idx = 0;
2613 int tx_int_idx = 0;
2614 int vector, err;
2615
2616 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00002617 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002618
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002619 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002620 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2621 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
2622 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002623 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002624 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2625 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002626 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002627 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2628 "%s-%s-%d", basename, "tx", tx_int_idx++);
2629 } else {
2630 /* skip this unused q_vector */
2631 continue;
2632 }
2633 err = request_irq(pf->msix_entries[base + vector].vector,
2634 vsi->irq_handler,
2635 0,
2636 q_vector->name,
2637 q_vector);
2638 if (err) {
2639 dev_info(&pf->pdev->dev,
2640 "%s: request_irq failed, error: %d\n",
2641 __func__, err);
2642 goto free_queue_irqs;
2643 }
2644 /* assign the mask for this irq */
2645 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2646 &q_vector->affinity_mask);
2647 }
2648
2649 return 0;
2650
2651free_queue_irqs:
2652 while (vector) {
2653 vector--;
2654 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
2655 NULL);
2656 free_irq(pf->msix_entries[base + vector].vector,
2657 &(vsi->q_vectors[vector]));
2658 }
2659 return err;
2660}
2661
2662/**
2663 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
2664 * @vsi: the VSI being un-configured
2665 **/
2666static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
2667{
2668 struct i40e_pf *pf = vsi->back;
2669 struct i40e_hw *hw = &pf->hw;
2670 int base = vsi->base_vector;
2671 int i;
2672
2673 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002674 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
2675 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002676 }
2677
2678 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
2679 for (i = vsi->base_vector;
2680 i < (vsi->num_q_vectors + vsi->base_vector); i++)
2681 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
2682
2683 i40e_flush(hw);
2684 for (i = 0; i < vsi->num_q_vectors; i++)
2685 synchronize_irq(pf->msix_entries[i + base].vector);
2686 } else {
2687 /* Legacy and MSI mode - this stops all interrupt handling */
2688 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
2689 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
2690 i40e_flush(hw);
2691 synchronize_irq(pf->pdev->irq);
2692 }
2693}
2694
2695/**
2696 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
2697 * @vsi: the VSI being configured
2698 **/
2699static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
2700{
2701 struct i40e_pf *pf = vsi->back;
2702 int i;
2703
2704 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
2705 for (i = vsi->base_vector;
2706 i < (vsi->num_q_vectors + vsi->base_vector); i++)
2707 i40e_irq_dynamic_enable(vsi, i);
2708 } else {
2709 i40e_irq_dynamic_enable_icr0(pf);
2710 }
2711
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00002712 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002713 return 0;
2714}
2715
2716/**
2717 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
2718 * @pf: board private structure
2719 **/
2720static void i40e_stop_misc_vector(struct i40e_pf *pf)
2721{
2722 /* Disable ICR 0 */
2723 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
2724 i40e_flush(&pf->hw);
2725}
2726
2727/**
2728 * i40e_intr - MSI/Legacy and non-queue interrupt handler
2729 * @irq: interrupt number
2730 * @data: pointer to a q_vector
2731 *
2732 * This is the handler used for all MSI/Legacy interrupts, and deals
2733 * with both queue and non-queue interrupts. This is also used in
2734 * MSIX mode to handle the non-queue interrupts.
2735 **/
2736static irqreturn_t i40e_intr(int irq, void *data)
2737{
2738 struct i40e_pf *pf = (struct i40e_pf *)data;
2739 struct i40e_hw *hw = &pf->hw;
2740 u32 icr0, icr0_remaining;
2741 u32 val, ena_mask;
2742
2743 icr0 = rd32(hw, I40E_PFINT_ICR0);
2744
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002745 val = rd32(hw, I40E_PFINT_DYN_CTL0);
2746 val = val | I40E_PFINT_DYN_CTL0_CLEARPBA_MASK;
2747 wr32(hw, I40E_PFINT_DYN_CTL0, val);
2748
Shannon Nelson116a57d2013-09-28 07:13:59 +00002749 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
2750 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
2751 return IRQ_NONE;
2752
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002753 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
2754
Shannon Nelsoncd92e722013-11-16 10:00:44 +00002755 /* if interrupt but no bits showing, must be SWINT */
2756 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
2757 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
2758 pf->sw_int_count++;
2759
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002760 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
2761 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
2762
2763 /* temporarily disable queue cause for NAPI processing */
2764 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
2765 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
2766 wr32(hw, I40E_QINT_RQCTL(0), qval);
2767
2768 qval = rd32(hw, I40E_QINT_TQCTL(0));
2769 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
2770 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002771
2772 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck493fb302013-09-28 07:01:44 +00002773 napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002774 }
2775
2776 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
2777 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
2778 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
2779 }
2780
2781 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
2782 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
2783 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
2784 }
2785
2786 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
2787 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
2788 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
2789 }
2790
2791 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
2792 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
2793 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
2794 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
2795 val = rd32(hw, I40E_GLGEN_RSTAT);
2796 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
2797 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelsond52cf0a2013-11-16 10:00:39 +00002798 if (val == I40E_RESET_CORER)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002799 pf->corer_count++;
Shannon Nelsond52cf0a2013-11-16 10:00:39 +00002800 else if (val == I40E_RESET_GLOBR)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002801 pf->globr_count++;
Shannon Nelsond52cf0a2013-11-16 10:00:39 +00002802 else if (val == I40E_RESET_EMPR)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002803 pf->empr_count++;
2804 }
2805
2806 /* If a critical error is pending we have no choice but to reset the
2807 * device.
2808 * Report and mask out any remaining unexpected interrupts.
2809 */
2810 icr0_remaining = icr0 & ena_mask;
2811 if (icr0_remaining) {
2812 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
2813 icr0_remaining);
2814 if ((icr0_remaining & I40E_PFINT_ICR0_HMC_ERR_MASK) ||
2815 (icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
2816 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
2817 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK) ||
2818 (icr0_remaining & I40E_PFINT_ICR0_MAL_DETECT_MASK)) {
2819 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
2820 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
2821 } else {
2822 dev_info(&pf->pdev->dev, "device will be reset\n");
2823 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
2824 i40e_service_event_schedule(pf);
2825 }
2826 }
2827 ena_mask &= ~icr0_remaining;
2828 }
2829
2830 /* re-enable interrupt causes */
2831 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002832 if (!test_bit(__I40E_DOWN, &pf->state)) {
2833 i40e_service_event_schedule(pf);
2834 i40e_irq_dynamic_enable_icr0(pf);
2835 }
2836
2837 return IRQ_HANDLED;
2838}
2839
2840/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002841 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002842 * @vsi: the VSI being configured
2843 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002844 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002845 **/
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002846static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002847{
Alexander Duyck493fb302013-09-28 07:01:44 +00002848 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002849 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
2850 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002851
2852 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002853 tx_ring->next = q_vector->tx.ring;
2854 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002855 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002856
2857 rx_ring->q_vector = q_vector;
2858 rx_ring->next = q_vector->rx.ring;
2859 q_vector->rx.ring = rx_ring;
2860 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002861}
2862
2863/**
2864 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
2865 * @vsi: the VSI being configured
2866 *
2867 * This function maps descriptor rings to the queue-specific vectors
2868 * we were allotted through the MSI-X enabling code. Ideally, we'd have
2869 * one vector per queue pair, but on a constrained vector budget, we
2870 * group the queue pairs as "efficiently" as possible.
2871 **/
2872static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
2873{
2874 int qp_remaining = vsi->num_queue_pairs;
2875 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002876 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002877 int v_start = 0;
2878 int qp_idx = 0;
2879
2880 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
2881 * group them so there are multiple queues per vector.
2882 */
2883 for (; v_start < q_vectors && qp_remaining; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00002884 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
2885
2886 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
2887
2888 q_vector->num_ringpairs = num_ringpairs;
2889
2890 q_vector->rx.count = 0;
2891 q_vector->tx.count = 0;
2892 q_vector->rx.ring = NULL;
2893 q_vector->tx.ring = NULL;
2894
2895 while (num_ringpairs--) {
2896 map_vector_to_qp(vsi, v_start, qp_idx);
2897 qp_idx++;
2898 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002899 }
2900 }
2901}
2902
2903/**
2904 * i40e_vsi_request_irq - Request IRQ from the OS
2905 * @vsi: the VSI being configured
2906 * @basename: name for the vector
2907 **/
2908static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
2909{
2910 struct i40e_pf *pf = vsi->back;
2911 int err;
2912
2913 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
2914 err = i40e_vsi_request_irq_msix(vsi, basename);
2915 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
2916 err = request_irq(pf->pdev->irq, i40e_intr, 0,
2917 pf->misc_int_name, pf);
2918 else
2919 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
2920 pf->misc_int_name, pf);
2921
2922 if (err)
2923 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
2924
2925 return err;
2926}
2927
2928#ifdef CONFIG_NET_POLL_CONTROLLER
2929/**
2930 * i40e_netpoll - A Polling 'interrupt'handler
2931 * @netdev: network interface device structure
2932 *
2933 * This is used by netconsole to send skbs without having to re-enable
2934 * interrupts. It's not called while the normal interrupt routine is executing.
2935 **/
2936static void i40e_netpoll(struct net_device *netdev)
2937{
2938 struct i40e_netdev_priv *np = netdev_priv(netdev);
2939 struct i40e_vsi *vsi = np->vsi;
2940 struct i40e_pf *pf = vsi->back;
2941 int i;
2942
2943 /* if interface is down do nothing */
2944 if (test_bit(__I40E_DOWN, &vsi->state))
2945 return;
2946
2947 pf->flags |= I40E_FLAG_IN_NETPOLL;
2948 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
2949 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00002950 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002951 } else {
2952 i40e_intr(pf->pdev->irq, netdev);
2953 }
2954 pf->flags &= ~I40E_FLAG_IN_NETPOLL;
2955}
2956#endif
2957
2958/**
2959 * i40e_vsi_control_tx - Start or stop a VSI's rings
2960 * @vsi: the VSI being configured
2961 * @enable: start or stop the rings
2962 **/
2963static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
2964{
2965 struct i40e_pf *pf = vsi->back;
2966 struct i40e_hw *hw = &pf->hw;
2967 int i, j, pf_q;
2968 u32 tx_reg;
2969
2970 pf_q = vsi->base_queue;
2971 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
2972 j = 1000;
2973 do {
2974 usleep_range(1000, 2000);
2975 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
2976 } while (j-- && ((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT)
2977 ^ (tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT)) & 1);
2978
2979 if (enable) {
2980 /* is STAT set ? */
2981 if ((tx_reg & I40E_QTX_ENA_QENA_STAT_MASK)) {
2982 dev_info(&pf->pdev->dev,
2983 "Tx %d already enabled\n", i);
2984 continue;
2985 }
2986 } else {
2987 /* is !STAT set ? */
2988 if (!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK)) {
2989 dev_info(&pf->pdev->dev,
2990 "Tx %d already disabled\n", i);
2991 continue;
2992 }
2993 }
2994
2995 /* turn on/off the queue */
2996 if (enable)
2997 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK |
2998 I40E_QTX_ENA_QENA_STAT_MASK;
2999 else
3000 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
3001
3002 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
3003
3004 /* wait for the change to finish */
3005 for (j = 0; j < 10; j++) {
3006 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
3007 if (enable) {
3008 if ((tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3009 break;
3010 } else {
3011 if (!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3012 break;
3013 }
3014
3015 udelay(10);
3016 }
3017 if (j >= 10) {
3018 dev_info(&pf->pdev->dev, "Tx ring %d %sable timeout\n",
3019 pf_q, (enable ? "en" : "dis"));
3020 return -ETIMEDOUT;
3021 }
3022 }
3023
3024 return 0;
3025}
3026
3027/**
3028 * i40e_vsi_control_rx - Start or stop a VSI's rings
3029 * @vsi: the VSI being configured
3030 * @enable: start or stop the rings
3031 **/
3032static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3033{
3034 struct i40e_pf *pf = vsi->back;
3035 struct i40e_hw *hw = &pf->hw;
3036 int i, j, pf_q;
3037 u32 rx_reg;
3038
3039 pf_q = vsi->base_queue;
3040 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
3041 j = 1000;
3042 do {
3043 usleep_range(1000, 2000);
3044 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
3045 } while (j-- && ((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT)
3046 ^ (rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT)) & 1);
3047
3048 if (enable) {
3049 /* is STAT set ? */
3050 if ((rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3051 continue;
3052 } else {
3053 /* is !STAT set ? */
3054 if (!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3055 continue;
3056 }
3057
3058 /* turn on/off the queue */
3059 if (enable)
3060 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK |
3061 I40E_QRX_ENA_QENA_STAT_MASK;
3062 else
3063 rx_reg &= ~(I40E_QRX_ENA_QENA_REQ_MASK |
3064 I40E_QRX_ENA_QENA_STAT_MASK);
3065 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3066
3067 /* wait for the change to finish */
3068 for (j = 0; j < 10; j++) {
3069 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
3070
3071 if (enable) {
3072 if ((rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3073 break;
3074 } else {
3075 if (!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3076 break;
3077 }
3078
3079 udelay(10);
3080 }
3081 if (j >= 10) {
3082 dev_info(&pf->pdev->dev, "Rx ring %d %sable timeout\n",
3083 pf_q, (enable ? "en" : "dis"));
3084 return -ETIMEDOUT;
3085 }
3086 }
3087
3088 return 0;
3089}
3090
3091/**
3092 * i40e_vsi_control_rings - Start or stop a VSI's rings
3093 * @vsi: the VSI being configured
3094 * @enable: start or stop the rings
3095 **/
3096static int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
3097{
3098 int ret;
3099
3100 /* do rx first for enable and last for disable */
3101 if (request) {
3102 ret = i40e_vsi_control_rx(vsi, request);
3103 if (ret)
3104 return ret;
3105 ret = i40e_vsi_control_tx(vsi, request);
3106 } else {
3107 ret = i40e_vsi_control_tx(vsi, request);
3108 if (ret)
3109 return ret;
3110 ret = i40e_vsi_control_rx(vsi, request);
3111 }
3112
3113 return ret;
3114}
3115
3116/**
3117 * i40e_vsi_free_irq - Free the irq association with the OS
3118 * @vsi: the VSI being configured
3119 **/
3120static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3121{
3122 struct i40e_pf *pf = vsi->back;
3123 struct i40e_hw *hw = &pf->hw;
3124 int base = vsi->base_vector;
3125 u32 val, qp;
3126 int i;
3127
3128 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3129 if (!vsi->q_vectors)
3130 return;
3131
3132 for (i = 0; i < vsi->num_q_vectors; i++) {
3133 u16 vector = i + base;
3134
3135 /* free only the irqs that were actually requested */
Alexander Duyck493fb302013-09-28 07:01:44 +00003136 if (vsi->q_vectors[i]->num_ringpairs == 0)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003137 continue;
3138
3139 /* clear the affinity_mask in the IRQ descriptor */
3140 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3141 NULL);
3142 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003143 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003144
3145 /* Tear down the interrupt queue link list
3146 *
3147 * We know that they come in pairs and always
3148 * the Rx first, then the Tx. To clear the
3149 * link list, stick the EOL value into the
3150 * next_q field of the registers.
3151 */
3152 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3153 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3154 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3155 val |= I40E_QUEUE_END_OF_LIST
3156 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3157 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3158
3159 while (qp != I40E_QUEUE_END_OF_LIST) {
3160 u32 next;
3161
3162 val = rd32(hw, I40E_QINT_RQCTL(qp));
3163
3164 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3165 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3166 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3167 I40E_QINT_RQCTL_INTEVENT_MASK);
3168
3169 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3170 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3171
3172 wr32(hw, I40E_QINT_RQCTL(qp), val);
3173
3174 val = rd32(hw, I40E_QINT_TQCTL(qp));
3175
3176 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3177 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3178
3179 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3180 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3181 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3182 I40E_QINT_TQCTL_INTEVENT_MASK);
3183
3184 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3185 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3186
3187 wr32(hw, I40E_QINT_TQCTL(qp), val);
3188 qp = next;
3189 }
3190 }
3191 } else {
3192 free_irq(pf->pdev->irq, pf);
3193
3194 val = rd32(hw, I40E_PFINT_LNKLST0);
3195 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3196 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3197 val |= I40E_QUEUE_END_OF_LIST
3198 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3199 wr32(hw, I40E_PFINT_LNKLST0, val);
3200
3201 val = rd32(hw, I40E_QINT_RQCTL(qp));
3202 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3203 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3204 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3205 I40E_QINT_RQCTL_INTEVENT_MASK);
3206
3207 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3208 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3209
3210 wr32(hw, I40E_QINT_RQCTL(qp), val);
3211
3212 val = rd32(hw, I40E_QINT_TQCTL(qp));
3213
3214 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3215 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3216 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3217 I40E_QINT_TQCTL_INTEVENT_MASK);
3218
3219 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3220 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3221
3222 wr32(hw, I40E_QINT_TQCTL(qp), val);
3223 }
3224}
3225
3226/**
Alexander Duyck493fb302013-09-28 07:01:44 +00003227 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
3228 * @vsi: the VSI being configured
3229 * @v_idx: Index of vector to be freed
3230 *
3231 * This function frees the memory allocated to the q_vector. In addition if
3232 * NAPI is enabled it will delete any references to the NAPI struct prior
3233 * to freeing the q_vector.
3234 **/
3235static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
3236{
3237 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003238 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00003239
3240 if (!q_vector)
3241 return;
3242
3243 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003244 i40e_for_each_ring(ring, q_vector->tx)
3245 ring->q_vector = NULL;
3246
3247 i40e_for_each_ring(ring, q_vector->rx)
3248 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00003249
3250 /* only VSI w/ an associated netdev is set up w/ NAPI */
3251 if (vsi->netdev)
3252 netif_napi_del(&q_vector->napi);
3253
3254 vsi->q_vectors[v_idx] = NULL;
3255
3256 kfree_rcu(q_vector, rcu);
3257}
3258
3259/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003260 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
3261 * @vsi: the VSI being un-configured
3262 *
3263 * This frees the memory allocated to the q_vectors and
3264 * deletes references to the NAPI struct.
3265 **/
3266static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
3267{
3268 int v_idx;
3269
Alexander Duyck493fb302013-09-28 07:01:44 +00003270 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
3271 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003272}
3273
3274/**
3275 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
3276 * @pf: board private structure
3277 **/
3278static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
3279{
3280 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
3281 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3282 pci_disable_msix(pf->pdev);
3283 kfree(pf->msix_entries);
3284 pf->msix_entries = NULL;
3285 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
3286 pci_disable_msi(pf->pdev);
3287 }
3288 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
3289}
3290
3291/**
3292 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
3293 * @pf: board private structure
3294 *
3295 * We go through and clear interrupt specific resources and reset the structure
3296 * to pre-load conditions
3297 **/
3298static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
3299{
3300 int i;
3301
3302 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
3303 for (i = 0; i < pf->hw.func_caps.num_vsis; i++)
3304 if (pf->vsi[i])
3305 i40e_vsi_free_q_vectors(pf->vsi[i]);
3306 i40e_reset_interrupt_capability(pf);
3307}
3308
3309/**
3310 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
3311 * @vsi: the VSI being configured
3312 **/
3313static void i40e_napi_enable_all(struct i40e_vsi *vsi)
3314{
3315 int q_idx;
3316
3317 if (!vsi->netdev)
3318 return;
3319
3320 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003321 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003322}
3323
3324/**
3325 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
3326 * @vsi: the VSI being configured
3327 **/
3328static void i40e_napi_disable_all(struct i40e_vsi *vsi)
3329{
3330 int q_idx;
3331
3332 if (!vsi->netdev)
3333 return;
3334
3335 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003336 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003337}
3338
3339/**
3340 * i40e_quiesce_vsi - Pause a given VSI
3341 * @vsi: the VSI being paused
3342 **/
3343static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
3344{
3345 if (test_bit(__I40E_DOWN, &vsi->state))
3346 return;
3347
3348 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
3349 if (vsi->netdev && netif_running(vsi->netdev)) {
3350 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
3351 } else {
3352 set_bit(__I40E_DOWN, &vsi->state);
3353 i40e_down(vsi);
3354 }
3355}
3356
3357/**
3358 * i40e_unquiesce_vsi - Resume a given VSI
3359 * @vsi: the VSI being resumed
3360 **/
3361static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
3362{
3363 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
3364 return;
3365
3366 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
3367 if (vsi->netdev && netif_running(vsi->netdev))
3368 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
3369 else
3370 i40e_up(vsi); /* this clears the DOWN bit */
3371}
3372
3373/**
3374 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
3375 * @pf: the PF
3376 **/
3377static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
3378{
3379 int v;
3380
3381 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
3382 if (pf->vsi[v])
3383 i40e_quiesce_vsi(pf->vsi[v]);
3384 }
3385}
3386
3387/**
3388 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
3389 * @pf: the PF
3390 **/
3391static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
3392{
3393 int v;
3394
3395 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
3396 if (pf->vsi[v])
3397 i40e_unquiesce_vsi(pf->vsi[v]);
3398 }
3399}
3400
3401/**
3402 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
3403 * @dcbcfg: the corresponding DCBx configuration structure
3404 *
3405 * Return the number of TCs from given DCBx configuration
3406 **/
3407static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
3408{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003409 u8 num_tc = 0;
3410 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003411
3412 /* Scan the ETS Config Priority Table to find
3413 * traffic class enabled for a given priority
3414 * and use the traffic class index to get the
3415 * number of traffic classes enabled
3416 */
3417 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
3418 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
3419 num_tc = dcbcfg->etscfg.prioritytable[i];
3420 }
3421
3422 /* Traffic class index starts from zero so
3423 * increment to return the actual count
3424 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003425 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003426}
3427
3428/**
3429 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
3430 * @dcbcfg: the corresponding DCBx configuration structure
3431 *
3432 * Query the current DCB configuration and return the number of
3433 * traffic classes enabled from the given DCBX config
3434 **/
3435static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
3436{
3437 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
3438 u8 enabled_tc = 1;
3439 u8 i;
3440
3441 for (i = 0; i < num_tc; i++)
3442 enabled_tc |= 1 << i;
3443
3444 return enabled_tc;
3445}
3446
3447/**
3448 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
3449 * @pf: PF being queried
3450 *
3451 * Return number of traffic classes enabled for the given PF
3452 **/
3453static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
3454{
3455 struct i40e_hw *hw = &pf->hw;
3456 u8 i, enabled_tc;
3457 u8 num_tc = 0;
3458 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
3459
3460 /* If DCB is not enabled then always in single TC */
3461 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
3462 return 1;
3463
3464 /* MFP mode return count of enabled TCs for this PF */
3465 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3466 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3467 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3468 if (enabled_tc & (1 << i))
3469 num_tc++;
3470 }
3471 return num_tc;
3472 }
3473
3474 /* SFP mode will be enabled for all TCs on port */
3475 return i40e_dcb_get_num_tc(dcbcfg);
3476}
3477
3478/**
3479 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
3480 * @pf: PF being queried
3481 *
3482 * Return a bitmap for first enabled traffic class for this PF.
3483 **/
3484static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
3485{
3486 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
3487 u8 i = 0;
3488
3489 if (!enabled_tc)
3490 return 0x1; /* TC0 */
3491
3492 /* Find the first enabled TC */
3493 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3494 if (enabled_tc & (1 << i))
3495 break;
3496 }
3497
3498 return 1 << i;
3499}
3500
3501/**
3502 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
3503 * @pf: PF being queried
3504 *
3505 * Return a bitmap for enabled traffic classes for this PF.
3506 **/
3507static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
3508{
3509 /* If DCB is not enabled for this PF then just return default TC */
3510 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
3511 return i40e_pf_get_default_tc(pf);
3512
3513 /* MFP mode will have enabled TCs set by FW */
3514 if (pf->flags & I40E_FLAG_MFP_ENABLED)
3515 return pf->hw.func_caps.enabled_tcmap;
3516
3517 /* SFP mode we want PF to be enabled for all TCs */
3518 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
3519}
3520
3521/**
3522 * i40e_vsi_get_bw_info - Query VSI BW Information
3523 * @vsi: the VSI being queried
3524 *
3525 * Returns 0 on success, negative value on failure
3526 **/
3527static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
3528{
3529 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
3530 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
3531 struct i40e_pf *pf = vsi->back;
3532 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003533 i40e_status aq_ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003534 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003535 int i;
3536
3537 /* Get the VSI level BW configuration */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003538 aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
3539 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003540 dev_info(&pf->pdev->dev,
3541 "couldn't get pf vsi bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003542 aq_ret, pf->hw.aq.asq_last_status);
3543 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003544 }
3545
3546 /* Get the VSI level BW configuration per TC */
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003547 aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
3548 NULL);
3549 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003550 dev_info(&pf->pdev->dev,
3551 "couldn't get pf vsi ets bw config, err %d, aq_err %d\n",
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003552 aq_ret, pf->hw.aq.asq_last_status);
3553 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003554 }
3555
3556 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
3557 dev_info(&pf->pdev->dev,
3558 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
3559 bw_config.tc_valid_bits,
3560 bw_ets_config.tc_valid_bits);
3561 /* Still continuing */
3562 }
3563
3564 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
3565 vsi->bw_max_quanta = bw_config.max_bw;
3566 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
3567 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
3568 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3569 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
3570 vsi->bw_ets_limit_credits[i] =
3571 le16_to_cpu(bw_ets_config.credits[i]);
3572 /* 3 bits out of 4 for each TC */
3573 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
3574 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00003575
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003576 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003577}
3578
3579/**
3580 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
3581 * @vsi: the VSI being configured
3582 * @enabled_tc: TC bitmap
3583 * @bw_credits: BW shared credits per TC
3584 *
3585 * Returns 0 on success, negative value on failure
3586 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003587static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003588 u8 *bw_share)
3589{
3590 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003591 i40e_status aq_ret;
3592 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003593
3594 bw_data.tc_valid_bits = enabled_tc;
3595 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
3596 bw_data.tc_bw_credits[i] = bw_share[i];
3597
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003598 aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
3599 NULL);
3600 if (aq_ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003601 dev_info(&vsi->back->pdev->dev,
3602 "%s: AQ command Config VSI BW allocation per TC failed = %d\n",
3603 __func__, vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003604 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003605 }
3606
3607 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
3608 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
3609
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00003610 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003611}
3612
3613/**
3614 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
3615 * @vsi: the VSI being configured
3616 * @enabled_tc: TC map to be enabled
3617 *
3618 **/
3619static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
3620{
3621 struct net_device *netdev = vsi->netdev;
3622 struct i40e_pf *pf = vsi->back;
3623 struct i40e_hw *hw = &pf->hw;
3624 u8 netdev_tc = 0;
3625 int i;
3626 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
3627
3628 if (!netdev)
3629 return;
3630
3631 if (!enabled_tc) {
3632 netdev_reset_tc(netdev);
3633 return;
3634 }
3635
3636 /* Set up actual enabled TCs on the VSI */
3637 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
3638 return;
3639
3640 /* set per TC queues for the VSI */
3641 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3642 /* Only set TC queues for enabled tcs
3643 *
3644 * e.g. For a VSI that has TC0 and TC3 enabled the
3645 * enabled_tc bitmap would be 0x00001001; the driver
3646 * will set the numtc for netdev as 2 that will be
3647 * referenced by the netdev layer as TC 0 and 1.
3648 */
3649 if (vsi->tc_config.enabled_tc & (1 << i))
3650 netdev_set_tc_queue(netdev,
3651 vsi->tc_config.tc_info[i].netdev_tc,
3652 vsi->tc_config.tc_info[i].qcount,
3653 vsi->tc_config.tc_info[i].qoffset);
3654 }
3655
3656 /* Assign UP2TC map for the VSI */
3657 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
3658 /* Get the actual TC# for the UP */
3659 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
3660 /* Get the mapped netdev TC# for the UP */
3661 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
3662 netdev_set_prio_tc_map(netdev, i, netdev_tc);
3663 }
3664}
3665
3666/**
3667 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
3668 * @vsi: the VSI being configured
3669 * @ctxt: the ctxt buffer returned from AQ VSI update param command
3670 **/
3671static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
3672 struct i40e_vsi_context *ctxt)
3673{
3674 /* copy just the sections touched not the entire info
3675 * since not all sections are valid as returned by
3676 * update vsi params
3677 */
3678 vsi->info.mapping_flags = ctxt->info.mapping_flags;
3679 memcpy(&vsi->info.queue_mapping,
3680 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
3681 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
3682 sizeof(vsi->info.tc_mapping));
3683}
3684
3685/**
3686 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
3687 * @vsi: VSI to be configured
3688 * @enabled_tc: TC bitmap
3689 *
3690 * This configures a particular VSI for TCs that are mapped to the
3691 * given TC bitmap. It uses default bandwidth share for TCs across
3692 * VSIs to configure TC for a particular VSI.
3693 *
3694 * NOTE:
3695 * It is expected that the VSI queues have been quisced before calling
3696 * this function.
3697 **/
3698static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
3699{
3700 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
3701 struct i40e_vsi_context ctxt;
3702 int ret = 0;
3703 int i;
3704
3705 /* Check if enabled_tc is same as existing or new TCs */
3706 if (vsi->tc_config.enabled_tc == enabled_tc)
3707 return ret;
3708
3709 /* Enable ETS TCs with equal BW Share for now across all VSIs */
3710 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
3711 if (enabled_tc & (1 << i))
3712 bw_share[i] = 1;
3713 }
3714
3715 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
3716 if (ret) {
3717 dev_info(&vsi->back->pdev->dev,
3718 "Failed configuring TC map %d for VSI %d\n",
3719 enabled_tc, vsi->seid);
3720 goto out;
3721 }
3722
3723 /* Update Queue Pairs Mapping for currently enabled UPs */
3724 ctxt.seid = vsi->seid;
3725 ctxt.pf_num = vsi->back->hw.pf_id;
3726 ctxt.vf_num = 0;
3727 ctxt.uplink_seid = vsi->uplink_seid;
3728 memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
3729 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
3730
3731 /* Update the VSI after updating the VSI queue-mapping information */
3732 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
3733 if (ret) {
3734 dev_info(&vsi->back->pdev->dev,
3735 "update vsi failed, aq_err=%d\n",
3736 vsi->back->hw.aq.asq_last_status);
3737 goto out;
3738 }
3739 /* update the local VSI info with updated queue map */
3740 i40e_vsi_update_queue_map(vsi, &ctxt);
3741 vsi->info.valid_sections = 0;
3742
3743 /* Update current VSI BW information */
3744 ret = i40e_vsi_get_bw_info(vsi);
3745 if (ret) {
3746 dev_info(&vsi->back->pdev->dev,
3747 "Failed updating vsi bw info, aq_err=%d\n",
3748 vsi->back->hw.aq.asq_last_status);
3749 goto out;
3750 }
3751
3752 /* Update the netdev TC setup */
3753 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
3754out:
3755 return ret;
3756}
3757
3758/**
3759 * i40e_up_complete - Finish the last steps of bringing up a connection
3760 * @vsi: the VSI being configured
3761 **/
3762static int i40e_up_complete(struct i40e_vsi *vsi)
3763{
3764 struct i40e_pf *pf = vsi->back;
3765 int err;
3766
3767 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3768 i40e_vsi_configure_msix(vsi);
3769 else
3770 i40e_configure_msi_and_legacy(vsi);
3771
3772 /* start rings */
3773 err = i40e_vsi_control_rings(vsi, true);
3774 if (err)
3775 return err;
3776
3777 clear_bit(__I40E_DOWN, &vsi->state);
3778 i40e_napi_enable_all(vsi);
3779 i40e_vsi_enable_irq(vsi);
3780
3781 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
3782 (vsi->netdev)) {
Anjali Singhai6d779b42013-09-28 06:00:02 +00003783 netdev_info(vsi->netdev, "NIC Link is Up\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003784 netif_tx_start_all_queues(vsi->netdev);
3785 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00003786 } else if (vsi->netdev) {
3787 netdev_info(vsi->netdev, "NIC Link is Down\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003788 }
3789 i40e_service_event_schedule(pf);
3790
3791 return 0;
3792}
3793
3794/**
3795 * i40e_vsi_reinit_locked - Reset the VSI
3796 * @vsi: the VSI being configured
3797 *
3798 * Rebuild the ring structs after some configuration
3799 * has changed, e.g. MTU size.
3800 **/
3801static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
3802{
3803 struct i40e_pf *pf = vsi->back;
3804
3805 WARN_ON(in_interrupt());
3806 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
3807 usleep_range(1000, 2000);
3808 i40e_down(vsi);
3809
3810 /* Give a VF some time to respond to the reset. The
3811 * two second wait is based upon the watchdog cycle in
3812 * the VF driver.
3813 */
3814 if (vsi->type == I40E_VSI_SRIOV)
3815 msleep(2000);
3816 i40e_up(vsi);
3817 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
3818}
3819
3820/**
3821 * i40e_up - Bring the connection back up after being down
3822 * @vsi: the VSI being configured
3823 **/
3824int i40e_up(struct i40e_vsi *vsi)
3825{
3826 int err;
3827
3828 err = i40e_vsi_configure(vsi);
3829 if (!err)
3830 err = i40e_up_complete(vsi);
3831
3832 return err;
3833}
3834
3835/**
3836 * i40e_down - Shutdown the connection processing
3837 * @vsi: the VSI being stopped
3838 **/
3839void i40e_down(struct i40e_vsi *vsi)
3840{
3841 int i;
3842
3843 /* It is assumed that the caller of this function
3844 * sets the vsi->state __I40E_DOWN bit.
3845 */
3846 if (vsi->netdev) {
3847 netif_carrier_off(vsi->netdev);
3848 netif_tx_disable(vsi->netdev);
3849 }
3850 i40e_vsi_disable_irq(vsi);
3851 i40e_vsi_control_rings(vsi, false);
3852 i40e_napi_disable_all(vsi);
3853
3854 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003855 i40e_clean_tx_ring(vsi->tx_rings[i]);
3856 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003857 }
3858}
3859
3860/**
3861 * i40e_setup_tc - configure multiple traffic classes
3862 * @netdev: net device to configure
3863 * @tc: number of traffic classes to enable
3864 **/
3865static int i40e_setup_tc(struct net_device *netdev, u8 tc)
3866{
3867 struct i40e_netdev_priv *np = netdev_priv(netdev);
3868 struct i40e_vsi *vsi = np->vsi;
3869 struct i40e_pf *pf = vsi->back;
3870 u8 enabled_tc = 0;
3871 int ret = -EINVAL;
3872 int i;
3873
3874 /* Check if DCB enabled to continue */
3875 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
3876 netdev_info(netdev, "DCB is not enabled for adapter\n");
3877 goto exit;
3878 }
3879
3880 /* Check if MFP enabled */
3881 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
3882 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
3883 goto exit;
3884 }
3885
3886 /* Check whether tc count is within enabled limit */
3887 if (tc > i40e_pf_get_num_tc(pf)) {
3888 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
3889 goto exit;
3890 }
3891
3892 /* Generate TC map for number of tc requested */
3893 for (i = 0; i < tc; i++)
3894 enabled_tc |= (1 << i);
3895
3896 /* Requesting same TC configuration as already enabled */
3897 if (enabled_tc == vsi->tc_config.enabled_tc)
3898 return 0;
3899
3900 /* Quiesce VSI queues */
3901 i40e_quiesce_vsi(vsi);
3902
3903 /* Configure VSI for enabled TCs */
3904 ret = i40e_vsi_config_tc(vsi, enabled_tc);
3905 if (ret) {
3906 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
3907 vsi->seid);
3908 goto exit;
3909 }
3910
3911 /* Unquiesce VSI */
3912 i40e_unquiesce_vsi(vsi);
3913
3914exit:
3915 return ret;
3916}
3917
3918/**
3919 * i40e_open - Called when a network interface is made active
3920 * @netdev: network interface device structure
3921 *
3922 * The open entry point is called when a network interface is made
3923 * active by the system (IFF_UP). At this point all resources needed
3924 * for transmit and receive operations are allocated, the interrupt
3925 * handler is registered with the OS, the netdev watchdog subtask is
3926 * enabled, and the stack is notified that the interface is ready.
3927 *
3928 * Returns 0 on success, negative value on failure
3929 **/
3930static int i40e_open(struct net_device *netdev)
3931{
3932 struct i40e_netdev_priv *np = netdev_priv(netdev);
3933 struct i40e_vsi *vsi = np->vsi;
3934 struct i40e_pf *pf = vsi->back;
3935 char int_name[IFNAMSIZ];
3936 int err;
3937
3938 /* disallow open during test */
3939 if (test_bit(__I40E_TESTING, &pf->state))
3940 return -EBUSY;
3941
3942 netif_carrier_off(netdev);
3943
3944 /* allocate descriptors */
3945 err = i40e_vsi_setup_tx_resources(vsi);
3946 if (err)
3947 goto err_setup_tx;
3948 err = i40e_vsi_setup_rx_resources(vsi);
3949 if (err)
3950 goto err_setup_rx;
3951
3952 err = i40e_vsi_configure(vsi);
3953 if (err)
3954 goto err_setup_rx;
3955
3956 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
3957 dev_driver_string(&pf->pdev->dev), netdev->name);
3958 err = i40e_vsi_request_irq(vsi, int_name);
3959 if (err)
3960 goto err_setup_rx;
3961
3962 err = i40e_up_complete(vsi);
3963 if (err)
3964 goto err_up_complete;
3965
3966 if ((vsi->type == I40E_VSI_MAIN) || (vsi->type == I40E_VSI_VMDQ2)) {
3967 err = i40e_aq_set_vsi_broadcast(&pf->hw, vsi->seid, true, NULL);
3968 if (err)
3969 netdev_info(netdev,
3970 "couldn't set broadcast err %d aq_err %d\n",
3971 err, pf->hw.aq.asq_last_status);
3972 }
3973
3974 return 0;
3975
3976err_up_complete:
3977 i40e_down(vsi);
3978 i40e_vsi_free_irq(vsi);
3979err_setup_rx:
3980 i40e_vsi_free_rx_resources(vsi);
3981err_setup_tx:
3982 i40e_vsi_free_tx_resources(vsi);
3983 if (vsi == pf->vsi[pf->lan_vsi])
3984 i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED));
3985
3986 return err;
3987}
3988
3989/**
3990 * i40e_close - Disables a network interface
3991 * @netdev: network interface device structure
3992 *
3993 * The close entry point is called when an interface is de-activated
3994 * by the OS. The hardware is still under the driver's control, but
3995 * this netdev interface is disabled.
3996 *
3997 * Returns 0, this is not allowed to fail
3998 **/
3999static int i40e_close(struct net_device *netdev)
4000{
4001 struct i40e_netdev_priv *np = netdev_priv(netdev);
4002 struct i40e_vsi *vsi = np->vsi;
4003
4004 if (test_and_set_bit(__I40E_DOWN, &vsi->state))
4005 return 0;
4006
4007 i40e_down(vsi);
4008 i40e_vsi_free_irq(vsi);
4009
4010 i40e_vsi_free_tx_resources(vsi);
4011 i40e_vsi_free_rx_resources(vsi);
4012
4013 return 0;
4014}
4015
4016/**
4017 * i40e_do_reset - Start a PF or Core Reset sequence
4018 * @pf: board private structure
4019 * @reset_flags: which reset is requested
4020 *
4021 * The essential difference in resets is that the PF Reset
4022 * doesn't clear the packet buffers, doesn't reset the PE
4023 * firmware, and doesn't bother the other PFs on the chip.
4024 **/
4025void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
4026{
4027 u32 val;
4028
4029 WARN_ON(in_interrupt());
4030
4031 /* do the biggest reset indicated */
4032 if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) {
4033
4034 /* Request a Global Reset
4035 *
4036 * This will start the chip's countdown to the actual full
4037 * chip reset event, and a warning interrupt to be sent
4038 * to all PFs, including the requestor. Our handler
4039 * for the warning interrupt will deal with the shutdown
4040 * and recovery of the switch setup.
4041 */
4042 dev_info(&pf->pdev->dev, "GlobalR requested\n");
4043 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4044 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
4045 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4046
4047 } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) {
4048
4049 /* Request a Core Reset
4050 *
4051 * Same as Global Reset, except does *not* include the MAC/PHY
4052 */
4053 dev_info(&pf->pdev->dev, "CoreR requested\n");
4054 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
4055 val |= I40E_GLGEN_RTRIG_CORER_MASK;
4056 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
4057 i40e_flush(&pf->hw);
4058
4059 } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) {
4060
4061 /* Request a PF Reset
4062 *
4063 * Resets only the PF-specific registers
4064 *
4065 * This goes directly to the tear-down and rebuild of
4066 * the switch, since we need to do all the recovery as
4067 * for the Core Reset.
4068 */
4069 dev_info(&pf->pdev->dev, "PFR requested\n");
4070 i40e_handle_reset_warning(pf);
4071
4072 } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) {
4073 int v;
4074
4075 /* Find the VSI(s) that requested a re-init */
4076 dev_info(&pf->pdev->dev,
4077 "VSI reinit requested\n");
4078 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
4079 struct i40e_vsi *vsi = pf->vsi[v];
4080 if (vsi != NULL &&
4081 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
4082 i40e_vsi_reinit_locked(pf->vsi[v]);
4083 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
4084 }
4085 }
4086
4087 /* no further action needed, so return now */
4088 return;
4089 } else {
4090 dev_info(&pf->pdev->dev,
4091 "bad reset request 0x%08x\n", reset_flags);
4092 return;
4093 }
4094}
4095
4096/**
4097 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
4098 * @pf: board private structure
4099 * @e: event info posted on ARQ
4100 *
4101 * Handler for LAN Queue Overflow Event generated by the firmware for PF
4102 * and VF queues
4103 **/
4104static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
4105 struct i40e_arq_event_info *e)
4106{
4107 struct i40e_aqc_lan_overflow *data =
4108 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
4109 u32 queue = le32_to_cpu(data->prtdcb_rupto);
4110 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
4111 struct i40e_hw *hw = &pf->hw;
4112 struct i40e_vf *vf;
4113 u16 vf_id;
4114
4115 dev_info(&pf->pdev->dev, "%s: Rx Queue Number = %d QTX_CTL=0x%08x\n",
4116 __func__, queue, qtx_ctl);
4117
4118 /* Queue belongs to VF, find the VF and issue VF reset */
4119 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
4120 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
4121 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
4122 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
4123 vf_id -= hw->func_caps.vf_base_id;
4124 vf = &pf->vf[vf_id];
4125 i40e_vc_notify_vf_reset(vf);
4126 /* Allow VF to process pending reset notification */
4127 msleep(20);
4128 i40e_reset_vf(vf, false);
4129 }
4130}
4131
4132/**
4133 * i40e_service_event_complete - Finish up the service event
4134 * @pf: board private structure
4135 **/
4136static void i40e_service_event_complete(struct i40e_pf *pf)
4137{
4138 BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
4139
4140 /* flush memory to make sure state is correct before next watchog */
4141 smp_mb__before_clear_bit();
4142 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
4143}
4144
4145/**
4146 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
4147 * @pf: board private structure
4148 **/
4149static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
4150{
4151 if (!(pf->flags & I40E_FLAG_FDIR_REQUIRES_REINIT))
4152 return;
4153
4154 pf->flags &= ~I40E_FLAG_FDIR_REQUIRES_REINIT;
4155
4156 /* if interface is down do nothing */
4157 if (test_bit(__I40E_DOWN, &pf->state))
4158 return;
4159}
4160
4161/**
4162 * i40e_vsi_link_event - notify VSI of a link event
4163 * @vsi: vsi to be notified
4164 * @link_up: link up or down
4165 **/
4166static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
4167{
4168 if (!vsi)
4169 return;
4170
4171 switch (vsi->type) {
4172 case I40E_VSI_MAIN:
4173 if (!vsi->netdev || !vsi->netdev_registered)
4174 break;
4175
4176 if (link_up) {
4177 netif_carrier_on(vsi->netdev);
4178 netif_tx_wake_all_queues(vsi->netdev);
4179 } else {
4180 netif_carrier_off(vsi->netdev);
4181 netif_tx_stop_all_queues(vsi->netdev);
4182 }
4183 break;
4184
4185 case I40E_VSI_SRIOV:
4186 break;
4187
4188 case I40E_VSI_VMDQ2:
4189 case I40E_VSI_CTRL:
4190 case I40E_VSI_MIRROR:
4191 default:
4192 /* there is no notification for other VSIs */
4193 break;
4194 }
4195}
4196
4197/**
4198 * i40e_veb_link_event - notify elements on the veb of a link event
4199 * @veb: veb to be notified
4200 * @link_up: link up or down
4201 **/
4202static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
4203{
4204 struct i40e_pf *pf;
4205 int i;
4206
4207 if (!veb || !veb->pf)
4208 return;
4209 pf = veb->pf;
4210
4211 /* depth first... */
4212 for (i = 0; i < I40E_MAX_VEB; i++)
4213 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
4214 i40e_veb_link_event(pf->veb[i], link_up);
4215
4216 /* ... now the local VSIs */
4217 for (i = 0; i < pf->hw.func_caps.num_vsis; i++)
4218 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
4219 i40e_vsi_link_event(pf->vsi[i], link_up);
4220}
4221
4222/**
4223 * i40e_link_event - Update netif_carrier status
4224 * @pf: board private structure
4225 **/
4226static void i40e_link_event(struct i40e_pf *pf)
4227{
4228 bool new_link, old_link;
4229
4230 new_link = (pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP);
4231 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
4232
4233 if (new_link == old_link)
4234 return;
4235
Anjali Singhai6d779b42013-09-28 06:00:02 +00004236 if (!test_bit(__I40E_DOWN, &pf->vsi[pf->lan_vsi]->state))
4237 netdev_info(pf->vsi[pf->lan_vsi]->netdev,
4238 "NIC Link is %s\n", (new_link ? "Up" : "Down"));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004239
4240 /* Notify the base of the switch tree connected to
4241 * the link. Floating VEBs are not notified.
4242 */
4243 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
4244 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
4245 else
4246 i40e_vsi_link_event(pf->vsi[pf->lan_vsi], new_link);
4247
4248 if (pf->vf)
4249 i40e_vc_notify_link_state(pf);
4250}
4251
4252/**
4253 * i40e_check_hang_subtask - Check for hung queues and dropped interrupts
4254 * @pf: board private structure
4255 *
4256 * Set the per-queue flags to request a check for stuck queues in the irq
4257 * clean functions, then force interrupts to be sure the irq clean is called.
4258 **/
4259static void i40e_check_hang_subtask(struct i40e_pf *pf)
4260{
4261 int i, v;
4262
4263 /* If we're down or resetting, just bail */
4264 if (test_bit(__I40E_CONFIG_BUSY, &pf->state))
4265 return;
4266
4267 /* for each VSI/netdev
4268 * for each Tx queue
4269 * set the check flag
4270 * for each q_vector
4271 * force an interrupt
4272 */
4273 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
4274 struct i40e_vsi *vsi = pf->vsi[v];
4275 int armed = 0;
4276
4277 if (!pf->vsi[v] ||
4278 test_bit(__I40E_DOWN, &vsi->state) ||
4279 (vsi->netdev && !netif_carrier_ok(vsi->netdev)))
4280 continue;
4281
4282 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004283 set_check_for_tx_hang(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004284 if (test_bit(__I40E_HANG_CHECK_ARMED,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00004285 &vsi->tx_rings[i]->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004286 armed++;
4287 }
4288
4289 if (armed) {
4290 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
4291 wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0,
4292 (I40E_PFINT_DYN_CTL0_INTENA_MASK |
4293 I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK));
4294 } else {
4295 u16 vec = vsi->base_vector - 1;
4296 u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK |
4297 I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK);
4298 for (i = 0; i < vsi->num_q_vectors; i++, vec++)
4299 wr32(&vsi->back->hw,
4300 I40E_PFINT_DYN_CTLN(vec), val);
4301 }
4302 i40e_flush(&vsi->back->hw);
4303 }
4304 }
4305}
4306
4307/**
4308 * i40e_watchdog_subtask - Check and bring link up
4309 * @pf: board private structure
4310 **/
4311static void i40e_watchdog_subtask(struct i40e_pf *pf)
4312{
4313 int i;
4314
4315 /* if interface is down do nothing */
4316 if (test_bit(__I40E_DOWN, &pf->state) ||
4317 test_bit(__I40E_CONFIG_BUSY, &pf->state))
4318 return;
4319
4320 /* Update the stats for active netdevs so the network stack
4321 * can look at updated numbers whenever it cares to
4322 */
4323 for (i = 0; i < pf->hw.func_caps.num_vsis; i++)
4324 if (pf->vsi[i] && pf->vsi[i]->netdev)
4325 i40e_update_stats(pf->vsi[i]);
4326
4327 /* Update the stats for the active switching components */
4328 for (i = 0; i < I40E_MAX_VEB; i++)
4329 if (pf->veb[i])
4330 i40e_update_veb_stats(pf->veb[i]);
4331}
4332
4333/**
4334 * i40e_reset_subtask - Set up for resetting the device and driver
4335 * @pf: board private structure
4336 **/
4337static void i40e_reset_subtask(struct i40e_pf *pf)
4338{
4339 u32 reset_flags = 0;
4340
4341 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
4342 reset_flags |= (1 << __I40E_REINIT_REQUESTED);
4343 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
4344 }
4345 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
4346 reset_flags |= (1 << __I40E_PF_RESET_REQUESTED);
4347 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4348 }
4349 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
4350 reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED);
4351 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
4352 }
4353 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
4354 reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED);
4355 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
4356 }
4357
4358 /* If there's a recovery already waiting, it takes
4359 * precedence before starting a new reset sequence.
4360 */
4361 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
4362 i40e_handle_reset_warning(pf);
4363 return;
4364 }
4365
4366 /* If we're already down or resetting, just bail */
4367 if (reset_flags &&
4368 !test_bit(__I40E_DOWN, &pf->state) &&
4369 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
4370 i40e_do_reset(pf, reset_flags);
4371}
4372
4373/**
4374 * i40e_handle_link_event - Handle link event
4375 * @pf: board private structure
4376 * @e: event info posted on ARQ
4377 **/
4378static void i40e_handle_link_event(struct i40e_pf *pf,
4379 struct i40e_arq_event_info *e)
4380{
4381 struct i40e_hw *hw = &pf->hw;
4382 struct i40e_aqc_get_link_status *status =
4383 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
4384 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
4385
4386 /* save off old link status information */
4387 memcpy(&pf->hw.phy.link_info_old, hw_link_info,
4388 sizeof(pf->hw.phy.link_info_old));
4389
4390 /* update link status */
4391 hw_link_info->phy_type = (enum i40e_aq_phy_type)status->phy_type;
4392 hw_link_info->link_speed = (enum i40e_aq_link_speed)status->link_speed;
4393 hw_link_info->link_info = status->link_info;
4394 hw_link_info->an_info = status->an_info;
4395 hw_link_info->ext_info = status->ext_info;
4396 hw_link_info->lse_enable =
4397 le16_to_cpu(status->command_flags) &
4398 I40E_AQ_LSE_ENABLE;
4399
4400 /* process the event */
4401 i40e_link_event(pf);
4402
4403 /* Do a new status request to re-enable LSE reporting
4404 * and load new status information into the hw struct,
4405 * then see if the status changed while processing the
4406 * initial event.
4407 */
4408 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
4409 i40e_link_event(pf);
4410}
4411
4412/**
4413 * i40e_clean_adminq_subtask - Clean the AdminQ rings
4414 * @pf: board private structure
4415 **/
4416static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
4417{
4418 struct i40e_arq_event_info event;
4419 struct i40e_hw *hw = &pf->hw;
4420 u16 pending, i = 0;
4421 i40e_status ret;
4422 u16 opcode;
4423 u32 val;
4424
4425 if (!test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state))
4426 return;
4427
4428 event.msg_size = I40E_MAX_AQ_BUF_SIZE;
4429 event.msg_buf = kzalloc(event.msg_size, GFP_KERNEL);
4430 if (!event.msg_buf)
4431 return;
4432
4433 do {
4434 ret = i40e_clean_arq_element(hw, &event, &pending);
4435 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK) {
4436 dev_info(&pf->pdev->dev, "No ARQ event found\n");
4437 break;
4438 } else if (ret) {
4439 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
4440 break;
4441 }
4442
4443 opcode = le16_to_cpu(event.desc.opcode);
4444 switch (opcode) {
4445
4446 case i40e_aqc_opc_get_link_status:
4447 i40e_handle_link_event(pf, &event);
4448 break;
4449 case i40e_aqc_opc_send_msg_to_pf:
4450 ret = i40e_vc_process_vf_msg(pf,
4451 le16_to_cpu(event.desc.retval),
4452 le32_to_cpu(event.desc.cookie_high),
4453 le32_to_cpu(event.desc.cookie_low),
4454 event.msg_buf,
4455 event.msg_size);
4456 break;
4457 case i40e_aqc_opc_lldp_update_mib:
4458 dev_info(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
4459 break;
4460 case i40e_aqc_opc_event_lan_overflow:
4461 dev_info(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
4462 i40e_handle_lan_overflow_event(pf, &event);
4463 break;
4464 default:
4465 dev_info(&pf->pdev->dev,
4466 "ARQ Error: Unknown event %d received\n",
4467 event.desc.opcode);
4468 break;
4469 }
4470 } while (pending && (i++ < pf->adminq_work_limit));
4471
4472 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
4473 /* re-enable Admin queue interrupt cause */
4474 val = rd32(hw, I40E_PFINT_ICR0_ENA);
4475 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
4476 wr32(hw, I40E_PFINT_ICR0_ENA, val);
4477 i40e_flush(hw);
4478
4479 kfree(event.msg_buf);
4480}
4481
4482/**
4483 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
4484 * @veb: pointer to the VEB instance
4485 *
4486 * This is a recursive function that first builds the attached VSIs then
4487 * recurses in to build the next layer of VEB. We track the connections
4488 * through our own index numbers because the seid's from the HW could
4489 * change across the reset.
4490 **/
4491static int i40e_reconstitute_veb(struct i40e_veb *veb)
4492{
4493 struct i40e_vsi *ctl_vsi = NULL;
4494 struct i40e_pf *pf = veb->pf;
4495 int v, veb_idx;
4496 int ret;
4497
4498 /* build VSI that owns this VEB, temporarily attached to base VEB */
4499 for (v = 0; v < pf->hw.func_caps.num_vsis && !ctl_vsi; v++) {
4500 if (pf->vsi[v] &&
4501 pf->vsi[v]->veb_idx == veb->idx &&
4502 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
4503 ctl_vsi = pf->vsi[v];
4504 break;
4505 }
4506 }
4507 if (!ctl_vsi) {
4508 dev_info(&pf->pdev->dev,
4509 "missing owner VSI for veb_idx %d\n", veb->idx);
4510 ret = -ENOENT;
4511 goto end_reconstitute;
4512 }
4513 if (ctl_vsi != pf->vsi[pf->lan_vsi])
4514 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
4515 ret = i40e_add_vsi(ctl_vsi);
4516 if (ret) {
4517 dev_info(&pf->pdev->dev,
4518 "rebuild of owner VSI failed: %d\n", ret);
4519 goto end_reconstitute;
4520 }
4521 i40e_vsi_reset_stats(ctl_vsi);
4522
4523 /* create the VEB in the switch and move the VSI onto the VEB */
4524 ret = i40e_add_veb(veb, ctl_vsi);
4525 if (ret)
4526 goto end_reconstitute;
4527
4528 /* create the remaining VSIs attached to this VEB */
4529 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
4530 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
4531 continue;
4532
4533 if (pf->vsi[v]->veb_idx == veb->idx) {
4534 struct i40e_vsi *vsi = pf->vsi[v];
4535 vsi->uplink_seid = veb->seid;
4536 ret = i40e_add_vsi(vsi);
4537 if (ret) {
4538 dev_info(&pf->pdev->dev,
4539 "rebuild of vsi_idx %d failed: %d\n",
4540 v, ret);
4541 goto end_reconstitute;
4542 }
4543 i40e_vsi_reset_stats(vsi);
4544 }
4545 }
4546
4547 /* create any VEBs attached to this VEB - RECURSION */
4548 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
4549 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
4550 pf->veb[veb_idx]->uplink_seid = veb->seid;
4551 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
4552 if (ret)
4553 break;
4554 }
4555 }
4556
4557end_reconstitute:
4558 return ret;
4559}
4560
4561/**
4562 * i40e_get_capabilities - get info about the HW
4563 * @pf: the PF struct
4564 **/
4565static int i40e_get_capabilities(struct i40e_pf *pf)
4566{
4567 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
4568 u16 data_size;
4569 int buf_len;
4570 int err;
4571
4572 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
4573 do {
4574 cap_buf = kzalloc(buf_len, GFP_KERNEL);
4575 if (!cap_buf)
4576 return -ENOMEM;
4577
4578 /* this loads the data into the hw struct for us */
4579 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
4580 &data_size,
4581 i40e_aqc_opc_list_func_capabilities,
4582 NULL);
4583 /* data loaded, buffer no longer needed */
4584 kfree(cap_buf);
4585
4586 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
4587 /* retry with a larger buffer */
4588 buf_len = data_size;
4589 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
4590 dev_info(&pf->pdev->dev,
4591 "capability discovery failed: aq=%d\n",
4592 pf->hw.aq.asq_last_status);
4593 return -ENODEV;
4594 }
4595 } while (err);
4596
4597 if (pf->hw.debug_mask & I40E_DEBUG_USER)
4598 dev_info(&pf->pdev->dev,
4599 "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",
4600 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
4601 pf->hw.func_caps.num_msix_vectors,
4602 pf->hw.func_caps.num_msix_vectors_vf,
4603 pf->hw.func_caps.fd_filters_guaranteed,
4604 pf->hw.func_caps.fd_filters_best_effort,
4605 pf->hw.func_caps.num_tx_qp,
4606 pf->hw.func_caps.num_vsis);
4607
4608 return 0;
4609}
4610
4611/**
4612 * i40e_fdir_setup - initialize the Flow Director resources
4613 * @pf: board private structure
4614 **/
4615static void i40e_fdir_setup(struct i40e_pf *pf)
4616{
4617 struct i40e_vsi *vsi;
4618 bool new_vsi = false;
4619 int err, i;
4620
Shannon Nelson958a3e32013-09-28 07:13:28 +00004621 if (!(pf->flags & (I40E_FLAG_FDIR_ENABLED |
4622 I40E_FLAG_FDIR_ATR_ENABLED)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004623 return;
4624
4625 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
4626
4627 /* find existing or make new FDIR VSI */
4628 vsi = NULL;
4629 for (i = 0; i < pf->hw.func_caps.num_vsis; i++)
4630 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR)
4631 vsi = pf->vsi[i];
4632 if (!vsi) {
4633 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR, pf->mac_seid, 0);
4634 if (!vsi) {
4635 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
4636 pf->flags &= ~I40E_FLAG_FDIR_ENABLED;
4637 return;
4638 }
4639 new_vsi = true;
4640 }
4641 WARN_ON(vsi->base_queue != I40E_FDIR_RING);
4642 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_rings);
4643
4644 err = i40e_vsi_setup_tx_resources(vsi);
4645 if (!err)
4646 err = i40e_vsi_setup_rx_resources(vsi);
4647 if (!err)
4648 err = i40e_vsi_configure(vsi);
4649 if (!err && new_vsi) {
4650 char int_name[IFNAMSIZ + 9];
4651 snprintf(int_name, sizeof(int_name) - 1, "%s-fdir",
4652 dev_driver_string(&pf->pdev->dev));
4653 err = i40e_vsi_request_irq(vsi, int_name);
4654 }
4655 if (!err)
4656 err = i40e_up_complete(vsi);
4657
4658 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
4659}
4660
4661/**
4662 * i40e_fdir_teardown - release the Flow Director resources
4663 * @pf: board private structure
4664 **/
4665static void i40e_fdir_teardown(struct i40e_pf *pf)
4666{
4667 int i;
4668
4669 for (i = 0; i < pf->hw.func_caps.num_vsis; i++) {
4670 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
4671 i40e_vsi_release(pf->vsi[i]);
4672 break;
4673 }
4674 }
4675}
4676
4677/**
4678 * i40e_handle_reset_warning - prep for the core to reset
4679 * @pf: board private structure
4680 *
4681 * Close up the VFs and other things in prep for a Core Reset,
4682 * then get ready to rebuild the world.
4683 **/
4684static void i40e_handle_reset_warning(struct i40e_pf *pf)
4685{
4686 struct i40e_driver_version dv;
4687 struct i40e_hw *hw = &pf->hw;
4688 i40e_status ret;
4689 u32 v;
4690
4691 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
4692 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
4693 return;
4694
4695 dev_info(&pf->pdev->dev, "Tearing down internal switch for reset\n");
4696
4697 i40e_vc_notify_reset(pf);
4698
4699 /* quiesce the VSIs and their queues that are not already DOWN */
4700 i40e_pf_quiesce_all_vsi(pf);
4701
4702 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
4703 if (pf->vsi[v])
4704 pf->vsi[v]->seid = 0;
4705 }
4706
4707 i40e_shutdown_adminq(&pf->hw);
4708
4709 /* Now we wait for GRST to settle out.
4710 * We don't have to delete the VEBs or VSIs from the hw switch
4711 * because the reset will make them disappear.
4712 */
4713 ret = i40e_pf_reset(hw);
4714 if (ret)
4715 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
4716 pf->pfr_count++;
4717
4718 if (test_bit(__I40E_DOWN, &pf->state))
4719 goto end_core_reset;
4720 dev_info(&pf->pdev->dev, "Rebuilding internal switch\n");
4721
4722 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
4723 ret = i40e_init_adminq(&pf->hw);
4724 if (ret) {
4725 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret);
4726 goto end_core_reset;
4727 }
4728
4729 ret = i40e_get_capabilities(pf);
4730 if (ret) {
4731 dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n",
4732 ret);
4733 goto end_core_reset;
4734 }
4735
4736 /* call shutdown HMC */
4737 ret = i40e_shutdown_lan_hmc(hw);
4738 if (ret) {
4739 dev_info(&pf->pdev->dev, "shutdown_lan_hmc failed: %d\n", ret);
4740 goto end_core_reset;
4741 }
4742
4743 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
4744 hw->func_caps.num_rx_qp,
4745 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
4746 if (ret) {
4747 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
4748 goto end_core_reset;
4749 }
4750 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
4751 if (ret) {
4752 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
4753 goto end_core_reset;
4754 }
4755
4756 /* do basic switch setup */
4757 ret = i40e_setup_pf_switch(pf);
4758 if (ret)
4759 goto end_core_reset;
4760
4761 /* Rebuild the VSIs and VEBs that existed before reset.
4762 * They are still in our local switch element arrays, so only
4763 * need to rebuild the switch model in the HW.
4764 *
4765 * If there were VEBs but the reconstitution failed, we'll try
4766 * try to recover minimal use by getting the basic PF VSI working.
4767 */
4768 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
4769 dev_info(&pf->pdev->dev, "attempting to rebuild switch\n");
4770 /* find the one VEB connected to the MAC, and find orphans */
4771 for (v = 0; v < I40E_MAX_VEB; v++) {
4772 if (!pf->veb[v])
4773 continue;
4774
4775 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
4776 pf->veb[v]->uplink_seid == 0) {
4777 ret = i40e_reconstitute_veb(pf->veb[v]);
4778
4779 if (!ret)
4780 continue;
4781
4782 /* If Main VEB failed, we're in deep doodoo,
4783 * so give up rebuilding the switch and set up
4784 * for minimal rebuild of PF VSI.
4785 * If orphan failed, we'll report the error
4786 * but try to keep going.
4787 */
4788 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
4789 dev_info(&pf->pdev->dev,
4790 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
4791 ret);
4792 pf->vsi[pf->lan_vsi]->uplink_seid
4793 = pf->mac_seid;
4794 break;
4795 } else if (pf->veb[v]->uplink_seid == 0) {
4796 dev_info(&pf->pdev->dev,
4797 "rebuild of orphan VEB failed: %d\n",
4798 ret);
4799 }
4800 }
4801 }
4802 }
4803
4804 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
4805 dev_info(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
4806 /* no VEB, so rebuild only the Main VSI */
4807 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
4808 if (ret) {
4809 dev_info(&pf->pdev->dev,
4810 "rebuild of Main VSI failed: %d\n", ret);
4811 goto end_core_reset;
4812 }
4813 }
4814
4815 /* reinit the misc interrupt */
4816 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4817 ret = i40e_setup_misc_vector(pf);
4818
4819 /* restart the VSIs that were rebuilt and running before the reset */
4820 i40e_pf_unquiesce_all_vsi(pf);
4821
4822 /* tell the firmware that we're starting */
4823 dv.major_version = DRV_VERSION_MAJOR;
4824 dv.minor_version = DRV_VERSION_MINOR;
4825 dv.build_version = DRV_VERSION_BUILD;
4826 dv.subbuild_version = 0;
4827 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
4828
4829 dev_info(&pf->pdev->dev, "PF reset done\n");
4830
4831end_core_reset:
4832 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
4833}
4834
4835/**
4836 * i40e_handle_mdd_event
4837 * @pf: pointer to the pf structure
4838 *
4839 * Called from the MDD irq handler to identify possibly malicious vfs
4840 **/
4841static void i40e_handle_mdd_event(struct i40e_pf *pf)
4842{
4843 struct i40e_hw *hw = &pf->hw;
4844 bool mdd_detected = false;
4845 struct i40e_vf *vf;
4846 u32 reg;
4847 int i;
4848
4849 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
4850 return;
4851
4852 /* find what triggered the MDD event */
4853 reg = rd32(hw, I40E_GL_MDET_TX);
4854 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
4855 u8 func = (reg & I40E_GL_MDET_TX_FUNCTION_MASK)
4856 >> I40E_GL_MDET_TX_FUNCTION_SHIFT;
4857 u8 event = (reg & I40E_GL_MDET_TX_EVENT_SHIFT)
4858 >> I40E_GL_MDET_TX_EVENT_SHIFT;
4859 u8 queue = (reg & I40E_GL_MDET_TX_QUEUE_MASK)
4860 >> I40E_GL_MDET_TX_QUEUE_SHIFT;
4861 dev_info(&pf->pdev->dev,
4862 "Malicious Driver Detection TX event 0x%02x on q %d of function 0x%02x\n",
4863 event, queue, func);
4864 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
4865 mdd_detected = true;
4866 }
4867 reg = rd32(hw, I40E_GL_MDET_RX);
4868 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
4869 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK)
4870 >> I40E_GL_MDET_RX_FUNCTION_SHIFT;
4871 u8 event = (reg & I40E_GL_MDET_RX_EVENT_SHIFT)
4872 >> I40E_GL_MDET_RX_EVENT_SHIFT;
4873 u8 queue = (reg & I40E_GL_MDET_RX_QUEUE_MASK)
4874 >> I40E_GL_MDET_RX_QUEUE_SHIFT;
4875 dev_info(&pf->pdev->dev,
4876 "Malicious Driver Detection RX event 0x%02x on q %d of function 0x%02x\n",
4877 event, queue, func);
4878 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
4879 mdd_detected = true;
4880 }
4881
4882 /* see if one of the VFs needs its hand slapped */
4883 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
4884 vf = &(pf->vf[i]);
4885 reg = rd32(hw, I40E_VP_MDET_TX(i));
4886 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
4887 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
4888 vf->num_mdd_events++;
4889 dev_info(&pf->pdev->dev, "MDD TX event on VF %d\n", i);
4890 }
4891
4892 reg = rd32(hw, I40E_VP_MDET_RX(i));
4893 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
4894 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
4895 vf->num_mdd_events++;
4896 dev_info(&pf->pdev->dev, "MDD RX event on VF %d\n", i);
4897 }
4898
4899 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
4900 dev_info(&pf->pdev->dev,
4901 "Too many MDD events on VF %d, disabled\n", i);
4902 dev_info(&pf->pdev->dev,
4903 "Use PF Control I/F to re-enable the VF\n");
4904 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
4905 }
4906 }
4907
4908 /* re-enable mdd interrupt cause */
4909 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
4910 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
4911 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
4912 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
4913 i40e_flush(hw);
4914}
4915
4916/**
4917 * i40e_service_task - Run the driver's async subtasks
4918 * @work: pointer to work_struct containing our data
4919 **/
4920static void i40e_service_task(struct work_struct *work)
4921{
4922 struct i40e_pf *pf = container_of(work,
4923 struct i40e_pf,
4924 service_task);
4925 unsigned long start_time = jiffies;
4926
4927 i40e_reset_subtask(pf);
4928 i40e_handle_mdd_event(pf);
4929 i40e_vc_process_vflr_event(pf);
4930 i40e_watchdog_subtask(pf);
4931 i40e_fdir_reinit_subtask(pf);
4932 i40e_check_hang_subtask(pf);
4933 i40e_sync_filters_subtask(pf);
4934 i40e_clean_adminq_subtask(pf);
4935
4936 i40e_service_event_complete(pf);
4937
4938 /* If the tasks have taken longer than one timer cycle or there
4939 * is more work to be done, reschedule the service task now
4940 * rather than wait for the timer to tick again.
4941 */
4942 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
4943 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
4944 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
4945 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
4946 i40e_service_event_schedule(pf);
4947}
4948
4949/**
4950 * i40e_service_timer - timer callback
4951 * @data: pointer to PF struct
4952 **/
4953static void i40e_service_timer(unsigned long data)
4954{
4955 struct i40e_pf *pf = (struct i40e_pf *)data;
4956
4957 mod_timer(&pf->service_timer,
4958 round_jiffies(jiffies + pf->service_timer_period));
4959 i40e_service_event_schedule(pf);
4960}
4961
4962/**
4963 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
4964 * @vsi: the VSI being configured
4965 **/
4966static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
4967{
4968 struct i40e_pf *pf = vsi->back;
4969
4970 switch (vsi->type) {
4971 case I40E_VSI_MAIN:
4972 vsi->alloc_queue_pairs = pf->num_lan_qps;
4973 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
4974 I40E_REQ_DESCRIPTOR_MULTIPLE);
4975 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4976 vsi->num_q_vectors = pf->num_lan_msix;
4977 else
4978 vsi->num_q_vectors = 1;
4979
4980 break;
4981
4982 case I40E_VSI_FDIR:
4983 vsi->alloc_queue_pairs = 1;
4984 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
4985 I40E_REQ_DESCRIPTOR_MULTIPLE);
4986 vsi->num_q_vectors = 1;
4987 break;
4988
4989 case I40E_VSI_VMDQ2:
4990 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
4991 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
4992 I40E_REQ_DESCRIPTOR_MULTIPLE);
4993 vsi->num_q_vectors = pf->num_vmdq_msix;
4994 break;
4995
4996 case I40E_VSI_SRIOV:
4997 vsi->alloc_queue_pairs = pf->num_vf_qps;
4998 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
4999 I40E_REQ_DESCRIPTOR_MULTIPLE);
5000 break;
5001
5002 default:
5003 WARN_ON(1);
5004 return -ENODATA;
5005 }
5006
5007 return 0;
5008}
5009
5010/**
5011 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
5012 * @pf: board private structure
5013 * @type: type of VSI
5014 *
5015 * On error: returns error code (negative)
5016 * On success: returns vsi index in PF (positive)
5017 **/
5018static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
5019{
5020 int ret = -ENODEV;
5021 struct i40e_vsi *vsi;
Alexander Duyck493fb302013-09-28 07:01:44 +00005022 int sz_vectors;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005023 int sz_rings;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005024 int vsi_idx;
5025 int i;
5026
5027 /* Need to protect the allocation of the VSIs at the PF level */
5028 mutex_lock(&pf->switch_mutex);
5029
5030 /* VSI list may be fragmented if VSI creation/destruction has
5031 * been happening. We can afford to do a quick scan to look
5032 * for any free VSIs in the list.
5033 *
5034 * find next empty vsi slot, looping back around if necessary
5035 */
5036 i = pf->next_vsi;
5037 while (i < pf->hw.func_caps.num_vsis && pf->vsi[i])
5038 i++;
5039 if (i >= pf->hw.func_caps.num_vsis) {
5040 i = 0;
5041 while (i < pf->next_vsi && pf->vsi[i])
5042 i++;
5043 }
5044
5045 if (i < pf->hw.func_caps.num_vsis && !pf->vsi[i]) {
5046 vsi_idx = i; /* Found one! */
5047 } else {
5048 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00005049 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005050 }
5051 pf->next_vsi = ++i;
5052
5053 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
5054 if (!vsi) {
5055 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00005056 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005057 }
5058 vsi->type = type;
5059 vsi->back = pf;
5060 set_bit(__I40E_DOWN, &vsi->state);
5061 vsi->flags = 0;
5062 vsi->idx = vsi_idx;
5063 vsi->rx_itr_setting = pf->rx_itr_default;
5064 vsi->tx_itr_setting = pf->tx_itr_default;
5065 vsi->netdev_registered = false;
5066 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
5067 INIT_LIST_HEAD(&vsi->mac_filter_list);
5068
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005069 ret = i40e_set_num_rings_in_vsi(vsi);
5070 if (ret)
5071 goto err_rings;
5072
5073 /* allocate memory for ring pointers */
5074 sz_rings = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
5075 vsi->tx_rings = kzalloc(sz_rings, GFP_KERNEL);
5076 if (!vsi->tx_rings) {
5077 ret = -ENOMEM;
5078 goto err_rings;
5079 }
5080 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005081
Alexander Duyck493fb302013-09-28 07:01:44 +00005082 /* allocate memory for q_vector pointers */
5083 sz_vectors = sizeof(struct i40e_q_vectors *) * vsi->num_q_vectors;
5084 vsi->q_vectors = kzalloc(sz_vectors, GFP_KERNEL);
5085 if (!vsi->q_vectors) {
5086 ret = -ENOMEM;
5087 goto err_vectors;
5088 }
5089
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005090 /* Setup default MSIX irq handler for VSI */
5091 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
5092
5093 pf->vsi[vsi_idx] = vsi;
5094 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00005095 goto unlock_pf;
5096
5097err_vectors:
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005098 kfree(vsi->tx_rings);
5099err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00005100 pf->next_vsi = i - 1;
5101 kfree(vsi);
5102unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005103 mutex_unlock(&pf->switch_mutex);
5104 return ret;
5105}
5106
5107/**
5108 * i40e_vsi_clear - Deallocate the VSI provided
5109 * @vsi: the VSI being un-configured
5110 **/
5111static int i40e_vsi_clear(struct i40e_vsi *vsi)
5112{
5113 struct i40e_pf *pf;
5114
5115 if (!vsi)
5116 return 0;
5117
5118 if (!vsi->back)
5119 goto free_vsi;
5120 pf = vsi->back;
5121
5122 mutex_lock(&pf->switch_mutex);
5123 if (!pf->vsi[vsi->idx]) {
5124 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
5125 vsi->idx, vsi->idx, vsi, vsi->type);
5126 goto unlock_vsi;
5127 }
5128
5129 if (pf->vsi[vsi->idx] != vsi) {
5130 dev_err(&pf->pdev->dev,
5131 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
5132 pf->vsi[vsi->idx]->idx,
5133 pf->vsi[vsi->idx],
5134 pf->vsi[vsi->idx]->type,
5135 vsi->idx, vsi, vsi->type);
5136 goto unlock_vsi;
5137 }
5138
5139 /* updates the pf for this cleared vsi */
5140 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
5141 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
5142
Alexander Duyck493fb302013-09-28 07:01:44 +00005143 /* free the ring and vector containers */
5144 kfree(vsi->q_vectors);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005145 kfree(vsi->tx_rings);
Alexander Duyck493fb302013-09-28 07:01:44 +00005146
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005147 pf->vsi[vsi->idx] = NULL;
5148 if (vsi->idx < pf->next_vsi)
5149 pf->next_vsi = vsi->idx;
5150
5151unlock_vsi:
5152 mutex_unlock(&pf->switch_mutex);
5153free_vsi:
5154 kfree(vsi);
5155
5156 return 0;
5157}
5158
5159/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005160 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
5161 * @vsi: the VSI being cleaned
5162 **/
5163static s32 i40e_vsi_clear_rings(struct i40e_vsi *vsi)
5164{
5165 int i;
5166
Mitch Williams00403f02013-09-28 07:13:13 +00005167 if (vsi->tx_rings[0])
5168 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
5169 kfree_rcu(vsi->tx_rings[i], rcu);
5170 vsi->tx_rings[i] = NULL;
5171 vsi->rx_rings[i] = NULL;
5172 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005173
5174 return 0;
5175}
5176
5177/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005178 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
5179 * @vsi: the VSI being configured
5180 **/
5181static int i40e_alloc_rings(struct i40e_vsi *vsi)
5182{
5183 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005184 int i;
5185
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005186 /* Set basic values in the rings to be used later during open() */
5187 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005188 struct i40e_ring *tx_ring;
5189 struct i40e_ring *rx_ring;
5190
5191 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
5192 if (!tx_ring)
5193 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005194
5195 tx_ring->queue_index = i;
5196 tx_ring->reg_idx = vsi->base_queue + i;
5197 tx_ring->ring_active = false;
5198 tx_ring->vsi = vsi;
5199 tx_ring->netdev = vsi->netdev;
5200 tx_ring->dev = &pf->pdev->dev;
5201 tx_ring->count = vsi->num_desc;
5202 tx_ring->size = 0;
5203 tx_ring->dcb_tc = 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005204 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005205
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005206 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005207 rx_ring->queue_index = i;
5208 rx_ring->reg_idx = vsi->base_queue + i;
5209 rx_ring->ring_active = false;
5210 rx_ring->vsi = vsi;
5211 rx_ring->netdev = vsi->netdev;
5212 rx_ring->dev = &pf->pdev->dev;
5213 rx_ring->count = vsi->num_desc;
5214 rx_ring->size = 0;
5215 rx_ring->dcb_tc = 0;
5216 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
5217 set_ring_16byte_desc_enabled(rx_ring);
5218 else
5219 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005220 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005221 }
5222
5223 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005224
5225err_out:
5226 i40e_vsi_clear_rings(vsi);
5227 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005228}
5229
5230/**
5231 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
5232 * @pf: board private structure
5233 * @vectors: the number of MSI-X vectors to request
5234 *
5235 * Returns the number of vectors reserved, or error
5236 **/
5237static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
5238{
5239 int err = 0;
5240
5241 pf->num_msix_entries = 0;
5242 while (vectors >= I40E_MIN_MSIX) {
5243 err = pci_enable_msix(pf->pdev, pf->msix_entries, vectors);
5244 if (err == 0) {
5245 /* good to go */
5246 pf->num_msix_entries = vectors;
5247 break;
5248 } else if (err < 0) {
5249 /* total failure */
5250 dev_info(&pf->pdev->dev,
5251 "MSI-X vector reservation failed: %d\n", err);
5252 vectors = 0;
5253 break;
5254 } else {
5255 /* err > 0 is the hint for retry */
5256 dev_info(&pf->pdev->dev,
5257 "MSI-X vectors wanted %d, retrying with %d\n",
5258 vectors, err);
5259 vectors = err;
5260 }
5261 }
5262
5263 if (vectors > 0 && vectors < I40E_MIN_MSIX) {
5264 dev_info(&pf->pdev->dev,
5265 "Couldn't get enough vectors, only %d available\n",
5266 vectors);
5267 vectors = 0;
5268 }
5269
5270 return vectors;
5271}
5272
5273/**
5274 * i40e_init_msix - Setup the MSIX capability
5275 * @pf: board private structure
5276 *
5277 * Work with the OS to set up the MSIX vectors needed.
5278 *
5279 * Returns 0 on success, negative on failure
5280 **/
5281static int i40e_init_msix(struct i40e_pf *pf)
5282{
5283 i40e_status err = 0;
5284 struct i40e_hw *hw = &pf->hw;
5285 int v_budget, i;
5286 int vec;
5287
5288 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
5289 return -ENODEV;
5290
5291 /* The number of vectors we'll request will be comprised of:
5292 * - Add 1 for "other" cause for Admin Queue events, etc.
5293 * - The number of LAN queue pairs
5294 * already adjusted for the NUMA node
5295 * assumes symmetric Tx/Rx pairing
5296 * - The number of VMDq pairs
5297 * Once we count this up, try the request.
5298 *
5299 * If we can't get what we want, we'll simplify to nearly nothing
5300 * and try again. If that still fails, we punt.
5301 */
5302 pf->num_lan_msix = pf->num_lan_qps;
5303 pf->num_vmdq_msix = pf->num_vmdq_qps;
5304 v_budget = 1 + pf->num_lan_msix;
5305 v_budget += (pf->num_vmdq_vsis * pf->num_vmdq_msix);
5306 if (pf->flags & I40E_FLAG_FDIR_ENABLED)
5307 v_budget++;
5308
5309 /* Scale down if necessary, and the rings will share vectors */
5310 v_budget = min_t(int, v_budget, hw->func_caps.num_msix_vectors);
5311
5312 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
5313 GFP_KERNEL);
5314 if (!pf->msix_entries)
5315 return -ENOMEM;
5316
5317 for (i = 0; i < v_budget; i++)
5318 pf->msix_entries[i].entry = i;
5319 vec = i40e_reserve_msix_vectors(pf, v_budget);
5320 if (vec < I40E_MIN_MSIX) {
5321 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
5322 kfree(pf->msix_entries);
5323 pf->msix_entries = NULL;
5324 return -ENODEV;
5325
5326 } else if (vec == I40E_MIN_MSIX) {
5327 /* Adjust for minimal MSIX use */
5328 dev_info(&pf->pdev->dev, "Features disabled, not enough MSIX vectors\n");
5329 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
5330 pf->num_vmdq_vsis = 0;
5331 pf->num_vmdq_qps = 0;
5332 pf->num_vmdq_msix = 0;
5333 pf->num_lan_qps = 1;
5334 pf->num_lan_msix = 1;
5335
5336 } else if (vec != v_budget) {
5337 /* Scale vector usage down */
5338 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
5339 vec--; /* reserve the misc vector */
5340
5341 /* partition out the remaining vectors */
5342 switch (vec) {
5343 case 2:
5344 pf->num_vmdq_vsis = 1;
5345 pf->num_lan_msix = 1;
5346 break;
5347 case 3:
5348 pf->num_vmdq_vsis = 1;
5349 pf->num_lan_msix = 2;
5350 break;
5351 default:
5352 pf->num_lan_msix = min_t(int, (vec / 2),
5353 pf->num_lan_qps);
5354 pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix),
5355 I40E_DEFAULT_NUM_VMDQ_VSI);
5356 break;
5357 }
5358 }
5359
5360 return err;
5361}
5362
5363/**
Alexander Duyck493fb302013-09-28 07:01:44 +00005364 * i40e_alloc_q_vector - Allocate memory for a single interrupt vector
5365 * @vsi: the VSI being configured
5366 * @v_idx: index of the vector in the vsi struct
5367 *
5368 * We allocate one q_vector. If allocation fails we return -ENOMEM.
5369 **/
5370static int i40e_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
5371{
5372 struct i40e_q_vector *q_vector;
5373
5374 /* allocate q_vector */
5375 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
5376 if (!q_vector)
5377 return -ENOMEM;
5378
5379 q_vector->vsi = vsi;
5380 q_vector->v_idx = v_idx;
5381 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
5382 if (vsi->netdev)
5383 netif_napi_add(vsi->netdev, &q_vector->napi,
5384 i40e_napi_poll, vsi->work_limit);
5385
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00005386 q_vector->rx.latency_range = I40E_LOW_LATENCY;
5387 q_vector->tx.latency_range = I40E_LOW_LATENCY;
5388
Alexander Duyck493fb302013-09-28 07:01:44 +00005389 /* tie q_vector and vsi together */
5390 vsi->q_vectors[v_idx] = q_vector;
5391
5392 return 0;
5393}
5394
5395/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005396 * i40e_alloc_q_vectors - Allocate memory for interrupt vectors
5397 * @vsi: the VSI being configured
5398 *
5399 * We allocate one q_vector per queue interrupt. If allocation fails we
5400 * return -ENOMEM.
5401 **/
5402static int i40e_alloc_q_vectors(struct i40e_vsi *vsi)
5403{
5404 struct i40e_pf *pf = vsi->back;
5405 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00005406 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005407
5408 /* if not MSIX, give the one vector only to the LAN VSI */
5409 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5410 num_q_vectors = vsi->num_q_vectors;
5411 else if (vsi == pf->vsi[pf->lan_vsi])
5412 num_q_vectors = 1;
5413 else
5414 return -EINVAL;
5415
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005416 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00005417 err = i40e_alloc_q_vector(vsi, v_idx);
5418 if (err)
5419 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005420 }
5421
5422 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00005423
5424err_out:
5425 while (v_idx--)
5426 i40e_free_q_vector(vsi, v_idx);
5427
5428 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005429}
5430
5431/**
5432 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
5433 * @pf: board private structure to initialize
5434 **/
5435static void i40e_init_interrupt_scheme(struct i40e_pf *pf)
5436{
5437 int err = 0;
5438
5439 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
5440 err = i40e_init_msix(pf);
5441 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00005442 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
5443 I40E_FLAG_RSS_ENABLED |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005444 I40E_FLAG_MQ_ENABLED |
5445 I40E_FLAG_DCB_ENABLED |
5446 I40E_FLAG_SRIOV_ENABLED |
5447 I40E_FLAG_FDIR_ENABLED |
5448 I40E_FLAG_FDIR_ATR_ENABLED |
5449 I40E_FLAG_VMDQ_ENABLED);
5450
5451 /* rework the queue expectations without MSIX */
5452 i40e_determine_queue_usage(pf);
5453 }
5454 }
5455
5456 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
5457 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00005458 dev_info(&pf->pdev->dev, "MSIX not available, trying MSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005459 err = pci_enable_msi(pf->pdev);
5460 if (err) {
Shannon Nelson958a3e32013-09-28 07:13:28 +00005461 dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005462 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
5463 }
5464 }
5465
Shannon Nelson958a3e32013-09-28 07:13:28 +00005466 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
5467 dev_info(&pf->pdev->dev, "MSIX and MSI not available, falling back to Legacy IRQ\n");
5468
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005469 /* track first vector for misc interrupts */
5470 err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1);
5471}
5472
5473/**
5474 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
5475 * @pf: board private structure
5476 *
5477 * This sets up the handler for MSIX 0, which is used to manage the
5478 * non-queue interrupts, e.g. AdminQ and errors. This is not used
5479 * when in MSI or Legacy interrupt mode.
5480 **/
5481static int i40e_setup_misc_vector(struct i40e_pf *pf)
5482{
5483 struct i40e_hw *hw = &pf->hw;
5484 int err = 0;
5485
5486 /* Only request the irq if this is the first time through, and
5487 * not when we're rebuilding after a Reset
5488 */
5489 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
5490 err = request_irq(pf->msix_entries[0].vector,
5491 i40e_intr, 0, pf->misc_int_name, pf);
5492 if (err) {
5493 dev_info(&pf->pdev->dev,
5494 "request_irq for msix_misc failed: %d\n", err);
5495 return -EFAULT;
5496 }
5497 }
5498
5499 i40e_enable_misc_int_causes(hw);
5500
5501 /* associate no queues to the misc vector */
5502 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
5503 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
5504
5505 i40e_flush(hw);
5506
5507 i40e_irq_dynamic_enable_icr0(pf);
5508
5509 return err;
5510}
5511
5512/**
5513 * i40e_config_rss - Prepare for RSS if used
5514 * @pf: board private structure
5515 **/
5516static int i40e_config_rss(struct i40e_pf *pf)
5517{
5518 struct i40e_hw *hw = &pf->hw;
5519 u32 lut = 0;
5520 int i, j;
5521 u64 hena;
5522 /* Set of random keys generated using kernel random number generator */
5523 static const u32 seed[I40E_PFQF_HKEY_MAX_INDEX + 1] = {0x41b01687,
5524 0x183cfd8c, 0xce880440, 0x580cbc3c, 0x35897377,
5525 0x328b25e1, 0x4fa98922, 0xb7d90c14, 0xd5bad70d,
5526 0xcd15a2c1, 0xe8580225, 0x4a1e9d11, 0xfe5731be};
5527
5528 /* Fill out hash function seed */
5529 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
5530 wr32(hw, I40E_PFQF_HKEY(i), seed[i]);
5531
5532 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
5533 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
5534 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
5535 hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_UDP) |
5536 ((u64)1 << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP) |
5537 ((u64)1 << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP) |
5538 ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP) |
5539 ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP) |
5540 ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_UDP) |
5541 ((u64)1 << I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP) |
5542 ((u64)1 << I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP) |
5543 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV4)|
5544 ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6);
5545 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
5546 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
5547
5548 /* Populate the LUT with max no. of queues in round robin fashion */
5549 for (i = 0, j = 0; i < pf->hw.func_caps.rss_table_size; i++, j++) {
5550
5551 /* The assumption is that lan qp count will be the highest
5552 * qp count for any PF VSI that needs RSS.
5553 * If multiple VSIs need RSS support, all the qp counts
5554 * for those VSIs should be a power of 2 for RSS to work.
5555 * If LAN VSI is the only consumer for RSS then this requirement
5556 * is not necessary.
5557 */
5558 if (j == pf->rss_size)
5559 j = 0;
5560 /* lut = 4-byte sliding window of 4 lut entries */
5561 lut = (lut << 8) | (j &
5562 ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1));
5563 /* On i = 3, we have 4 entries in lut; write to the register */
5564 if ((i & 3) == 3)
5565 wr32(hw, I40E_PFQF_HLUT(i >> 2), lut);
5566 }
5567 i40e_flush(hw);
5568
5569 return 0;
5570}
5571
5572/**
5573 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
5574 * @pf: board private structure to initialize
5575 *
5576 * i40e_sw_init initializes the Adapter private data structure.
5577 * Fields are initialized based on PCI device information and
5578 * OS network device settings (MTU size).
5579 **/
5580static int i40e_sw_init(struct i40e_pf *pf)
5581{
5582 int err = 0;
5583 int size;
5584
5585 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
5586 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00005587 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005588 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
5589 if (I40E_DEBUG_USER & debug)
5590 pf->hw.debug_mask = debug;
5591 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
5592 I40E_DEFAULT_MSG_ENABLE);
5593 }
5594
5595 /* Set default capability flags */
5596 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
5597 I40E_FLAG_MSI_ENABLED |
5598 I40E_FLAG_MSIX_ENABLED |
5599 I40E_FLAG_RX_PS_ENABLED |
5600 I40E_FLAG_MQ_ENABLED |
5601 I40E_FLAG_RX_1BUF_ENABLED;
5602
5603 pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width;
5604 if (pf->hw.func_caps.rss) {
5605 pf->flags |= I40E_FLAG_RSS_ENABLED;
5606 pf->rss_size = min_t(int, pf->rss_size_max,
5607 nr_cpus_node(numa_node_id()));
5608 } else {
5609 pf->rss_size = 1;
5610 }
5611
5612 if (pf->hw.func_caps.dcb)
5613 pf->num_tc_qps = I40E_DEFAULT_QUEUES_PER_TC;
5614 else
5615 pf->num_tc_qps = 0;
5616
5617 if (pf->hw.func_caps.fd) {
5618 /* FW/NVM is not yet fixed in this regard */
5619 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
5620 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
5621 pf->flags |= I40E_FLAG_FDIR_ATR_ENABLED;
5622 dev_info(&pf->pdev->dev,
5623 "Flow Director ATR mode Enabled\n");
5624 pf->flags |= I40E_FLAG_FDIR_ENABLED;
5625 dev_info(&pf->pdev->dev,
5626 "Flow Director Side Band mode Enabled\n");
5627 pf->fdir_pf_filter_count =
5628 pf->hw.func_caps.fd_filters_guaranteed;
5629 }
5630 } else {
5631 pf->fdir_pf_filter_count = 0;
5632 }
5633
5634 if (pf->hw.func_caps.vmdq) {
5635 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
5636 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
5637 pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ;
5638 }
5639
5640 /* MFP mode enabled */
5641 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) {
5642 pf->flags |= I40E_FLAG_MFP_ENABLED;
5643 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
5644 }
5645
5646#ifdef CONFIG_PCI_IOV
5647 if (pf->hw.func_caps.num_vfs) {
5648 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
5649 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
5650 pf->num_req_vfs = min_t(int,
5651 pf->hw.func_caps.num_vfs,
5652 I40E_MAX_VF_COUNT);
5653 }
5654#endif /* CONFIG_PCI_IOV */
5655 pf->eeprom_version = 0xDEAD;
5656 pf->lan_veb = I40E_NO_VEB;
5657 pf->lan_vsi = I40E_NO_VSI;
5658
5659 /* set up queue assignment tracking */
5660 size = sizeof(struct i40e_lump_tracking)
5661 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
5662 pf->qp_pile = kzalloc(size, GFP_KERNEL);
5663 if (!pf->qp_pile) {
5664 err = -ENOMEM;
5665 goto sw_init_done;
5666 }
5667 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
5668 pf->qp_pile->search_hint = 0;
5669
5670 /* set up vector assignment tracking */
5671 size = sizeof(struct i40e_lump_tracking)
5672 + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors);
5673 pf->irq_pile = kzalloc(size, GFP_KERNEL);
5674 if (!pf->irq_pile) {
5675 kfree(pf->qp_pile);
5676 err = -ENOMEM;
5677 goto sw_init_done;
5678 }
5679 pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors;
5680 pf->irq_pile->search_hint = 0;
5681
5682 mutex_init(&pf->switch_mutex);
5683
5684sw_init_done:
5685 return err;
5686}
5687
5688/**
5689 * i40e_set_features - set the netdev feature flags
5690 * @netdev: ptr to the netdev being adjusted
5691 * @features: the feature set that the stack is suggesting
5692 **/
5693static int i40e_set_features(struct net_device *netdev,
5694 netdev_features_t features)
5695{
5696 struct i40e_netdev_priv *np = netdev_priv(netdev);
5697 struct i40e_vsi *vsi = np->vsi;
5698
5699 if (features & NETIF_F_HW_VLAN_CTAG_RX)
5700 i40e_vlan_stripping_enable(vsi);
5701 else
5702 i40e_vlan_stripping_disable(vsi);
5703
5704 return 0;
5705}
5706
5707static const struct net_device_ops i40e_netdev_ops = {
5708 .ndo_open = i40e_open,
5709 .ndo_stop = i40e_close,
5710 .ndo_start_xmit = i40e_lan_xmit_frame,
5711 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
5712 .ndo_set_rx_mode = i40e_set_rx_mode,
5713 .ndo_validate_addr = eth_validate_addr,
5714 .ndo_set_mac_address = i40e_set_mac,
5715 .ndo_change_mtu = i40e_change_mtu,
5716 .ndo_tx_timeout = i40e_tx_timeout,
5717 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
5718 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
5719#ifdef CONFIG_NET_POLL_CONTROLLER
5720 .ndo_poll_controller = i40e_netpoll,
5721#endif
5722 .ndo_setup_tc = i40e_setup_tc,
5723 .ndo_set_features = i40e_set_features,
5724 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
5725 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
5726 .ndo_set_vf_tx_rate = i40e_ndo_set_vf_bw,
5727 .ndo_get_vf_config = i40e_ndo_get_vf_config,
5728};
5729
5730/**
5731 * i40e_config_netdev - Setup the netdev flags
5732 * @vsi: the VSI being configured
5733 *
5734 * Returns 0 on success, negative value on failure
5735 **/
5736static int i40e_config_netdev(struct i40e_vsi *vsi)
5737{
5738 struct i40e_pf *pf = vsi->back;
5739 struct i40e_hw *hw = &pf->hw;
5740 struct i40e_netdev_priv *np;
5741 struct net_device *netdev;
5742 u8 mac_addr[ETH_ALEN];
5743 int etherdev_size;
5744
5745 etherdev_size = sizeof(struct i40e_netdev_priv);
5746 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
5747 if (!netdev)
5748 return -ENOMEM;
5749
5750 vsi->netdev = netdev;
5751 np = netdev_priv(netdev);
5752 np->vsi = vsi;
5753
5754 netdev->hw_enc_features = NETIF_F_IP_CSUM |
5755 NETIF_F_GSO_UDP_TUNNEL |
5756 NETIF_F_TSO |
5757 NETIF_F_SG;
5758
5759 netdev->features = NETIF_F_SG |
5760 NETIF_F_IP_CSUM |
5761 NETIF_F_SCTP_CSUM |
5762 NETIF_F_HIGHDMA |
5763 NETIF_F_GSO_UDP_TUNNEL |
5764 NETIF_F_HW_VLAN_CTAG_TX |
5765 NETIF_F_HW_VLAN_CTAG_RX |
5766 NETIF_F_HW_VLAN_CTAG_FILTER |
5767 NETIF_F_IPV6_CSUM |
5768 NETIF_F_TSO |
5769 NETIF_F_TSO6 |
5770 NETIF_F_RXCSUM |
5771 NETIF_F_RXHASH |
5772 0;
5773
5774 /* copy netdev features into list of user selectable features */
5775 netdev->hw_features |= netdev->features;
5776
5777 if (vsi->type == I40E_VSI_MAIN) {
5778 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
5779 memcpy(mac_addr, hw->mac.perm_addr, ETH_ALEN);
5780 } else {
5781 /* relate the VSI_VMDQ name to the VSI_MAIN name */
5782 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
5783 pf->vsi[pf->lan_vsi]->netdev->name);
5784 random_ether_addr(mac_addr);
5785 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
5786 }
5787
5788 memcpy(netdev->dev_addr, mac_addr, ETH_ALEN);
5789 memcpy(netdev->perm_addr, mac_addr, ETH_ALEN);
5790 /* vlan gets same features (except vlan offload)
5791 * after any tweaks for specific VSI types
5792 */
5793 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
5794 NETIF_F_HW_VLAN_CTAG_RX |
5795 NETIF_F_HW_VLAN_CTAG_FILTER);
5796 netdev->priv_flags |= IFF_UNICAST_FLT;
5797 netdev->priv_flags |= IFF_SUPP_NOFCS;
5798 /* Setup netdev TC information */
5799 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
5800
5801 netdev->netdev_ops = &i40e_netdev_ops;
5802 netdev->watchdog_timeo = 5 * HZ;
5803 i40e_set_ethtool_ops(netdev);
5804
5805 return 0;
5806}
5807
5808/**
5809 * i40e_vsi_delete - Delete a VSI from the switch
5810 * @vsi: the VSI being removed
5811 *
5812 * Returns 0 on success, negative value on failure
5813 **/
5814static void i40e_vsi_delete(struct i40e_vsi *vsi)
5815{
5816 /* remove default VSI is not allowed */
5817 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
5818 return;
5819
5820 /* there is no HW VSI for FDIR */
5821 if (vsi->type == I40E_VSI_FDIR)
5822 return;
5823
5824 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
5825 return;
5826}
5827
5828/**
5829 * i40e_add_vsi - Add a VSI to the switch
5830 * @vsi: the VSI being configured
5831 *
5832 * This initializes a VSI context depending on the VSI type to be added and
5833 * passes it down to the add_vsi aq command.
5834 **/
5835static int i40e_add_vsi(struct i40e_vsi *vsi)
5836{
5837 int ret = -ENODEV;
5838 struct i40e_mac_filter *f, *ftmp;
5839 struct i40e_pf *pf = vsi->back;
5840 struct i40e_hw *hw = &pf->hw;
5841 struct i40e_vsi_context ctxt;
5842 u8 enabled_tc = 0x1; /* TC0 enabled */
5843 int f_count = 0;
5844
5845 memset(&ctxt, 0, sizeof(ctxt));
5846 switch (vsi->type) {
5847 case I40E_VSI_MAIN:
5848 /* The PF's main VSI is already setup as part of the
5849 * device initialization, so we'll not bother with
5850 * the add_vsi call, but we will retrieve the current
5851 * VSI context.
5852 */
5853 ctxt.seid = pf->main_vsi_seid;
5854 ctxt.pf_num = pf->hw.pf_id;
5855 ctxt.vf_num = 0;
5856 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
5857 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
5858 if (ret) {
5859 dev_info(&pf->pdev->dev,
5860 "couldn't get pf vsi config, err %d, aq_err %d\n",
5861 ret, pf->hw.aq.asq_last_status);
5862 return -ENOENT;
5863 }
5864 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
5865 vsi->info.valid_sections = 0;
5866
5867 vsi->seid = ctxt.seid;
5868 vsi->id = ctxt.vsi_number;
5869
5870 enabled_tc = i40e_pf_get_tc_map(pf);
5871
5872 /* MFP mode setup queue map and update VSI */
5873 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5874 memset(&ctxt, 0, sizeof(ctxt));
5875 ctxt.seid = pf->main_vsi_seid;
5876 ctxt.pf_num = pf->hw.pf_id;
5877 ctxt.vf_num = 0;
5878 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
5879 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
5880 if (ret) {
5881 dev_info(&pf->pdev->dev,
5882 "update vsi failed, aq_err=%d\n",
5883 pf->hw.aq.asq_last_status);
5884 ret = -ENOENT;
5885 goto err;
5886 }
5887 /* update the local VSI info queue map */
5888 i40e_vsi_update_queue_map(vsi, &ctxt);
5889 vsi->info.valid_sections = 0;
5890 } else {
5891 /* Default/Main VSI is only enabled for TC0
5892 * reconfigure it to enable all TCs that are
5893 * available on the port in SFP mode.
5894 */
5895 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5896 if (ret) {
5897 dev_info(&pf->pdev->dev,
5898 "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n",
5899 enabled_tc, ret,
5900 pf->hw.aq.asq_last_status);
5901 ret = -ENOENT;
5902 }
5903 }
5904 break;
5905
5906 case I40E_VSI_FDIR:
5907 /* no queue mapping or actual HW VSI needed */
5908 vsi->info.valid_sections = 0;
5909 vsi->seid = 0;
5910 vsi->id = 0;
5911 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
5912 return 0;
5913 break;
5914
5915 case I40E_VSI_VMDQ2:
5916 ctxt.pf_num = hw->pf_id;
5917 ctxt.vf_num = 0;
5918 ctxt.uplink_seid = vsi->uplink_seid;
5919 ctxt.connection_type = 0x1; /* regular data port */
5920 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
5921
5922 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
5923
5924 /* This VSI is connected to VEB so the switch_id
5925 * should be set to zero by default.
5926 */
5927 ctxt.info.switch_id = 0;
5928 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB);
5929 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
5930
5931 /* Setup the VSI tx/rx queue map for TC0 only for now */
5932 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
5933 break;
5934
5935 case I40E_VSI_SRIOV:
5936 ctxt.pf_num = hw->pf_id;
5937 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
5938 ctxt.uplink_seid = vsi->uplink_seid;
5939 ctxt.connection_type = 0x1; /* regular data port */
5940 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
5941
5942 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
5943
5944 /* This VSI is connected to VEB so the switch_id
5945 * should be set to zero by default.
5946 */
5947 ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
5948
5949 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
5950 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
5951 /* Setup the VSI tx/rx queue map for TC0 only for now */
5952 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
5953 break;
5954
5955 default:
5956 return -ENODEV;
5957 }
5958
5959 if (vsi->type != I40E_VSI_MAIN) {
5960 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
5961 if (ret) {
5962 dev_info(&vsi->back->pdev->dev,
5963 "add vsi failed, aq_err=%d\n",
5964 vsi->back->hw.aq.asq_last_status);
5965 ret = -ENOENT;
5966 goto err;
5967 }
5968 memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info));
5969 vsi->info.valid_sections = 0;
5970 vsi->seid = ctxt.seid;
5971 vsi->id = ctxt.vsi_number;
5972 }
5973
5974 /* If macvlan filters already exist, force them to get loaded */
5975 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
5976 f->changed = true;
5977 f_count++;
5978 }
5979 if (f_count) {
5980 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
5981 pf->flags |= I40E_FLAG_FILTER_SYNC;
5982 }
5983
5984 /* Update VSI BW information */
5985 ret = i40e_vsi_get_bw_info(vsi);
5986 if (ret) {
5987 dev_info(&pf->pdev->dev,
5988 "couldn't get vsi bw info, err %d, aq_err %d\n",
5989 ret, pf->hw.aq.asq_last_status);
5990 /* VSI is already added so not tearing that up */
5991 ret = 0;
5992 }
5993
5994err:
5995 return ret;
5996}
5997
5998/**
5999 * i40e_vsi_release - Delete a VSI and free its resources
6000 * @vsi: the VSI being removed
6001 *
6002 * Returns 0 on success or < 0 on error
6003 **/
6004int i40e_vsi_release(struct i40e_vsi *vsi)
6005{
6006 struct i40e_mac_filter *f, *ftmp;
6007 struct i40e_veb *veb = NULL;
6008 struct i40e_pf *pf;
6009 u16 uplink_seid;
6010 int i, n;
6011
6012 pf = vsi->back;
6013
6014 /* release of a VEB-owner or last VSI is not allowed */
6015 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
6016 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
6017 vsi->seid, vsi->uplink_seid);
6018 return -ENODEV;
6019 }
6020 if (vsi == pf->vsi[pf->lan_vsi] &&
6021 !test_bit(__I40E_DOWN, &pf->state)) {
6022 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
6023 return -ENODEV;
6024 }
6025
6026 uplink_seid = vsi->uplink_seid;
6027 if (vsi->type != I40E_VSI_SRIOV) {
6028 if (vsi->netdev_registered) {
6029 vsi->netdev_registered = false;
6030 if (vsi->netdev) {
6031 /* results in a call to i40e_close() */
6032 unregister_netdev(vsi->netdev);
6033 free_netdev(vsi->netdev);
6034 vsi->netdev = NULL;
6035 }
6036 } else {
6037 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
6038 i40e_down(vsi);
6039 i40e_vsi_free_irq(vsi);
6040 i40e_vsi_free_tx_resources(vsi);
6041 i40e_vsi_free_rx_resources(vsi);
6042 }
6043 i40e_vsi_disable_irq(vsi);
6044 }
6045
6046 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
6047 i40e_del_filter(vsi, f->macaddr, f->vlan,
6048 f->is_vf, f->is_netdev);
6049 i40e_sync_vsi_filters(vsi);
6050
6051 i40e_vsi_delete(vsi);
6052 i40e_vsi_free_q_vectors(vsi);
6053 i40e_vsi_clear_rings(vsi);
6054 i40e_vsi_clear(vsi);
6055
6056 /* If this was the last thing on the VEB, except for the
6057 * controlling VSI, remove the VEB, which puts the controlling
6058 * VSI onto the next level down in the switch.
6059 *
6060 * Well, okay, there's one more exception here: don't remove
6061 * the orphan VEBs yet. We'll wait for an explicit remove request
6062 * from up the network stack.
6063 */
6064 for (n = 0, i = 0; i < pf->hw.func_caps.num_vsis; i++) {
6065 if (pf->vsi[i] &&
6066 pf->vsi[i]->uplink_seid == uplink_seid &&
6067 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
6068 n++; /* count the VSIs */
6069 }
6070 }
6071 for (i = 0; i < I40E_MAX_VEB; i++) {
6072 if (!pf->veb[i])
6073 continue;
6074 if (pf->veb[i]->uplink_seid == uplink_seid)
6075 n++; /* count the VEBs */
6076 if (pf->veb[i]->seid == uplink_seid)
6077 veb = pf->veb[i];
6078 }
6079 if (n == 0 && veb && veb->uplink_seid != 0)
6080 i40e_veb_release(veb);
6081
6082 return 0;
6083}
6084
6085/**
6086 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
6087 * @vsi: ptr to the VSI
6088 *
6089 * This should only be called after i40e_vsi_mem_alloc() which allocates the
6090 * corresponding SW VSI structure and initializes num_queue_pairs for the
6091 * newly allocated VSI.
6092 *
6093 * Returns 0 on success or negative on failure
6094 **/
6095static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
6096{
6097 int ret = -ENOENT;
6098 struct i40e_pf *pf = vsi->back;
6099
Alexander Duyck493fb302013-09-28 07:01:44 +00006100 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006101 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
6102 vsi->seid);
6103 return -EEXIST;
6104 }
6105
6106 if (vsi->base_vector) {
6107 dev_info(&pf->pdev->dev,
6108 "VSI %d has non-zero base vector %d\n",
6109 vsi->seid, vsi->base_vector);
6110 return -EEXIST;
6111 }
6112
6113 ret = i40e_alloc_q_vectors(vsi);
6114 if (ret) {
6115 dev_info(&pf->pdev->dev,
6116 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
6117 vsi->num_q_vectors, vsi->seid, ret);
6118 vsi->num_q_vectors = 0;
6119 goto vector_setup_out;
6120 }
6121
Shannon Nelson958a3e32013-09-28 07:13:28 +00006122 if (vsi->num_q_vectors)
6123 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
6124 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006125 if (vsi->base_vector < 0) {
6126 dev_info(&pf->pdev->dev,
6127 "failed to get q tracking for VSI %d, err=%d\n",
6128 vsi->seid, vsi->base_vector);
6129 i40e_vsi_free_q_vectors(vsi);
6130 ret = -ENOENT;
6131 goto vector_setup_out;
6132 }
6133
6134vector_setup_out:
6135 return ret;
6136}
6137
6138/**
6139 * i40e_vsi_setup - Set up a VSI by a given type
6140 * @pf: board private structure
6141 * @type: VSI type
6142 * @uplink_seid: the switch element to link to
6143 * @param1: usage depends upon VSI type. For VF types, indicates VF id
6144 *
6145 * This allocates the sw VSI structure and its queue resources, then add a VSI
6146 * to the identified VEB.
6147 *
6148 * Returns pointer to the successfully allocated and configure VSI sw struct on
6149 * success, otherwise returns NULL on failure.
6150 **/
6151struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
6152 u16 uplink_seid, u32 param1)
6153{
6154 struct i40e_vsi *vsi = NULL;
6155 struct i40e_veb *veb = NULL;
6156 int ret, i;
6157 int v_idx;
6158
6159 /* The requested uplink_seid must be either
6160 * - the PF's port seid
6161 * no VEB is needed because this is the PF
6162 * or this is a Flow Director special case VSI
6163 * - seid of an existing VEB
6164 * - seid of a VSI that owns an existing VEB
6165 * - seid of a VSI that doesn't own a VEB
6166 * a new VEB is created and the VSI becomes the owner
6167 * - seid of the PF VSI, which is what creates the first VEB
6168 * this is a special case of the previous
6169 *
6170 * Find which uplink_seid we were given and create a new VEB if needed
6171 */
6172 for (i = 0; i < I40E_MAX_VEB; i++) {
6173 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
6174 veb = pf->veb[i];
6175 break;
6176 }
6177 }
6178
6179 if (!veb && uplink_seid != pf->mac_seid) {
6180
6181 for (i = 0; i < pf->hw.func_caps.num_vsis; i++) {
6182 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
6183 vsi = pf->vsi[i];
6184 break;
6185 }
6186 }
6187 if (!vsi) {
6188 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
6189 uplink_seid);
6190 return NULL;
6191 }
6192
6193 if (vsi->uplink_seid == pf->mac_seid)
6194 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
6195 vsi->tc_config.enabled_tc);
6196 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
6197 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
6198 vsi->tc_config.enabled_tc);
6199
6200 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
6201 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
6202 veb = pf->veb[i];
6203 }
6204 if (!veb) {
6205 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
6206 return NULL;
6207 }
6208
6209 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
6210 uplink_seid = veb->seid;
6211 }
6212
6213 /* get vsi sw struct */
6214 v_idx = i40e_vsi_mem_alloc(pf, type);
6215 if (v_idx < 0)
6216 goto err_alloc;
6217 vsi = pf->vsi[v_idx];
6218 vsi->type = type;
6219 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
6220
6221 if (type == I40E_VSI_MAIN)
6222 pf->lan_vsi = v_idx;
6223 else if (type == I40E_VSI_SRIOV)
6224 vsi->vf_id = param1;
6225 /* assign it some queues */
6226 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
6227 if (ret < 0) {
6228 dev_info(&pf->pdev->dev, "VSI %d get_lump failed %d\n",
6229 vsi->seid, ret);
6230 goto err_vsi;
6231 }
6232 vsi->base_queue = ret;
6233
6234 /* get a VSI from the hardware */
6235 vsi->uplink_seid = uplink_seid;
6236 ret = i40e_add_vsi(vsi);
6237 if (ret)
6238 goto err_vsi;
6239
6240 switch (vsi->type) {
6241 /* setup the netdev if needed */
6242 case I40E_VSI_MAIN:
6243 case I40E_VSI_VMDQ2:
6244 ret = i40e_config_netdev(vsi);
6245 if (ret)
6246 goto err_netdev;
6247 ret = register_netdev(vsi->netdev);
6248 if (ret)
6249 goto err_netdev;
6250 vsi->netdev_registered = true;
6251 netif_carrier_off(vsi->netdev);
6252 /* fall through */
6253
6254 case I40E_VSI_FDIR:
6255 /* set up vectors and rings if needed */
6256 ret = i40e_vsi_setup_vectors(vsi);
6257 if (ret)
6258 goto err_msix;
6259
6260 ret = i40e_alloc_rings(vsi);
6261 if (ret)
6262 goto err_rings;
6263
6264 /* map all of the rings to the q_vectors */
6265 i40e_vsi_map_rings_to_vectors(vsi);
6266
6267 i40e_vsi_reset_stats(vsi);
6268 break;
6269
6270 default:
6271 /* no netdev or rings for the other VSI types */
6272 break;
6273 }
6274
6275 return vsi;
6276
6277err_rings:
6278 i40e_vsi_free_q_vectors(vsi);
6279err_msix:
6280 if (vsi->netdev_registered) {
6281 vsi->netdev_registered = false;
6282 unregister_netdev(vsi->netdev);
6283 free_netdev(vsi->netdev);
6284 vsi->netdev = NULL;
6285 }
6286err_netdev:
6287 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
6288err_vsi:
6289 i40e_vsi_clear(vsi);
6290err_alloc:
6291 return NULL;
6292}
6293
6294/**
6295 * i40e_veb_get_bw_info - Query VEB BW information
6296 * @veb: the veb to query
6297 *
6298 * Query the Tx scheduler BW configuration data for given VEB
6299 **/
6300static int i40e_veb_get_bw_info(struct i40e_veb *veb)
6301{
6302 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
6303 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
6304 struct i40e_pf *pf = veb->pf;
6305 struct i40e_hw *hw = &pf->hw;
6306 u32 tc_bw_max;
6307 int ret = 0;
6308 int i;
6309
6310 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
6311 &bw_data, NULL);
6312 if (ret) {
6313 dev_info(&pf->pdev->dev,
6314 "query veb bw config failed, aq_err=%d\n",
6315 hw->aq.asq_last_status);
6316 goto out;
6317 }
6318
6319 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
6320 &ets_data, NULL);
6321 if (ret) {
6322 dev_info(&pf->pdev->dev,
6323 "query veb bw ets config failed, aq_err=%d\n",
6324 hw->aq.asq_last_status);
6325 goto out;
6326 }
6327
6328 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
6329 veb->bw_max_quanta = ets_data.tc_bw_max;
6330 veb->is_abs_credits = bw_data.absolute_credits_enable;
6331 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
6332 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
6333 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
6334 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
6335 veb->bw_tc_limit_credits[i] =
6336 le16_to_cpu(bw_data.tc_bw_limits[i]);
6337 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
6338 }
6339
6340out:
6341 return ret;
6342}
6343
6344/**
6345 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
6346 * @pf: board private structure
6347 *
6348 * On error: returns error code (negative)
6349 * On success: returns vsi index in PF (positive)
6350 **/
6351static int i40e_veb_mem_alloc(struct i40e_pf *pf)
6352{
6353 int ret = -ENOENT;
6354 struct i40e_veb *veb;
6355 int i;
6356
6357 /* Need to protect the allocation of switch elements at the PF level */
6358 mutex_lock(&pf->switch_mutex);
6359
6360 /* VEB list may be fragmented if VEB creation/destruction has
6361 * been happening. We can afford to do a quick scan to look
6362 * for any free slots in the list.
6363 *
6364 * find next empty veb slot, looping back around if necessary
6365 */
6366 i = 0;
6367 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
6368 i++;
6369 if (i >= I40E_MAX_VEB) {
6370 ret = -ENOMEM;
6371 goto err_alloc_veb; /* out of VEB slots! */
6372 }
6373
6374 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
6375 if (!veb) {
6376 ret = -ENOMEM;
6377 goto err_alloc_veb;
6378 }
6379 veb->pf = pf;
6380 veb->idx = i;
6381 veb->enabled_tc = 1;
6382
6383 pf->veb[i] = veb;
6384 ret = i;
6385err_alloc_veb:
6386 mutex_unlock(&pf->switch_mutex);
6387 return ret;
6388}
6389
6390/**
6391 * i40e_switch_branch_release - Delete a branch of the switch tree
6392 * @branch: where to start deleting
6393 *
6394 * This uses recursion to find the tips of the branch to be
6395 * removed, deleting until we get back to and can delete this VEB.
6396 **/
6397static void i40e_switch_branch_release(struct i40e_veb *branch)
6398{
6399 struct i40e_pf *pf = branch->pf;
6400 u16 branch_seid = branch->seid;
6401 u16 veb_idx = branch->idx;
6402 int i;
6403
6404 /* release any VEBs on this VEB - RECURSION */
6405 for (i = 0; i < I40E_MAX_VEB; i++) {
6406 if (!pf->veb[i])
6407 continue;
6408 if (pf->veb[i]->uplink_seid == branch->seid)
6409 i40e_switch_branch_release(pf->veb[i]);
6410 }
6411
6412 /* Release the VSIs on this VEB, but not the owner VSI.
6413 *
6414 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
6415 * the VEB itself, so don't use (*branch) after this loop.
6416 */
6417 for (i = 0; i < pf->hw.func_caps.num_vsis; i++) {
6418 if (!pf->vsi[i])
6419 continue;
6420 if (pf->vsi[i]->uplink_seid == branch_seid &&
6421 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
6422 i40e_vsi_release(pf->vsi[i]);
6423 }
6424 }
6425
6426 /* There's one corner case where the VEB might not have been
6427 * removed, so double check it here and remove it if needed.
6428 * This case happens if the veb was created from the debugfs
6429 * commands and no VSIs were added to it.
6430 */
6431 if (pf->veb[veb_idx])
6432 i40e_veb_release(pf->veb[veb_idx]);
6433}
6434
6435/**
6436 * i40e_veb_clear - remove veb struct
6437 * @veb: the veb to remove
6438 **/
6439static void i40e_veb_clear(struct i40e_veb *veb)
6440{
6441 if (!veb)
6442 return;
6443
6444 if (veb->pf) {
6445 struct i40e_pf *pf = veb->pf;
6446
6447 mutex_lock(&pf->switch_mutex);
6448 if (pf->veb[veb->idx] == veb)
6449 pf->veb[veb->idx] = NULL;
6450 mutex_unlock(&pf->switch_mutex);
6451 }
6452
6453 kfree(veb);
6454}
6455
6456/**
6457 * i40e_veb_release - Delete a VEB and free its resources
6458 * @veb: the VEB being removed
6459 **/
6460void i40e_veb_release(struct i40e_veb *veb)
6461{
6462 struct i40e_vsi *vsi = NULL;
6463 struct i40e_pf *pf;
6464 int i, n = 0;
6465
6466 pf = veb->pf;
6467
6468 /* find the remaining VSI and check for extras */
6469 for (i = 0; i < pf->hw.func_caps.num_vsis; i++) {
6470 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
6471 n++;
6472 vsi = pf->vsi[i];
6473 }
6474 }
6475 if (n != 1) {
6476 dev_info(&pf->pdev->dev,
6477 "can't remove VEB %d with %d VSIs left\n",
6478 veb->seid, n);
6479 return;
6480 }
6481
6482 /* move the remaining VSI to uplink veb */
6483 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
6484 if (veb->uplink_seid) {
6485 vsi->uplink_seid = veb->uplink_seid;
6486 if (veb->uplink_seid == pf->mac_seid)
6487 vsi->veb_idx = I40E_NO_VEB;
6488 else
6489 vsi->veb_idx = veb->veb_idx;
6490 } else {
6491 /* floating VEB */
6492 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6493 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
6494 }
6495
6496 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
6497 i40e_veb_clear(veb);
6498
6499 return;
6500}
6501
6502/**
6503 * i40e_add_veb - create the VEB in the switch
6504 * @veb: the VEB to be instantiated
6505 * @vsi: the controlling VSI
6506 **/
6507static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
6508{
6509 bool is_default = (vsi->idx == vsi->back->lan_vsi);
6510 int ret;
6511
6512 /* get a VEB from the hardware */
6513 ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid,
6514 veb->enabled_tc, is_default, &veb->seid, NULL);
6515 if (ret) {
6516 dev_info(&veb->pf->pdev->dev,
6517 "couldn't add VEB, err %d, aq_err %d\n",
6518 ret, veb->pf->hw.aq.asq_last_status);
6519 return -EPERM;
6520 }
6521
6522 /* get statistics counter */
6523 ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL,
6524 &veb->stats_idx, NULL, NULL, NULL);
6525 if (ret) {
6526 dev_info(&veb->pf->pdev->dev,
6527 "couldn't get VEB statistics idx, err %d, aq_err %d\n",
6528 ret, veb->pf->hw.aq.asq_last_status);
6529 return -EPERM;
6530 }
6531 ret = i40e_veb_get_bw_info(veb);
6532 if (ret) {
6533 dev_info(&veb->pf->pdev->dev,
6534 "couldn't get VEB bw info, err %d, aq_err %d\n",
6535 ret, veb->pf->hw.aq.asq_last_status);
6536 i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL);
6537 return -ENOENT;
6538 }
6539
6540 vsi->uplink_seid = veb->seid;
6541 vsi->veb_idx = veb->idx;
6542 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
6543
6544 return 0;
6545}
6546
6547/**
6548 * i40e_veb_setup - Set up a VEB
6549 * @pf: board private structure
6550 * @flags: VEB setup flags
6551 * @uplink_seid: the switch element to link to
6552 * @vsi_seid: the initial VSI seid
6553 * @enabled_tc: Enabled TC bit-map
6554 *
6555 * This allocates the sw VEB structure and links it into the switch
6556 * It is possible and legal for this to be a duplicate of an already
6557 * existing VEB. It is also possible for both uplink and vsi seids
6558 * to be zero, in order to create a floating VEB.
6559 *
6560 * Returns pointer to the successfully allocated VEB sw struct on
6561 * success, otherwise returns NULL on failure.
6562 **/
6563struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
6564 u16 uplink_seid, u16 vsi_seid,
6565 u8 enabled_tc)
6566{
6567 struct i40e_veb *veb, *uplink_veb = NULL;
6568 int vsi_idx, veb_idx;
6569 int ret;
6570
6571 /* if one seid is 0, the other must be 0 to create a floating relay */
6572 if ((uplink_seid == 0 || vsi_seid == 0) &&
6573 (uplink_seid + vsi_seid != 0)) {
6574 dev_info(&pf->pdev->dev,
6575 "one, not both seid's are 0: uplink=%d vsi=%d\n",
6576 uplink_seid, vsi_seid);
6577 return NULL;
6578 }
6579
6580 /* make sure there is such a vsi and uplink */
6581 for (vsi_idx = 0; vsi_idx < pf->hw.func_caps.num_vsis; vsi_idx++)
6582 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
6583 break;
6584 if (vsi_idx >= pf->hw.func_caps.num_vsis && vsi_seid != 0) {
6585 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
6586 vsi_seid);
6587 return NULL;
6588 }
6589
6590 if (uplink_seid && uplink_seid != pf->mac_seid) {
6591 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6592 if (pf->veb[veb_idx] &&
6593 pf->veb[veb_idx]->seid == uplink_seid) {
6594 uplink_veb = pf->veb[veb_idx];
6595 break;
6596 }
6597 }
6598 if (!uplink_veb) {
6599 dev_info(&pf->pdev->dev,
6600 "uplink seid %d not found\n", uplink_seid);
6601 return NULL;
6602 }
6603 }
6604
6605 /* get veb sw struct */
6606 veb_idx = i40e_veb_mem_alloc(pf);
6607 if (veb_idx < 0)
6608 goto err_alloc;
6609 veb = pf->veb[veb_idx];
6610 veb->flags = flags;
6611 veb->uplink_seid = uplink_seid;
6612 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
6613 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
6614
6615 /* create the VEB in the switch */
6616 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
6617 if (ret)
6618 goto err_veb;
6619
6620 return veb;
6621
6622err_veb:
6623 i40e_veb_clear(veb);
6624err_alloc:
6625 return NULL;
6626}
6627
6628/**
6629 * i40e_setup_pf_switch_element - set pf vars based on switch type
6630 * @pf: board private structure
6631 * @ele: element we are building info from
6632 * @num_reported: total number of elements
6633 * @printconfig: should we print the contents
6634 *
6635 * helper function to assist in extracting a few useful SEID values.
6636 **/
6637static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
6638 struct i40e_aqc_switch_config_element_resp *ele,
6639 u16 num_reported, bool printconfig)
6640{
6641 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
6642 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
6643 u8 element_type = ele->element_type;
6644 u16 seid = le16_to_cpu(ele->seid);
6645
6646 if (printconfig)
6647 dev_info(&pf->pdev->dev,
6648 "type=%d seid=%d uplink=%d downlink=%d\n",
6649 element_type, seid, uplink_seid, downlink_seid);
6650
6651 switch (element_type) {
6652 case I40E_SWITCH_ELEMENT_TYPE_MAC:
6653 pf->mac_seid = seid;
6654 break;
6655 case I40E_SWITCH_ELEMENT_TYPE_VEB:
6656 /* Main VEB? */
6657 if (uplink_seid != pf->mac_seid)
6658 break;
6659 if (pf->lan_veb == I40E_NO_VEB) {
6660 int v;
6661
6662 /* find existing or else empty VEB */
6663 for (v = 0; v < I40E_MAX_VEB; v++) {
6664 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
6665 pf->lan_veb = v;
6666 break;
6667 }
6668 }
6669 if (pf->lan_veb == I40E_NO_VEB) {
6670 v = i40e_veb_mem_alloc(pf);
6671 if (v < 0)
6672 break;
6673 pf->lan_veb = v;
6674 }
6675 }
6676
6677 pf->veb[pf->lan_veb]->seid = seid;
6678 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
6679 pf->veb[pf->lan_veb]->pf = pf;
6680 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
6681 break;
6682 case I40E_SWITCH_ELEMENT_TYPE_VSI:
6683 if (num_reported != 1)
6684 break;
6685 /* This is immediately after a reset so we can assume this is
6686 * the PF's VSI
6687 */
6688 pf->mac_seid = uplink_seid;
6689 pf->pf_seid = downlink_seid;
6690 pf->main_vsi_seid = seid;
6691 if (printconfig)
6692 dev_info(&pf->pdev->dev,
6693 "pf_seid=%d main_vsi_seid=%d\n",
6694 pf->pf_seid, pf->main_vsi_seid);
6695 break;
6696 case I40E_SWITCH_ELEMENT_TYPE_PF:
6697 case I40E_SWITCH_ELEMENT_TYPE_VF:
6698 case I40E_SWITCH_ELEMENT_TYPE_EMP:
6699 case I40E_SWITCH_ELEMENT_TYPE_BMC:
6700 case I40E_SWITCH_ELEMENT_TYPE_PE:
6701 case I40E_SWITCH_ELEMENT_TYPE_PA:
6702 /* ignore these for now */
6703 break;
6704 default:
6705 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
6706 element_type, seid);
6707 break;
6708 }
6709}
6710
6711/**
6712 * i40e_fetch_switch_configuration - Get switch config from firmware
6713 * @pf: board private structure
6714 * @printconfig: should we print the contents
6715 *
6716 * Get the current switch configuration from the device and
6717 * extract a few useful SEID values.
6718 **/
6719int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
6720{
6721 struct i40e_aqc_get_switch_config_resp *sw_config;
6722 u16 next_seid = 0;
6723 int ret = 0;
6724 u8 *aq_buf;
6725 int i;
6726
6727 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
6728 if (!aq_buf)
6729 return -ENOMEM;
6730
6731 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
6732 do {
6733 u16 num_reported, num_total;
6734
6735 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
6736 I40E_AQ_LARGE_BUF,
6737 &next_seid, NULL);
6738 if (ret) {
6739 dev_info(&pf->pdev->dev,
6740 "get switch config failed %d aq_err=%x\n",
6741 ret, pf->hw.aq.asq_last_status);
6742 kfree(aq_buf);
6743 return -ENOENT;
6744 }
6745
6746 num_reported = le16_to_cpu(sw_config->header.num_reported);
6747 num_total = le16_to_cpu(sw_config->header.num_total);
6748
6749 if (printconfig)
6750 dev_info(&pf->pdev->dev,
6751 "header: %d reported %d total\n",
6752 num_reported, num_total);
6753
6754 if (num_reported) {
6755 int sz = sizeof(*sw_config) * num_reported;
6756
6757 kfree(pf->sw_config);
6758 pf->sw_config = kzalloc(sz, GFP_KERNEL);
6759 if (pf->sw_config)
6760 memcpy(pf->sw_config, sw_config, sz);
6761 }
6762
6763 for (i = 0; i < num_reported; i++) {
6764 struct i40e_aqc_switch_config_element_resp *ele =
6765 &sw_config->element[i];
6766
6767 i40e_setup_pf_switch_element(pf, ele, num_reported,
6768 printconfig);
6769 }
6770 } while (next_seid != 0);
6771
6772 kfree(aq_buf);
6773 return ret;
6774}
6775
6776/**
6777 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
6778 * @pf: board private structure
6779 *
6780 * Returns 0 on success, negative value on failure
6781 **/
6782static int i40e_setup_pf_switch(struct i40e_pf *pf)
6783{
6784 int ret;
6785
6786 /* find out what's out there already */
6787 ret = i40e_fetch_switch_configuration(pf, false);
6788 if (ret) {
6789 dev_info(&pf->pdev->dev,
6790 "couldn't fetch switch config, err %d, aq_err %d\n",
6791 ret, pf->hw.aq.asq_last_status);
6792 return ret;
6793 }
6794 i40e_pf_reset_stats(pf);
6795
6796 /* fdir VSI must happen first to be sure it gets queue 0, but only
6797 * if there is enough room for the fdir VSI
6798 */
6799 if (pf->num_lan_qps > 1)
6800 i40e_fdir_setup(pf);
6801
6802 /* first time setup */
6803 if (pf->lan_vsi == I40E_NO_VSI) {
6804 struct i40e_vsi *vsi = NULL;
6805 u16 uplink_seid;
6806
6807 /* Set up the PF VSI associated with the PF's main VSI
6808 * that is already in the HW switch
6809 */
6810 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6811 uplink_seid = pf->veb[pf->lan_veb]->seid;
6812 else
6813 uplink_seid = pf->mac_seid;
6814
6815 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
6816 if (!vsi) {
6817 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
6818 i40e_fdir_teardown(pf);
6819 return -EAGAIN;
6820 }
6821 /* accommodate kcompat by copying the main VSI queue count
6822 * into the pf, since this newer code pushes the pf queue
6823 * info down a level into a VSI
6824 */
6825 pf->num_rx_queues = vsi->alloc_queue_pairs;
6826 pf->num_tx_queues = vsi->alloc_queue_pairs;
6827 } else {
6828 /* force a reset of TC and queue layout configurations */
6829 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
6830 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
6831 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
6832 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
6833 }
6834 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
6835
6836 /* Setup static PF queue filter control settings */
6837 ret = i40e_setup_pf_filter_control(pf);
6838 if (ret) {
6839 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
6840 ret);
6841 /* Failure here should not stop continuing other steps */
6842 }
6843
6844 /* enable RSS in the HW, even for only one queue, as the stack can use
6845 * the hash
6846 */
6847 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
6848 i40e_config_rss(pf);
6849
6850 /* fill in link information and enable LSE reporting */
6851 i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
6852 i40e_link_event(pf);
6853
6854 /* Initialize user-specifics link properties */
6855 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
6856 I40E_AQ_AN_COMPLETED) ? true : false);
6857 pf->hw.fc.requested_mode = I40E_FC_DEFAULT;
6858 if (pf->hw.phy.link_info.an_info &
6859 (I40E_AQ_LINK_PAUSE_TX | I40E_AQ_LINK_PAUSE_RX))
6860 pf->hw.fc.current_mode = I40E_FC_FULL;
6861 else if (pf->hw.phy.link_info.an_info & I40E_AQ_LINK_PAUSE_TX)
6862 pf->hw.fc.current_mode = I40E_FC_TX_PAUSE;
6863 else if (pf->hw.phy.link_info.an_info & I40E_AQ_LINK_PAUSE_RX)
6864 pf->hw.fc.current_mode = I40E_FC_RX_PAUSE;
6865 else
6866 pf->hw.fc.current_mode = I40E_FC_DEFAULT;
6867
6868 return ret;
6869}
6870
6871/**
6872 * i40e_set_rss_size - helper to set rss_size
6873 * @pf: board private structure
6874 * @queues_left: how many queues
6875 */
6876static u16 i40e_set_rss_size(struct i40e_pf *pf, int queues_left)
6877{
6878 int num_tc0;
6879
6880 num_tc0 = min_t(int, queues_left, pf->rss_size_max);
6881 num_tc0 = min_t(int, num_tc0, nr_cpus_node(numa_node_id()));
6882 num_tc0 = rounddown_pow_of_two(num_tc0);
6883
6884 return num_tc0;
6885}
6886
6887/**
6888 * i40e_determine_queue_usage - Work out queue distribution
6889 * @pf: board private structure
6890 **/
6891static void i40e_determine_queue_usage(struct i40e_pf *pf)
6892{
6893 int accum_tc_size;
6894 int queues_left;
6895
6896 pf->num_lan_qps = 0;
6897 pf->num_tc_qps = rounddown_pow_of_two(pf->num_tc_qps);
6898 accum_tc_size = (I40E_MAX_TRAFFIC_CLASS - 1) * pf->num_tc_qps;
6899
6900 /* Find the max queues to be put into basic use. We'll always be
6901 * using TC0, whether or not DCB is running, and TC0 will get the
6902 * big RSS set.
6903 */
6904 queues_left = pf->hw.func_caps.num_tx_qp;
6905
6906 if (!((pf->flags & I40E_FLAG_MSIX_ENABLED) &&
6907 (pf->flags & I40E_FLAG_MQ_ENABLED)) ||
6908 !(pf->flags & (I40E_FLAG_RSS_ENABLED |
6909 I40E_FLAG_FDIR_ENABLED | I40E_FLAG_DCB_ENABLED)) ||
6910 (queues_left == 1)) {
6911
6912 /* one qp for PF, no queues for anything else */
6913 queues_left = 0;
6914 pf->rss_size = pf->num_lan_qps = 1;
6915
6916 /* make sure all the fancies are disabled */
6917 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
6918 I40E_FLAG_MQ_ENABLED |
6919 I40E_FLAG_FDIR_ENABLED |
6920 I40E_FLAG_FDIR_ATR_ENABLED |
6921 I40E_FLAG_DCB_ENABLED |
6922 I40E_FLAG_SRIOV_ENABLED |
6923 I40E_FLAG_VMDQ_ENABLED);
6924
6925 } else if (pf->flags & I40E_FLAG_RSS_ENABLED &&
6926 !(pf->flags & I40E_FLAG_FDIR_ENABLED) &&
6927 !(pf->flags & I40E_FLAG_DCB_ENABLED)) {
6928
6929 pf->rss_size = i40e_set_rss_size(pf, queues_left);
6930
6931 queues_left -= pf->rss_size;
6932 pf->num_lan_qps = pf->rss_size;
6933
6934 } else if (pf->flags & I40E_FLAG_RSS_ENABLED &&
6935 !(pf->flags & I40E_FLAG_FDIR_ENABLED) &&
6936 (pf->flags & I40E_FLAG_DCB_ENABLED)) {
6937
6938 /* save num_tc_qps queues for TCs 1 thru 7 and the rest
6939 * are set up for RSS in TC0
6940 */
6941 queues_left -= accum_tc_size;
6942
6943 pf->rss_size = i40e_set_rss_size(pf, queues_left);
6944
6945 queues_left -= pf->rss_size;
6946 if (queues_left < 0) {
6947 dev_info(&pf->pdev->dev, "not enough queues for DCB\n");
6948 return;
6949 }
6950
6951 pf->num_lan_qps = pf->rss_size + accum_tc_size;
6952
6953 } else if (pf->flags & I40E_FLAG_RSS_ENABLED &&
6954 (pf->flags & I40E_FLAG_FDIR_ENABLED) &&
6955 !(pf->flags & I40E_FLAG_DCB_ENABLED)) {
6956
6957 queues_left -= 1; /* save 1 queue for FD */
6958
6959 pf->rss_size = i40e_set_rss_size(pf, queues_left);
6960
6961 queues_left -= pf->rss_size;
6962 if (queues_left < 0) {
6963 dev_info(&pf->pdev->dev, "not enough queues for Flow Director\n");
6964 return;
6965 }
6966
6967 pf->num_lan_qps = pf->rss_size;
6968
6969 } else if (pf->flags & I40E_FLAG_RSS_ENABLED &&
6970 (pf->flags & I40E_FLAG_FDIR_ENABLED) &&
6971 (pf->flags & I40E_FLAG_DCB_ENABLED)) {
6972
6973 /* save 1 queue for TCs 1 thru 7,
6974 * 1 queue for flow director,
6975 * and the rest are set up for RSS in TC0
6976 */
6977 queues_left -= 1;
6978 queues_left -= accum_tc_size;
6979
6980 pf->rss_size = i40e_set_rss_size(pf, queues_left);
6981 queues_left -= pf->rss_size;
6982 if (queues_left < 0) {
6983 dev_info(&pf->pdev->dev, "not enough queues for DCB and Flow Director\n");
6984 return;
6985 }
6986
6987 pf->num_lan_qps = pf->rss_size + accum_tc_size;
6988
6989 } else {
6990 dev_info(&pf->pdev->dev,
6991 "Invalid configuration, flags=0x%08llx\n", pf->flags);
6992 return;
6993 }
6994
6995 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
6996 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
6997 pf->num_req_vfs = min_t(int, pf->num_req_vfs, (queues_left /
6998 pf->num_vf_qps));
6999 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
7000 }
7001
7002 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7003 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
7004 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
7005 (queues_left / pf->num_vmdq_qps));
7006 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
7007 }
7008
7009 return;
7010}
7011
7012/**
7013 * i40e_setup_pf_filter_control - Setup PF static filter control
7014 * @pf: PF to be setup
7015 *
7016 * i40e_setup_pf_filter_control sets up a pf's initial filter control
7017 * settings. If PE/FCoE are enabled then it will also set the per PF
7018 * based filter sizes required for them. It also enables Flow director,
7019 * ethertype and macvlan type filter settings for the pf.
7020 *
7021 * Returns 0 on success, negative on failure
7022 **/
7023static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
7024{
7025 struct i40e_filter_control_settings *settings = &pf->filter_settings;
7026
7027 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
7028
7029 /* Flow Director is enabled */
7030 if (pf->flags & (I40E_FLAG_FDIR_ENABLED | I40E_FLAG_FDIR_ATR_ENABLED))
7031 settings->enable_fdir = true;
7032
7033 /* Ethtype and MACVLAN filters enabled for PF */
7034 settings->enable_ethtype = true;
7035 settings->enable_macvlan = true;
7036
7037 if (i40e_set_filter_control(&pf->hw, settings))
7038 return -ENOENT;
7039
7040 return 0;
7041}
7042
7043/**
7044 * i40e_probe - Device initialization routine
7045 * @pdev: PCI device information struct
7046 * @ent: entry in i40e_pci_tbl
7047 *
7048 * i40e_probe initializes a pf identified by a pci_dev structure.
7049 * The OS initialization, configuring of the pf private structure,
7050 * and a hardware reset occur.
7051 *
7052 * Returns 0 on success, negative on failure
7053 **/
7054static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
7055{
7056 struct i40e_driver_version dv;
7057 struct i40e_pf *pf;
7058 struct i40e_hw *hw;
7059 int err = 0;
7060 u32 len;
7061
7062 err = pci_enable_device_mem(pdev);
7063 if (err)
7064 return err;
7065
7066 /* set up for high or low dma */
7067 if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64))) {
7068 /* coherent mask for the same size will always succeed if
7069 * dma_set_mask does
7070 */
7071 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
7072 } else if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(32))) {
7073 dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
7074 } else {
7075 dev_err(&pdev->dev, "DMA configuration failed: %d\n", err);
7076 err = -EIO;
7077 goto err_dma;
7078 }
7079
7080 /* set up pci connections */
7081 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
7082 IORESOURCE_MEM), i40e_driver_name);
7083 if (err) {
7084 dev_info(&pdev->dev,
7085 "pci_request_selected_regions failed %d\n", err);
7086 goto err_pci_reg;
7087 }
7088
7089 pci_enable_pcie_error_reporting(pdev);
7090 pci_set_master(pdev);
7091
7092 /* Now that we have a PCI connection, we need to do the
7093 * low level device setup. This is primarily setting up
7094 * the Admin Queue structures and then querying for the
7095 * device's current profile information.
7096 */
7097 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
7098 if (!pf) {
7099 err = -ENOMEM;
7100 goto err_pf_alloc;
7101 }
7102 pf->next_vsi = 0;
7103 pf->pdev = pdev;
7104 set_bit(__I40E_DOWN, &pf->state);
7105
7106 hw = &pf->hw;
7107 hw->back = pf;
7108 hw->hw_addr = ioremap(pci_resource_start(pdev, 0),
7109 pci_resource_len(pdev, 0));
7110 if (!hw->hw_addr) {
7111 err = -EIO;
7112 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
7113 (unsigned int)pci_resource_start(pdev, 0),
7114 (unsigned int)pci_resource_len(pdev, 0), err);
7115 goto err_ioremap;
7116 }
7117 hw->vendor_id = pdev->vendor;
7118 hw->device_id = pdev->device;
7119 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
7120 hw->subsystem_vendor_id = pdev->subsystem_vendor;
7121 hw->subsystem_device_id = pdev->subsystem_device;
7122 hw->bus.device = PCI_SLOT(pdev->devfn);
7123 hw->bus.func = PCI_FUNC(pdev->devfn);
7124
7125 /* Reset here to make sure all is clean and to define PF 'n' */
7126 err = i40e_pf_reset(hw);
7127 if (err) {
7128 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
7129 goto err_pf_reset;
7130 }
7131 pf->pfr_count++;
7132
7133 hw->aq.num_arq_entries = I40E_AQ_LEN;
7134 hw->aq.num_asq_entries = I40E_AQ_LEN;
7135 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
7136 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
7137 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
7138 snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1,
7139 "%s-pf%d:misc",
7140 dev_driver_string(&pf->pdev->dev), pf->hw.pf_id);
7141
7142 err = i40e_init_shared_code(hw);
7143 if (err) {
7144 dev_info(&pdev->dev, "init_shared_code failed: %d\n", err);
7145 goto err_pf_reset;
7146 }
7147
7148 err = i40e_init_adminq(hw);
7149 dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw));
Anjali Singhai jainfe310702013-11-16 10:00:37 +00007150 if (((hw->nvm.version & I40E_NVM_VERSION_HI_MASK)
7151 >> I40E_NVM_VERSION_HI_SHIFT) != I40E_CURRENT_NVM_VERSION_HI) {
7152 dev_info(&pdev->dev,
7153 "warning: NVM version not supported, supported version: %02x.%02x\n",
7154 I40E_CURRENT_NVM_VERSION_HI,
7155 I40E_CURRENT_NVM_VERSION_LO);
7156 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007157 if (err) {
7158 dev_info(&pdev->dev,
7159 "init_adminq failed: %d expecting API %02x.%02x\n",
7160 err,
7161 I40E_FW_API_VERSION_MAJOR, I40E_FW_API_VERSION_MINOR);
7162 goto err_pf_reset;
7163 }
7164
7165 err = i40e_get_capabilities(pf);
7166 if (err)
7167 goto err_adminq_setup;
7168
7169 err = i40e_sw_init(pf);
7170 if (err) {
7171 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
7172 goto err_sw_init;
7173 }
7174
7175 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
7176 hw->func_caps.num_rx_qp,
7177 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
7178 if (err) {
7179 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
7180 goto err_init_lan_hmc;
7181 }
7182
7183 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
7184 if (err) {
7185 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
7186 err = -ENOENT;
7187 goto err_configure_lan_hmc;
7188 }
7189
7190 i40e_get_mac_addr(hw, hw->mac.addr);
7191 if (i40e_validate_mac_addr(hw->mac.addr)) {
7192 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
7193 err = -EIO;
7194 goto err_mac_addr;
7195 }
7196 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
7197 memcpy(hw->mac.perm_addr, hw->mac.addr, ETH_ALEN);
7198
7199 pci_set_drvdata(pdev, pf);
7200 pci_save_state(pdev);
7201
7202 /* set up periodic task facility */
7203 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
7204 pf->service_timer_period = HZ;
7205
7206 INIT_WORK(&pf->service_task, i40e_service_task);
7207 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
7208 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
7209 pf->link_check_timeout = jiffies;
7210
7211 /* set up the main switch operations */
7212 i40e_determine_queue_usage(pf);
7213 i40e_init_interrupt_scheme(pf);
7214
7215 /* Set up the *vsi struct based on the number of VSIs in the HW,
7216 * and set up our local tracking of the MAIN PF vsi.
7217 */
7218 len = sizeof(struct i40e_vsi *) * pf->hw.func_caps.num_vsis;
7219 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +00007220 if (!pf->vsi) {
7221 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007222 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +00007223 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007224
7225 err = i40e_setup_pf_switch(pf);
7226 if (err) {
7227 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
7228 goto err_vsis;
7229 }
7230
7231 /* The main driver is (mostly) up and happy. We need to set this state
7232 * before setting up the misc vector or we get a race and the vector
7233 * ends up disabled forever.
7234 */
7235 clear_bit(__I40E_DOWN, &pf->state);
7236
7237 /* In case of MSIX we are going to setup the misc vector right here
7238 * to handle admin queue events etc. In case of legacy and MSI
7239 * the misc functionality and queue processing is combined in
7240 * the same vector and that gets setup at open.
7241 */
7242 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7243 err = i40e_setup_misc_vector(pf);
7244 if (err) {
7245 dev_info(&pdev->dev,
7246 "setup of misc vector failed: %d\n", err);
7247 goto err_vsis;
7248 }
7249 }
7250
7251 /* prep for VF support */
7252 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
7253 (pf->flags & I40E_FLAG_MSIX_ENABLED)) {
7254 u32 val;
7255
7256 /* disable link interrupts for VFs */
7257 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
7258 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
7259 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
7260 i40e_flush(hw);
7261 }
7262
7263 i40e_dbg_pf_init(pf);
7264
7265 /* tell the firmware that we're starting */
7266 dv.major_version = DRV_VERSION_MAJOR;
7267 dv.minor_version = DRV_VERSION_MINOR;
7268 dv.build_version = DRV_VERSION_BUILD;
7269 dv.subbuild_version = 0;
7270 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
7271
7272 /* since everything's happy, start the service_task timer */
7273 mod_timer(&pf->service_timer,
7274 round_jiffies(jiffies + pf->service_timer_period));
7275
7276 return 0;
7277
7278 /* Unwind what we've done if something failed in the setup */
7279err_vsis:
7280 set_bit(__I40E_DOWN, &pf->state);
7281err_switch_setup:
7282 i40e_clear_interrupt_scheme(pf);
7283 kfree(pf->vsi);
7284 del_timer_sync(&pf->service_timer);
7285err_mac_addr:
7286err_configure_lan_hmc:
7287 (void)i40e_shutdown_lan_hmc(hw);
7288err_init_lan_hmc:
7289 kfree(pf->qp_pile);
7290 kfree(pf->irq_pile);
7291err_sw_init:
7292err_adminq_setup:
7293 (void)i40e_shutdown_adminq(hw);
7294err_pf_reset:
7295 iounmap(hw->hw_addr);
7296err_ioremap:
7297 kfree(pf);
7298err_pf_alloc:
7299 pci_disable_pcie_error_reporting(pdev);
7300 pci_release_selected_regions(pdev,
7301 pci_select_bars(pdev, IORESOURCE_MEM));
7302err_pci_reg:
7303err_dma:
7304 pci_disable_device(pdev);
7305 return err;
7306}
7307
7308/**
7309 * i40e_remove - Device removal routine
7310 * @pdev: PCI device information struct
7311 *
7312 * i40e_remove is called by the PCI subsystem to alert the driver
7313 * that is should release a PCI device. This could be caused by a
7314 * Hot-Plug event, or because the driver is going to be removed from
7315 * memory.
7316 **/
7317static void i40e_remove(struct pci_dev *pdev)
7318{
7319 struct i40e_pf *pf = pci_get_drvdata(pdev);
7320 i40e_status ret_code;
7321 u32 reg;
7322 int i;
7323
7324 i40e_dbg_pf_exit(pf);
7325
7326 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
7327 i40e_free_vfs(pf);
7328 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
7329 }
7330
7331 /* no more scheduling of any task */
7332 set_bit(__I40E_DOWN, &pf->state);
7333 del_timer_sync(&pf->service_timer);
7334 cancel_work_sync(&pf->service_task);
7335
7336 i40e_fdir_teardown(pf);
7337
7338 /* If there is a switch structure or any orphans, remove them.
7339 * This will leave only the PF's VSI remaining.
7340 */
7341 for (i = 0; i < I40E_MAX_VEB; i++) {
7342 if (!pf->veb[i])
7343 continue;
7344
7345 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
7346 pf->veb[i]->uplink_seid == 0)
7347 i40e_switch_branch_release(pf->veb[i]);
7348 }
7349
7350 /* Now we can shutdown the PF's VSI, just before we kill
7351 * adminq and hmc.
7352 */
7353 if (pf->vsi[pf->lan_vsi])
7354 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
7355
7356 i40e_stop_misc_vector(pf);
7357 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7358 synchronize_irq(pf->msix_entries[0].vector);
7359 free_irq(pf->msix_entries[0].vector, pf);
7360 }
7361
7362 /* shutdown and destroy the HMC */
7363 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
7364 if (ret_code)
7365 dev_warn(&pdev->dev,
7366 "Failed to destroy the HMC resources: %d\n", ret_code);
7367
7368 /* shutdown the adminq */
7369 i40e_aq_queue_shutdown(&pf->hw, true);
7370 ret_code = i40e_shutdown_adminq(&pf->hw);
7371 if (ret_code)
7372 dev_warn(&pdev->dev,
7373 "Failed to destroy the Admin Queue resources: %d\n",
7374 ret_code);
7375
7376 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
7377 i40e_clear_interrupt_scheme(pf);
7378 for (i = 0; i < pf->hw.func_caps.num_vsis; i++) {
7379 if (pf->vsi[i]) {
7380 i40e_vsi_clear_rings(pf->vsi[i]);
7381 i40e_vsi_clear(pf->vsi[i]);
7382 pf->vsi[i] = NULL;
7383 }
7384 }
7385
7386 for (i = 0; i < I40E_MAX_VEB; i++) {
7387 kfree(pf->veb[i]);
7388 pf->veb[i] = NULL;
7389 }
7390
7391 kfree(pf->qp_pile);
7392 kfree(pf->irq_pile);
7393 kfree(pf->sw_config);
7394 kfree(pf->vsi);
7395
7396 /* force a PF reset to clean anything leftover */
7397 reg = rd32(&pf->hw, I40E_PFGEN_CTRL);
7398 wr32(&pf->hw, I40E_PFGEN_CTRL, (reg | I40E_PFGEN_CTRL_PFSWR_MASK));
7399 i40e_flush(&pf->hw);
7400
7401 iounmap(pf->hw.hw_addr);
7402 kfree(pf);
7403 pci_release_selected_regions(pdev,
7404 pci_select_bars(pdev, IORESOURCE_MEM));
7405
7406 pci_disable_pcie_error_reporting(pdev);
7407 pci_disable_device(pdev);
7408}
7409
7410/**
7411 * i40e_pci_error_detected - warning that something funky happened in PCI land
7412 * @pdev: PCI device information struct
7413 *
7414 * Called to warn that something happened and the error handling steps
7415 * are in progress. Allows the driver to quiesce things, be ready for
7416 * remediation.
7417 **/
7418static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
7419 enum pci_channel_state error)
7420{
7421 struct i40e_pf *pf = pci_get_drvdata(pdev);
7422
7423 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
7424
7425 /* shutdown all operations */
7426 i40e_pf_quiesce_all_vsi(pf);
7427
7428 /* Request a slot reset */
7429 return PCI_ERS_RESULT_NEED_RESET;
7430}
7431
7432/**
7433 * i40e_pci_error_slot_reset - a PCI slot reset just happened
7434 * @pdev: PCI device information struct
7435 *
7436 * Called to find if the driver can work with the device now that
7437 * the pci slot has been reset. If a basic connection seems good
7438 * (registers are readable and have sane content) then return a
7439 * happy little PCI_ERS_RESULT_xxx.
7440 **/
7441static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
7442{
7443 struct i40e_pf *pf = pci_get_drvdata(pdev);
7444 pci_ers_result_t result;
7445 int err;
7446 u32 reg;
7447
7448 dev_info(&pdev->dev, "%s\n", __func__);
7449 if (pci_enable_device_mem(pdev)) {
7450 dev_info(&pdev->dev,
7451 "Cannot re-enable PCI device after reset.\n");
7452 result = PCI_ERS_RESULT_DISCONNECT;
7453 } else {
7454 pci_set_master(pdev);
7455 pci_restore_state(pdev);
7456 pci_save_state(pdev);
7457 pci_wake_from_d3(pdev, false);
7458
7459 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
7460 if (reg == 0)
7461 result = PCI_ERS_RESULT_RECOVERED;
7462 else
7463 result = PCI_ERS_RESULT_DISCONNECT;
7464 }
7465
7466 err = pci_cleanup_aer_uncorrect_error_status(pdev);
7467 if (err) {
7468 dev_info(&pdev->dev,
7469 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
7470 err);
7471 /* non-fatal, continue */
7472 }
7473
7474 return result;
7475}
7476
7477/**
7478 * i40e_pci_error_resume - restart operations after PCI error recovery
7479 * @pdev: PCI device information struct
7480 *
7481 * Called to allow the driver to bring things back up after PCI error
7482 * and/or reset recovery has finished.
7483 **/
7484static void i40e_pci_error_resume(struct pci_dev *pdev)
7485{
7486 struct i40e_pf *pf = pci_get_drvdata(pdev);
7487
7488 dev_info(&pdev->dev, "%s\n", __func__);
7489 i40e_handle_reset_warning(pf);
7490}
7491
7492static const struct pci_error_handlers i40e_err_handler = {
7493 .error_detected = i40e_pci_error_detected,
7494 .slot_reset = i40e_pci_error_slot_reset,
7495 .resume = i40e_pci_error_resume,
7496};
7497
7498static struct pci_driver i40e_driver = {
7499 .name = i40e_driver_name,
7500 .id_table = i40e_pci_tbl,
7501 .probe = i40e_probe,
7502 .remove = i40e_remove,
7503 .err_handler = &i40e_err_handler,
7504 .sriov_configure = i40e_pci_sriov_configure,
7505};
7506
7507/**
7508 * i40e_init_module - Driver registration routine
7509 *
7510 * i40e_init_module is the first routine called when the driver is
7511 * loaded. All it does is register with the PCI subsystem.
7512 **/
7513static int __init i40e_init_module(void)
7514{
7515 pr_info("%s: %s - version %s\n", i40e_driver_name,
7516 i40e_driver_string, i40e_driver_version_str);
7517 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
7518 i40e_dbg_init();
7519 return pci_register_driver(&i40e_driver);
7520}
7521module_init(i40e_init_module);
7522
7523/**
7524 * i40e_exit_module - Driver exit cleanup routine
7525 *
7526 * i40e_exit_module is called just before the driver is removed
7527 * from memory.
7528 **/
7529static void __exit i40e_exit_module(void)
7530{
7531 pci_unregister_driver(&i40e_driver);
7532 i40e_dbg_exit();
7533}
7534module_exit(i40e_exit_module);