GNU Linux-libre 4.9.318-gnu1
[releases.git] / drivers / net / ethernet / intel / fm10k / fm10k_netdev.c
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 "fm10k.h"
22 #include <linux/vmalloc.h>
23 #include <net/udp_tunnel.h>
24
25 /**
26  * fm10k_setup_tx_resources - allocate Tx resources (Descriptors)
27  * @tx_ring:    tx descriptor ring (for a specific queue) to setup
28  *
29  * Return 0 on success, negative on failure
30  **/
31 int fm10k_setup_tx_resources(struct fm10k_ring *tx_ring)
32 {
33         struct device *dev = tx_ring->dev;
34         int size;
35
36         size = sizeof(struct fm10k_tx_buffer) * tx_ring->count;
37
38         tx_ring->tx_buffer = vzalloc(size);
39         if (!tx_ring->tx_buffer)
40                 goto err;
41
42         u64_stats_init(&tx_ring->syncp);
43
44         /* round up to nearest 4K */
45         tx_ring->size = tx_ring->count * sizeof(struct fm10k_tx_desc);
46         tx_ring->size = ALIGN(tx_ring->size, 4096);
47
48         tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
49                                            &tx_ring->dma, GFP_KERNEL);
50         if (!tx_ring->desc)
51                 goto err;
52
53         return 0;
54
55 err:
56         vfree(tx_ring->tx_buffer);
57         tx_ring->tx_buffer = NULL;
58         return -ENOMEM;
59 }
60
61 /**
62  * fm10k_setup_all_tx_resources - allocate all queues Tx resources
63  * @interface: board private structure
64  *
65  * If this function returns with an error, then it's possible one or
66  * more of the rings is populated (while the rest are not).  It is the
67  * callers duty to clean those orphaned rings.
68  *
69  * Return 0 on success, negative on failure
70  **/
71 static int fm10k_setup_all_tx_resources(struct fm10k_intfc *interface)
72 {
73         int i, err = 0;
74
75         for (i = 0; i < interface->num_tx_queues; i++) {
76                 err = fm10k_setup_tx_resources(interface->tx_ring[i]);
77                 if (!err)
78                         continue;
79
80                 netif_err(interface, probe, interface->netdev,
81                           "Allocation for Tx Queue %u failed\n", i);
82                 goto err_setup_tx;
83         }
84
85         return 0;
86 err_setup_tx:
87         /* rewind the index freeing the rings as we go */
88         while (i--)
89                 fm10k_free_tx_resources(interface->tx_ring[i]);
90         return err;
91 }
92
93 /**
94  * fm10k_setup_rx_resources - allocate Rx resources (Descriptors)
95  * @rx_ring:    rx descriptor ring (for a specific queue) to setup
96  *
97  * Returns 0 on success, negative on failure
98  **/
99 int fm10k_setup_rx_resources(struct fm10k_ring *rx_ring)
100 {
101         struct device *dev = rx_ring->dev;
102         int size;
103
104         size = sizeof(struct fm10k_rx_buffer) * rx_ring->count;
105
106         rx_ring->rx_buffer = vzalloc(size);
107         if (!rx_ring->rx_buffer)
108                 goto err;
109
110         u64_stats_init(&rx_ring->syncp);
111
112         /* Round up to nearest 4K */
113         rx_ring->size = rx_ring->count * sizeof(union fm10k_rx_desc);
114         rx_ring->size = ALIGN(rx_ring->size, 4096);
115
116         rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
117                                            &rx_ring->dma, GFP_KERNEL);
118         if (!rx_ring->desc)
119                 goto err;
120
121         return 0;
122 err:
123         vfree(rx_ring->rx_buffer);
124         rx_ring->rx_buffer = NULL;
125         return -ENOMEM;
126 }
127
128 /**
129  * fm10k_setup_all_rx_resources - allocate all queues Rx resources
130  * @interface: board private structure
131  *
132  * If this function returns with an error, then it's possible one or
133  * more of the rings is populated (while the rest are not).  It is the
134  * callers duty to clean those orphaned rings.
135  *
136  * Return 0 on success, negative on failure
137  **/
138 static int fm10k_setup_all_rx_resources(struct fm10k_intfc *interface)
139 {
140         int i, err = 0;
141
142         for (i = 0; i < interface->num_rx_queues; i++) {
143                 err = fm10k_setup_rx_resources(interface->rx_ring[i]);
144                 if (!err)
145                         continue;
146
147                 netif_err(interface, probe, interface->netdev,
148                           "Allocation for Rx Queue %u failed\n", i);
149                 goto err_setup_rx;
150         }
151
152         return 0;
153 err_setup_rx:
154         /* rewind the index freeing the rings as we go */
155         while (i--)
156                 fm10k_free_rx_resources(interface->rx_ring[i]);
157         return err;
158 }
159
160 void fm10k_unmap_and_free_tx_resource(struct fm10k_ring *ring,
161                                       struct fm10k_tx_buffer *tx_buffer)
162 {
163         if (tx_buffer->skb) {
164                 dev_kfree_skb_any(tx_buffer->skb);
165                 if (dma_unmap_len(tx_buffer, len))
166                         dma_unmap_single(ring->dev,
167                                          dma_unmap_addr(tx_buffer, dma),
168                                          dma_unmap_len(tx_buffer, len),
169                                          DMA_TO_DEVICE);
170         } else if (dma_unmap_len(tx_buffer, len)) {
171                 dma_unmap_page(ring->dev,
172                                dma_unmap_addr(tx_buffer, dma),
173                                dma_unmap_len(tx_buffer, len),
174                                DMA_TO_DEVICE);
175         }
176         tx_buffer->next_to_watch = NULL;
177         tx_buffer->skb = NULL;
178         dma_unmap_len_set(tx_buffer, len, 0);
179         /* tx_buffer must be completely set up in the transmit path */
180 }
181
182 /**
183  * fm10k_clean_tx_ring - Free Tx Buffers
184  * @tx_ring: ring to be cleaned
185  **/
186 static void fm10k_clean_tx_ring(struct fm10k_ring *tx_ring)
187 {
188         struct fm10k_tx_buffer *tx_buffer;
189         unsigned long size;
190         u16 i;
191
192         /* ring already cleared, nothing to do */
193         if (!tx_ring->tx_buffer)
194                 return;
195
196         /* Free all the Tx ring sk_buffs */
197         for (i = 0; i < tx_ring->count; i++) {
198                 tx_buffer = &tx_ring->tx_buffer[i];
199                 fm10k_unmap_and_free_tx_resource(tx_ring, tx_buffer);
200         }
201
202         /* reset BQL values */
203         netdev_tx_reset_queue(txring_txq(tx_ring));
204
205         size = sizeof(struct fm10k_tx_buffer) * tx_ring->count;
206         memset(tx_ring->tx_buffer, 0, size);
207
208         /* Zero out the descriptor ring */
209         memset(tx_ring->desc, 0, tx_ring->size);
210 }
211
212 /**
213  * fm10k_free_tx_resources - Free Tx Resources per Queue
214  * @tx_ring: Tx descriptor ring for a specific queue
215  *
216  * Free all transmit software resources
217  **/
218 void fm10k_free_tx_resources(struct fm10k_ring *tx_ring)
219 {
220         fm10k_clean_tx_ring(tx_ring);
221
222         vfree(tx_ring->tx_buffer);
223         tx_ring->tx_buffer = NULL;
224
225         /* if not set, then don't free */
226         if (!tx_ring->desc)
227                 return;
228
229         dma_free_coherent(tx_ring->dev, tx_ring->size,
230                           tx_ring->desc, tx_ring->dma);
231         tx_ring->desc = NULL;
232 }
233
234 /**
235  * fm10k_clean_all_tx_rings - Free Tx Buffers for all queues
236  * @interface: board private structure
237  **/
238 void fm10k_clean_all_tx_rings(struct fm10k_intfc *interface)
239 {
240         int i;
241
242         for (i = 0; i < interface->num_tx_queues; i++)
243                 fm10k_clean_tx_ring(interface->tx_ring[i]);
244 }
245
246 /**
247  * fm10k_free_all_tx_resources - Free Tx Resources for All Queues
248  * @interface: board private structure
249  *
250  * Free all transmit software resources
251  **/
252 static void fm10k_free_all_tx_resources(struct fm10k_intfc *interface)
253 {
254         int i = interface->num_tx_queues;
255
256         while (i--)
257                 fm10k_free_tx_resources(interface->tx_ring[i]);
258 }
259
260 /**
261  * fm10k_clean_rx_ring - Free Rx Buffers per Queue
262  * @rx_ring: ring to free buffers from
263  **/
264 static void fm10k_clean_rx_ring(struct fm10k_ring *rx_ring)
265 {
266         unsigned long size;
267         u16 i;
268
269         if (!rx_ring->rx_buffer)
270                 return;
271
272         if (rx_ring->skb)
273                 dev_kfree_skb(rx_ring->skb);
274         rx_ring->skb = NULL;
275
276         /* Free all the Rx ring sk_buffs */
277         for (i = 0; i < rx_ring->count; i++) {
278                 struct fm10k_rx_buffer *buffer = &rx_ring->rx_buffer[i];
279                 /* clean-up will only set page pointer to NULL */
280                 if (!buffer->page)
281                         continue;
282
283                 dma_unmap_page(rx_ring->dev, buffer->dma,
284                                PAGE_SIZE, DMA_FROM_DEVICE);
285                 __free_page(buffer->page);
286
287                 buffer->page = NULL;
288         }
289
290         size = sizeof(struct fm10k_rx_buffer) * rx_ring->count;
291         memset(rx_ring->rx_buffer, 0, size);
292
293         /* Zero out the descriptor ring */
294         memset(rx_ring->desc, 0, rx_ring->size);
295
296         rx_ring->next_to_alloc = 0;
297         rx_ring->next_to_clean = 0;
298         rx_ring->next_to_use = 0;
299 }
300
301 /**
302  * fm10k_free_rx_resources - Free Rx Resources
303  * @rx_ring: ring to clean the resources from
304  *
305  * Free all receive software resources
306  **/
307 void fm10k_free_rx_resources(struct fm10k_ring *rx_ring)
308 {
309         fm10k_clean_rx_ring(rx_ring);
310
311         vfree(rx_ring->rx_buffer);
312         rx_ring->rx_buffer = NULL;
313
314         /* if not set, then don't free */
315         if (!rx_ring->desc)
316                 return;
317
318         dma_free_coherent(rx_ring->dev, rx_ring->size,
319                           rx_ring->desc, rx_ring->dma);
320
321         rx_ring->desc = NULL;
322 }
323
324 /**
325  * fm10k_clean_all_rx_rings - Free Rx Buffers for all queues
326  * @interface: board private structure
327  **/
328 void fm10k_clean_all_rx_rings(struct fm10k_intfc *interface)
329 {
330         int i;
331
332         for (i = 0; i < interface->num_rx_queues; i++)
333                 fm10k_clean_rx_ring(interface->rx_ring[i]);
334 }
335
336 /**
337  * fm10k_free_all_rx_resources - Free Rx Resources for All Queues
338  * @interface: board private structure
339  *
340  * Free all receive software resources
341  **/
342 static void fm10k_free_all_rx_resources(struct fm10k_intfc *interface)
343 {
344         int i = interface->num_rx_queues;
345
346         while (i--)
347                 fm10k_free_rx_resources(interface->rx_ring[i]);
348 }
349
350 /**
351  * fm10k_request_glort_range - Request GLORTs for use in configuring rules
352  * @interface: board private structure
353  *
354  * This function allocates a range of glorts for this interface to use.
355  **/
356 static void fm10k_request_glort_range(struct fm10k_intfc *interface)
357 {
358         struct fm10k_hw *hw = &interface->hw;
359         u16 mask = (~hw->mac.dglort_map) >> FM10K_DGLORTMAP_MASK_SHIFT;
360
361         /* establish GLORT base */
362         interface->glort = hw->mac.dglort_map & FM10K_DGLORTMAP_NONE;
363         interface->glort_count = 0;
364
365         /* nothing we can do until mask is allocated */
366         if (hw->mac.dglort_map == FM10K_DGLORTMAP_NONE)
367                 return;
368
369         /* we support 3 possible GLORT configurations.
370          * 1: VFs consume all but the last 1
371          * 2: VFs and PF split glorts with possible gap between
372          * 3: VFs allocated first 64, all others belong to PF
373          */
374         if (mask <= hw->iov.total_vfs) {
375                 interface->glort_count = 1;
376                 interface->glort += mask;
377         } else if (mask < 64) {
378                 interface->glort_count = (mask + 1) / 2;
379                 interface->glort += interface->glort_count;
380         } else {
381                 interface->glort_count = mask - 63;
382                 interface->glort += 64;
383         }
384 }
385
386 /**
387  * fm10k_free_udp_port_info
388  * @interface: board private structure
389  *
390  * This function frees both geneve_port and vxlan_port structures
391  **/
392 static void fm10k_free_udp_port_info(struct fm10k_intfc *interface)
393 {
394         struct fm10k_udp_port *port;
395
396         /* flush all entries from vxlan list */
397         port = list_first_entry_or_null(&interface->vxlan_port,
398                                         struct fm10k_udp_port, list);
399         while (port) {
400                 list_del(&port->list);
401                 kfree(port);
402                 port = list_first_entry_or_null(&interface->vxlan_port,
403                                                 struct fm10k_udp_port,
404                                                 list);
405         }
406
407         /* flush all entries from geneve list */
408         port = list_first_entry_or_null(&interface->geneve_port,
409                                         struct fm10k_udp_port, list);
410         while (port) {
411                 list_del(&port->list);
412                 kfree(port);
413                 port = list_first_entry_or_null(&interface->vxlan_port,
414                                                 struct fm10k_udp_port,
415                                                 list);
416         }
417 }
418
419 /**
420  * fm10k_restore_udp_port_info
421  * @interface: board private structure
422  *
423  * This function restores the value in the tunnel_cfg register(s) after reset
424  **/
425 static void fm10k_restore_udp_port_info(struct fm10k_intfc *interface)
426 {
427         struct fm10k_hw *hw = &interface->hw;
428         struct fm10k_udp_port *port;
429
430         /* only the PF supports configuring tunnels */
431         if (hw->mac.type != fm10k_mac_pf)
432                 return;
433
434         port = list_first_entry_or_null(&interface->vxlan_port,
435                                         struct fm10k_udp_port, list);
436
437         /* restore tunnel configuration register */
438         fm10k_write_reg(hw, FM10K_TUNNEL_CFG,
439                         (port ? ntohs(port->port) : 0) |
440                         (ETH_P_TEB << FM10K_TUNNEL_CFG_NVGRE_SHIFT));
441
442         port = list_first_entry_or_null(&interface->geneve_port,
443                                         struct fm10k_udp_port, list);
444
445         /* restore Geneve tunnel configuration register */
446         fm10k_write_reg(hw, FM10K_TUNNEL_CFG_GENEVE,
447                         (port ? ntohs(port->port) : 0));
448 }
449
450 static struct fm10k_udp_port *
451 fm10k_remove_tunnel_port(struct list_head *ports,
452                          struct udp_tunnel_info *ti)
453 {
454         struct fm10k_udp_port *port;
455
456         list_for_each_entry(port, ports, list) {
457                 if ((port->port == ti->port) &&
458                     (port->sa_family == ti->sa_family)) {
459                         list_del(&port->list);
460                         return port;
461                 }
462         }
463
464         return NULL;
465 }
466
467 static void fm10k_insert_tunnel_port(struct list_head *ports,
468                                      struct udp_tunnel_info *ti)
469 {
470         struct fm10k_udp_port *port;
471
472         /* remove existing port entry from the list so that the newest items
473          * are always at the tail of the list.
474          */
475         port = fm10k_remove_tunnel_port(ports, ti);
476         if (!port) {
477                 port = kmalloc(sizeof(*port), GFP_ATOMIC);
478                 if  (!port)
479                         return;
480                 port->port = ti->port;
481                 port->sa_family = ti->sa_family;
482         }
483
484         list_add_tail(&port->list, ports);
485 }
486
487 /**
488  * fm10k_udp_tunnel_add
489  * @netdev: network interface device structure
490  * @ti: Tunnel endpoint information
491  *
492  * This function is called when a new UDP tunnel port has been added.
493  * Due to hardware restrictions, only one port per type can be offloaded at
494  * once.
495  **/
496 static void fm10k_udp_tunnel_add(struct net_device *dev,
497                                  struct udp_tunnel_info *ti)
498 {
499         struct fm10k_intfc *interface = netdev_priv(dev);
500
501         /* only the PF supports configuring tunnels */
502         if (interface->hw.mac.type != fm10k_mac_pf)
503                 return;
504
505         switch (ti->type) {
506         case UDP_TUNNEL_TYPE_VXLAN:
507                 fm10k_insert_tunnel_port(&interface->vxlan_port, ti);
508                 break;
509         case UDP_TUNNEL_TYPE_GENEVE:
510                 fm10k_insert_tunnel_port(&interface->geneve_port, ti);
511                 break;
512         default:
513                 return;
514         }
515
516         fm10k_restore_udp_port_info(interface);
517 }
518
519 /**
520  * fm10k_udp_tunnel_del
521  * @netdev: network interface device structure
522  * @ti: Tunnel endpoint information
523  *
524  * This function is called when a new UDP tunnel port is deleted. The freed
525  * port will be removed from the list, then we reprogram the offloaded port
526  * based on the head of the list.
527  **/
528 static void fm10k_udp_tunnel_del(struct net_device *dev,
529                                  struct udp_tunnel_info *ti)
530 {
531         struct fm10k_intfc *interface = netdev_priv(dev);
532         struct fm10k_udp_port *port = NULL;
533
534         if (interface->hw.mac.type != fm10k_mac_pf)
535                 return;
536
537         switch (ti->type) {
538         case UDP_TUNNEL_TYPE_VXLAN:
539                 port = fm10k_remove_tunnel_port(&interface->vxlan_port, ti);
540                 break;
541         case UDP_TUNNEL_TYPE_GENEVE:
542                 port = fm10k_remove_tunnel_port(&interface->geneve_port, ti);
543                 break;
544         default:
545                 return;
546         }
547
548         /* if we did remove a port we need to free its memory */
549         kfree(port);
550
551         fm10k_restore_udp_port_info(interface);
552 }
553
554 /**
555  * fm10k_open - Called when a network interface is made active
556  * @netdev: network interface device structure
557  *
558  * Returns 0 on success, negative value on failure
559  *
560  * The open entry point is called when a network interface is made
561  * active by the system (IFF_UP).  At this point all resources needed
562  * for transmit and receive operations are allocated, the interrupt
563  * handler is registered with the OS, the watchdog timer is started,
564  * and the stack is notified that the interface is ready.
565  **/
566 int fm10k_open(struct net_device *netdev)
567 {
568         struct fm10k_intfc *interface = netdev_priv(netdev);
569         int err;
570
571         /* allocate transmit descriptors */
572         err = fm10k_setup_all_tx_resources(interface);
573         if (err)
574                 goto err_setup_tx;
575
576         /* allocate receive descriptors */
577         err = fm10k_setup_all_rx_resources(interface);
578         if (err)
579                 goto err_setup_rx;
580
581         /* allocate interrupt resources */
582         err = fm10k_qv_request_irq(interface);
583         if (err)
584                 goto err_req_irq;
585
586         /* setup GLORT assignment for this port */
587         fm10k_request_glort_range(interface);
588
589         /* Notify the stack of the actual queue counts */
590         err = netif_set_real_num_tx_queues(netdev,
591                                            interface->num_tx_queues);
592         if (err)
593                 goto err_set_queues;
594
595         err = netif_set_real_num_rx_queues(netdev,
596                                            interface->num_rx_queues);
597         if (err)
598                 goto err_set_queues;
599
600         udp_tunnel_get_rx_info(netdev);
601
602         fm10k_up(interface);
603
604         return 0;
605
606 err_set_queues:
607         fm10k_qv_free_irq(interface);
608 err_req_irq:
609         fm10k_free_all_rx_resources(interface);
610 err_setup_rx:
611         fm10k_free_all_tx_resources(interface);
612 err_setup_tx:
613         return err;
614 }
615
616 /**
617  * fm10k_close - Disables a network interface
618  * @netdev: network interface device structure
619  *
620  * Returns 0, this is not allowed to fail
621  *
622  * The close entry point is called when an interface is de-activated
623  * by the OS.  The hardware is still under the drivers control, but
624  * needs to be disabled.  A global MAC reset is issued to stop the
625  * hardware, and all transmit and receive resources are freed.
626  **/
627 int fm10k_close(struct net_device *netdev)
628 {
629         struct fm10k_intfc *interface = netdev_priv(netdev);
630
631         fm10k_down(interface);
632
633         fm10k_qv_free_irq(interface);
634
635         fm10k_free_udp_port_info(interface);
636
637         fm10k_free_all_tx_resources(interface);
638         fm10k_free_all_rx_resources(interface);
639
640         return 0;
641 }
642
643 static netdev_tx_t fm10k_xmit_frame(struct sk_buff *skb, struct net_device *dev)
644 {
645         struct fm10k_intfc *interface = netdev_priv(dev);
646         unsigned int r_idx = skb->queue_mapping;
647         int err;
648
649         if ((skb->protocol == htons(ETH_P_8021Q)) &&
650             !skb_vlan_tag_present(skb)) {
651                 /* FM10K only supports hardware tagging, any tags in frame
652                  * are considered 2nd level or "outer" tags
653                  */
654                 struct vlan_hdr *vhdr;
655                 __be16 proto;
656
657                 /* make sure skb is not shared */
658                 skb = skb_share_check(skb, GFP_ATOMIC);
659                 if (!skb)
660                         return NETDEV_TX_OK;
661
662                 /* make sure there is enough room to move the ethernet header */
663                 if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN)))
664                         return NETDEV_TX_OK;
665
666                 /* verify the skb head is not shared */
667                 err = skb_cow_head(skb, 0);
668                 if (err) {
669                         dev_kfree_skb(skb);
670                         return NETDEV_TX_OK;
671                 }
672
673                 /* locate VLAN header */
674                 vhdr = (struct vlan_hdr *)(skb->data + ETH_HLEN);
675
676                 /* pull the 2 key pieces of data out of it */
677                 __vlan_hwaccel_put_tag(skb,
678                                        htons(ETH_P_8021Q),
679                                        ntohs(vhdr->h_vlan_TCI));
680                 proto = vhdr->h_vlan_encapsulated_proto;
681                 skb->protocol = (ntohs(proto) >= 1536) ? proto :
682                                                          htons(ETH_P_802_2);
683
684                 /* squash it by moving the ethernet addresses up 4 bytes */
685                 memmove(skb->data + VLAN_HLEN, skb->data, 12);
686                 __skb_pull(skb, VLAN_HLEN);
687                 skb_reset_mac_header(skb);
688         }
689
690         /* The minimum packet size for a single buffer is 17B so pad the skb
691          * in order to meet this minimum size requirement.
692          */
693         if (unlikely(skb->len < 17)) {
694                 int pad_len = 17 - skb->len;
695
696                 if (skb_pad(skb, pad_len))
697                         return NETDEV_TX_OK;
698                 __skb_put(skb, pad_len);
699         }
700
701         if (r_idx >= interface->num_tx_queues)
702                 r_idx %= interface->num_tx_queues;
703
704         err = fm10k_xmit_frame_ring(skb, interface->tx_ring[r_idx]);
705
706         return err;
707 }
708
709 static int fm10k_change_mtu(struct net_device *dev, int new_mtu)
710 {
711         if (new_mtu < 68 || new_mtu > FM10K_MAX_JUMBO_FRAME_SIZE)
712                 return -EINVAL;
713
714         dev->mtu = new_mtu;
715
716         return 0;
717 }
718
719 /**
720  * fm10k_tx_timeout - Respond to a Tx Hang
721  * @netdev: network interface device structure
722  **/
723 static void fm10k_tx_timeout(struct net_device *netdev)
724 {
725         struct fm10k_intfc *interface = netdev_priv(netdev);
726         bool real_tx_hang = false;
727         int i;
728
729 #define TX_TIMEO_LIMIT 16000
730         for (i = 0; i < interface->num_tx_queues; i++) {
731                 struct fm10k_ring *tx_ring = interface->tx_ring[i];
732
733                 if (check_for_tx_hang(tx_ring) && fm10k_check_tx_hang(tx_ring))
734                         real_tx_hang = true;
735         }
736
737         if (real_tx_hang) {
738                 fm10k_tx_timeout_reset(interface);
739         } else {
740                 netif_info(interface, drv, netdev,
741                            "Fake Tx hang detected with timeout of %d seconds\n",
742                            netdev->watchdog_timeo / HZ);
743
744                 /* fake Tx hang - increase the kernel timeout */
745                 if (netdev->watchdog_timeo < TX_TIMEO_LIMIT)
746                         netdev->watchdog_timeo *= 2;
747         }
748 }
749
750 static int fm10k_uc_vlan_unsync(struct net_device *netdev,
751                                 const unsigned char *uc_addr)
752 {
753         struct fm10k_intfc *interface = netdev_priv(netdev);
754         struct fm10k_hw *hw = &interface->hw;
755         u16 glort = interface->glort;
756         u16 vid = interface->vid;
757         bool set = !!(vid / VLAN_N_VID);
758         int err;
759
760         /* drop any leading bits on the VLAN ID */
761         vid &= VLAN_N_VID - 1;
762
763         err = hw->mac.ops.update_uc_addr(hw, glort, uc_addr, vid, set, 0);
764         if (err)
765                 return err;
766
767         /* return non-zero value as we are only doing a partial sync/unsync */
768         return 1;
769 }
770
771 static int fm10k_mc_vlan_unsync(struct net_device *netdev,
772                                 const unsigned char *mc_addr)
773 {
774         struct fm10k_intfc *interface = netdev_priv(netdev);
775         struct fm10k_hw *hw = &interface->hw;
776         u16 glort = interface->glort;
777         u16 vid = interface->vid;
778         bool set = !!(vid / VLAN_N_VID);
779         int err;
780
781         /* drop any leading bits on the VLAN ID */
782         vid &= VLAN_N_VID - 1;
783
784         err = hw->mac.ops.update_mc_addr(hw, glort, mc_addr, vid, set);
785         if (err)
786                 return err;
787
788         /* return non-zero value as we are only doing a partial sync/unsync */
789         return 1;
790 }
791
792 static int fm10k_update_vid(struct net_device *netdev, u16 vid, bool set)
793 {
794         struct fm10k_intfc *interface = netdev_priv(netdev);
795         struct fm10k_hw *hw = &interface->hw;
796         s32 err;
797         int i;
798
799         /* updates do not apply to VLAN 0 */
800         if (!vid)
801                 return 0;
802
803         if (vid >= VLAN_N_VID)
804                 return -EINVAL;
805
806         /* Verify that we have permission to add VLANs. If this is a request
807          * to remove a VLAN, we still want to allow the user to remove the
808          * VLAN device. In that case, we need to clear the bit in the
809          * active_vlans bitmask.
810          */
811         if (set && hw->mac.vlan_override)
812                 return -EACCES;
813
814         /* update active_vlans bitmask */
815         set_bit(vid, interface->active_vlans);
816         if (!set)
817                 clear_bit(vid, interface->active_vlans);
818
819         /* disable the default VLAN ID on ring if we have an active VLAN */
820         for (i = 0; i < interface->num_rx_queues; i++) {
821                 struct fm10k_ring *rx_ring = interface->rx_ring[i];
822                 u16 rx_vid = rx_ring->vid & (VLAN_N_VID - 1);
823
824                 if (test_bit(rx_vid, interface->active_vlans))
825                         rx_ring->vid |= FM10K_VLAN_CLEAR;
826                 else
827                         rx_ring->vid &= ~FM10K_VLAN_CLEAR;
828         }
829
830         /* If our VLAN has been overridden, there is no reason to send VLAN
831          * removal requests as they will be silently ignored.
832          */
833         if (hw->mac.vlan_override)
834                 return 0;
835
836         /* Do not remove default VLAN ID related entries from VLAN and MAC
837          * tables
838          */
839         if (!set && vid == hw->mac.default_vid)
840                 return 0;
841
842         /* Do not throw an error if the interface is down. We will sync once
843          * we come up
844          */
845         if (test_bit(__FM10K_DOWN, &interface->state))
846                 return 0;
847
848         fm10k_mbx_lock(interface);
849
850         /* only need to update the VLAN if not in promiscuous mode */
851         if (!(netdev->flags & IFF_PROMISC)) {
852                 err = hw->mac.ops.update_vlan(hw, vid, 0, set);
853                 if (err)
854                         goto err_out;
855         }
856
857         /* update our base MAC address */
858         err = hw->mac.ops.update_uc_addr(hw, interface->glort, hw->mac.addr,
859                                          vid, set, 0);
860         if (err)
861                 goto err_out;
862
863         /* set VLAN ID prior to syncing/unsyncing the VLAN */
864         interface->vid = vid + (set ? VLAN_N_VID : 0);
865
866         /* Update the unicast and multicast address list to add/drop VLAN */
867         __dev_uc_unsync(netdev, fm10k_uc_vlan_unsync);
868         __dev_mc_unsync(netdev, fm10k_mc_vlan_unsync);
869
870 err_out:
871         fm10k_mbx_unlock(interface);
872
873         return err;
874 }
875
876 static int fm10k_vlan_rx_add_vid(struct net_device *netdev,
877                                  __always_unused __be16 proto, u16 vid)
878 {
879         /* update VLAN and address table based on changes */
880         return fm10k_update_vid(netdev, vid, true);
881 }
882
883 static int fm10k_vlan_rx_kill_vid(struct net_device *netdev,
884                                   __always_unused __be16 proto, u16 vid)
885 {
886         /* update VLAN and address table based on changes */
887         return fm10k_update_vid(netdev, vid, false);
888 }
889
890 static u16 fm10k_find_next_vlan(struct fm10k_intfc *interface, u16 vid)
891 {
892         struct fm10k_hw *hw = &interface->hw;
893         u16 default_vid = hw->mac.default_vid;
894         u16 vid_limit = vid < default_vid ? default_vid : VLAN_N_VID;
895
896         vid = find_next_bit(interface->active_vlans, vid_limit, ++vid);
897
898         return vid;
899 }
900
901 static void fm10k_clear_unused_vlans(struct fm10k_intfc *interface)
902 {
903         struct fm10k_hw *hw = &interface->hw;
904         u32 vid, prev_vid;
905
906         /* loop through and find any gaps in the table */
907         for (vid = 0, prev_vid = 0;
908              prev_vid < VLAN_N_VID;
909              prev_vid = vid + 1, vid = fm10k_find_next_vlan(interface, vid)) {
910                 if (prev_vid == vid)
911                         continue;
912
913                 /* send request to clear multiple bits at a time */
914                 prev_vid += (vid - prev_vid - 1) << FM10K_VLAN_LENGTH_SHIFT;
915                 hw->mac.ops.update_vlan(hw, prev_vid, 0, false);
916         }
917 }
918
919 static int __fm10k_uc_sync(struct net_device *dev,
920                            const unsigned char *addr, bool sync)
921 {
922         struct fm10k_intfc *interface = netdev_priv(dev);
923         struct fm10k_hw *hw = &interface->hw;
924         u16 vid, glort = interface->glort;
925         s32 err;
926
927         if (!is_valid_ether_addr(addr))
928                 return -EADDRNOTAVAIL;
929
930         /* update table with current entries */
931         for (vid = hw->mac.default_vid ? fm10k_find_next_vlan(interface, 0) : 1;
932              vid < VLAN_N_VID;
933              vid = fm10k_find_next_vlan(interface, vid)) {
934                 err = hw->mac.ops.update_uc_addr(hw, glort, addr,
935                                                   vid, sync, 0);
936                 if (err)
937                         return err;
938         }
939
940         return 0;
941 }
942
943 static int fm10k_uc_sync(struct net_device *dev,
944                          const unsigned char *addr)
945 {
946         return __fm10k_uc_sync(dev, addr, true);
947 }
948
949 static int fm10k_uc_unsync(struct net_device *dev,
950                            const unsigned char *addr)
951 {
952         return __fm10k_uc_sync(dev, addr, false);
953 }
954
955 static int fm10k_set_mac(struct net_device *dev, void *p)
956 {
957         struct fm10k_intfc *interface = netdev_priv(dev);
958         struct fm10k_hw *hw = &interface->hw;
959         struct sockaddr *addr = p;
960         s32 err = 0;
961
962         if (!is_valid_ether_addr(addr->sa_data))
963                 return -EADDRNOTAVAIL;
964
965         if (dev->flags & IFF_UP) {
966                 /* setting MAC address requires mailbox */
967                 fm10k_mbx_lock(interface);
968
969                 err = fm10k_uc_sync(dev, addr->sa_data);
970                 if (!err)
971                         fm10k_uc_unsync(dev, hw->mac.addr);
972
973                 fm10k_mbx_unlock(interface);
974         }
975
976         if (!err) {
977                 ether_addr_copy(dev->dev_addr, addr->sa_data);
978                 ether_addr_copy(hw->mac.addr, addr->sa_data);
979                 dev->addr_assign_type &= ~NET_ADDR_RANDOM;
980         }
981
982         /* if we had a mailbox error suggest trying again */
983         return err ? -EAGAIN : 0;
984 }
985
986 static int __fm10k_mc_sync(struct net_device *dev,
987                            const unsigned char *addr, bool sync)
988 {
989         struct fm10k_intfc *interface = netdev_priv(dev);
990         struct fm10k_hw *hw = &interface->hw;
991         u16 vid, glort = interface->glort;
992
993         /* update table with current entries */
994         for (vid = hw->mac.default_vid ? fm10k_find_next_vlan(interface, 0) : 1;
995              vid < VLAN_N_VID;
996              vid = fm10k_find_next_vlan(interface, vid)) {
997                 hw->mac.ops.update_mc_addr(hw, glort, addr, vid, sync);
998         }
999
1000         return 0;
1001 }
1002
1003 static int fm10k_mc_sync(struct net_device *dev,
1004                          const unsigned char *addr)
1005 {
1006         return __fm10k_mc_sync(dev, addr, true);
1007 }
1008
1009 static int fm10k_mc_unsync(struct net_device *dev,
1010                            const unsigned char *addr)
1011 {
1012         return __fm10k_mc_sync(dev, addr, false);
1013 }
1014
1015 static void fm10k_set_rx_mode(struct net_device *dev)
1016 {
1017         struct fm10k_intfc *interface = netdev_priv(dev);
1018         struct fm10k_hw *hw = &interface->hw;
1019         int xcast_mode;
1020
1021         /* no need to update the harwdare if we are not running */
1022         if (!(dev->flags & IFF_UP))
1023                 return;
1024
1025         /* determine new mode based on flags */
1026         xcast_mode = (dev->flags & IFF_PROMISC) ? FM10K_XCAST_MODE_PROMISC :
1027                      (dev->flags & IFF_ALLMULTI) ? FM10K_XCAST_MODE_ALLMULTI :
1028                      (dev->flags & (IFF_BROADCAST | IFF_MULTICAST)) ?
1029                      FM10K_XCAST_MODE_MULTI : FM10K_XCAST_MODE_NONE;
1030
1031         fm10k_mbx_lock(interface);
1032
1033         /* update xcast mode first, but only if it changed */
1034         if (interface->xcast_mode != xcast_mode) {
1035                 /* update VLAN table */
1036                 if (xcast_mode == FM10K_XCAST_MODE_PROMISC)
1037                         hw->mac.ops.update_vlan(hw, FM10K_VLAN_ALL, 0, true);
1038                 if (interface->xcast_mode == FM10K_XCAST_MODE_PROMISC)
1039                         fm10k_clear_unused_vlans(interface);
1040
1041                 /* update xcast mode */
1042                 hw->mac.ops.update_xcast_mode(hw, interface->glort, xcast_mode);
1043
1044                 /* record updated xcast mode state */
1045                 interface->xcast_mode = xcast_mode;
1046         }
1047
1048         /* synchronize all of the addresses */
1049         __dev_uc_sync(dev, fm10k_uc_sync, fm10k_uc_unsync);
1050         __dev_mc_sync(dev, fm10k_mc_sync, fm10k_mc_unsync);
1051
1052         fm10k_mbx_unlock(interface);
1053 }
1054
1055 void fm10k_restore_rx_state(struct fm10k_intfc *interface)
1056 {
1057         struct net_device *netdev = interface->netdev;
1058         struct fm10k_hw *hw = &interface->hw;
1059         int xcast_mode;
1060         u16 vid, glort;
1061
1062         /* record glort for this interface */
1063         glort = interface->glort;
1064
1065         /* convert interface flags to xcast mode */
1066         if (netdev->flags & IFF_PROMISC)
1067                 xcast_mode = FM10K_XCAST_MODE_PROMISC;
1068         else if (netdev->flags & IFF_ALLMULTI)
1069                 xcast_mode = FM10K_XCAST_MODE_ALLMULTI;
1070         else if (netdev->flags & (IFF_BROADCAST | IFF_MULTICAST))
1071                 xcast_mode = FM10K_XCAST_MODE_MULTI;
1072         else
1073                 xcast_mode = FM10K_XCAST_MODE_NONE;
1074
1075         fm10k_mbx_lock(interface);
1076
1077         /* Enable logical port */
1078         hw->mac.ops.update_lport_state(hw, glort, interface->glort_count, true);
1079
1080         /* update VLAN table */
1081         hw->mac.ops.update_vlan(hw, FM10K_VLAN_ALL, 0,
1082                                 xcast_mode == FM10K_XCAST_MODE_PROMISC);
1083
1084         /* Add filter for VLAN 0 */
1085         hw->mac.ops.update_vlan(hw, 0, 0, true);
1086
1087         /* update table with current entries */
1088         for (vid = hw->mac.default_vid ? fm10k_find_next_vlan(interface, 0) : 1;
1089              vid < VLAN_N_VID;
1090              vid = fm10k_find_next_vlan(interface, vid)) {
1091                 hw->mac.ops.update_vlan(hw, vid, 0, true);
1092                 hw->mac.ops.update_uc_addr(hw, glort, hw->mac.addr,
1093                                            vid, true, 0);
1094         }
1095
1096         /* update xcast mode before synchronizing addresses */
1097         hw->mac.ops.update_xcast_mode(hw, glort, xcast_mode);
1098
1099         /* synchronize all of the addresses */
1100         __dev_uc_sync(netdev, fm10k_uc_sync, fm10k_uc_unsync);
1101         __dev_mc_sync(netdev, fm10k_mc_sync, fm10k_mc_unsync);
1102
1103         fm10k_mbx_unlock(interface);
1104
1105         /* record updated xcast mode state */
1106         interface->xcast_mode = xcast_mode;
1107
1108         /* Restore tunnel configuration */
1109         fm10k_restore_udp_port_info(interface);
1110 }
1111
1112 void fm10k_reset_rx_state(struct fm10k_intfc *interface)
1113 {
1114         struct net_device *netdev = interface->netdev;
1115         struct fm10k_hw *hw = &interface->hw;
1116
1117         fm10k_mbx_lock(interface);
1118
1119         /* clear the logical port state on lower device */
1120         hw->mac.ops.update_lport_state(hw, interface->glort,
1121                                        interface->glort_count, false);
1122
1123         fm10k_mbx_unlock(interface);
1124
1125         /* reset flags to default state */
1126         interface->xcast_mode = FM10K_XCAST_MODE_NONE;
1127
1128         /* clear the sync flag since the lport has been dropped */
1129         __dev_uc_unsync(netdev, NULL);
1130         __dev_mc_unsync(netdev, NULL);
1131 }
1132
1133 /**
1134  * fm10k_get_stats64 - Get System Network Statistics
1135  * @netdev: network interface device structure
1136  * @stats: storage space for 64bit statistics
1137  *
1138  * Returns 64bit statistics, for use in the ndo_get_stats64 callback. This
1139  * function replaces fm10k_get_stats for kernels which support it.
1140  */
1141 static struct rtnl_link_stats64 *fm10k_get_stats64(struct net_device *netdev,
1142                                                    struct rtnl_link_stats64 *stats)
1143 {
1144         struct fm10k_intfc *interface = netdev_priv(netdev);
1145         struct fm10k_ring *ring;
1146         unsigned int start, i;
1147         u64 bytes, packets;
1148
1149         rcu_read_lock();
1150
1151         for (i = 0; i < interface->num_rx_queues; i++) {
1152                 ring = READ_ONCE(interface->rx_ring[i]);
1153
1154                 if (!ring)
1155                         continue;
1156
1157                 do {
1158                         start = u64_stats_fetch_begin_irq(&ring->syncp);
1159                         packets = ring->stats.packets;
1160                         bytes   = ring->stats.bytes;
1161                 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
1162
1163                 stats->rx_packets += packets;
1164                 stats->rx_bytes   += bytes;
1165         }
1166
1167         for (i = 0; i < interface->num_tx_queues; i++) {
1168                 ring = READ_ONCE(interface->tx_ring[i]);
1169
1170                 if (!ring)
1171                         continue;
1172
1173                 do {
1174                         start = u64_stats_fetch_begin_irq(&ring->syncp);
1175                         packets = ring->stats.packets;
1176                         bytes   = ring->stats.bytes;
1177                 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
1178
1179                 stats->tx_packets += packets;
1180                 stats->tx_bytes   += bytes;
1181         }
1182
1183         rcu_read_unlock();
1184
1185         /* following stats updated by fm10k_service_task() */
1186         stats->rx_missed_errors = netdev->stats.rx_missed_errors;
1187
1188         return stats;
1189 }
1190
1191 int fm10k_setup_tc(struct net_device *dev, u8 tc)
1192 {
1193         struct fm10k_intfc *interface = netdev_priv(dev);
1194         int err;
1195
1196         /* Currently only the PF supports priority classes */
1197         if (tc && (interface->hw.mac.type != fm10k_mac_pf))
1198                 return -EINVAL;
1199
1200         /* Hardware supports up to 8 traffic classes */
1201         if (tc > 8)
1202                 return -EINVAL;
1203
1204         /* Hardware has to reinitialize queues to match packet
1205          * buffer alignment. Unfortunately, the hardware is not
1206          * flexible enough to do this dynamically.
1207          */
1208         if (netif_running(dev))
1209                 fm10k_close(dev);
1210
1211         fm10k_mbx_free_irq(interface);
1212
1213         fm10k_clear_queueing_scheme(interface);
1214
1215         /* we expect the prio_tc map to be repopulated later */
1216         netdev_reset_tc(dev);
1217         netdev_set_num_tc(dev, tc);
1218
1219         err = fm10k_init_queueing_scheme(interface);
1220         if (err)
1221                 goto err_queueing_scheme;
1222
1223         err = fm10k_mbx_request_irq(interface);
1224         if (err)
1225                 goto err_mbx_irq;
1226
1227         err = netif_running(dev) ? fm10k_open(dev) : 0;
1228         if (err)
1229                 goto err_open;
1230
1231         /* flag to indicate SWPRI has yet to be updated */
1232         interface->flags |= FM10K_FLAG_SWPRI_CONFIG;
1233
1234         return 0;
1235 err_open:
1236         fm10k_mbx_free_irq(interface);
1237 err_mbx_irq:
1238         fm10k_clear_queueing_scheme(interface);
1239 err_queueing_scheme:
1240         netif_device_detach(dev);
1241
1242         return err;
1243 }
1244
1245 static int __fm10k_setup_tc(struct net_device *dev, u32 handle, __be16 proto,
1246                             struct tc_to_netdev *tc)
1247 {
1248         if (tc->type != TC_SETUP_MQPRIO)
1249                 return -EINVAL;
1250
1251         return fm10k_setup_tc(dev, tc->tc);
1252 }
1253
1254 static void fm10k_assign_l2_accel(struct fm10k_intfc *interface,
1255                                   struct fm10k_l2_accel *l2_accel)
1256 {
1257         struct fm10k_ring *ring;
1258         int i;
1259
1260         for (i = 0; i < interface->num_rx_queues; i++) {
1261                 ring = interface->rx_ring[i];
1262                 rcu_assign_pointer(ring->l2_accel, l2_accel);
1263         }
1264
1265         interface->l2_accel = l2_accel;
1266 }
1267
1268 static void *fm10k_dfwd_add_station(struct net_device *dev,
1269                                     struct net_device *sdev)
1270 {
1271         struct fm10k_intfc *interface = netdev_priv(dev);
1272         struct fm10k_l2_accel *l2_accel = interface->l2_accel;
1273         struct fm10k_l2_accel *old_l2_accel = NULL;
1274         struct fm10k_dglort_cfg dglort = { 0 };
1275         struct fm10k_hw *hw = &interface->hw;
1276         int size = 0, i;
1277         u16 glort;
1278
1279         /* allocate l2 accel structure if it is not available */
1280         if (!l2_accel) {
1281                 /* verify there is enough free GLORTs to support l2_accel */
1282                 if (interface->glort_count < 7)
1283                         return ERR_PTR(-EBUSY);
1284
1285                 size = offsetof(struct fm10k_l2_accel, macvlan[7]);
1286                 l2_accel = kzalloc(size, GFP_KERNEL);
1287                 if (!l2_accel)
1288                         return ERR_PTR(-ENOMEM);
1289
1290                 l2_accel->size = 7;
1291                 l2_accel->dglort = interface->glort;
1292
1293                 /* update pointers */
1294                 fm10k_assign_l2_accel(interface, l2_accel);
1295         /* do not expand if we are at our limit */
1296         } else if ((l2_accel->count == FM10K_MAX_STATIONS) ||
1297                    (l2_accel->count == (interface->glort_count - 1))) {
1298                 return ERR_PTR(-EBUSY);
1299         /* expand if we have hit the size limit */
1300         } else if (l2_accel->count == l2_accel->size) {
1301                 old_l2_accel = l2_accel;
1302                 size = offsetof(struct fm10k_l2_accel,
1303                                 macvlan[(l2_accel->size * 2) + 1]);
1304                 l2_accel = kzalloc(size, GFP_KERNEL);
1305                 if (!l2_accel)
1306                         return ERR_PTR(-ENOMEM);
1307
1308                 memcpy(l2_accel, old_l2_accel,
1309                        offsetof(struct fm10k_l2_accel,
1310                                 macvlan[old_l2_accel->size]));
1311
1312                 l2_accel->size = (old_l2_accel->size * 2) + 1;
1313
1314                 /* update pointers */
1315                 fm10k_assign_l2_accel(interface, l2_accel);
1316                 kfree_rcu(old_l2_accel, rcu);
1317         }
1318
1319         /* add macvlan to accel table, and record GLORT for position */
1320         for (i = 0; i < l2_accel->size; i++) {
1321                 if (!l2_accel->macvlan[i])
1322                         break;
1323         }
1324
1325         /* record station */
1326         l2_accel->macvlan[i] = sdev;
1327         l2_accel->count++;
1328
1329         /* configure default DGLORT mapping for RSS/DCB */
1330         dglort.idx = fm10k_dglort_pf_rss;
1331         dglort.inner_rss = 1;
1332         dglort.rss_l = fls(interface->ring_feature[RING_F_RSS].mask);
1333         dglort.pc_l = fls(interface->ring_feature[RING_F_QOS].mask);
1334         dglort.glort = interface->glort;
1335         dglort.shared_l = fls(l2_accel->size);
1336         hw->mac.ops.configure_dglort_map(hw, &dglort);
1337
1338         /* Add rules for this specific dglort to the switch */
1339         fm10k_mbx_lock(interface);
1340
1341         glort = l2_accel->dglort + 1 + i;
1342         hw->mac.ops.update_xcast_mode(hw, glort, FM10K_XCAST_MODE_MULTI);
1343         hw->mac.ops.update_uc_addr(hw, glort, sdev->dev_addr, 0, true, 0);
1344
1345         fm10k_mbx_unlock(interface);
1346
1347         return sdev;
1348 }
1349
1350 static void fm10k_dfwd_del_station(struct net_device *dev, void *priv)
1351 {
1352         struct fm10k_intfc *interface = netdev_priv(dev);
1353         struct fm10k_l2_accel *l2_accel = READ_ONCE(interface->l2_accel);
1354         struct fm10k_dglort_cfg dglort = { 0 };
1355         struct fm10k_hw *hw = &interface->hw;
1356         struct net_device *sdev = priv;
1357         int i;
1358         u16 glort;
1359
1360         if (!l2_accel)
1361                 return;
1362
1363         /* search table for matching interface */
1364         for (i = 0; i < l2_accel->size; i++) {
1365                 if (l2_accel->macvlan[i] == sdev)
1366                         break;
1367         }
1368
1369         /* exit if macvlan not found */
1370         if (i == l2_accel->size)
1371                 return;
1372
1373         /* Remove any rules specific to this dglort */
1374         fm10k_mbx_lock(interface);
1375
1376         glort = l2_accel->dglort + 1 + i;
1377         hw->mac.ops.update_xcast_mode(hw, glort, FM10K_XCAST_MODE_NONE);
1378         hw->mac.ops.update_uc_addr(hw, glort, sdev->dev_addr, 0, false, 0);
1379
1380         fm10k_mbx_unlock(interface);
1381
1382         /* record removal */
1383         l2_accel->macvlan[i] = NULL;
1384         l2_accel->count--;
1385
1386         /* configure default DGLORT mapping for RSS/DCB */
1387         dglort.idx = fm10k_dglort_pf_rss;
1388         dglort.inner_rss = 1;
1389         dglort.rss_l = fls(interface->ring_feature[RING_F_RSS].mask);
1390         dglort.pc_l = fls(interface->ring_feature[RING_F_QOS].mask);
1391         dglort.glort = interface->glort;
1392         dglort.shared_l = fls(l2_accel->size);
1393         hw->mac.ops.configure_dglort_map(hw, &dglort);
1394
1395         /* If table is empty remove it */
1396         if (l2_accel->count == 0) {
1397                 fm10k_assign_l2_accel(interface, NULL);
1398                 kfree_rcu(l2_accel, rcu);
1399         }
1400 }
1401
1402 static netdev_features_t fm10k_features_check(struct sk_buff *skb,
1403                                               struct net_device *dev,
1404                                               netdev_features_t features)
1405 {
1406         if (!skb->encapsulation || fm10k_tx_encap_offload(skb))
1407                 return features;
1408
1409         return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
1410 }
1411
1412 static const struct net_device_ops fm10k_netdev_ops = {
1413         .ndo_open               = fm10k_open,
1414         .ndo_stop               = fm10k_close,
1415         .ndo_validate_addr      = eth_validate_addr,
1416         .ndo_start_xmit         = fm10k_xmit_frame,
1417         .ndo_set_mac_address    = fm10k_set_mac,
1418         .ndo_change_mtu         = fm10k_change_mtu,
1419         .ndo_tx_timeout         = fm10k_tx_timeout,
1420         .ndo_vlan_rx_add_vid    = fm10k_vlan_rx_add_vid,
1421         .ndo_vlan_rx_kill_vid   = fm10k_vlan_rx_kill_vid,
1422         .ndo_set_rx_mode        = fm10k_set_rx_mode,
1423         .ndo_get_stats64        = fm10k_get_stats64,
1424         .ndo_setup_tc           = __fm10k_setup_tc,
1425         .ndo_set_vf_mac         = fm10k_ndo_set_vf_mac,
1426         .ndo_set_vf_vlan        = fm10k_ndo_set_vf_vlan,
1427         .ndo_set_vf_rate        = fm10k_ndo_set_vf_bw,
1428         .ndo_get_vf_config      = fm10k_ndo_get_vf_config,
1429         .ndo_udp_tunnel_add     = fm10k_udp_tunnel_add,
1430         .ndo_udp_tunnel_del     = fm10k_udp_tunnel_del,
1431         .ndo_dfwd_add_station   = fm10k_dfwd_add_station,
1432         .ndo_dfwd_del_station   = fm10k_dfwd_del_station,
1433 #ifdef CONFIG_NET_POLL_CONTROLLER
1434         .ndo_poll_controller    = fm10k_netpoll,
1435 #endif
1436         .ndo_features_check     = fm10k_features_check,
1437 };
1438
1439 #define DEFAULT_DEBUG_LEVEL_SHIFT 3
1440
1441 struct net_device *fm10k_alloc_netdev(const struct fm10k_info *info)
1442 {
1443         netdev_features_t hw_features;
1444         struct fm10k_intfc *interface;
1445         struct net_device *dev;
1446
1447         dev = alloc_etherdev_mq(sizeof(struct fm10k_intfc), MAX_QUEUES);
1448         if (!dev)
1449                 return NULL;
1450
1451         /* set net device and ethtool ops */
1452         dev->netdev_ops = &fm10k_netdev_ops;
1453         fm10k_set_ethtool_ops(dev);
1454
1455         /* configure default debug level */
1456         interface = netdev_priv(dev);
1457         interface->msg_enable = BIT(DEFAULT_DEBUG_LEVEL_SHIFT) - 1;
1458
1459         /* configure default features */
1460         dev->features |= NETIF_F_IP_CSUM |
1461                          NETIF_F_IPV6_CSUM |
1462                          NETIF_F_SG |
1463                          NETIF_F_TSO |
1464                          NETIF_F_TSO6 |
1465                          NETIF_F_TSO_ECN |
1466                          NETIF_F_RXHASH |
1467                          NETIF_F_RXCSUM;
1468
1469         /* Only the PF can support VXLAN and NVGRE tunnel offloads */
1470         if (info->mac == fm10k_mac_pf) {
1471                 dev->hw_enc_features = NETIF_F_IP_CSUM |
1472                                        NETIF_F_TSO |
1473                                        NETIF_F_TSO6 |
1474                                        NETIF_F_TSO_ECN |
1475                                        NETIF_F_GSO_UDP_TUNNEL |
1476                                        NETIF_F_IPV6_CSUM |
1477                                        NETIF_F_SG;
1478
1479                 dev->features |= NETIF_F_GSO_UDP_TUNNEL;
1480         }
1481
1482         /* all features defined to this point should be changeable */
1483         hw_features = dev->features;
1484
1485         /* allow user to enable L2 forwarding acceleration */
1486         hw_features |= NETIF_F_HW_L2FW_DOFFLOAD;
1487
1488         /* configure VLAN features */
1489         dev->vlan_features |= dev->features;
1490
1491         /* we want to leave these both on as we cannot disable VLAN tag
1492          * insertion or stripping on the hardware since it is contained
1493          * in the FTAG and not in the frame itself.
1494          */
1495         dev->features |= NETIF_F_HW_VLAN_CTAG_TX |
1496                          NETIF_F_HW_VLAN_CTAG_RX |
1497                          NETIF_F_HW_VLAN_CTAG_FILTER;
1498
1499         dev->priv_flags |= IFF_UNICAST_FLT;
1500
1501         dev->hw_features |= hw_features;
1502
1503         return dev;
1504 }