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