]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/net/ethernet/intel/fm10k/fm10k_main.c
d9987331387e0c4fae8a1662e50c2679ab24eaf6
[karo-tx-linux.git] / drivers / net / ethernet / intel / fm10k / fm10k_main.c
1 /* Intel Ethernet Switch Host Interface Driver
2  * Copyright(c) 2013 - 2014 Intel Corporation.
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms and conditions of the GNU General Public License,
6  * version 2, as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope it will be useful, but WITHOUT
9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
11  * more details.
12  *
13  * The full GNU General Public License is included in this distribution in
14  * the file called "COPYING".
15  *
16  * Contact Information:
17  * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
18  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
19  */
20
21 #include <linux/types.h>
22 #include <linux/module.h>
23 #include <net/ipv6.h>
24 #include <net/ip.h>
25 #include <net/tcp.h>
26 #include <linux/if_macvlan.h>
27 #include <linux/prefetch.h>
28
29 #include "fm10k.h"
30
31 #define DRV_VERSION     "0.12.2-k"
32 const char fm10k_driver_version[] = DRV_VERSION;
33 char fm10k_driver_name[] = "fm10k";
34 static const char fm10k_driver_string[] =
35         "Intel(R) Ethernet Switch Host Interface Driver";
36 static const char fm10k_copyright[] =
37         "Copyright (c) 2013 Intel Corporation.";
38
39 MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>");
40 MODULE_DESCRIPTION("Intel(R) Ethernet Switch Host Interface Driver");
41 MODULE_LICENSE("GPL");
42 MODULE_VERSION(DRV_VERSION);
43
44 /**
45  * fm10k_init_module - Driver Registration Routine
46  *
47  * fm10k_init_module is the first routine called when the driver is
48  * loaded.  All it does is register with the PCI subsystem.
49  **/
50 static int __init fm10k_init_module(void)
51 {
52         pr_info("%s - version %s\n", fm10k_driver_string, fm10k_driver_version);
53         pr_info("%s\n", fm10k_copyright);
54
55         fm10k_dbg_init();
56
57         return fm10k_register_pci_driver();
58 }
59 module_init(fm10k_init_module);
60
61 /**
62  * fm10k_exit_module - Driver Exit Cleanup Routine
63  *
64  * fm10k_exit_module is called just before the driver is removed
65  * from memory.
66  **/
67 static void __exit fm10k_exit_module(void)
68 {
69         fm10k_unregister_pci_driver();
70
71         fm10k_dbg_exit();
72 }
73 module_exit(fm10k_exit_module);
74
75 static bool fm10k_alloc_mapped_page(struct fm10k_ring *rx_ring,
76                                     struct fm10k_rx_buffer *bi)
77 {
78         struct page *page = bi->page;
79         dma_addr_t dma;
80
81         /* Only page will be NULL if buffer was consumed */
82         if (likely(page))
83                 return true;
84
85         /* alloc new page for storage */
86         page = alloc_page(GFP_ATOMIC | __GFP_COLD);
87         if (unlikely(!page)) {
88                 rx_ring->rx_stats.alloc_failed++;
89                 return false;
90         }
91
92         /* map page for use */
93         dma = dma_map_page(rx_ring->dev, page, 0, PAGE_SIZE, DMA_FROM_DEVICE);
94
95         /* if mapping failed free memory back to system since
96          * there isn't much point in holding memory we can't use
97          */
98         if (dma_mapping_error(rx_ring->dev, dma)) {
99                 __free_page(page);
100                 bi->page = NULL;
101
102                 rx_ring->rx_stats.alloc_failed++;
103                 return false;
104         }
105
106         bi->dma = dma;
107         bi->page = page;
108         bi->page_offset = 0;
109
110         return true;
111 }
112
113 /**
114  * fm10k_alloc_rx_buffers - Replace used receive buffers
115  * @rx_ring: ring to place buffers on
116  * @cleaned_count: number of buffers to replace
117  **/
118 void fm10k_alloc_rx_buffers(struct fm10k_ring *rx_ring, u16 cleaned_count)
119 {
120         union fm10k_rx_desc *rx_desc;
121         struct fm10k_rx_buffer *bi;
122         u16 i = rx_ring->next_to_use;
123
124         /* nothing to do */
125         if (!cleaned_count)
126                 return;
127
128         rx_desc = FM10K_RX_DESC(rx_ring, i);
129         bi = &rx_ring->rx_buffer[i];
130         i -= rx_ring->count;
131
132         do {
133                 if (!fm10k_alloc_mapped_page(rx_ring, bi))
134                         break;
135
136                 /* Refresh the desc even if buffer_addrs didn't change
137                  * because each write-back erases this info.
138                  */
139                 rx_desc->q.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
140
141                 rx_desc++;
142                 bi++;
143                 i++;
144                 if (unlikely(!i)) {
145                         rx_desc = FM10K_RX_DESC(rx_ring, 0);
146                         bi = rx_ring->rx_buffer;
147                         i -= rx_ring->count;
148                 }
149
150                 /* clear the hdr_addr for the next_to_use descriptor */
151                 rx_desc->q.hdr_addr = 0;
152
153                 cleaned_count--;
154         } while (cleaned_count);
155
156         i += rx_ring->count;
157
158         if (rx_ring->next_to_use != i) {
159                 /* record the next descriptor to use */
160                 rx_ring->next_to_use = i;
161
162                 /* update next to alloc since we have filled the ring */
163                 rx_ring->next_to_alloc = i;
164
165                 /* Force memory writes to complete before letting h/w
166                  * know there are new descriptors to fetch.  (Only
167                  * applicable for weak-ordered memory model archs,
168                  * such as IA-64).
169                  */
170                 wmb();
171
172                 /* notify hardware of new descriptors */
173                 writel(i, rx_ring->tail);
174         }
175 }
176
177 /**
178  * fm10k_reuse_rx_page - page flip buffer and store it back on the ring
179  * @rx_ring: rx descriptor ring to store buffers on
180  * @old_buff: donor buffer to have page reused
181  *
182  * Synchronizes page for reuse by the interface
183  **/
184 static void fm10k_reuse_rx_page(struct fm10k_ring *rx_ring,
185                                 struct fm10k_rx_buffer *old_buff)
186 {
187         struct fm10k_rx_buffer *new_buff;
188         u16 nta = rx_ring->next_to_alloc;
189
190         new_buff = &rx_ring->rx_buffer[nta];
191
192         /* update, and store next to alloc */
193         nta++;
194         rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
195
196         /* transfer page from old buffer to new buffer */
197         memcpy(new_buff, old_buff, sizeof(struct fm10k_rx_buffer));
198
199         /* sync the buffer for use by the device */
200         dma_sync_single_range_for_device(rx_ring->dev, old_buff->dma,
201                                          old_buff->page_offset,
202                                          FM10K_RX_BUFSZ,
203                                          DMA_FROM_DEVICE);
204 }
205
206 static bool fm10k_can_reuse_rx_page(struct fm10k_rx_buffer *rx_buffer,
207                                     struct page *page,
208                                     unsigned int truesize)
209 {
210         /* avoid re-using remote pages */
211         if (unlikely(page_to_nid(page) != numa_mem_id()))
212                 return false;
213
214 #if (PAGE_SIZE < 8192)
215         /* if we are only owner of page we can reuse it */
216         if (unlikely(page_count(page) != 1))
217                 return false;
218
219         /* flip page offset to other buffer */
220         rx_buffer->page_offset ^= FM10K_RX_BUFSZ;
221
222         /* since we are the only owner of the page and we need to
223          * increment it, just set the value to 2 in order to avoid
224          * an unnecessary locked operation
225          */
226         atomic_set(&page->_count, 2);
227 #else
228         /* move offset up to the next cache line */
229         rx_buffer->page_offset += truesize;
230
231         if (rx_buffer->page_offset > (PAGE_SIZE - FM10K_RX_BUFSZ))
232                 return false;
233
234         /* bump ref count on page before it is given to the stack */
235         get_page(page);
236 #endif
237
238         return true;
239 }
240
241 /**
242  * fm10k_add_rx_frag - Add contents of Rx buffer to sk_buff
243  * @rx_ring: rx descriptor ring to transact packets on
244  * @rx_buffer: buffer containing page to add
245  * @rx_desc: descriptor containing length of buffer written by hardware
246  * @skb: sk_buff to place the data into
247  *
248  * This function will add the data contained in rx_buffer->page to the skb.
249  * This is done either through a direct copy if the data in the buffer is
250  * less than the skb header size, otherwise it will just attach the page as
251  * a frag to the skb.
252  *
253  * The function will then update the page offset if necessary and return
254  * true if the buffer can be reused by the interface.
255  **/
256 static bool fm10k_add_rx_frag(struct fm10k_ring *rx_ring,
257                               struct fm10k_rx_buffer *rx_buffer,
258                               union fm10k_rx_desc *rx_desc,
259                               struct sk_buff *skb)
260 {
261         struct page *page = rx_buffer->page;
262         unsigned int size = le16_to_cpu(rx_desc->w.length);
263 #if (PAGE_SIZE < 8192)
264         unsigned int truesize = FM10K_RX_BUFSZ;
265 #else
266         unsigned int truesize = ALIGN(size, L1_CACHE_BYTES);
267 #endif
268
269         if ((size <= FM10K_RX_HDR_LEN) && !skb_is_nonlinear(skb)) {
270                 unsigned char *va = page_address(page) + rx_buffer->page_offset;
271
272                 memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long)));
273
274                 /* we can reuse buffer as-is, just make sure it is local */
275                 if (likely(page_to_nid(page) == numa_mem_id()))
276                         return true;
277
278                 /* this page cannot be reused so discard it */
279                 put_page(page);
280                 return false;
281         }
282
283         skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
284                         rx_buffer->page_offset, size, truesize);
285
286         return fm10k_can_reuse_rx_page(rx_buffer, page, truesize);
287 }
288
289 static struct sk_buff *fm10k_fetch_rx_buffer(struct fm10k_ring *rx_ring,
290                                              union fm10k_rx_desc *rx_desc,
291                                              struct sk_buff *skb)
292 {
293         struct fm10k_rx_buffer *rx_buffer;
294         struct page *page;
295
296         rx_buffer = &rx_ring->rx_buffer[rx_ring->next_to_clean];
297
298         page = rx_buffer->page;
299         prefetchw(page);
300
301         if (likely(!skb)) {
302                 void *page_addr = page_address(page) +
303                                   rx_buffer->page_offset;
304
305                 /* prefetch first cache line of first page */
306                 prefetch(page_addr);
307 #if L1_CACHE_BYTES < 128
308                 prefetch(page_addr + L1_CACHE_BYTES);
309 #endif
310
311                 /* allocate a skb to store the frags */
312                 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
313                                                 FM10K_RX_HDR_LEN);
314                 if (unlikely(!skb)) {
315                         rx_ring->rx_stats.alloc_failed++;
316                         return NULL;
317                 }
318
319                 /* we will be copying header into skb->data in
320                  * pskb_may_pull so it is in our interest to prefetch
321                  * it now to avoid a possible cache miss
322                  */
323                 prefetchw(skb->data);
324         }
325
326         /* we are reusing so sync this buffer for CPU use */
327         dma_sync_single_range_for_cpu(rx_ring->dev,
328                                       rx_buffer->dma,
329                                       rx_buffer->page_offset,
330                                       FM10K_RX_BUFSZ,
331                                       DMA_FROM_DEVICE);
332
333         /* pull page into skb */
334         if (fm10k_add_rx_frag(rx_ring, rx_buffer, rx_desc, skb)) {
335                 /* hand second half of page back to the ring */
336                 fm10k_reuse_rx_page(rx_ring, rx_buffer);
337         } else {
338                 /* we are not reusing the buffer so unmap it */
339                 dma_unmap_page(rx_ring->dev, rx_buffer->dma,
340                                PAGE_SIZE, DMA_FROM_DEVICE);
341         }
342
343         /* clear contents of rx_buffer */
344         rx_buffer->page = NULL;
345
346         return skb;
347 }
348
349 static inline void fm10k_rx_checksum(struct fm10k_ring *ring,
350                                      union fm10k_rx_desc *rx_desc,
351                                      struct sk_buff *skb)
352 {
353         skb_checksum_none_assert(skb);
354
355         /* Rx checksum disabled via ethtool */
356         if (!(ring->netdev->features & NETIF_F_RXCSUM))
357                 return;
358
359         /* TCP/UDP checksum error bit is set */
360         if (fm10k_test_staterr(rx_desc,
361                                FM10K_RXD_STATUS_L4E |
362                                FM10K_RXD_STATUS_L4E2 |
363                                FM10K_RXD_STATUS_IPE |
364                                FM10K_RXD_STATUS_IPE2)) {
365                 ring->rx_stats.csum_err++;
366                 return;
367         }
368
369         /* It must be a TCP or UDP packet with a valid checksum */
370         if (fm10k_test_staterr(rx_desc, FM10K_RXD_STATUS_L4CS2))
371                 skb->encapsulation = true;
372         else if (!fm10k_test_staterr(rx_desc, FM10K_RXD_STATUS_L4CS))
373                 return;
374
375         skb->ip_summed = CHECKSUM_UNNECESSARY;
376 }
377
378 #define FM10K_RSS_L4_TYPES_MASK \
379         ((1ul << FM10K_RSSTYPE_IPV4_TCP) | \
380          (1ul << FM10K_RSSTYPE_IPV4_UDP) | \
381          (1ul << FM10K_RSSTYPE_IPV6_TCP) | \
382          (1ul << FM10K_RSSTYPE_IPV6_UDP))
383
384 static inline void fm10k_rx_hash(struct fm10k_ring *ring,
385                                  union fm10k_rx_desc *rx_desc,
386                                  struct sk_buff *skb)
387 {
388         u16 rss_type;
389
390         if (!(ring->netdev->features & NETIF_F_RXHASH))
391                 return;
392
393         rss_type = le16_to_cpu(rx_desc->w.pkt_info) & FM10K_RXD_RSSTYPE_MASK;
394         if (!rss_type)
395                 return;
396
397         skb_set_hash(skb, le32_to_cpu(rx_desc->d.rss),
398                      (FM10K_RSS_L4_TYPES_MASK & (1ul << rss_type)) ?
399                      PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3);
400 }
401
402 static void fm10k_type_trans(struct fm10k_ring *rx_ring,
403                              union fm10k_rx_desc *rx_desc,
404                              struct sk_buff *skb)
405 {
406         struct net_device *dev = rx_ring->netdev;
407         struct fm10k_l2_accel *l2_accel = rcu_dereference_bh(rx_ring->l2_accel);
408
409         /* check to see if DGLORT belongs to a MACVLAN */
410         if (l2_accel) {
411                 u16 idx = le16_to_cpu(FM10K_CB(skb)->fi.w.dglort) - 1;
412
413                 idx -= l2_accel->dglort;
414                 if (idx < l2_accel->size && l2_accel->macvlan[idx])
415                         dev = l2_accel->macvlan[idx];
416                 else
417                         l2_accel = NULL;
418         }
419
420         skb->protocol = eth_type_trans(skb, dev);
421
422         if (!l2_accel)
423                 return;
424
425         /* update MACVLAN statistics */
426         macvlan_count_rx(netdev_priv(dev), skb->len + ETH_HLEN, 1,
427                          !!(rx_desc->w.hdr_info &
428                             cpu_to_le16(FM10K_RXD_HDR_INFO_XC_MASK)));
429 }
430
431 /**
432  * fm10k_process_skb_fields - Populate skb header fields from Rx descriptor
433  * @rx_ring: rx descriptor ring packet is being transacted on
434  * @rx_desc: pointer to the EOP Rx descriptor
435  * @skb: pointer to current skb being populated
436  *
437  * This function checks the ring, descriptor, and packet information in
438  * order to populate the hash, checksum, VLAN, timestamp, protocol, and
439  * other fields within the skb.
440  **/
441 static unsigned int fm10k_process_skb_fields(struct fm10k_ring *rx_ring,
442                                              union fm10k_rx_desc *rx_desc,
443                                              struct sk_buff *skb)
444 {
445         unsigned int len = skb->len;
446
447         fm10k_rx_hash(rx_ring, rx_desc, skb);
448
449         fm10k_rx_checksum(rx_ring, rx_desc, skb);
450
451         FM10K_CB(skb)->fi.w.vlan = rx_desc->w.vlan;
452
453         skb_record_rx_queue(skb, rx_ring->queue_index);
454
455         FM10K_CB(skb)->fi.d.glort = rx_desc->d.glort;
456
457         if (rx_desc->w.vlan) {
458                 u16 vid = le16_to_cpu(rx_desc->w.vlan);
459
460                 if (vid != rx_ring->vid)
461                         __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
462         }
463
464         fm10k_type_trans(rx_ring, rx_desc, skb);
465
466         return len;
467 }
468
469 /**
470  * fm10k_is_non_eop - process handling of non-EOP buffers
471  * @rx_ring: Rx ring being processed
472  * @rx_desc: Rx descriptor for current buffer
473  *
474  * This function updates next to clean.  If the buffer is an EOP buffer
475  * this function exits returning false, otherwise it will place the
476  * sk_buff in the next buffer to be chained and return true indicating
477  * that this is in fact a non-EOP buffer.
478  **/
479 static bool fm10k_is_non_eop(struct fm10k_ring *rx_ring,
480                              union fm10k_rx_desc *rx_desc)
481 {
482         u32 ntc = rx_ring->next_to_clean + 1;
483
484         /* fetch, update, and store next to clean */
485         ntc = (ntc < rx_ring->count) ? ntc : 0;
486         rx_ring->next_to_clean = ntc;
487
488         prefetch(FM10K_RX_DESC(rx_ring, ntc));
489
490         if (likely(fm10k_test_staterr(rx_desc, FM10K_RXD_STATUS_EOP)))
491                 return false;
492
493         return true;
494 }
495
496 /**
497  * fm10k_pull_tail - fm10k specific version of skb_pull_tail
498  * @rx_ring: rx descriptor ring packet is being transacted on
499  * @rx_desc: pointer to the EOP Rx descriptor
500  * @skb: pointer to current skb being adjusted
501  *
502  * This function is an fm10k specific version of __pskb_pull_tail.  The
503  * main difference between this version and the original function is that
504  * this function can make several assumptions about the state of things
505  * that allow for significant optimizations versus the standard function.
506  * As a result we can do things like drop a frag and maintain an accurate
507  * truesize for the skb.
508  */
509 static void fm10k_pull_tail(struct fm10k_ring *rx_ring,
510                             union fm10k_rx_desc *rx_desc,
511                             struct sk_buff *skb)
512 {
513         struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0];
514         unsigned char *va;
515         unsigned int pull_len;
516
517         /* it is valid to use page_address instead of kmap since we are
518          * working with pages allocated out of the lomem pool per
519          * alloc_page(GFP_ATOMIC)
520          */
521         va = skb_frag_address(frag);
522
523         /* we need the header to contain the greater of either ETH_HLEN or
524          * 60 bytes if the skb->len is less than 60 for skb_pad.
525          */
526         pull_len = eth_get_headlen(va, FM10K_RX_HDR_LEN);
527
528         /* align pull length to size of long to optimize memcpy performance */
529         skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long)));
530
531         /* update all of the pointers */
532         skb_frag_size_sub(frag, pull_len);
533         frag->page_offset += pull_len;
534         skb->data_len -= pull_len;
535         skb->tail += pull_len;
536 }
537
538 /**
539  * fm10k_cleanup_headers - Correct corrupted or empty headers
540  * @rx_ring: rx descriptor ring packet is being transacted on
541  * @rx_desc: pointer to the EOP Rx descriptor
542  * @skb: pointer to current skb being fixed
543  *
544  * Address the case where we are pulling data in on pages only
545  * and as such no data is present in the skb header.
546  *
547  * In addition if skb is not at least 60 bytes we need to pad it so that
548  * it is large enough to qualify as a valid Ethernet frame.
549  *
550  * Returns true if an error was encountered and skb was freed.
551  **/
552 static bool fm10k_cleanup_headers(struct fm10k_ring *rx_ring,
553                                   union fm10k_rx_desc *rx_desc,
554                                   struct sk_buff *skb)
555 {
556         if (unlikely((fm10k_test_staterr(rx_desc,
557                                          FM10K_RXD_STATUS_RXE)))) {
558                 dev_kfree_skb_any(skb);
559                 rx_ring->rx_stats.errors++;
560                 return true;
561         }
562
563         /* place header in linear portion of buffer */
564         if (skb_is_nonlinear(skb))
565                 fm10k_pull_tail(rx_ring, rx_desc, skb);
566
567         /* if skb_pad returns an error the skb was freed */
568         if (unlikely(skb->len < 60)) {
569                 int pad_len = 60 - skb->len;
570
571                 if (skb_pad(skb, pad_len))
572                         return true;
573                 __skb_put(skb, pad_len);
574         }
575
576         return false;
577 }
578
579 /**
580  * fm10k_receive_skb - helper function to handle rx indications
581  * @q_vector: structure containing interrupt and ring information
582  * @skb: packet to send up
583  **/
584 static void fm10k_receive_skb(struct fm10k_q_vector *q_vector,
585                               struct sk_buff *skb)
586 {
587         napi_gro_receive(&q_vector->napi, skb);
588 }
589
590 static bool fm10k_clean_rx_irq(struct fm10k_q_vector *q_vector,
591                                struct fm10k_ring *rx_ring,
592                                int budget)
593 {
594         struct sk_buff *skb = rx_ring->skb;
595         unsigned int total_bytes = 0, total_packets = 0;
596         u16 cleaned_count = fm10k_desc_unused(rx_ring);
597
598         do {
599                 union fm10k_rx_desc *rx_desc;
600
601                 /* return some buffers to hardware, one at a time is too slow */
602                 if (cleaned_count >= FM10K_RX_BUFFER_WRITE) {
603                         fm10k_alloc_rx_buffers(rx_ring, cleaned_count);
604                         cleaned_count = 0;
605                 }
606
607                 rx_desc = FM10K_RX_DESC(rx_ring, rx_ring->next_to_clean);
608
609                 if (!fm10k_test_staterr(rx_desc, FM10K_RXD_STATUS_DD))
610                         break;
611
612                 /* This memory barrier is needed to keep us from reading
613                  * any other fields out of the rx_desc until we know the
614                  * RXD_STATUS_DD bit is set
615                  */
616                 rmb();
617
618                 /* retrieve a buffer from the ring */
619                 skb = fm10k_fetch_rx_buffer(rx_ring, rx_desc, skb);
620
621                 /* exit if we failed to retrieve a buffer */
622                 if (!skb)
623                         break;
624
625                 cleaned_count++;
626
627                 /* fetch next buffer in frame if non-eop */
628                 if (fm10k_is_non_eop(rx_ring, rx_desc))
629                         continue;
630
631                 /* verify the packet layout is correct */
632                 if (fm10k_cleanup_headers(rx_ring, rx_desc, skb)) {
633                         skb = NULL;
634                         continue;
635                 }
636
637                 /* populate checksum, timestamp, VLAN, and protocol */
638                 total_bytes += fm10k_process_skb_fields(rx_ring, rx_desc, skb);
639
640                 fm10k_receive_skb(q_vector, skb);
641
642                 /* reset skb pointer */
643                 skb = NULL;
644
645                 /* update budget accounting */
646                 total_packets++;
647         } while (likely(total_packets < budget));
648
649         /* place incomplete frames back on ring for completion */
650         rx_ring->skb = skb;
651
652         u64_stats_update_begin(&rx_ring->syncp);
653         rx_ring->stats.packets += total_packets;
654         rx_ring->stats.bytes += total_bytes;
655         u64_stats_update_end(&rx_ring->syncp);
656         q_vector->rx.total_packets += total_packets;
657         q_vector->rx.total_bytes += total_bytes;
658
659         return total_packets < budget;
660 }
661
662 #define VXLAN_HLEN (sizeof(struct udphdr) + 8)
663 static struct ethhdr *fm10k_port_is_vxlan(struct sk_buff *skb)
664 {
665         struct fm10k_intfc *interface = netdev_priv(skb->dev);
666         struct fm10k_vxlan_port *vxlan_port;
667
668         /* we can only offload a vxlan if we recognize it as such */
669         vxlan_port = list_first_entry_or_null(&interface->vxlan_port,
670                                               struct fm10k_vxlan_port, list);
671
672         if (!vxlan_port)
673                 return NULL;
674         if (vxlan_port->port != udp_hdr(skb)->dest)
675                 return NULL;
676
677         /* return offset of udp_hdr plus 8 bytes for VXLAN header */
678         return (struct ethhdr *)(skb_transport_header(skb) + VXLAN_HLEN);
679 }
680
681 #define FM10K_NVGRE_RESERVED0_FLAGS htons(0x9FFF)
682 #define NVGRE_TNI htons(0x2000)
683 struct fm10k_nvgre_hdr {
684         __be16 flags;
685         __be16 proto;
686         __be32 tni;
687 };
688
689 static struct ethhdr *fm10k_gre_is_nvgre(struct sk_buff *skb)
690 {
691         struct fm10k_nvgre_hdr *nvgre_hdr;
692         int hlen = ip_hdrlen(skb);
693
694         /* currently only IPv4 is supported due to hlen above */
695         if (vlan_get_protocol(skb) != htons(ETH_P_IP))
696                 return NULL;
697
698         /* our transport header should be NVGRE */
699         nvgre_hdr = (struct fm10k_nvgre_hdr *)(skb_network_header(skb) + hlen);
700
701         /* verify all reserved flags are 0 */
702         if (nvgre_hdr->flags & FM10K_NVGRE_RESERVED0_FLAGS)
703                 return NULL;
704
705         /* verify protocol is transparent Ethernet bridging */
706         if (nvgre_hdr->proto != htons(ETH_P_TEB))
707                 return NULL;
708
709         /* report start of ethernet header */
710         if (nvgre_hdr->flags & NVGRE_TNI)
711                 return (struct ethhdr *)(nvgre_hdr + 1);
712
713         return (struct ethhdr *)(&nvgre_hdr->tni);
714 }
715
716 static __be16 fm10k_tx_encap_offload(struct sk_buff *skb)
717 {
718         struct ethhdr *eth_hdr;
719         u8 l4_hdr = 0;
720
721         switch (vlan_get_protocol(skb)) {
722         case htons(ETH_P_IP):
723                 l4_hdr = ip_hdr(skb)->protocol;
724                 break;
725         case htons(ETH_P_IPV6):
726                 l4_hdr = ipv6_hdr(skb)->nexthdr;
727                 break;
728         default:
729                 return 0;
730         }
731
732         switch (l4_hdr) {
733         case IPPROTO_UDP:
734                 eth_hdr = fm10k_port_is_vxlan(skb);
735                 break;
736         case IPPROTO_GRE:
737                 eth_hdr = fm10k_gre_is_nvgre(skb);
738                 break;
739         default:
740                 return 0;
741         }
742
743         if (!eth_hdr)
744                 return 0;
745
746         switch (eth_hdr->h_proto) {
747         case htons(ETH_P_IP):
748         case htons(ETH_P_IPV6):
749                 break;
750         default:
751                 return 0;
752         }
753
754         return eth_hdr->h_proto;
755 }
756
757 static int fm10k_tso(struct fm10k_ring *tx_ring,
758                      struct fm10k_tx_buffer *first)
759 {
760         struct sk_buff *skb = first->skb;
761         struct fm10k_tx_desc *tx_desc;
762         unsigned char *th;
763         u8 hdrlen;
764
765         if (skb->ip_summed != CHECKSUM_PARTIAL)
766                 return 0;
767
768         if (!skb_is_gso(skb))
769                 return 0;
770
771         /* compute header lengths */
772         if (skb->encapsulation) {
773                 if (!fm10k_tx_encap_offload(skb))
774                         goto err_vxlan;
775                 th = skb_inner_transport_header(skb);
776         } else {
777                 th = skb_transport_header(skb);
778         }
779
780         /* compute offset from SOF to transport header and add header len */
781         hdrlen = (th - skb->data) + (((struct tcphdr *)th)->doff << 2);
782
783         first->tx_flags |= FM10K_TX_FLAGS_CSUM;
784
785         /* update gso size and bytecount with header size */
786         first->gso_segs = skb_shinfo(skb)->gso_segs;
787         first->bytecount += (first->gso_segs - 1) * hdrlen;
788
789         /* populate Tx descriptor header size and mss */
790         tx_desc = FM10K_TX_DESC(tx_ring, tx_ring->next_to_use);
791         tx_desc->hdrlen = hdrlen;
792         tx_desc->mss = cpu_to_le16(skb_shinfo(skb)->gso_size);
793
794         return 1;
795 err_vxlan:
796         tx_ring->netdev->features &= ~NETIF_F_GSO_UDP_TUNNEL;
797         if (!net_ratelimit())
798                 netdev_err(tx_ring->netdev,
799                            "TSO requested for unsupported tunnel, disabling offload\n");
800         return -1;
801 }
802
803 static void fm10k_tx_csum(struct fm10k_ring *tx_ring,
804                           struct fm10k_tx_buffer *first)
805 {
806         struct sk_buff *skb = first->skb;
807         struct fm10k_tx_desc *tx_desc;
808         union {
809                 struct iphdr *ipv4;
810                 struct ipv6hdr *ipv6;
811                 u8 *raw;
812         } network_hdr;
813         __be16 protocol;
814         u8 l4_hdr = 0;
815
816         if (skb->ip_summed != CHECKSUM_PARTIAL)
817                 goto no_csum;
818
819         if (skb->encapsulation) {
820                 protocol = fm10k_tx_encap_offload(skb);
821                 if (!protocol) {
822                         if (skb_checksum_help(skb)) {
823                                 dev_warn(tx_ring->dev,
824                                          "failed to offload encap csum!\n");
825                                 tx_ring->tx_stats.csum_err++;
826                         }
827                         goto no_csum;
828                 }
829                 network_hdr.raw = skb_inner_network_header(skb);
830         } else {
831                 protocol = vlan_get_protocol(skb);
832                 network_hdr.raw = skb_network_header(skb);
833         }
834
835         switch (protocol) {
836         case htons(ETH_P_IP):
837                 l4_hdr = network_hdr.ipv4->protocol;
838                 break;
839         case htons(ETH_P_IPV6):
840                 l4_hdr = network_hdr.ipv6->nexthdr;
841                 break;
842         default:
843                 if (unlikely(net_ratelimit())) {
844                         dev_warn(tx_ring->dev,
845                                  "partial checksum but ip version=%x!\n",
846                                  protocol);
847                 }
848                 tx_ring->tx_stats.csum_err++;
849                 goto no_csum;
850         }
851
852         switch (l4_hdr) {
853         case IPPROTO_TCP:
854         case IPPROTO_UDP:
855                 break;
856         case IPPROTO_GRE:
857                 if (skb->encapsulation)
858                         break;
859         default:
860                 if (unlikely(net_ratelimit())) {
861                         dev_warn(tx_ring->dev,
862                                  "partial checksum but l4 proto=%x!\n",
863                                  l4_hdr);
864                 }
865                 tx_ring->tx_stats.csum_err++;
866                 goto no_csum;
867         }
868
869         /* update TX checksum flag */
870         first->tx_flags |= FM10K_TX_FLAGS_CSUM;
871
872 no_csum:
873         /* populate Tx descriptor header size and mss */
874         tx_desc = FM10K_TX_DESC(tx_ring, tx_ring->next_to_use);
875         tx_desc->hdrlen = 0;
876         tx_desc->mss = 0;
877 }
878
879 #define FM10K_SET_FLAG(_input, _flag, _result) \
880         ((_flag <= _result) ? \
881          ((u32)(_input & _flag) * (_result / _flag)) : \
882          ((u32)(_input & _flag) / (_flag / _result)))
883
884 static u8 fm10k_tx_desc_flags(struct sk_buff *skb, u32 tx_flags)
885 {
886         /* set type for advanced descriptor with frame checksum insertion */
887         u32 desc_flags = 0;
888
889         /* set checksum offload bits */
890         desc_flags |= FM10K_SET_FLAG(tx_flags, FM10K_TX_FLAGS_CSUM,
891                                      FM10K_TXD_FLAG_CSUM);
892
893         return desc_flags;
894 }
895
896 static bool fm10k_tx_desc_push(struct fm10k_ring *tx_ring,
897                                struct fm10k_tx_desc *tx_desc, u16 i,
898                                dma_addr_t dma, unsigned int size, u8 desc_flags)
899 {
900         /* set RS and INT for last frame in a cache line */
901         if ((++i & (FM10K_TXD_WB_FIFO_SIZE - 1)) == 0)
902                 desc_flags |= FM10K_TXD_FLAG_RS | FM10K_TXD_FLAG_INT;
903
904         /* record values to descriptor */
905         tx_desc->buffer_addr = cpu_to_le64(dma);
906         tx_desc->flags = desc_flags;
907         tx_desc->buflen = cpu_to_le16(size);
908
909         /* return true if we just wrapped the ring */
910         return i == tx_ring->count;
911 }
912
913 static void fm10k_tx_map(struct fm10k_ring *tx_ring,
914                          struct fm10k_tx_buffer *first)
915 {
916         struct sk_buff *skb = first->skb;
917         struct fm10k_tx_buffer *tx_buffer;
918         struct fm10k_tx_desc *tx_desc;
919         struct skb_frag_struct *frag;
920         unsigned char *data;
921         dma_addr_t dma;
922         unsigned int data_len, size;
923         u32 tx_flags = first->tx_flags;
924         u16 i = tx_ring->next_to_use;
925         u8 flags = fm10k_tx_desc_flags(skb, tx_flags);
926
927         tx_desc = FM10K_TX_DESC(tx_ring, i);
928
929         /* add HW VLAN tag */
930         if (vlan_tx_tag_present(skb))
931                 tx_desc->vlan = cpu_to_le16(vlan_tx_tag_get(skb));
932         else
933                 tx_desc->vlan = 0;
934
935         size = skb_headlen(skb);
936         data = skb->data;
937
938         dma = dma_map_single(tx_ring->dev, data, size, DMA_TO_DEVICE);
939
940         data_len = skb->data_len;
941         tx_buffer = first;
942
943         for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
944                 if (dma_mapping_error(tx_ring->dev, dma))
945                         goto dma_error;
946
947                 /* record length, and DMA address */
948                 dma_unmap_len_set(tx_buffer, len, size);
949                 dma_unmap_addr_set(tx_buffer, dma, dma);
950
951                 while (unlikely(size > FM10K_MAX_DATA_PER_TXD)) {
952                         if (fm10k_tx_desc_push(tx_ring, tx_desc++, i++, dma,
953                                                FM10K_MAX_DATA_PER_TXD, flags)) {
954                                 tx_desc = FM10K_TX_DESC(tx_ring, 0);
955                                 i = 0;
956                         }
957
958                         dma += FM10K_MAX_DATA_PER_TXD;
959                         size -= FM10K_MAX_DATA_PER_TXD;
960                 }
961
962                 if (likely(!data_len))
963                         break;
964
965                 if (fm10k_tx_desc_push(tx_ring, tx_desc++, i++,
966                                        dma, size, flags)) {
967                         tx_desc = FM10K_TX_DESC(tx_ring, 0);
968                         i = 0;
969                 }
970
971                 size = skb_frag_size(frag);
972                 data_len -= size;
973
974                 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
975                                        DMA_TO_DEVICE);
976
977                 tx_buffer = &tx_ring->tx_buffer[i];
978         }
979
980         /* write last descriptor with LAST bit set */
981         flags |= FM10K_TXD_FLAG_LAST;
982
983         if (fm10k_tx_desc_push(tx_ring, tx_desc, i++, dma, size, flags))
984                 i = 0;
985
986         /* record bytecount for BQL */
987         netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
988
989         /* record SW timestamp if HW timestamp is not available */
990         skb_tx_timestamp(first->skb);
991
992         /* Force memory writes to complete before letting h/w know there
993          * are new descriptors to fetch.  (Only applicable for weak-ordered
994          * memory model archs, such as IA-64).
995          *
996          * We also need this memory barrier to make certain all of the
997          * status bits have been updated before next_to_watch is written.
998          */
999         wmb();
1000
1001         /* set next_to_watch value indicating a packet is present */
1002         first->next_to_watch = tx_desc;
1003
1004         tx_ring->next_to_use = i;
1005
1006         /* notify HW of packet */
1007         writel(i, tx_ring->tail);
1008
1009         /* we need this if more than one processor can write to our tail
1010          * at a time, it synchronizes IO on IA64/Altix systems
1011          */
1012         mmiowb();
1013
1014         return;
1015 dma_error:
1016         dev_err(tx_ring->dev, "TX DMA map failed\n");
1017
1018         /* clear dma mappings for failed tx_buffer map */
1019         for (;;) {
1020                 tx_buffer = &tx_ring->tx_buffer[i];
1021                 fm10k_unmap_and_free_tx_resource(tx_ring, tx_buffer);
1022                 if (tx_buffer == first)
1023                         break;
1024                 if (i == 0)
1025                         i = tx_ring->count;
1026                 i--;
1027         }
1028
1029         tx_ring->next_to_use = i;
1030 }
1031
1032 static int __fm10k_maybe_stop_tx(struct fm10k_ring *tx_ring, u16 size)
1033 {
1034         netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1035
1036         smp_mb();
1037
1038         /* We need to check again in a case another CPU has just
1039          * made room available. */
1040         if (likely(fm10k_desc_unused(tx_ring) < size))
1041                 return -EBUSY;
1042
1043         /* A reprieve! - use start_queue because it doesn't call schedule */
1044         netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
1045         ++tx_ring->tx_stats.restart_queue;
1046         return 0;
1047 }
1048
1049 static inline int fm10k_maybe_stop_tx(struct fm10k_ring *tx_ring, u16 size)
1050 {
1051         if (likely(fm10k_desc_unused(tx_ring) >= size))
1052                 return 0;
1053         return __fm10k_maybe_stop_tx(tx_ring, size);
1054 }
1055
1056 netdev_tx_t fm10k_xmit_frame_ring(struct sk_buff *skb,
1057                                   struct fm10k_ring *tx_ring)
1058 {
1059         struct fm10k_tx_buffer *first;
1060         int tso;
1061         u32 tx_flags = 0;
1062 #if PAGE_SIZE > FM10K_MAX_DATA_PER_TXD
1063         unsigned short f;
1064 #endif
1065         u16 count = TXD_USE_COUNT(skb_headlen(skb));
1066
1067         /* need: 1 descriptor per page * PAGE_SIZE/FM10K_MAX_DATA_PER_TXD,
1068          *       + 1 desc for skb_headlen/FM10K_MAX_DATA_PER_TXD,
1069          *       + 2 desc gap to keep tail from touching head
1070          * otherwise try next time
1071          */
1072 #if PAGE_SIZE > FM10K_MAX_DATA_PER_TXD
1073         for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
1074                 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
1075 #else
1076         count += skb_shinfo(skb)->nr_frags;
1077 #endif
1078         if (fm10k_maybe_stop_tx(tx_ring, count + 3)) {
1079                 tx_ring->tx_stats.tx_busy++;
1080                 return NETDEV_TX_BUSY;
1081         }
1082
1083         /* record the location of the first descriptor for this packet */
1084         first = &tx_ring->tx_buffer[tx_ring->next_to_use];
1085         first->skb = skb;
1086         first->bytecount = max_t(unsigned int, skb->len, ETH_ZLEN);
1087         first->gso_segs = 1;
1088
1089         /* record initial flags and protocol */
1090         first->tx_flags = tx_flags;
1091
1092         tso = fm10k_tso(tx_ring, first);
1093         if (tso < 0)
1094                 goto out_drop;
1095         else if (!tso)
1096                 fm10k_tx_csum(tx_ring, first);
1097
1098         fm10k_tx_map(tx_ring, first);
1099
1100         fm10k_maybe_stop_tx(tx_ring, DESC_NEEDED);
1101
1102         return NETDEV_TX_OK;
1103
1104 out_drop:
1105         dev_kfree_skb_any(first->skb);
1106         first->skb = NULL;
1107
1108         return NETDEV_TX_OK;
1109 }
1110
1111 static u64 fm10k_get_tx_completed(struct fm10k_ring *ring)
1112 {
1113         return ring->stats.packets;
1114 }
1115
1116 static u64 fm10k_get_tx_pending(struct fm10k_ring *ring)
1117 {
1118         /* use SW head and tail until we have real hardware */
1119         u32 head = ring->next_to_clean;
1120         u32 tail = ring->next_to_use;
1121
1122         return ((head <= tail) ? tail : tail + ring->count) - head;
1123 }
1124
1125 bool fm10k_check_tx_hang(struct fm10k_ring *tx_ring)
1126 {
1127         u32 tx_done = fm10k_get_tx_completed(tx_ring);
1128         u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
1129         u32 tx_pending = fm10k_get_tx_pending(tx_ring);
1130
1131         clear_check_for_tx_hang(tx_ring);
1132
1133         /* Check for a hung queue, but be thorough. This verifies
1134          * that a transmit has been completed since the previous
1135          * check AND there is at least one packet pending. By
1136          * requiring this to fail twice we avoid races with
1137          * clearing the ARMED bit and conditions where we
1138          * run the check_tx_hang logic with a transmit completion
1139          * pending but without time to complete it yet.
1140          */
1141         if (!tx_pending || (tx_done_old != tx_done)) {
1142                 /* update completed stats and continue */
1143                 tx_ring->tx_stats.tx_done_old = tx_done;
1144                 /* reset the countdown */
1145                 clear_bit(__FM10K_HANG_CHECK_ARMED, &tx_ring->state);
1146
1147                 return false;
1148         }
1149
1150         /* make sure it is true for two checks in a row */
1151         return test_and_set_bit(__FM10K_HANG_CHECK_ARMED, &tx_ring->state);
1152 }
1153
1154 /**
1155  * fm10k_tx_timeout_reset - initiate reset due to Tx timeout
1156  * @interface: driver private struct
1157  **/
1158 void fm10k_tx_timeout_reset(struct fm10k_intfc *interface)
1159 {
1160         /* Do the reset outside of interrupt context */
1161         if (!test_bit(__FM10K_DOWN, &interface->state)) {
1162                 netdev_err(interface->netdev, "Reset interface\n");
1163                 interface->tx_timeout_count++;
1164                 interface->flags |= FM10K_FLAG_RESET_REQUESTED;
1165                 fm10k_service_event_schedule(interface);
1166         }
1167 }
1168
1169 /**
1170  * fm10k_clean_tx_irq - Reclaim resources after transmit completes
1171  * @q_vector: structure containing interrupt and ring information
1172  * @tx_ring: tx ring to clean
1173  **/
1174 static bool fm10k_clean_tx_irq(struct fm10k_q_vector *q_vector,
1175                                struct fm10k_ring *tx_ring)
1176 {
1177         struct fm10k_intfc *interface = q_vector->interface;
1178         struct fm10k_tx_buffer *tx_buffer;
1179         struct fm10k_tx_desc *tx_desc;
1180         unsigned int total_bytes = 0, total_packets = 0;
1181         unsigned int budget = q_vector->tx.work_limit;
1182         unsigned int i = tx_ring->next_to_clean;
1183
1184         if (test_bit(__FM10K_DOWN, &interface->state))
1185                 return true;
1186
1187         tx_buffer = &tx_ring->tx_buffer[i];
1188         tx_desc = FM10K_TX_DESC(tx_ring, i);
1189         i -= tx_ring->count;
1190
1191         do {
1192                 struct fm10k_tx_desc *eop_desc = tx_buffer->next_to_watch;
1193
1194                 /* if next_to_watch is not set then there is no work pending */
1195                 if (!eop_desc)
1196                         break;
1197
1198                 /* prevent any other reads prior to eop_desc */
1199                 read_barrier_depends();
1200
1201                 /* if DD is not set pending work has not been completed */
1202                 if (!(eop_desc->flags & FM10K_TXD_FLAG_DONE))
1203                         break;
1204
1205                 /* clear next_to_watch to prevent false hangs */
1206                 tx_buffer->next_to_watch = NULL;
1207
1208                 /* update the statistics for this packet */
1209                 total_bytes += tx_buffer->bytecount;
1210                 total_packets += tx_buffer->gso_segs;
1211
1212                 /* free the skb */
1213                 dev_consume_skb_any(tx_buffer->skb);
1214
1215                 /* unmap skb header data */
1216                 dma_unmap_single(tx_ring->dev,
1217                                  dma_unmap_addr(tx_buffer, dma),
1218                                  dma_unmap_len(tx_buffer, len),
1219                                  DMA_TO_DEVICE);
1220
1221                 /* clear tx_buffer data */
1222                 tx_buffer->skb = NULL;
1223                 dma_unmap_len_set(tx_buffer, len, 0);
1224
1225                 /* unmap remaining buffers */
1226                 while (tx_desc != eop_desc) {
1227                         tx_buffer++;
1228                         tx_desc++;
1229                         i++;
1230                         if (unlikely(!i)) {
1231                                 i -= tx_ring->count;
1232                                 tx_buffer = tx_ring->tx_buffer;
1233                                 tx_desc = FM10K_TX_DESC(tx_ring, 0);
1234                         }
1235
1236                         /* unmap any remaining paged data */
1237                         if (dma_unmap_len(tx_buffer, len)) {
1238                                 dma_unmap_page(tx_ring->dev,
1239                                                dma_unmap_addr(tx_buffer, dma),
1240                                                dma_unmap_len(tx_buffer, len),
1241                                                DMA_TO_DEVICE);
1242                                 dma_unmap_len_set(tx_buffer, len, 0);
1243                         }
1244                 }
1245
1246                 /* move us one more past the eop_desc for start of next pkt */
1247                 tx_buffer++;
1248                 tx_desc++;
1249                 i++;
1250                 if (unlikely(!i)) {
1251                         i -= tx_ring->count;
1252                         tx_buffer = tx_ring->tx_buffer;
1253                         tx_desc = FM10K_TX_DESC(tx_ring, 0);
1254                 }
1255
1256                 /* issue prefetch for next Tx descriptor */
1257                 prefetch(tx_desc);
1258
1259                 /* update budget accounting */
1260                 budget--;
1261         } while (likely(budget));
1262
1263         i += tx_ring->count;
1264         tx_ring->next_to_clean = i;
1265         u64_stats_update_begin(&tx_ring->syncp);
1266         tx_ring->stats.bytes += total_bytes;
1267         tx_ring->stats.packets += total_packets;
1268         u64_stats_update_end(&tx_ring->syncp);
1269         q_vector->tx.total_bytes += total_bytes;
1270         q_vector->tx.total_packets += total_packets;
1271
1272         if (check_for_tx_hang(tx_ring) && fm10k_check_tx_hang(tx_ring)) {
1273                 /* schedule immediate reset if we believe we hung */
1274                 struct fm10k_hw *hw = &interface->hw;
1275
1276                 netif_err(interface, drv, tx_ring->netdev,
1277                           "Detected Tx Unit Hang\n"
1278                           "  Tx Queue             <%d>\n"
1279                           "  TDH, TDT             <%x>, <%x>\n"
1280                           "  next_to_use          <%x>\n"
1281                           "  next_to_clean        <%x>\n",
1282                           tx_ring->queue_index,
1283                           fm10k_read_reg(hw, FM10K_TDH(tx_ring->reg_idx)),
1284                           fm10k_read_reg(hw, FM10K_TDT(tx_ring->reg_idx)),
1285                           tx_ring->next_to_use, i);
1286
1287                 netif_stop_subqueue(tx_ring->netdev,
1288                                     tx_ring->queue_index);
1289
1290                 netif_info(interface, probe, tx_ring->netdev,
1291                            "tx hang %d detected on queue %d, resetting interface\n",
1292                            interface->tx_timeout_count + 1,
1293                            tx_ring->queue_index);
1294
1295                 fm10k_tx_timeout_reset(interface);
1296
1297                 /* the netdev is about to reset, no point in enabling stuff */
1298                 return true;
1299         }
1300
1301         /* notify netdev of completed buffers */
1302         netdev_tx_completed_queue(txring_txq(tx_ring),
1303                                   total_packets, total_bytes);
1304
1305 #define TX_WAKE_THRESHOLD min_t(u16, FM10K_MIN_TXD - 1, DESC_NEEDED * 2)
1306         if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
1307                      (fm10k_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) {
1308                 /* Make sure that anybody stopping the queue after this
1309                  * sees the new next_to_clean.
1310                  */
1311                 smp_mb();
1312                 if (__netif_subqueue_stopped(tx_ring->netdev,
1313                                              tx_ring->queue_index) &&
1314                     !test_bit(__FM10K_DOWN, &interface->state)) {
1315                         netif_wake_subqueue(tx_ring->netdev,
1316                                             tx_ring->queue_index);
1317                         ++tx_ring->tx_stats.restart_queue;
1318                 }
1319         }
1320
1321         return !!budget;
1322 }
1323
1324 /**
1325  * fm10k_update_itr - update the dynamic ITR value based on packet size
1326  *
1327  *      Stores a new ITR value based on strictly on packet size.  The
1328  *      divisors and thresholds used by this function were determined based
1329  *      on theoretical maximum wire speed and testing data, in order to
1330  *      minimize response time while increasing bulk throughput.
1331  *
1332  * @ring_container: Container for rings to have ITR updated
1333  **/
1334 static void fm10k_update_itr(struct fm10k_ring_container *ring_container)
1335 {
1336         unsigned int avg_wire_size, packets;
1337
1338         /* Only update ITR if we are using adaptive setting */
1339         if (!(ring_container->itr & FM10K_ITR_ADAPTIVE))
1340                 goto clear_counts;
1341
1342         packets = ring_container->total_packets;
1343         if (!packets)
1344                 goto clear_counts;
1345
1346         avg_wire_size = ring_container->total_bytes / packets;
1347
1348         /* Add 24 bytes to size to account for CRC, preamble, and gap */
1349         avg_wire_size += 24;
1350
1351         /* Don't starve jumbo frames */
1352         if (avg_wire_size > 3000)
1353                 avg_wire_size = 3000;
1354
1355         /* Give a little boost to mid-size frames */
1356         if ((avg_wire_size > 300) && (avg_wire_size < 1200))
1357                 avg_wire_size /= 3;
1358         else
1359                 avg_wire_size /= 2;
1360
1361         /* write back value and retain adaptive flag */
1362         ring_container->itr = avg_wire_size | FM10K_ITR_ADAPTIVE;
1363
1364 clear_counts:
1365         ring_container->total_bytes = 0;
1366         ring_container->total_packets = 0;
1367 }
1368
1369 static void fm10k_qv_enable(struct fm10k_q_vector *q_vector)
1370 {
1371         /* Enable auto-mask and clear the current mask */
1372         u32 itr = FM10K_ITR_ENABLE;
1373
1374         /* Update Tx ITR */
1375         fm10k_update_itr(&q_vector->tx);
1376
1377         /* Update Rx ITR */
1378         fm10k_update_itr(&q_vector->rx);
1379
1380         /* Store Tx itr in timer slot 0 */
1381         itr |= (q_vector->tx.itr & FM10K_ITR_MAX);
1382
1383         /* Shift Rx itr to timer slot 1 */
1384         itr |= (q_vector->rx.itr & FM10K_ITR_MAX) << FM10K_ITR_INTERVAL1_SHIFT;
1385
1386         /* Write the final value to the ITR register */
1387         writel(itr, q_vector->itr);
1388 }
1389
1390 static int fm10k_poll(struct napi_struct *napi, int budget)
1391 {
1392         struct fm10k_q_vector *q_vector =
1393                                container_of(napi, struct fm10k_q_vector, napi);
1394         struct fm10k_ring *ring;
1395         int per_ring_budget;
1396         bool clean_complete = true;
1397
1398         fm10k_for_each_ring(ring, q_vector->tx)
1399                 clean_complete &= fm10k_clean_tx_irq(q_vector, ring);
1400
1401         /* attempt to distribute budget to each queue fairly, but don't
1402          * allow the budget to go below 1 because we'll exit polling
1403          */
1404         if (q_vector->rx.count > 1)
1405                 per_ring_budget = max(budget/q_vector->rx.count, 1);
1406         else
1407                 per_ring_budget = budget;
1408
1409         fm10k_for_each_ring(ring, q_vector->rx)
1410                 clean_complete &= fm10k_clean_rx_irq(q_vector, ring,
1411                                                      per_ring_budget);
1412
1413         /* If all work not completed, return budget and keep polling */
1414         if (!clean_complete)
1415                 return budget;
1416
1417         /* all work done, exit the polling mode */
1418         napi_complete(napi);
1419
1420         /* re-enable the q_vector */
1421         fm10k_qv_enable(q_vector);
1422
1423         return 0;
1424 }
1425
1426 /**
1427  * fm10k_set_qos_queues: Allocate queues for a QOS-enabled device
1428  * @interface: board private structure to initialize
1429  *
1430  * When QoS (Quality of Service) is enabled, allocate queues for
1431  * each traffic class.  If multiqueue isn't available,then abort QoS
1432  * initialization.
1433  *
1434  * This function handles all combinations of Qos and RSS.
1435  *
1436  **/
1437 static bool fm10k_set_qos_queues(struct fm10k_intfc *interface)
1438 {
1439         struct net_device *dev = interface->netdev;
1440         struct fm10k_ring_feature *f;
1441         int rss_i, i;
1442         int pcs;
1443
1444         /* Map queue offset and counts onto allocated tx queues */
1445         pcs = netdev_get_num_tc(dev);
1446
1447         if (pcs <= 1)
1448                 return false;
1449
1450         /* set QoS mask and indices */
1451         f = &interface->ring_feature[RING_F_QOS];
1452         f->indices = pcs;
1453         f->mask = (1 << fls(pcs - 1)) - 1;
1454
1455         /* determine the upper limit for our current DCB mode */
1456         rss_i = interface->hw.mac.max_queues / pcs;
1457         rss_i = 1 << (fls(rss_i) - 1);
1458
1459         /* set RSS mask and indices */
1460         f = &interface->ring_feature[RING_F_RSS];
1461         rss_i = min_t(u16, rss_i, f->limit);
1462         f->indices = rss_i;
1463         f->mask = (1 << fls(rss_i - 1)) - 1;
1464
1465         /* configure pause class to queue mapping */
1466         for (i = 0; i < pcs; i++)
1467                 netdev_set_tc_queue(dev, i, rss_i, rss_i * i);
1468
1469         interface->num_rx_queues = rss_i * pcs;
1470         interface->num_tx_queues = rss_i * pcs;
1471
1472         return true;
1473 }
1474
1475 /**
1476  * fm10k_set_rss_queues: Allocate queues for RSS
1477  * @interface: board private structure to initialize
1478  *
1479  * This is our "base" multiqueue mode.  RSS (Receive Side Scaling) will try
1480  * to allocate one Rx queue per CPU, and if available, one Tx queue per CPU.
1481  *
1482  **/
1483 static bool fm10k_set_rss_queues(struct fm10k_intfc *interface)
1484 {
1485         struct fm10k_ring_feature *f;
1486         u16 rss_i;
1487
1488         f = &interface->ring_feature[RING_F_RSS];
1489         rss_i = min_t(u16, interface->hw.mac.max_queues, f->limit);
1490
1491         /* record indices and power of 2 mask for RSS */
1492         f->indices = rss_i;
1493         f->mask = (1 << fls(rss_i - 1)) - 1;
1494
1495         interface->num_rx_queues = rss_i;
1496         interface->num_tx_queues = rss_i;
1497
1498         return true;
1499 }
1500
1501 /**
1502  * fm10k_set_num_queues: Allocate queues for device, feature dependent
1503  * @interface: board private structure to initialize
1504  *
1505  * This is the top level queue allocation routine.  The order here is very
1506  * important, starting with the "most" number of features turned on at once,
1507  * and ending with the smallest set of features.  This way large combinations
1508  * can be allocated if they're turned on, and smaller combinations are the
1509  * fallthrough conditions.
1510  *
1511  **/
1512 static void fm10k_set_num_queues(struct fm10k_intfc *interface)
1513 {
1514         /* Start with base case */
1515         interface->num_rx_queues = 1;
1516         interface->num_tx_queues = 1;
1517
1518         if (fm10k_set_qos_queues(interface))
1519                 return;
1520
1521         fm10k_set_rss_queues(interface);
1522 }
1523
1524 /**
1525  * fm10k_alloc_q_vector - Allocate memory for a single interrupt vector
1526  * @interface: board private structure to initialize
1527  * @v_count: q_vectors allocated on interface, used for ring interleaving
1528  * @v_idx: index of vector in interface struct
1529  * @txr_count: total number of Tx rings to allocate
1530  * @txr_idx: index of first Tx ring to allocate
1531  * @rxr_count: total number of Rx rings to allocate
1532  * @rxr_idx: index of first Rx ring to allocate
1533  *
1534  * We allocate one q_vector.  If allocation fails we return -ENOMEM.
1535  **/
1536 static int fm10k_alloc_q_vector(struct fm10k_intfc *interface,
1537                                 unsigned int v_count, unsigned int v_idx,
1538                                 unsigned int txr_count, unsigned int txr_idx,
1539                                 unsigned int rxr_count, unsigned int rxr_idx)
1540 {
1541         struct fm10k_q_vector *q_vector;
1542         struct fm10k_ring *ring;
1543         int ring_count, size;
1544
1545         ring_count = txr_count + rxr_count;
1546         size = sizeof(struct fm10k_q_vector) +
1547                (sizeof(struct fm10k_ring) * ring_count);
1548
1549         /* allocate q_vector and rings */
1550         q_vector = kzalloc(size, GFP_KERNEL);
1551         if (!q_vector)
1552                 return -ENOMEM;
1553
1554         /* initialize NAPI */
1555         netif_napi_add(interface->netdev, &q_vector->napi,
1556                        fm10k_poll, NAPI_POLL_WEIGHT);
1557
1558         /* tie q_vector and interface together */
1559         interface->q_vector[v_idx] = q_vector;
1560         q_vector->interface = interface;
1561         q_vector->v_idx = v_idx;
1562
1563         /* initialize pointer to rings */
1564         ring = q_vector->ring;
1565
1566         /* save Tx ring container info */
1567         q_vector->tx.ring = ring;
1568         q_vector->tx.work_limit = FM10K_DEFAULT_TX_WORK;
1569         q_vector->tx.itr = interface->tx_itr;
1570         q_vector->tx.count = txr_count;
1571
1572         while (txr_count) {
1573                 /* assign generic ring traits */
1574                 ring->dev = &interface->pdev->dev;
1575                 ring->netdev = interface->netdev;
1576
1577                 /* configure backlink on ring */
1578                 ring->q_vector = q_vector;
1579
1580                 /* apply Tx specific ring traits */
1581                 ring->count = interface->tx_ring_count;
1582                 ring->queue_index = txr_idx;
1583
1584                 /* assign ring to interface */
1585                 interface->tx_ring[txr_idx] = ring;
1586
1587                 /* update count and index */
1588                 txr_count--;
1589                 txr_idx += v_count;
1590
1591                 /* push pointer to next ring */
1592                 ring++;
1593         }
1594
1595         /* save Rx ring container info */
1596         q_vector->rx.ring = ring;
1597         q_vector->rx.itr = interface->rx_itr;
1598         q_vector->rx.count = rxr_count;
1599
1600         while (rxr_count) {
1601                 /* assign generic ring traits */
1602                 ring->dev = &interface->pdev->dev;
1603                 ring->netdev = interface->netdev;
1604                 rcu_assign_pointer(ring->l2_accel, interface->l2_accel);
1605
1606                 /* configure backlink on ring */
1607                 ring->q_vector = q_vector;
1608
1609                 /* apply Rx specific ring traits */
1610                 ring->count = interface->rx_ring_count;
1611                 ring->queue_index = rxr_idx;
1612
1613                 /* assign ring to interface */
1614                 interface->rx_ring[rxr_idx] = ring;
1615
1616                 /* update count and index */
1617                 rxr_count--;
1618                 rxr_idx += v_count;
1619
1620                 /* push pointer to next ring */
1621                 ring++;
1622         }
1623
1624         fm10k_dbg_q_vector_init(q_vector);
1625
1626         return 0;
1627 }
1628
1629 /**
1630  * fm10k_free_q_vector - Free memory allocated for specific interrupt vector
1631  * @interface: board private structure to initialize
1632  * @v_idx: Index of vector to be freed
1633  *
1634  * This function frees the memory allocated to the q_vector.  In addition if
1635  * NAPI is enabled it will delete any references to the NAPI struct prior
1636  * to freeing the q_vector.
1637  **/
1638 static void fm10k_free_q_vector(struct fm10k_intfc *interface, int v_idx)
1639 {
1640         struct fm10k_q_vector *q_vector = interface->q_vector[v_idx];
1641         struct fm10k_ring *ring;
1642
1643         fm10k_dbg_q_vector_exit(q_vector);
1644
1645         fm10k_for_each_ring(ring, q_vector->tx)
1646                 interface->tx_ring[ring->queue_index] = NULL;
1647
1648         fm10k_for_each_ring(ring, q_vector->rx)
1649                 interface->rx_ring[ring->queue_index] = NULL;
1650
1651         interface->q_vector[v_idx] = NULL;
1652         netif_napi_del(&q_vector->napi);
1653         kfree_rcu(q_vector, rcu);
1654 }
1655
1656 /**
1657  * fm10k_alloc_q_vectors - Allocate memory for interrupt vectors
1658  * @interface: board private structure to initialize
1659  *
1660  * We allocate one q_vector per queue interrupt.  If allocation fails we
1661  * return -ENOMEM.
1662  **/
1663 static int fm10k_alloc_q_vectors(struct fm10k_intfc *interface)
1664 {
1665         unsigned int q_vectors = interface->num_q_vectors;
1666         unsigned int rxr_remaining = interface->num_rx_queues;
1667         unsigned int txr_remaining = interface->num_tx_queues;
1668         unsigned int rxr_idx = 0, txr_idx = 0, v_idx = 0;
1669         int err;
1670
1671         if (q_vectors >= (rxr_remaining + txr_remaining)) {
1672                 for (; rxr_remaining; v_idx++) {
1673                         err = fm10k_alloc_q_vector(interface, q_vectors, v_idx,
1674                                                    0, 0, 1, rxr_idx);
1675                         if (err)
1676                                 goto err_out;
1677
1678                         /* update counts and index */
1679                         rxr_remaining--;
1680                         rxr_idx++;
1681                 }
1682         }
1683
1684         for (; v_idx < q_vectors; v_idx++) {
1685                 int rqpv = DIV_ROUND_UP(rxr_remaining, q_vectors - v_idx);
1686                 int tqpv = DIV_ROUND_UP(txr_remaining, q_vectors - v_idx);
1687
1688                 err = fm10k_alloc_q_vector(interface, q_vectors, v_idx,
1689                                            tqpv, txr_idx,
1690                                            rqpv, rxr_idx);
1691
1692                 if (err)
1693                         goto err_out;
1694
1695                 /* update counts and index */
1696                 rxr_remaining -= rqpv;
1697                 txr_remaining -= tqpv;
1698                 rxr_idx++;
1699                 txr_idx++;
1700         }
1701
1702         return 0;
1703
1704 err_out:
1705         interface->num_tx_queues = 0;
1706         interface->num_rx_queues = 0;
1707         interface->num_q_vectors = 0;
1708
1709         while (v_idx--)
1710                 fm10k_free_q_vector(interface, v_idx);
1711
1712         return -ENOMEM;
1713 }
1714
1715 /**
1716  * fm10k_free_q_vectors - Free memory allocated for interrupt vectors
1717  * @interface: board private structure to initialize
1718  *
1719  * This function frees the memory allocated to the q_vectors.  In addition if
1720  * NAPI is enabled it will delete any references to the NAPI struct prior
1721  * to freeing the q_vector.
1722  **/
1723 static void fm10k_free_q_vectors(struct fm10k_intfc *interface)
1724 {
1725         int v_idx = interface->num_q_vectors;
1726
1727         interface->num_tx_queues = 0;
1728         interface->num_rx_queues = 0;
1729         interface->num_q_vectors = 0;
1730
1731         while (v_idx--)
1732                 fm10k_free_q_vector(interface, v_idx);
1733 }
1734
1735 /**
1736  * f10k_reset_msix_capability - reset MSI-X capability
1737  * @interface: board private structure to initialize
1738  *
1739  * Reset the MSI-X capability back to its starting state
1740  **/
1741 static void fm10k_reset_msix_capability(struct fm10k_intfc *interface)
1742 {
1743         pci_disable_msix(interface->pdev);
1744         kfree(interface->msix_entries);
1745         interface->msix_entries = NULL;
1746 }
1747
1748 /**
1749  * f10k_init_msix_capability - configure MSI-X capability
1750  * @interface: board private structure to initialize
1751  *
1752  * Attempt to configure the interrupts using the best available
1753  * capabilities of the hardware and the kernel.
1754  **/
1755 static int fm10k_init_msix_capability(struct fm10k_intfc *interface)
1756 {
1757         struct fm10k_hw *hw = &interface->hw;
1758         int v_budget, vector;
1759
1760         /* It's easy to be greedy for MSI-X vectors, but it really
1761          * doesn't do us much good if we have a lot more vectors
1762          * than CPU's.  So let's be conservative and only ask for
1763          * (roughly) the same number of vectors as there are CPU's.
1764          * the default is to use pairs of vectors
1765          */
1766         v_budget = max(interface->num_rx_queues, interface->num_tx_queues);
1767         v_budget = min_t(u16, v_budget, num_online_cpus());
1768
1769         /* account for vectors not related to queues */
1770         v_budget += NON_Q_VECTORS(hw);
1771
1772         /* At the same time, hardware can only support a maximum of
1773          * hw.mac->max_msix_vectors vectors.  With features
1774          * such as RSS and VMDq, we can easily surpass the number of Rx and Tx
1775          * descriptor queues supported by our device.  Thus, we cap it off in
1776          * those rare cases where the cpu count also exceeds our vector limit.
1777          */
1778         v_budget = min_t(int, v_budget, hw->mac.max_msix_vectors);
1779
1780         /* A failure in MSI-X entry allocation is fatal. */
1781         interface->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
1782                                           GFP_KERNEL);
1783         if (!interface->msix_entries)
1784                 return -ENOMEM;
1785
1786         /* populate entry values */
1787         for (vector = 0; vector < v_budget; vector++)
1788                 interface->msix_entries[vector].entry = vector;
1789
1790         /* Attempt to enable MSI-X with requested value */
1791         v_budget = pci_enable_msix_range(interface->pdev,
1792                                          interface->msix_entries,
1793                                          MIN_MSIX_COUNT(hw),
1794                                          v_budget);
1795         if (v_budget < 0) {
1796                 kfree(interface->msix_entries);
1797                 interface->msix_entries = NULL;
1798                 return -ENOMEM;
1799         }
1800
1801         /* record the number of queues available for q_vectors */
1802         interface->num_q_vectors = v_budget - NON_Q_VECTORS(hw);
1803
1804         return 0;
1805 }
1806
1807 /**
1808  * fm10k_cache_ring_qos - Descriptor ring to register mapping for QoS
1809  * @interface: Interface structure continaining rings and devices
1810  *
1811  * Cache the descriptor ring offsets for Qos
1812  **/
1813 static bool fm10k_cache_ring_qos(struct fm10k_intfc *interface)
1814 {
1815         struct net_device *dev = interface->netdev;
1816         int pc, offset, rss_i, i, q_idx;
1817         u16 pc_stride = interface->ring_feature[RING_F_QOS].mask + 1;
1818         u8 num_pcs = netdev_get_num_tc(dev);
1819
1820         if (num_pcs <= 1)
1821                 return false;
1822
1823         rss_i = interface->ring_feature[RING_F_RSS].indices;
1824
1825         for (pc = 0, offset = 0; pc < num_pcs; pc++, offset += rss_i) {
1826                 q_idx = pc;
1827                 for (i = 0; i < rss_i; i++) {
1828                         interface->tx_ring[offset + i]->reg_idx = q_idx;
1829                         interface->tx_ring[offset + i]->qos_pc = pc;
1830                         interface->rx_ring[offset + i]->reg_idx = q_idx;
1831                         interface->rx_ring[offset + i]->qos_pc = pc;
1832                         q_idx += pc_stride;
1833                 }
1834         }
1835
1836         return true;
1837 }
1838
1839 /**
1840  * fm10k_cache_ring_rss - Descriptor ring to register mapping for RSS
1841  * @interface: Interface structure continaining rings and devices
1842  *
1843  * Cache the descriptor ring offsets for RSS
1844  **/
1845 static void fm10k_cache_ring_rss(struct fm10k_intfc *interface)
1846 {
1847         int i;
1848
1849         for (i = 0; i < interface->num_rx_queues; i++)
1850                 interface->rx_ring[i]->reg_idx = i;
1851
1852         for (i = 0; i < interface->num_tx_queues; i++)
1853                 interface->tx_ring[i]->reg_idx = i;
1854 }
1855
1856 /**
1857  * fm10k_assign_rings - Map rings to network devices
1858  * @interface: Interface structure containing rings and devices
1859  *
1860  * This function is meant to go though and configure both the network
1861  * devices so that they contain rings, and configure the rings so that
1862  * they function with their network devices.
1863  **/
1864 static void fm10k_assign_rings(struct fm10k_intfc *interface)
1865 {
1866         if (fm10k_cache_ring_qos(interface))
1867                 return;
1868
1869         fm10k_cache_ring_rss(interface);
1870 }
1871
1872 static void fm10k_init_reta(struct fm10k_intfc *interface)
1873 {
1874         u16 i, rss_i = interface->ring_feature[RING_F_RSS].indices;
1875         u32 reta, base;
1876
1877         /* If the netdev is initialized we have to maintain table if possible */
1878         if (interface->netdev->reg_state) {
1879                 for (i = FM10K_RETA_SIZE; i--;) {
1880                         reta = interface->reta[i];
1881                         if ((((reta << 24) >> 24) < rss_i) &&
1882                             (((reta << 16) >> 24) < rss_i) &&
1883                             (((reta <<  8) >> 24) < rss_i) &&
1884                             (((reta)       >> 24) < rss_i))
1885                                 continue;
1886                         goto repopulate_reta;
1887                 }
1888
1889                 /* do nothing if all of the elements are in bounds */
1890                 return;
1891         }
1892
1893 repopulate_reta:
1894         /* Populate the redirection table 4 entries at a time.  To do this
1895          * we are generating the results for n and n+2 and then interleaving
1896          * those with the results with n+1 and n+3.
1897          */
1898         for (i = FM10K_RETA_SIZE; i--;) {
1899                 /* first pass generates n and n+2 */
1900                 base = ((i * 0x00040004) + 0x00020000) * rss_i;
1901                 reta = (base & 0x3F803F80) >> 7;
1902
1903                 /* second pass generates n+1 and n+3 */
1904                 base += 0x00010001 * rss_i;
1905                 reta |= (base & 0x3F803F80) << 1;
1906
1907                 interface->reta[i] = reta;
1908         }
1909 }
1910
1911 /**
1912  * fm10k_init_queueing_scheme - Determine proper queueing scheme
1913  * @interface: board private structure to initialize
1914  *
1915  * We determine which queueing scheme to use based on...
1916  * - Hardware queue count (num_*_queues)
1917  *   - defined by miscellaneous hardware support/features (RSS, etc.)
1918  **/
1919 int fm10k_init_queueing_scheme(struct fm10k_intfc *interface)
1920 {
1921         int err;
1922
1923         /* Number of supported queues */
1924         fm10k_set_num_queues(interface);
1925
1926         /* Configure MSI-X capability */
1927         err = fm10k_init_msix_capability(interface);
1928         if (err) {
1929                 dev_err(&interface->pdev->dev,
1930                         "Unable to initialize MSI-X capability\n");
1931                 return err;
1932         }
1933
1934         /* Allocate memory for queues */
1935         err = fm10k_alloc_q_vectors(interface);
1936         if (err)
1937                 return err;
1938
1939         /* Map rings to devices, and map devices to physical queues */
1940         fm10k_assign_rings(interface);
1941
1942         /* Initialize RSS redirection table */
1943         fm10k_init_reta(interface);
1944
1945         return 0;
1946 }
1947
1948 /**
1949  * fm10k_clear_queueing_scheme - Clear the current queueing scheme settings
1950  * @interface: board private structure to clear queueing scheme on
1951  *
1952  * We go through and clear queueing specific resources and reset the structure
1953  * to pre-load conditions
1954  **/
1955 void fm10k_clear_queueing_scheme(struct fm10k_intfc *interface)
1956 {
1957         fm10k_free_q_vectors(interface);
1958         fm10k_reset_msix_capability(interface);
1959 }