qed: Add VF->PF channel infrastructure
[deliverable/linux.git] / drivers / net / ethernet / qlogic / qede / qede_main.c
CommitLineData
e712d52b
YM
1/* QLogic qede NIC Driver
2* Copyright (c) 2015 QLogic Corporation
3*
4* This software is available under the terms of the GNU General Public License
5* (GPL) Version 2, available from the file COPYING in the main directory of
6* this source tree.
7*/
8
9#include <linux/module.h>
10#include <linux/pci.h>
11#include <linux/version.h>
12#include <linux/device.h>
13#include <linux/netdevice.h>
14#include <linux/etherdevice.h>
15#include <linux/skbuff.h>
16#include <linux/errno.h>
17#include <linux/list.h>
18#include <linux/string.h>
19#include <linux/dma-mapping.h>
20#include <linux/interrupt.h>
21#include <asm/byteorder.h>
22#include <asm/param.h>
23#include <linux/io.h>
24#include <linux/netdev_features.h>
25#include <linux/udp.h>
26#include <linux/tcp.h>
b18e170c 27#ifdef CONFIG_QEDE_VXLAN
e712d52b 28#include <net/vxlan.h>
b18e170c 29#endif
9a109dd0
MC
30#ifdef CONFIG_QEDE_GENEVE
31#include <net/geneve.h>
32#endif
e712d52b
YM
33#include <linux/ip.h>
34#include <net/ipv6.h>
35#include <net/tcp.h>
36#include <linux/if_ether.h>
37#include <linux/if_vlan.h>
38#include <linux/pkt_sched.h>
39#include <linux/ethtool.h>
40#include <linux/in.h>
41#include <linux/random.h>
42#include <net/ip6_checksum.h>
43#include <linux/bitops.h>
44
45#include "qede.h"
46
5abd7e92
YM
47static char version[] =
48 "QLogic FastLinQ 4xxxx Ethernet Driver qede " DRV_MODULE_VERSION "\n";
e712d52b 49
5abd7e92 50MODULE_DESCRIPTION("QLogic FastLinQ 4xxxx Ethernet Driver");
e712d52b
YM
51MODULE_LICENSE("GPL");
52MODULE_VERSION(DRV_MODULE_VERSION);
53
54static uint debug;
55module_param(debug, uint, 0);
56MODULE_PARM_DESC(debug, " Default debug msglevel");
57
58static const struct qed_eth_ops *qed_ops;
59
60#define CHIP_NUM_57980S_40 0x1634
0e7441d7 61#define CHIP_NUM_57980S_10 0x1666
e712d52b
YM
62#define CHIP_NUM_57980S_MF 0x1636
63#define CHIP_NUM_57980S_100 0x1644
64#define CHIP_NUM_57980S_50 0x1654
65#define CHIP_NUM_57980S_25 0x1656
66
67#ifndef PCI_DEVICE_ID_NX2_57980E
68#define PCI_DEVICE_ID_57980S_40 CHIP_NUM_57980S_40
69#define PCI_DEVICE_ID_57980S_10 CHIP_NUM_57980S_10
70#define PCI_DEVICE_ID_57980S_MF CHIP_NUM_57980S_MF
71#define PCI_DEVICE_ID_57980S_100 CHIP_NUM_57980S_100
72#define PCI_DEVICE_ID_57980S_50 CHIP_NUM_57980S_50
73#define PCI_DEVICE_ID_57980S_25 CHIP_NUM_57980S_25
74#endif
75
76static const struct pci_device_id qede_pci_tbl[] = {
77 { PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_40), 0 },
78 { PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_10), 0 },
79 { PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_MF), 0 },
80 { PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_100), 0 },
81 { PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_50), 0 },
82 { PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_25), 0 },
83 { 0 }
84};
85
86MODULE_DEVICE_TABLE(pci, qede_pci_tbl);
87
88static int qede_probe(struct pci_dev *pdev, const struct pci_device_id *id);
89
90#define TX_TIMEOUT (5 * HZ)
91
92static void qede_remove(struct pci_dev *pdev);
2950219d
YM
93static int qede_alloc_rx_buffer(struct qede_dev *edev,
94 struct qede_rx_queue *rxq);
a2ec6172 95static void qede_link_update(void *dev, struct qed_link_output *link);
e712d52b
YM
96
97static struct pci_driver qede_pci_driver = {
98 .name = "qede",
99 .id_table = qede_pci_tbl,
100 .probe = qede_probe,
101 .remove = qede_remove,
102};
103
a2ec6172
SK
104static struct qed_eth_cb_ops qede_ll_ops = {
105 {
106 .link_update = qede_link_update,
107 },
108};
109
2950219d
YM
110static int qede_netdev_event(struct notifier_block *this, unsigned long event,
111 void *ptr)
112{
113 struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
114 struct ethtool_drvinfo drvinfo;
115 struct qede_dev *edev;
116
117 /* Currently only support name change */
118 if (event != NETDEV_CHANGENAME)
119 goto done;
120
121 /* Check whether this is a qede device */
122 if (!ndev || !ndev->ethtool_ops || !ndev->ethtool_ops->get_drvinfo)
123 goto done;
124
125 memset(&drvinfo, 0, sizeof(drvinfo));
126 ndev->ethtool_ops->get_drvinfo(ndev, &drvinfo);
127 if (strcmp(drvinfo.driver, "qede"))
128 goto done;
129 edev = netdev_priv(ndev);
130
131 /* Notify qed of the name change */
132 if (!edev->ops || !edev->ops->common)
133 goto done;
134 edev->ops->common->set_id(edev->cdev, edev->ndev->name,
135 "qede");
136
137done:
138 return NOTIFY_DONE;
139}
140
141static struct notifier_block qede_netdev_notifier = {
142 .notifier_call = qede_netdev_event,
143};
144
e712d52b
YM
145static
146int __init qede_init(void)
147{
148 int ret;
e712d52b
YM
149
150 pr_notice("qede_init: %s\n", version);
151
95114344 152 qed_ops = qed_get_eth_ops();
e712d52b
YM
153 if (!qed_ops) {
154 pr_notice("Failed to get qed ethtool operations\n");
155 return -EINVAL;
156 }
157
2950219d
YM
158 /* Must register notifier before pci ops, since we might miss
159 * interface rename after pci probe and netdev registeration.
160 */
161 ret = register_netdevice_notifier(&qede_netdev_notifier);
162 if (ret) {
163 pr_notice("Failed to register netdevice_notifier\n");
164 qed_put_eth_ops();
165 return -EINVAL;
166 }
167
e712d52b
YM
168 ret = pci_register_driver(&qede_pci_driver);
169 if (ret) {
170 pr_notice("Failed to register driver\n");
2950219d 171 unregister_netdevice_notifier(&qede_netdev_notifier);
e712d52b
YM
172 qed_put_eth_ops();
173 return -EINVAL;
174 }
175
176 return 0;
177}
178
179static void __exit qede_cleanup(void)
180{
181 pr_notice("qede_cleanup called\n");
182
2950219d 183 unregister_netdevice_notifier(&qede_netdev_notifier);
e712d52b
YM
184 pci_unregister_driver(&qede_pci_driver);
185 qed_put_eth_ops();
186}
187
188module_init(qede_init);
189module_exit(qede_cleanup);
190
2950219d
YM
191/* -------------------------------------------------------------------------
192 * START OF FAST-PATH
193 * -------------------------------------------------------------------------
194 */
195
196/* Unmap the data and free skb */
197static int qede_free_tx_pkt(struct qede_dev *edev,
198 struct qede_tx_queue *txq,
199 int *len)
200{
201 u16 idx = txq->sw_tx_cons & NUM_TX_BDS_MAX;
202 struct sk_buff *skb = txq->sw_tx_ring[idx].skb;
203 struct eth_tx_1st_bd *first_bd;
204 struct eth_tx_bd *tx_data_bd;
205 int bds_consumed = 0;
206 int nbds;
207 bool data_split = txq->sw_tx_ring[idx].flags & QEDE_TSO_SPLIT_BD;
208 int i, split_bd_len = 0;
209
210 if (unlikely(!skb)) {
211 DP_ERR(edev,
212 "skb is null for txq idx=%d txq->sw_tx_cons=%d txq->sw_tx_prod=%d\n",
213 idx, txq->sw_tx_cons, txq->sw_tx_prod);
214 return -1;
215 }
216
217 *len = skb->len;
218
219 first_bd = (struct eth_tx_1st_bd *)qed_chain_consume(&txq->tx_pbl);
220
221 bds_consumed++;
222
223 nbds = first_bd->data.nbds;
224
225 if (data_split) {
226 struct eth_tx_bd *split = (struct eth_tx_bd *)
227 qed_chain_consume(&txq->tx_pbl);
228 split_bd_len = BD_UNMAP_LEN(split);
229 bds_consumed++;
230 }
231 dma_unmap_page(&edev->pdev->dev, BD_UNMAP_ADDR(first_bd),
232 BD_UNMAP_LEN(first_bd) + split_bd_len, DMA_TO_DEVICE);
233
234 /* Unmap the data of the skb frags */
235 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++, bds_consumed++) {
236 tx_data_bd = (struct eth_tx_bd *)
237 qed_chain_consume(&txq->tx_pbl);
238 dma_unmap_page(&edev->pdev->dev, BD_UNMAP_ADDR(tx_data_bd),
239 BD_UNMAP_LEN(tx_data_bd), DMA_TO_DEVICE);
240 }
241
242 while (bds_consumed++ < nbds)
243 qed_chain_consume(&txq->tx_pbl);
244
245 /* Free skb */
246 dev_kfree_skb_any(skb);
247 txq->sw_tx_ring[idx].skb = NULL;
248 txq->sw_tx_ring[idx].flags = 0;
249
250 return 0;
251}
252
253/* Unmap the data and free skb when mapping failed during start_xmit */
254static void qede_free_failed_tx_pkt(struct qede_dev *edev,
255 struct qede_tx_queue *txq,
256 struct eth_tx_1st_bd *first_bd,
257 int nbd,
258 bool data_split)
259{
260 u16 idx = txq->sw_tx_prod & NUM_TX_BDS_MAX;
261 struct sk_buff *skb = txq->sw_tx_ring[idx].skb;
262 struct eth_tx_bd *tx_data_bd;
263 int i, split_bd_len = 0;
264
265 /* Return prod to its position before this skb was handled */
266 qed_chain_set_prod(&txq->tx_pbl,
267 le16_to_cpu(txq->tx_db.data.bd_prod),
268 first_bd);
269
270 first_bd = (struct eth_tx_1st_bd *)qed_chain_produce(&txq->tx_pbl);
271
272 if (data_split) {
273 struct eth_tx_bd *split = (struct eth_tx_bd *)
274 qed_chain_produce(&txq->tx_pbl);
275 split_bd_len = BD_UNMAP_LEN(split);
276 nbd--;
277 }
278
279 dma_unmap_page(&edev->pdev->dev, BD_UNMAP_ADDR(first_bd),
280 BD_UNMAP_LEN(first_bd) + split_bd_len, DMA_TO_DEVICE);
281
282 /* Unmap the data of the skb frags */
283 for (i = 0; i < nbd; i++) {
284 tx_data_bd = (struct eth_tx_bd *)
285 qed_chain_produce(&txq->tx_pbl);
286 if (tx_data_bd->nbytes)
287 dma_unmap_page(&edev->pdev->dev,
288 BD_UNMAP_ADDR(tx_data_bd),
289 BD_UNMAP_LEN(tx_data_bd), DMA_TO_DEVICE);
290 }
291
292 /* Return again prod to its position before this skb was handled */
293 qed_chain_set_prod(&txq->tx_pbl,
294 le16_to_cpu(txq->tx_db.data.bd_prod),
295 first_bd);
296
297 /* Free skb */
298 dev_kfree_skb_any(skb);
299 txq->sw_tx_ring[idx].skb = NULL;
300 txq->sw_tx_ring[idx].flags = 0;
301}
302
303static u32 qede_xmit_type(struct qede_dev *edev,
304 struct sk_buff *skb,
305 int *ipv6_ext)
306{
307 u32 rc = XMIT_L4_CSUM;
308 __be16 l3_proto;
309
310 if (skb->ip_summed != CHECKSUM_PARTIAL)
311 return XMIT_PLAIN;
312
313 l3_proto = vlan_get_protocol(skb);
314 if (l3_proto == htons(ETH_P_IPV6) &&
315 (ipv6_hdr(skb)->nexthdr == NEXTHDR_IPV6))
316 *ipv6_ext = 1;
317
14db81de
MC
318 if (skb->encapsulation)
319 rc |= XMIT_ENC;
320
2950219d
YM
321 if (skb_is_gso(skb))
322 rc |= XMIT_LSO;
323
324 return rc;
325}
326
327static void qede_set_params_for_ipv6_ext(struct sk_buff *skb,
328 struct eth_tx_2nd_bd *second_bd,
329 struct eth_tx_3rd_bd *third_bd)
330{
331 u8 l4_proto;
fc48b7a6 332 u16 bd2_bits1 = 0, bd2_bits2 = 0;
2950219d 333
fc48b7a6 334 bd2_bits1 |= (1 << ETH_TX_DATA_2ND_BD_IPV6_EXT_SHIFT);
2950219d 335
fc48b7a6 336 bd2_bits2 |= ((((u8 *)skb_transport_header(skb) - skb->data) >> 1) &
2950219d
YM
337 ETH_TX_DATA_2ND_BD_L4_HDR_START_OFFSET_W_MASK)
338 << ETH_TX_DATA_2ND_BD_L4_HDR_START_OFFSET_W_SHIFT;
339
fc48b7a6 340 bd2_bits1 |= (ETH_L4_PSEUDO_CSUM_CORRECT_LENGTH <<
2950219d
YM
341 ETH_TX_DATA_2ND_BD_L4_PSEUDO_CSUM_MODE_SHIFT);
342
343 if (vlan_get_protocol(skb) == htons(ETH_P_IPV6))
344 l4_proto = ipv6_hdr(skb)->nexthdr;
345 else
346 l4_proto = ip_hdr(skb)->protocol;
347
348 if (l4_proto == IPPROTO_UDP)
fc48b7a6 349 bd2_bits1 |= 1 << ETH_TX_DATA_2ND_BD_L4_UDP_SHIFT;
2950219d 350
fc48b7a6 351 if (third_bd)
2950219d 352 third_bd->data.bitfields |=
fc48b7a6
YM
353 cpu_to_le16(((tcp_hdrlen(skb) / 4) &
354 ETH_TX_DATA_3RD_BD_TCP_HDR_LEN_DW_MASK) <<
355 ETH_TX_DATA_3RD_BD_TCP_HDR_LEN_DW_SHIFT);
2950219d 356
fc48b7a6 357 second_bd->data.bitfields1 = cpu_to_le16(bd2_bits1);
2950219d
YM
358 second_bd->data.bitfields2 = cpu_to_le16(bd2_bits2);
359}
360
361static int map_frag_to_bd(struct qede_dev *edev,
362 skb_frag_t *frag,
363 struct eth_tx_bd *bd)
364{
365 dma_addr_t mapping;
366
367 /* Map skb non-linear frag data for DMA */
368 mapping = skb_frag_dma_map(&edev->pdev->dev, frag, 0,
369 skb_frag_size(frag),
370 DMA_TO_DEVICE);
371 if (unlikely(dma_mapping_error(&edev->pdev->dev, mapping))) {
372 DP_NOTICE(edev, "Unable to map frag - dropping packet\n");
373 return -ENOMEM;
374 }
375
376 /* Setup the data pointer of the frag data */
377 BD_SET_UNMAP_ADDR_LEN(bd, mapping, skb_frag_size(frag));
378
379 return 0;
380}
381
14db81de
MC
382static u16 qede_get_skb_hlen(struct sk_buff *skb, bool is_encap_pkt)
383{
384 if (is_encap_pkt)
385 return (skb_inner_transport_header(skb) +
386 inner_tcp_hdrlen(skb) - skb->data);
387 else
388 return (skb_transport_header(skb) +
389 tcp_hdrlen(skb) - skb->data);
390}
391
b1199b10
YM
392/* +2 for 1st BD for headers and 2nd BD for headlen (if required) */
393#if ((MAX_SKB_FRAGS + 2) > ETH_TX_MAX_BDS_PER_NON_LSO_PACKET)
394static bool qede_pkt_req_lin(struct qede_dev *edev, struct sk_buff *skb,
395 u8 xmit_type)
396{
397 int allowed_frags = ETH_TX_MAX_BDS_PER_NON_LSO_PACKET - 1;
398
399 if (xmit_type & XMIT_LSO) {
400 int hlen;
401
14db81de 402 hlen = qede_get_skb_hlen(skb, xmit_type & XMIT_ENC);
b1199b10
YM
403
404 /* linear payload would require its own BD */
405 if (skb_headlen(skb) > hlen)
406 allowed_frags--;
407 }
408
409 return (skb_shinfo(skb)->nr_frags > allowed_frags);
410}
411#endif
412
2950219d
YM
413/* Main transmit function */
414static
415netdev_tx_t qede_start_xmit(struct sk_buff *skb,
416 struct net_device *ndev)
417{
418 struct qede_dev *edev = netdev_priv(ndev);
419 struct netdev_queue *netdev_txq;
420 struct qede_tx_queue *txq;
421 struct eth_tx_1st_bd *first_bd;
422 struct eth_tx_2nd_bd *second_bd = NULL;
423 struct eth_tx_3rd_bd *third_bd = NULL;
424 struct eth_tx_bd *tx_data_bd = NULL;
425 u16 txq_index;
426 u8 nbd = 0;
427 dma_addr_t mapping;
428 int rc, frag_idx = 0, ipv6_ext = 0;
429 u8 xmit_type;
430 u16 idx;
431 u16 hlen;
810810ff 432 bool data_split = false;
2950219d
YM
433
434 /* Get tx-queue context and netdev index */
435 txq_index = skb_get_queue_mapping(skb);
436 WARN_ON(txq_index >= QEDE_TSS_CNT(edev));
437 txq = QEDE_TX_QUEUE(edev, txq_index);
438 netdev_txq = netdev_get_tx_queue(ndev, txq_index);
439
2950219d
YM
440 WARN_ON(qed_chain_get_elem_left(&txq->tx_pbl) <
441 (MAX_SKB_FRAGS + 1));
442
443 xmit_type = qede_xmit_type(edev, skb, &ipv6_ext);
444
b1199b10
YM
445#if ((MAX_SKB_FRAGS + 2) > ETH_TX_MAX_BDS_PER_NON_LSO_PACKET)
446 if (qede_pkt_req_lin(edev, skb, xmit_type)) {
447 if (skb_linearize(skb)) {
448 DP_NOTICE(edev,
449 "SKB linearization failed - silently dropping this SKB\n");
450 dev_kfree_skb_any(skb);
451 return NETDEV_TX_OK;
452 }
453 }
454#endif
455
2950219d
YM
456 /* Fill the entry in the SW ring and the BDs in the FW ring */
457 idx = txq->sw_tx_prod & NUM_TX_BDS_MAX;
458 txq->sw_tx_ring[idx].skb = skb;
459 first_bd = (struct eth_tx_1st_bd *)
460 qed_chain_produce(&txq->tx_pbl);
461 memset(first_bd, 0, sizeof(*first_bd));
462 first_bd->data.bd_flags.bitfields =
463 1 << ETH_TX_1ST_BD_FLAGS_START_BD_SHIFT;
464
465 /* Map skb linear data for DMA and set in the first BD */
466 mapping = dma_map_single(&edev->pdev->dev, skb->data,
467 skb_headlen(skb), DMA_TO_DEVICE);
468 if (unlikely(dma_mapping_error(&edev->pdev->dev, mapping))) {
469 DP_NOTICE(edev, "SKB mapping failed\n");
470 qede_free_failed_tx_pkt(edev, txq, first_bd, 0, false);
471 return NETDEV_TX_OK;
472 }
473 nbd++;
474 BD_SET_UNMAP_ADDR_LEN(first_bd, mapping, skb_headlen(skb));
475
476 /* In case there is IPv6 with extension headers or LSO we need 2nd and
477 * 3rd BDs.
478 */
479 if (unlikely((xmit_type & XMIT_LSO) | ipv6_ext)) {
480 second_bd = (struct eth_tx_2nd_bd *)
481 qed_chain_produce(&txq->tx_pbl);
482 memset(second_bd, 0, sizeof(*second_bd));
483
484 nbd++;
485 third_bd = (struct eth_tx_3rd_bd *)
486 qed_chain_produce(&txq->tx_pbl);
487 memset(third_bd, 0, sizeof(*third_bd));
488
489 nbd++;
490 /* We need to fill in additional data in second_bd... */
491 tx_data_bd = (struct eth_tx_bd *)second_bd;
492 }
493
494 if (skb_vlan_tag_present(skb)) {
495 first_bd->data.vlan = cpu_to_le16(skb_vlan_tag_get(skb));
496 first_bd->data.bd_flags.bitfields |=
497 1 << ETH_TX_1ST_BD_FLAGS_VLAN_INSERTION_SHIFT;
498 }
499
500 /* Fill the parsing flags & params according to the requested offload */
501 if (xmit_type & XMIT_L4_CSUM) {
fc48b7a6
YM
502 u16 temp = 1 << ETH_TX_DATA_1ST_BD_TUNN_CFG_OVERRIDE_SHIFT;
503
2950219d
YM
504 /* We don't re-calculate IP checksum as it is already done by
505 * the upper stack
506 */
507 first_bd->data.bd_flags.bitfields |=
508 1 << ETH_TX_1ST_BD_FLAGS_L4_CSUM_SHIFT;
509
14db81de
MC
510 if (xmit_type & XMIT_ENC) {
511 first_bd->data.bd_flags.bitfields |=
512 1 << ETH_TX_1ST_BD_FLAGS_IP_CSUM_SHIFT;
513 } else {
514 /* In cases when OS doesn't indicate for inner offloads
515 * when packet is tunnelled, we need to override the HW
516 * tunnel configuration so that packets are treated as
517 * regular non tunnelled packets and no inner offloads
518 * are done by the hardware.
519 */
520 first_bd->data.bitfields |= cpu_to_le16(temp);
521 }
fc48b7a6 522
2950219d
YM
523 /* If the packet is IPv6 with extension header, indicate that
524 * to FW and pass few params, since the device cracker doesn't
525 * support parsing IPv6 with extension header/s.
526 */
527 if (unlikely(ipv6_ext))
528 qede_set_params_for_ipv6_ext(skb, second_bd, third_bd);
529 }
530
531 if (xmit_type & XMIT_LSO) {
532 first_bd->data.bd_flags.bitfields |=
533 (1 << ETH_TX_1ST_BD_FLAGS_LSO_SHIFT);
534 third_bd->data.lso_mss =
535 cpu_to_le16(skb_shinfo(skb)->gso_size);
536
14db81de
MC
537 if (unlikely(xmit_type & XMIT_ENC)) {
538 first_bd->data.bd_flags.bitfields |=
539 1 << ETH_TX_1ST_BD_FLAGS_TUNN_IP_CSUM_SHIFT;
540 hlen = qede_get_skb_hlen(skb, true);
541 } else {
542 first_bd->data.bd_flags.bitfields |=
543 1 << ETH_TX_1ST_BD_FLAGS_IP_CSUM_SHIFT;
544 hlen = qede_get_skb_hlen(skb, false);
545 }
2950219d
YM
546
547 /* @@@TBD - if will not be removed need to check */
548 third_bd->data.bitfields |=
fc48b7a6 549 cpu_to_le16((1 << ETH_TX_DATA_3RD_BD_HDR_NBD_SHIFT));
2950219d
YM
550
551 /* Make life easier for FW guys who can't deal with header and
552 * data on same BD. If we need to split, use the second bd...
553 */
554 if (unlikely(skb_headlen(skb) > hlen)) {
555 DP_VERBOSE(edev, NETIF_MSG_TX_QUEUED,
556 "TSO split header size is %d (%x:%x)\n",
557 first_bd->nbytes, first_bd->addr.hi,
558 first_bd->addr.lo);
559
560 mapping = HILO_U64(le32_to_cpu(first_bd->addr.hi),
561 le32_to_cpu(first_bd->addr.lo)) +
562 hlen;
563
564 BD_SET_UNMAP_ADDR_LEN(tx_data_bd, mapping,
565 le16_to_cpu(first_bd->nbytes) -
566 hlen);
567
568 /* this marks the BD as one that has no
569 * individual mapping
570 */
571 txq->sw_tx_ring[idx].flags |= QEDE_TSO_SPLIT_BD;
572
573 first_bd->nbytes = cpu_to_le16(hlen);
574
575 tx_data_bd = (struct eth_tx_bd *)third_bd;
576 data_split = true;
577 }
578 }
579
580 /* Handle fragmented skb */
581 /* special handle for frags inside 2nd and 3rd bds.. */
582 while (tx_data_bd && frag_idx < skb_shinfo(skb)->nr_frags) {
583 rc = map_frag_to_bd(edev,
584 &skb_shinfo(skb)->frags[frag_idx],
585 tx_data_bd);
586 if (rc) {
587 qede_free_failed_tx_pkt(edev, txq, first_bd, nbd,
588 data_split);
589 return NETDEV_TX_OK;
590 }
591
592 if (tx_data_bd == (struct eth_tx_bd *)second_bd)
593 tx_data_bd = (struct eth_tx_bd *)third_bd;
594 else
595 tx_data_bd = NULL;
596
597 frag_idx++;
598 }
599
600 /* map last frags into 4th, 5th .... */
601 for (; frag_idx < skb_shinfo(skb)->nr_frags; frag_idx++, nbd++) {
602 tx_data_bd = (struct eth_tx_bd *)
603 qed_chain_produce(&txq->tx_pbl);
604
605 memset(tx_data_bd, 0, sizeof(*tx_data_bd));
606
607 rc = map_frag_to_bd(edev,
608 &skb_shinfo(skb)->frags[frag_idx],
609 tx_data_bd);
610 if (rc) {
611 qede_free_failed_tx_pkt(edev, txq, first_bd, nbd,
612 data_split);
613 return NETDEV_TX_OK;
614 }
615 }
616
617 /* update the first BD with the actual num BDs */
618 first_bd->data.nbds = nbd;
619
620 netdev_tx_sent_queue(netdev_txq, skb->len);
621
622 skb_tx_timestamp(skb);
623
624 /* Advance packet producer only before sending the packet since mapping
625 * of pages may fail.
626 */
627 txq->sw_tx_prod++;
628
629 /* 'next page' entries are counted in the producer value */
630 txq->tx_db.data.bd_prod =
631 cpu_to_le16(qed_chain_get_prod_idx(&txq->tx_pbl));
632
633 /* wmb makes sure that the BDs data is updated before updating the
634 * producer, otherwise FW may read old data from the BDs.
635 */
636 wmb();
637 barrier();
638 writel(txq->tx_db.raw, txq->doorbell_addr);
639
640 /* mmiowb is needed to synchronize doorbell writes from more than one
641 * processor. It guarantees that the write arrives to the device before
642 * the queue lock is released and another start_xmit is called (possibly
643 * on another CPU). Without this barrier, the next doorbell can bypass
644 * this doorbell. This is applicable to IA64/Altix systems.
645 */
646 mmiowb();
647
648 if (unlikely(qed_chain_get_elem_left(&txq->tx_pbl)
649 < (MAX_SKB_FRAGS + 1))) {
650 netif_tx_stop_queue(netdev_txq);
651 DP_VERBOSE(edev, NETIF_MSG_TX_QUEUED,
652 "Stop queue was called\n");
653 /* paired memory barrier is in qede_tx_int(), we have to keep
654 * ordering of set_bit() in netif_tx_stop_queue() and read of
655 * fp->bd_tx_cons
656 */
657 smp_mb();
658
659 if (qed_chain_get_elem_left(&txq->tx_pbl)
660 >= (MAX_SKB_FRAGS + 1) &&
661 (edev->state == QEDE_STATE_OPEN)) {
662 netif_tx_wake_queue(netdev_txq);
663 DP_VERBOSE(edev, NETIF_MSG_TX_QUEUED,
664 "Wake queue was called\n");
665 }
666 }
667
668 return NETDEV_TX_OK;
669}
670
16f46bf0 671int qede_txq_has_work(struct qede_tx_queue *txq)
2950219d
YM
672{
673 u16 hw_bd_cons;
674
675 /* Tell compiler that consumer and producer can change */
676 barrier();
677 hw_bd_cons = le16_to_cpu(*txq->hw_cons_ptr);
678 if (qed_chain_get_cons_idx(&txq->tx_pbl) == hw_bd_cons + 1)
679 return 0;
680
681 return hw_bd_cons != qed_chain_get_cons_idx(&txq->tx_pbl);
682}
683
684static int qede_tx_int(struct qede_dev *edev,
685 struct qede_tx_queue *txq)
686{
687 struct netdev_queue *netdev_txq;
688 u16 hw_bd_cons;
689 unsigned int pkts_compl = 0, bytes_compl = 0;
690 int rc;
691
692 netdev_txq = netdev_get_tx_queue(edev->ndev, txq->index);
693
694 hw_bd_cons = le16_to_cpu(*txq->hw_cons_ptr);
695 barrier();
696
697 while (hw_bd_cons != qed_chain_get_cons_idx(&txq->tx_pbl)) {
698 int len = 0;
699
700 rc = qede_free_tx_pkt(edev, txq, &len);
701 if (rc) {
702 DP_NOTICE(edev, "hw_bd_cons = %d, chain_cons=%d\n",
703 hw_bd_cons,
704 qed_chain_get_cons_idx(&txq->tx_pbl));
705 break;
706 }
707
708 bytes_compl += len;
709 pkts_compl++;
710 txq->sw_tx_cons++;
711 }
712
713 netdev_tx_completed_queue(netdev_txq, pkts_compl, bytes_compl);
714
715 /* Need to make the tx_bd_cons update visible to start_xmit()
716 * before checking for netif_tx_queue_stopped(). Without the
717 * memory barrier, there is a small possibility that
718 * start_xmit() will miss it and cause the queue to be stopped
719 * forever.
720 * On the other hand we need an rmb() here to ensure the proper
721 * ordering of bit testing in the following
722 * netif_tx_queue_stopped(txq) call.
723 */
724 smp_mb();
725
726 if (unlikely(netif_tx_queue_stopped(netdev_txq))) {
727 /* Taking tx_lock is needed to prevent reenabling the queue
728 * while it's empty. This could have happen if rx_action() gets
729 * suspended in qede_tx_int() after the condition before
730 * netif_tx_wake_queue(), while tx_action (qede_start_xmit()):
731 *
732 * stops the queue->sees fresh tx_bd_cons->releases the queue->
733 * sends some packets consuming the whole queue again->
734 * stops the queue
735 */
736
737 __netif_tx_lock(netdev_txq, smp_processor_id());
738
739 if ((netif_tx_queue_stopped(netdev_txq)) &&
740 (edev->state == QEDE_STATE_OPEN) &&
741 (qed_chain_get_elem_left(&txq->tx_pbl)
742 >= (MAX_SKB_FRAGS + 1))) {
743 netif_tx_wake_queue(netdev_txq);
744 DP_VERBOSE(edev, NETIF_MSG_TX_DONE,
745 "Wake queue was called\n");
746 }
747
748 __netif_tx_unlock(netdev_txq);
749 }
750
751 return 0;
752}
753
16f46bf0 754bool qede_has_rx_work(struct qede_rx_queue *rxq)
2950219d
YM
755{
756 u16 hw_comp_cons, sw_comp_cons;
757
758 /* Tell compiler that status block fields can change */
759 barrier();
760
761 hw_comp_cons = le16_to_cpu(*rxq->hw_cons_ptr);
762 sw_comp_cons = qed_chain_get_cons_idx(&rxq->rx_comp_ring);
763
764 return hw_comp_cons != sw_comp_cons;
765}
766
767static bool qede_has_tx_work(struct qede_fastpath *fp)
768{
769 u8 tc;
770
771 for (tc = 0; tc < fp->edev->num_tc; tc++)
772 if (qede_txq_has_work(&fp->txqs[tc]))
773 return true;
774 return false;
775}
776
f86af2df
MC
777static inline void qede_rx_bd_ring_consume(struct qede_rx_queue *rxq)
778{
779 qed_chain_consume(&rxq->rx_bd_ring);
780 rxq->sw_rx_cons++;
781}
782
fc48b7a6
YM
783/* This function reuses the buffer(from an offset) from
784 * consumer index to producer index in the bd ring
2950219d 785 */
fc48b7a6
YM
786static inline void qede_reuse_page(struct qede_dev *edev,
787 struct qede_rx_queue *rxq,
788 struct sw_rx_data *curr_cons)
2950219d 789{
2950219d 790 struct eth_rx_bd *rx_bd_prod = qed_chain_produce(&rxq->rx_bd_ring);
fc48b7a6
YM
791 struct sw_rx_data *curr_prod;
792 dma_addr_t new_mapping;
2950219d 793
fc48b7a6
YM
794 curr_prod = &rxq->sw_rx_ring[rxq->sw_rx_prod & NUM_RX_BDS_MAX];
795 *curr_prod = *curr_cons;
2950219d 796
fc48b7a6
YM
797 new_mapping = curr_prod->mapping + curr_prod->page_offset;
798
799 rx_bd_prod->addr.hi = cpu_to_le32(upper_32_bits(new_mapping));
800 rx_bd_prod->addr.lo = cpu_to_le32(lower_32_bits(new_mapping));
2950219d 801
2950219d 802 rxq->sw_rx_prod++;
fc48b7a6
YM
803 curr_cons->data = NULL;
804}
805
f86af2df
MC
806/* In case of allocation failures reuse buffers
807 * from consumer index to produce buffers for firmware
808 */
16f46bf0
SRK
809void qede_recycle_rx_bd_ring(struct qede_rx_queue *rxq,
810 struct qede_dev *edev, u8 count)
f86af2df
MC
811{
812 struct sw_rx_data *curr_cons;
813
814 for (; count > 0; count--) {
815 curr_cons = &rxq->sw_rx_ring[rxq->sw_rx_cons & NUM_RX_BDS_MAX];
816 qede_reuse_page(edev, rxq, curr_cons);
817 qede_rx_bd_ring_consume(rxq);
818 }
819}
820
fc48b7a6
YM
821static inline int qede_realloc_rx_buffer(struct qede_dev *edev,
822 struct qede_rx_queue *rxq,
823 struct sw_rx_data *curr_cons)
824{
825 /* Move to the next segment in the page */
826 curr_cons->page_offset += rxq->rx_buf_seg_size;
827
828 if (curr_cons->page_offset == PAGE_SIZE) {
f86af2df
MC
829 if (unlikely(qede_alloc_rx_buffer(edev, rxq))) {
830 /* Since we failed to allocate new buffer
831 * current buffer can be used again.
832 */
833 curr_cons->page_offset -= rxq->rx_buf_seg_size;
834
fc48b7a6 835 return -ENOMEM;
f86af2df 836 }
fc48b7a6
YM
837
838 dma_unmap_page(&edev->pdev->dev, curr_cons->mapping,
839 PAGE_SIZE, DMA_FROM_DEVICE);
840 } else {
841 /* Increment refcount of the page as we don't want
842 * network stack to take the ownership of the page
843 * which can be recycled multiple times by the driver.
844 */
845 atomic_inc(&curr_cons->data->_count);
846 qede_reuse_page(edev, rxq, curr_cons);
847 }
848
849 return 0;
2950219d
YM
850}
851
852static inline void qede_update_rx_prod(struct qede_dev *edev,
853 struct qede_rx_queue *rxq)
854{
855 u16 bd_prod = qed_chain_get_prod_idx(&rxq->rx_bd_ring);
856 u16 cqe_prod = qed_chain_get_prod_idx(&rxq->rx_comp_ring);
857 struct eth_rx_prod_data rx_prods = {0};
858
859 /* Update producers */
860 rx_prods.bd_prod = cpu_to_le16(bd_prod);
861 rx_prods.cqe_prod = cpu_to_le16(cqe_prod);
862
863 /* Make sure that the BD and SGE data is updated before updating the
864 * producers since FW might read the BD/SGE right after the producer
865 * is updated.
866 */
867 wmb();
868
869 internal_ram_wr(rxq->hw_rxq_prod_addr, sizeof(rx_prods),
870 (u32 *)&rx_prods);
871
872 /* mmiowb is needed to synchronize doorbell writes from more than one
873 * processor. It guarantees that the write arrives to the device before
874 * the napi lock is released and another qede_poll is called (possibly
875 * on another CPU). Without this barrier, the next doorbell can bypass
876 * this doorbell. This is applicable to IA64/Altix systems.
877 */
878 mmiowb();
879}
880
881static u32 qede_get_rxhash(struct qede_dev *edev,
882 u8 bitfields,
883 __le32 rss_hash,
884 enum pkt_hash_types *rxhash_type)
885{
886 enum rss_hash_type htype;
887
888 htype = GET_FIELD(bitfields, ETH_FAST_PATH_RX_REG_CQE_RSS_HASH_TYPE);
889
890 if ((edev->ndev->features & NETIF_F_RXHASH) && htype) {
891 *rxhash_type = ((htype == RSS_HASH_TYPE_IPV4) ||
892 (htype == RSS_HASH_TYPE_IPV6)) ?
893 PKT_HASH_TYPE_L3 : PKT_HASH_TYPE_L4;
894 return le32_to_cpu(rss_hash);
895 }
896 *rxhash_type = PKT_HASH_TYPE_NONE;
897 return 0;
898}
899
900static void qede_set_skb_csum(struct sk_buff *skb, u8 csum_flag)
901{
902 skb_checksum_none_assert(skb);
903
904 if (csum_flag & QEDE_CSUM_UNNECESSARY)
905 skb->ip_summed = CHECKSUM_UNNECESSARY;
14db81de
MC
906
907 if (csum_flag & QEDE_TUNN_CSUM_UNNECESSARY)
908 skb->csum_level = 1;
2950219d
YM
909}
910
911static inline void qede_skb_receive(struct qede_dev *edev,
912 struct qede_fastpath *fp,
913 struct sk_buff *skb,
914 u16 vlan_tag)
915{
916 if (vlan_tag)
917 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
918 vlan_tag);
919
920 napi_gro_receive(&fp->napi, skb);
921}
922
55482edc
MC
923static void qede_set_gro_params(struct qede_dev *edev,
924 struct sk_buff *skb,
925 struct eth_fast_path_rx_tpa_start_cqe *cqe)
926{
927 u16 parsing_flags = le16_to_cpu(cqe->pars_flags.flags);
928
929 if (((parsing_flags >> PARSING_AND_ERR_FLAGS_L3TYPE_SHIFT) &
930 PARSING_AND_ERR_FLAGS_L3TYPE_MASK) == 2)
931 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
932 else
933 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
934
935 skb_shinfo(skb)->gso_size = __le16_to_cpu(cqe->len_on_first_bd) -
936 cqe->header_len;
937}
938
939static int qede_fill_frag_skb(struct qede_dev *edev,
940 struct qede_rx_queue *rxq,
941 u8 tpa_agg_index,
942 u16 len_on_bd)
943{
944 struct sw_rx_data *current_bd = &rxq->sw_rx_ring[rxq->sw_rx_cons &
945 NUM_RX_BDS_MAX];
946 struct qede_agg_info *tpa_info = &rxq->tpa_info[tpa_agg_index];
947 struct sk_buff *skb = tpa_info->skb;
948
949 if (unlikely(tpa_info->agg_state != QEDE_AGG_STATE_START))
950 goto out;
951
952 /* Add one frag and update the appropriate fields in the skb */
953 skb_fill_page_desc(skb, tpa_info->frag_id++,
954 current_bd->data, current_bd->page_offset,
955 len_on_bd);
956
957 if (unlikely(qede_realloc_rx_buffer(edev, rxq, current_bd))) {
f86af2df
MC
958 /* Incr page ref count to reuse on allocation failure
959 * so that it doesn't get freed while freeing SKB.
960 */
961 atomic_inc(&current_bd->data->_count);
55482edc
MC
962 goto out;
963 }
964
965 qed_chain_consume(&rxq->rx_bd_ring);
966 rxq->sw_rx_cons++;
967
968 skb->data_len += len_on_bd;
969 skb->truesize += rxq->rx_buf_seg_size;
970 skb->len += len_on_bd;
971
972 return 0;
973
974out:
f86af2df
MC
975 tpa_info->agg_state = QEDE_AGG_STATE_ERROR;
976 qede_recycle_rx_bd_ring(rxq, edev, 1);
55482edc
MC
977 return -ENOMEM;
978}
979
980static void qede_tpa_start(struct qede_dev *edev,
981 struct qede_rx_queue *rxq,
982 struct eth_fast_path_rx_tpa_start_cqe *cqe)
983{
984 struct qede_agg_info *tpa_info = &rxq->tpa_info[cqe->tpa_agg_index];
985 struct eth_rx_bd *rx_bd_cons = qed_chain_consume(&rxq->rx_bd_ring);
986 struct eth_rx_bd *rx_bd_prod = qed_chain_produce(&rxq->rx_bd_ring);
987 struct sw_rx_data *replace_buf = &tpa_info->replace_buf;
988 dma_addr_t mapping = tpa_info->replace_buf_mapping;
989 struct sw_rx_data *sw_rx_data_cons;
990 struct sw_rx_data *sw_rx_data_prod;
991 enum pkt_hash_types rxhash_type;
992 u32 rxhash;
993
994 sw_rx_data_cons = &rxq->sw_rx_ring[rxq->sw_rx_cons & NUM_RX_BDS_MAX];
995 sw_rx_data_prod = &rxq->sw_rx_ring[rxq->sw_rx_prod & NUM_RX_BDS_MAX];
996
997 /* Use pre-allocated replacement buffer - we can't release the agg.
998 * start until its over and we don't want to risk allocation failing
999 * here, so re-allocate when aggregation will be over.
1000 */
1001 dma_unmap_addr_set(sw_rx_data_prod, mapping,
1002 dma_unmap_addr(replace_buf, mapping));
1003
1004 sw_rx_data_prod->data = replace_buf->data;
1005 rx_bd_prod->addr.hi = cpu_to_le32(upper_32_bits(mapping));
1006 rx_bd_prod->addr.lo = cpu_to_le32(lower_32_bits(mapping));
1007 sw_rx_data_prod->page_offset = replace_buf->page_offset;
1008
1009 rxq->sw_rx_prod++;
1010
1011 /* move partial skb from cons to pool (don't unmap yet)
1012 * save mapping, incase we drop the packet later on.
1013 */
1014 tpa_info->start_buf = *sw_rx_data_cons;
1015 mapping = HILO_U64(le32_to_cpu(rx_bd_cons->addr.hi),
1016 le32_to_cpu(rx_bd_cons->addr.lo));
1017
1018 tpa_info->start_buf_mapping = mapping;
1019 rxq->sw_rx_cons++;
1020
1021 /* set tpa state to start only if we are able to allocate skb
1022 * for this aggregation, otherwise mark as error and aggregation will
1023 * be dropped
1024 */
1025 tpa_info->skb = netdev_alloc_skb(edev->ndev,
1026 le16_to_cpu(cqe->len_on_first_bd));
1027 if (unlikely(!tpa_info->skb)) {
f86af2df 1028 DP_NOTICE(edev, "Failed to allocate SKB for gro\n");
55482edc 1029 tpa_info->agg_state = QEDE_AGG_STATE_ERROR;
f86af2df 1030 goto cons_buf;
55482edc
MC
1031 }
1032
1033 skb_put(tpa_info->skb, le16_to_cpu(cqe->len_on_first_bd));
1034 memcpy(&tpa_info->start_cqe, cqe, sizeof(tpa_info->start_cqe));
1035
1036 /* Start filling in the aggregation info */
1037 tpa_info->frag_id = 0;
1038 tpa_info->agg_state = QEDE_AGG_STATE_START;
1039
1040 rxhash = qede_get_rxhash(edev, cqe->bitfields,
1041 cqe->rss_hash, &rxhash_type);
1042 skb_set_hash(tpa_info->skb, rxhash, rxhash_type);
1043 if ((le16_to_cpu(cqe->pars_flags.flags) >>
1044 PARSING_AND_ERR_FLAGS_TAG8021QEXIST_SHIFT) &
1045 PARSING_AND_ERR_FLAGS_TAG8021QEXIST_MASK)
1046 tpa_info->vlan_tag = le16_to_cpu(cqe->vlan_tag);
1047 else
1048 tpa_info->vlan_tag = 0;
1049
1050 /* This is needed in order to enable forwarding support */
1051 qede_set_gro_params(edev, tpa_info->skb, cqe);
1052
f86af2df 1053cons_buf: /* We still need to handle bd_len_list to consume buffers */
55482edc
MC
1054 if (likely(cqe->ext_bd_len_list[0]))
1055 qede_fill_frag_skb(edev, rxq, cqe->tpa_agg_index,
1056 le16_to_cpu(cqe->ext_bd_len_list[0]));
1057
1058 if (unlikely(cqe->ext_bd_len_list[1])) {
1059 DP_ERR(edev,
1060 "Unlikely - got a TPA aggregation with more than one ext_bd_len_list entry in the TPA start\n");
1061 tpa_info->agg_state = QEDE_AGG_STATE_ERROR;
1062 }
1063}
1064
88f09bd5 1065#ifdef CONFIG_INET
55482edc
MC
1066static void qede_gro_ip_csum(struct sk_buff *skb)
1067{
1068 const struct iphdr *iph = ip_hdr(skb);
1069 struct tcphdr *th;
1070
55482edc
MC
1071 skb_set_transport_header(skb, sizeof(struct iphdr));
1072 th = tcp_hdr(skb);
1073
1074 th->check = ~tcp_v4_check(skb->len - skb_transport_offset(skb),
1075 iph->saddr, iph->daddr, 0);
1076
1077 tcp_gro_complete(skb);
1078}
1079
1080static void qede_gro_ipv6_csum(struct sk_buff *skb)
1081{
1082 struct ipv6hdr *iph = ipv6_hdr(skb);
1083 struct tcphdr *th;
1084
55482edc
MC
1085 skb_set_transport_header(skb, sizeof(struct ipv6hdr));
1086 th = tcp_hdr(skb);
1087
1088 th->check = ~tcp_v6_check(skb->len - skb_transport_offset(skb),
1089 &iph->saddr, &iph->daddr, 0);
1090 tcp_gro_complete(skb);
1091}
88f09bd5 1092#endif
55482edc
MC
1093
1094static void qede_gro_receive(struct qede_dev *edev,
1095 struct qede_fastpath *fp,
1096 struct sk_buff *skb,
1097 u16 vlan_tag)
1098{
ee2fa8e6
MC
1099 /* FW can send a single MTU sized packet from gro flow
1100 * due to aggregation timeout/last segment etc. which
1101 * is not expected to be a gro packet. If a skb has zero
1102 * frags then simply push it in the stack as non gso skb.
1103 */
1104 if (unlikely(!skb->data_len)) {
1105 skb_shinfo(skb)->gso_type = 0;
1106 skb_shinfo(skb)->gso_size = 0;
1107 goto send_skb;
1108 }
1109
88f09bd5 1110#ifdef CONFIG_INET
55482edc 1111 if (skb_shinfo(skb)->gso_size) {
aad94c04
MC
1112 skb_set_network_header(skb, 0);
1113
55482edc
MC
1114 switch (skb->protocol) {
1115 case htons(ETH_P_IP):
1116 qede_gro_ip_csum(skb);
1117 break;
1118 case htons(ETH_P_IPV6):
1119 qede_gro_ipv6_csum(skb);
1120 break;
1121 default:
1122 DP_ERR(edev,
1123 "Error: FW GRO supports only IPv4/IPv6, not 0x%04x\n",
1124 ntohs(skb->protocol));
1125 }
1126 }
88f09bd5 1127#endif
ee2fa8e6
MC
1128
1129send_skb:
55482edc
MC
1130 skb_record_rx_queue(skb, fp->rss_id);
1131 qede_skb_receive(edev, fp, skb, vlan_tag);
1132}
1133
1134static inline void qede_tpa_cont(struct qede_dev *edev,
1135 struct qede_rx_queue *rxq,
1136 struct eth_fast_path_rx_tpa_cont_cqe *cqe)
1137{
1138 int i;
1139
1140 for (i = 0; cqe->len_list[i]; i++)
1141 qede_fill_frag_skb(edev, rxq, cqe->tpa_agg_index,
1142 le16_to_cpu(cqe->len_list[i]));
1143
1144 if (unlikely(i > 1))
1145 DP_ERR(edev,
1146 "Strange - TPA cont with more than a single len_list entry\n");
1147}
1148
1149static void qede_tpa_end(struct qede_dev *edev,
1150 struct qede_fastpath *fp,
1151 struct eth_fast_path_rx_tpa_end_cqe *cqe)
1152{
1153 struct qede_rx_queue *rxq = fp->rxq;
1154 struct qede_agg_info *tpa_info;
1155 struct sk_buff *skb;
1156 int i;
1157
1158 tpa_info = &rxq->tpa_info[cqe->tpa_agg_index];
1159 skb = tpa_info->skb;
1160
1161 for (i = 0; cqe->len_list[i]; i++)
1162 qede_fill_frag_skb(edev, rxq, cqe->tpa_agg_index,
1163 le16_to_cpu(cqe->len_list[i]));
1164 if (unlikely(i > 1))
1165 DP_ERR(edev,
1166 "Strange - TPA emd with more than a single len_list entry\n");
1167
1168 if (unlikely(tpa_info->agg_state != QEDE_AGG_STATE_START))
1169 goto err;
1170
1171 /* Sanity */
1172 if (unlikely(cqe->num_of_bds != tpa_info->frag_id + 1))
1173 DP_ERR(edev,
1174 "Strange - TPA had %02x BDs, but SKB has only %d frags\n",
1175 cqe->num_of_bds, tpa_info->frag_id);
1176 if (unlikely(skb->len != le16_to_cpu(cqe->total_packet_len)))
1177 DP_ERR(edev,
1178 "Strange - total packet len [cqe] is %4x but SKB has len %04x\n",
1179 le16_to_cpu(cqe->total_packet_len), skb->len);
1180
1181 memcpy(skb->data,
1182 page_address(tpa_info->start_buf.data) +
1183 tpa_info->start_cqe.placement_offset +
1184 tpa_info->start_buf.page_offset,
1185 le16_to_cpu(tpa_info->start_cqe.len_on_first_bd));
1186
1187 /* Recycle [mapped] start buffer for the next replacement */
1188 tpa_info->replace_buf = tpa_info->start_buf;
1189 tpa_info->replace_buf_mapping = tpa_info->start_buf_mapping;
1190
1191 /* Finalize the SKB */
1192 skb->protocol = eth_type_trans(skb, edev->ndev);
1193 skb->ip_summed = CHECKSUM_UNNECESSARY;
1194
1195 /* tcp_gro_complete() will copy NAPI_GRO_CB(skb)->count
1196 * to skb_shinfo(skb)->gso_segs
1197 */
1198 NAPI_GRO_CB(skb)->count = le16_to_cpu(cqe->num_of_coalesced_segs);
1199
1200 qede_gro_receive(edev, fp, skb, tpa_info->vlan_tag);
1201
1202 tpa_info->agg_state = QEDE_AGG_STATE_NONE;
1203
1204 return;
1205err:
1206 /* The BD starting the aggregation is still mapped; Re-use it for
1207 * future aggregations [as replacement buffer]
1208 */
1209 memcpy(&tpa_info->replace_buf, &tpa_info->start_buf,
1210 sizeof(struct sw_rx_data));
1211 tpa_info->replace_buf_mapping = tpa_info->start_buf_mapping;
1212 tpa_info->start_buf.data = NULL;
1213 tpa_info->agg_state = QEDE_AGG_STATE_NONE;
1214 dev_kfree_skb_any(tpa_info->skb);
1215 tpa_info->skb = NULL;
1216}
1217
14db81de
MC
1218static bool qede_tunn_exist(u16 flag)
1219{
1220 return !!(flag & (PARSING_AND_ERR_FLAGS_TUNNELEXIST_MASK <<
1221 PARSING_AND_ERR_FLAGS_TUNNELEXIST_SHIFT));
1222}
1223
1224static u8 qede_check_tunn_csum(u16 flag)
1225{
1226 u16 csum_flag = 0;
1227 u8 tcsum = 0;
1228
1229 if (flag & (PARSING_AND_ERR_FLAGS_TUNNELL4CHKSMWASCALCULATED_MASK <<
1230 PARSING_AND_ERR_FLAGS_TUNNELL4CHKSMWASCALCULATED_SHIFT))
1231 csum_flag |= PARSING_AND_ERR_FLAGS_TUNNELL4CHKSMERROR_MASK <<
1232 PARSING_AND_ERR_FLAGS_TUNNELL4CHKSMERROR_SHIFT;
1233
1234 if (flag & (PARSING_AND_ERR_FLAGS_L4CHKSMWASCALCULATED_MASK <<
1235 PARSING_AND_ERR_FLAGS_L4CHKSMWASCALCULATED_SHIFT)) {
1236 csum_flag |= PARSING_AND_ERR_FLAGS_L4CHKSMERROR_MASK <<
1237 PARSING_AND_ERR_FLAGS_L4CHKSMERROR_SHIFT;
1238 tcsum = QEDE_TUNN_CSUM_UNNECESSARY;
1239 }
1240
1241 csum_flag |= PARSING_AND_ERR_FLAGS_TUNNELIPHDRERROR_MASK <<
1242 PARSING_AND_ERR_FLAGS_TUNNELIPHDRERROR_SHIFT |
1243 PARSING_AND_ERR_FLAGS_IPHDRERROR_MASK <<
1244 PARSING_AND_ERR_FLAGS_IPHDRERROR_SHIFT;
1245
1246 if (csum_flag & flag)
1247 return QEDE_CSUM_ERROR;
1248
1249 return QEDE_CSUM_UNNECESSARY | tcsum;
1250}
1251
1252static u8 qede_check_notunn_csum(u16 flag)
2950219d
YM
1253{
1254 u16 csum_flag = 0;
1255 u8 csum = 0;
1256
14db81de
MC
1257 if (flag & (PARSING_AND_ERR_FLAGS_L4CHKSMWASCALCULATED_MASK <<
1258 PARSING_AND_ERR_FLAGS_L4CHKSMWASCALCULATED_SHIFT)) {
2950219d
YM
1259 csum_flag |= PARSING_AND_ERR_FLAGS_L4CHKSMERROR_MASK <<
1260 PARSING_AND_ERR_FLAGS_L4CHKSMERROR_SHIFT;
1261 csum = QEDE_CSUM_UNNECESSARY;
1262 }
1263
1264 csum_flag |= PARSING_AND_ERR_FLAGS_IPHDRERROR_MASK <<
1265 PARSING_AND_ERR_FLAGS_IPHDRERROR_SHIFT;
1266
1267 if (csum_flag & flag)
1268 return QEDE_CSUM_ERROR;
1269
1270 return csum;
1271}
1272
14db81de
MC
1273static u8 qede_check_csum(u16 flag)
1274{
1275 if (!qede_tunn_exist(flag))
1276 return qede_check_notunn_csum(flag);
1277 else
1278 return qede_check_tunn_csum(flag);
1279}
1280
2950219d
YM
1281static int qede_rx_int(struct qede_fastpath *fp, int budget)
1282{
1283 struct qede_dev *edev = fp->edev;
1284 struct qede_rx_queue *rxq = fp->rxq;
1285
1286 u16 hw_comp_cons, sw_comp_cons, sw_rx_index, parse_flag;
1287 int rx_pkt = 0;
1288 u8 csum_flag;
1289
1290 hw_comp_cons = le16_to_cpu(*rxq->hw_cons_ptr);
1291 sw_comp_cons = qed_chain_get_cons_idx(&rxq->rx_comp_ring);
1292
1293 /* Memory barrier to prevent the CPU from doing speculative reads of CQE
1294 * / BD in the while-loop before reading hw_comp_cons. If the CQE is
1295 * read before it is written by FW, then FW writes CQE and SB, and then
1296 * the CPU reads the hw_comp_cons, it will use an old CQE.
1297 */
1298 rmb();
1299
1300 /* Loop to complete all indicated BDs */
1301 while (sw_comp_cons != hw_comp_cons) {
1302 struct eth_fast_path_rx_reg_cqe *fp_cqe;
1303 enum pkt_hash_types rxhash_type;
1304 enum eth_rx_cqe_type cqe_type;
1305 struct sw_rx_data *sw_rx_data;
1306 union eth_rx_cqe *cqe;
1307 struct sk_buff *skb;
fc48b7a6
YM
1308 struct page *data;
1309 __le16 flags;
2950219d
YM
1310 u16 len, pad;
1311 u32 rx_hash;
2950219d
YM
1312
1313 /* Get the CQE from the completion ring */
1314 cqe = (union eth_rx_cqe *)
1315 qed_chain_consume(&rxq->rx_comp_ring);
1316 cqe_type = cqe->fast_path_regular.type;
1317
1318 if (unlikely(cqe_type == ETH_RX_CQE_TYPE_SLOW_PATH)) {
1319 edev->ops->eth_cqe_completion(
1320 edev->cdev, fp->rss_id,
1321 (struct eth_slow_path_rx_cqe *)cqe);
1322 goto next_cqe;
1323 }
1324
55482edc
MC
1325 if (cqe_type != ETH_RX_CQE_TYPE_REGULAR) {
1326 switch (cqe_type) {
1327 case ETH_RX_CQE_TYPE_TPA_START:
1328 qede_tpa_start(edev, rxq,
1329 &cqe->fast_path_tpa_start);
1330 goto next_cqe;
1331 case ETH_RX_CQE_TYPE_TPA_CONT:
1332 qede_tpa_cont(edev, rxq,
1333 &cqe->fast_path_tpa_cont);
1334 goto next_cqe;
1335 case ETH_RX_CQE_TYPE_TPA_END:
1336 qede_tpa_end(edev, fp,
1337 &cqe->fast_path_tpa_end);
1338 goto next_rx_only;
1339 default:
1340 break;
1341 }
1342 }
1343
2950219d
YM
1344 /* Get the data from the SW ring */
1345 sw_rx_index = rxq->sw_rx_cons & NUM_RX_BDS_MAX;
1346 sw_rx_data = &rxq->sw_rx_ring[sw_rx_index];
1347 data = sw_rx_data->data;
1348
1349 fp_cqe = &cqe->fast_path_regular;
fc48b7a6 1350 len = le16_to_cpu(fp_cqe->len_on_first_bd);
2950219d 1351 pad = fp_cqe->placement_offset;
fc48b7a6 1352 flags = cqe->fast_path_regular.pars_flags.flags;
2950219d 1353
fc48b7a6
YM
1354 /* If this is an error packet then drop it */
1355 parse_flag = le16_to_cpu(flags);
2950219d 1356
fc48b7a6
YM
1357 csum_flag = qede_check_csum(parse_flag);
1358 if (unlikely(csum_flag == QEDE_CSUM_ERROR)) {
1359 DP_NOTICE(edev,
1360 "CQE in CONS = %u has error, flags = %x, dropping incoming packet\n",
1361 sw_comp_cons, parse_flag);
1362 rxq->rx_hw_errors++;
f86af2df
MC
1363 qede_recycle_rx_bd_ring(rxq, edev, fp_cqe->bd_num);
1364 goto next_cqe;
fc48b7a6 1365 }
2950219d 1366
fc48b7a6
YM
1367 skb = netdev_alloc_skb(edev->ndev, QEDE_RX_HDR_SIZE);
1368 if (unlikely(!skb)) {
2950219d 1369 DP_NOTICE(edev,
fc48b7a6 1370 "Build_skb failed, dropping incoming packet\n");
f86af2df 1371 qede_recycle_rx_bd_ring(rxq, edev, fp_cqe->bd_num);
2950219d 1372 rxq->rx_alloc_errors++;
f86af2df 1373 goto next_cqe;
fc48b7a6
YM
1374 }
1375
1376 /* Copy data into SKB */
1377 if (len + pad <= QEDE_RX_HDR_SIZE) {
1378 memcpy(skb_put(skb, len),
1379 page_address(data) + pad +
1380 sw_rx_data->page_offset, len);
1381 qede_reuse_page(edev, rxq, sw_rx_data);
1382 } else {
1383 struct skb_frag_struct *frag;
1384 unsigned int pull_len;
1385 unsigned char *va;
1386
1387 frag = &skb_shinfo(skb)->frags[0];
1388
1389 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, data,
1390 pad + sw_rx_data->page_offset,
1391 len, rxq->rx_buf_seg_size);
1392
1393 va = skb_frag_address(frag);
1394 pull_len = eth_get_headlen(va, QEDE_RX_HDR_SIZE);
1395
1396 /* Align the pull_len to optimize memcpy */
1397 memcpy(skb->data, va, ALIGN(pull_len, sizeof(long)));
1398
1399 skb_frag_size_sub(frag, pull_len);
1400 frag->page_offset += pull_len;
1401 skb->data_len -= pull_len;
1402 skb->tail += pull_len;
1403
1404 if (unlikely(qede_realloc_rx_buffer(edev, rxq,
1405 sw_rx_data))) {
1406 DP_ERR(edev, "Failed to allocate rx buffer\n");
f86af2df
MC
1407 /* Incr page ref count to reuse on allocation
1408 * failure so that it doesn't get freed while
1409 * freeing SKB.
1410 */
1411
1412 atomic_inc(&sw_rx_data->data->_count);
fc48b7a6 1413 rxq->rx_alloc_errors++;
f86af2df
MC
1414 qede_recycle_rx_bd_ring(rxq, edev,
1415 fp_cqe->bd_num);
1416 dev_kfree_skb_any(skb);
fc48b7a6
YM
1417 goto next_cqe;
1418 }
2950219d
YM
1419 }
1420
f86af2df
MC
1421 qede_rx_bd_ring_consume(rxq);
1422
fc48b7a6
YM
1423 if (fp_cqe->bd_num != 1) {
1424 u16 pkt_len = le16_to_cpu(fp_cqe->pkt_len);
1425 u8 num_frags;
1426
1427 pkt_len -= len;
1428
1429 for (num_frags = fp_cqe->bd_num - 1; num_frags > 0;
1430 num_frags--) {
1431 u16 cur_size = pkt_len > rxq->rx_buf_size ?
1432 rxq->rx_buf_size : pkt_len;
f86af2df
MC
1433 if (unlikely(!cur_size)) {
1434 DP_ERR(edev,
1435 "Still got %d BDs for mapping jumbo, but length became 0\n",
1436 num_frags);
1437 qede_recycle_rx_bd_ring(rxq, edev,
1438 num_frags);
1439 dev_kfree_skb_any(skb);
1440 goto next_cqe;
1441 }
fc48b7a6 1442
f86af2df
MC
1443 if (unlikely(qede_alloc_rx_buffer(edev, rxq))) {
1444 qede_recycle_rx_bd_ring(rxq, edev,
1445 num_frags);
1446 dev_kfree_skb_any(skb);
fc48b7a6 1447 goto next_cqe;
f86af2df 1448 }
fc48b7a6 1449
fc48b7a6
YM
1450 sw_rx_index = rxq->sw_rx_cons & NUM_RX_BDS_MAX;
1451 sw_rx_data = &rxq->sw_rx_ring[sw_rx_index];
f86af2df
MC
1452 qede_rx_bd_ring_consume(rxq);
1453
fc48b7a6
YM
1454 dma_unmap_page(&edev->pdev->dev,
1455 sw_rx_data->mapping,
1456 PAGE_SIZE, DMA_FROM_DEVICE);
1457
1458 skb_fill_page_desc(skb,
1459 skb_shinfo(skb)->nr_frags++,
1460 sw_rx_data->data, 0,
1461 cur_size);
1462
1463 skb->truesize += PAGE_SIZE;
1464 skb->data_len += cur_size;
1465 skb->len += cur_size;
1466 pkt_len -= cur_size;
1467 }
2950219d 1468
f86af2df 1469 if (unlikely(pkt_len))
fc48b7a6
YM
1470 DP_ERR(edev,
1471 "Mapped all BDs of jumbo, but still have %d bytes\n",
1472 pkt_len);
1473 }
2950219d
YM
1474
1475 skb->protocol = eth_type_trans(skb, edev->ndev);
1476
1477 rx_hash = qede_get_rxhash(edev, fp_cqe->bitfields,
1478 fp_cqe->rss_hash,
1479 &rxhash_type);
1480
1481 skb_set_hash(skb, rx_hash, rxhash_type);
1482
1483 qede_set_skb_csum(skb, csum_flag);
1484
1485 skb_record_rx_queue(skb, fp->rss_id);
1486
1487 qede_skb_receive(edev, fp, skb, le16_to_cpu(fp_cqe->vlan_tag));
55482edc 1488next_rx_only:
2950219d
YM
1489 rx_pkt++;
1490
1491next_cqe: /* don't consume bd rx buffer */
1492 qed_chain_recycle_consumed(&rxq->rx_comp_ring);
1493 sw_comp_cons = qed_chain_get_cons_idx(&rxq->rx_comp_ring);
1494 /* CR TPA - revisit how to handle budget in TPA perhaps
1495 * increase on "end"
1496 */
1497 if (rx_pkt == budget)
1498 break;
1499 } /* repeat while sw_comp_cons != hw_comp_cons... */
1500
1501 /* Update producers */
1502 qede_update_rx_prod(edev, rxq);
1503
1504 return rx_pkt;
1505}
1506
1507static int qede_poll(struct napi_struct *napi, int budget)
1508{
1509 int work_done = 0;
1510 struct qede_fastpath *fp = container_of(napi, struct qede_fastpath,
1511 napi);
1512 struct qede_dev *edev = fp->edev;
1513
1514 while (1) {
1515 u8 tc;
1516
1517 for (tc = 0; tc < edev->num_tc; tc++)
1518 if (qede_txq_has_work(&fp->txqs[tc]))
1519 qede_tx_int(edev, &fp->txqs[tc]);
1520
1521 if (qede_has_rx_work(fp->rxq)) {
1522 work_done += qede_rx_int(fp, budget - work_done);
1523
1524 /* must not complete if we consumed full budget */
1525 if (work_done >= budget)
1526 break;
1527 }
1528
1529 /* Fall out from the NAPI loop if needed */
1530 if (!(qede_has_rx_work(fp->rxq) || qede_has_tx_work(fp))) {
1531 qed_sb_update_sb_idx(fp->sb_info);
1532 /* *_has_*_work() reads the status block,
1533 * thus we need to ensure that status block indices
1534 * have been actually read (qed_sb_update_sb_idx)
1535 * prior to this check (*_has_*_work) so that
1536 * we won't write the "newer" value of the status block
1537 * to HW (if there was a DMA right after
1538 * qede_has_rx_work and if there is no rmb, the memory
1539 * reading (qed_sb_update_sb_idx) may be postponed
1540 * to right before *_ack_sb). In this case there
1541 * will never be another interrupt until there is
1542 * another update of the status block, while there
1543 * is still unhandled work.
1544 */
1545 rmb();
1546
1547 if (!(qede_has_rx_work(fp->rxq) ||
1548 qede_has_tx_work(fp))) {
1549 napi_complete(napi);
1550 /* Update and reenable interrupts */
1551 qed_sb_ack(fp->sb_info, IGU_INT_ENABLE,
1552 1 /*update*/);
1553 break;
1554 }
1555 }
1556 }
1557
1558 return work_done;
1559}
1560
1561static irqreturn_t qede_msix_fp_int(int irq, void *fp_cookie)
1562{
1563 struct qede_fastpath *fp = fp_cookie;
1564
1565 qed_sb_ack(fp->sb_info, IGU_INT_DISABLE, 0 /*do not update*/);
1566
1567 napi_schedule_irqoff(&fp->napi);
1568 return IRQ_HANDLED;
1569}
1570
1571/* -------------------------------------------------------------------------
1572 * END OF FAST-PATH
1573 * -------------------------------------------------------------------------
1574 */
1575
1576static int qede_open(struct net_device *ndev);
1577static int qede_close(struct net_device *ndev);
0d8e0aa0
SK
1578static int qede_set_mac_addr(struct net_device *ndev, void *p);
1579static void qede_set_rx_mode(struct net_device *ndev);
1580static void qede_config_rx_mode(struct net_device *ndev);
1581
1582static int qede_set_ucast_rx_mac(struct qede_dev *edev,
1583 enum qed_filter_xcast_params_type opcode,
1584 unsigned char mac[ETH_ALEN])
1585{
1586 struct qed_filter_params filter_cmd;
1587
1588 memset(&filter_cmd, 0, sizeof(filter_cmd));
1589 filter_cmd.type = QED_FILTER_TYPE_UCAST;
1590 filter_cmd.filter.ucast.type = opcode;
1591 filter_cmd.filter.ucast.mac_valid = 1;
1592 ether_addr_copy(filter_cmd.filter.ucast.mac, mac);
1593
1594 return edev->ops->filter_config(edev->cdev, &filter_cmd);
1595}
1596
7c1bfcad
SRK
1597static int qede_set_ucast_rx_vlan(struct qede_dev *edev,
1598 enum qed_filter_xcast_params_type opcode,
1599 u16 vid)
1600{
1601 struct qed_filter_params filter_cmd;
1602
1603 memset(&filter_cmd, 0, sizeof(filter_cmd));
1604 filter_cmd.type = QED_FILTER_TYPE_UCAST;
1605 filter_cmd.filter.ucast.type = opcode;
1606 filter_cmd.filter.ucast.vlan_valid = 1;
1607 filter_cmd.filter.ucast.vlan = vid;
1608
1609 return edev->ops->filter_config(edev->cdev, &filter_cmd);
1610}
1611
133fac0e
SK
1612void qede_fill_by_demand_stats(struct qede_dev *edev)
1613{
1614 struct qed_eth_stats stats;
1615
1616 edev->ops->get_vport_stats(edev->cdev, &stats);
1617 edev->stats.no_buff_discards = stats.no_buff_discards;
1618 edev->stats.rx_ucast_bytes = stats.rx_ucast_bytes;
1619 edev->stats.rx_mcast_bytes = stats.rx_mcast_bytes;
1620 edev->stats.rx_bcast_bytes = stats.rx_bcast_bytes;
1621 edev->stats.rx_ucast_pkts = stats.rx_ucast_pkts;
1622 edev->stats.rx_mcast_pkts = stats.rx_mcast_pkts;
1623 edev->stats.rx_bcast_pkts = stats.rx_bcast_pkts;
1624 edev->stats.mftag_filter_discards = stats.mftag_filter_discards;
1625 edev->stats.mac_filter_discards = stats.mac_filter_discards;
1626
1627 edev->stats.tx_ucast_bytes = stats.tx_ucast_bytes;
1628 edev->stats.tx_mcast_bytes = stats.tx_mcast_bytes;
1629 edev->stats.tx_bcast_bytes = stats.tx_bcast_bytes;
1630 edev->stats.tx_ucast_pkts = stats.tx_ucast_pkts;
1631 edev->stats.tx_mcast_pkts = stats.tx_mcast_pkts;
1632 edev->stats.tx_bcast_pkts = stats.tx_bcast_pkts;
1633 edev->stats.tx_err_drop_pkts = stats.tx_err_drop_pkts;
1634 edev->stats.coalesced_pkts = stats.tpa_coalesced_pkts;
1635 edev->stats.coalesced_events = stats.tpa_coalesced_events;
1636 edev->stats.coalesced_aborts_num = stats.tpa_aborts_num;
1637 edev->stats.non_coalesced_pkts = stats.tpa_not_coalesced_pkts;
1638 edev->stats.coalesced_bytes = stats.tpa_coalesced_bytes;
1639
1640 edev->stats.rx_64_byte_packets = stats.rx_64_byte_packets;
d4967cf3
YM
1641 edev->stats.rx_65_to_127_byte_packets = stats.rx_65_to_127_byte_packets;
1642 edev->stats.rx_128_to_255_byte_packets =
1643 stats.rx_128_to_255_byte_packets;
1644 edev->stats.rx_256_to_511_byte_packets =
1645 stats.rx_256_to_511_byte_packets;
1646 edev->stats.rx_512_to_1023_byte_packets =
1647 stats.rx_512_to_1023_byte_packets;
1648 edev->stats.rx_1024_to_1518_byte_packets =
1649 stats.rx_1024_to_1518_byte_packets;
1650 edev->stats.rx_1519_to_1522_byte_packets =
1651 stats.rx_1519_to_1522_byte_packets;
1652 edev->stats.rx_1519_to_2047_byte_packets =
1653 stats.rx_1519_to_2047_byte_packets;
1654 edev->stats.rx_2048_to_4095_byte_packets =
1655 stats.rx_2048_to_4095_byte_packets;
1656 edev->stats.rx_4096_to_9216_byte_packets =
1657 stats.rx_4096_to_9216_byte_packets;
1658 edev->stats.rx_9217_to_16383_byte_packets =
1659 stats.rx_9217_to_16383_byte_packets;
133fac0e
SK
1660 edev->stats.rx_crc_errors = stats.rx_crc_errors;
1661 edev->stats.rx_mac_crtl_frames = stats.rx_mac_crtl_frames;
1662 edev->stats.rx_pause_frames = stats.rx_pause_frames;
1663 edev->stats.rx_pfc_frames = stats.rx_pfc_frames;
1664 edev->stats.rx_align_errors = stats.rx_align_errors;
1665 edev->stats.rx_carrier_errors = stats.rx_carrier_errors;
1666 edev->stats.rx_oversize_packets = stats.rx_oversize_packets;
1667 edev->stats.rx_jabbers = stats.rx_jabbers;
1668 edev->stats.rx_undersize_packets = stats.rx_undersize_packets;
1669 edev->stats.rx_fragments = stats.rx_fragments;
1670 edev->stats.tx_64_byte_packets = stats.tx_64_byte_packets;
1671 edev->stats.tx_65_to_127_byte_packets = stats.tx_65_to_127_byte_packets;
1672 edev->stats.tx_128_to_255_byte_packets =
1673 stats.tx_128_to_255_byte_packets;
1674 edev->stats.tx_256_to_511_byte_packets =
1675 stats.tx_256_to_511_byte_packets;
1676 edev->stats.tx_512_to_1023_byte_packets =
1677 stats.tx_512_to_1023_byte_packets;
1678 edev->stats.tx_1024_to_1518_byte_packets =
1679 stats.tx_1024_to_1518_byte_packets;
1680 edev->stats.tx_1519_to_2047_byte_packets =
1681 stats.tx_1519_to_2047_byte_packets;
1682 edev->stats.tx_2048_to_4095_byte_packets =
1683 stats.tx_2048_to_4095_byte_packets;
1684 edev->stats.tx_4096_to_9216_byte_packets =
1685 stats.tx_4096_to_9216_byte_packets;
1686 edev->stats.tx_9217_to_16383_byte_packets =
1687 stats.tx_9217_to_16383_byte_packets;
1688 edev->stats.tx_pause_frames = stats.tx_pause_frames;
1689 edev->stats.tx_pfc_frames = stats.tx_pfc_frames;
1690 edev->stats.tx_lpi_entry_count = stats.tx_lpi_entry_count;
1691 edev->stats.tx_total_collisions = stats.tx_total_collisions;
1692 edev->stats.brb_truncates = stats.brb_truncates;
1693 edev->stats.brb_discards = stats.brb_discards;
1694 edev->stats.tx_mac_ctrl_frames = stats.tx_mac_ctrl_frames;
1695}
1696
1697static struct rtnl_link_stats64 *qede_get_stats64(
1698 struct net_device *dev,
1699 struct rtnl_link_stats64 *stats)
1700{
1701 struct qede_dev *edev = netdev_priv(dev);
1702
1703 qede_fill_by_demand_stats(edev);
1704
1705 stats->rx_packets = edev->stats.rx_ucast_pkts +
1706 edev->stats.rx_mcast_pkts +
1707 edev->stats.rx_bcast_pkts;
1708 stats->tx_packets = edev->stats.tx_ucast_pkts +
1709 edev->stats.tx_mcast_pkts +
1710 edev->stats.tx_bcast_pkts;
1711
1712 stats->rx_bytes = edev->stats.rx_ucast_bytes +
1713 edev->stats.rx_mcast_bytes +
1714 edev->stats.rx_bcast_bytes;
1715
1716 stats->tx_bytes = edev->stats.tx_ucast_bytes +
1717 edev->stats.tx_mcast_bytes +
1718 edev->stats.tx_bcast_bytes;
1719
1720 stats->tx_errors = edev->stats.tx_err_drop_pkts;
1721 stats->multicast = edev->stats.rx_mcast_pkts +
1722 edev->stats.rx_bcast_pkts;
1723
1724 stats->rx_fifo_errors = edev->stats.no_buff_discards;
1725
1726 stats->collisions = edev->stats.tx_total_collisions;
1727 stats->rx_crc_errors = edev->stats.rx_crc_errors;
1728 stats->rx_frame_errors = edev->stats.rx_align_errors;
1729
1730 return stats;
1731}
1732
7c1bfcad
SRK
1733static void qede_config_accept_any_vlan(struct qede_dev *edev, bool action)
1734{
1735 struct qed_update_vport_params params;
1736 int rc;
1737
1738 /* Proceed only if action actually needs to be performed */
1739 if (edev->accept_any_vlan == action)
1740 return;
1741
1742 memset(&params, 0, sizeof(params));
1743
1744 params.vport_id = 0;
1745 params.accept_any_vlan = action;
1746 params.update_accept_any_vlan_flg = 1;
1747
1748 rc = edev->ops->vport_update(edev->cdev, &params);
1749 if (rc) {
1750 DP_ERR(edev, "Failed to %s accept-any-vlan\n",
1751 action ? "enable" : "disable");
1752 } else {
1753 DP_INFO(edev, "%s accept-any-vlan\n",
1754 action ? "enabled" : "disabled");
1755 edev->accept_any_vlan = action;
1756 }
1757}
1758
1759static int qede_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
1760{
1761 struct qede_dev *edev = netdev_priv(dev);
1762 struct qede_vlan *vlan, *tmp;
1763 int rc;
1764
1765 DP_VERBOSE(edev, NETIF_MSG_IFUP, "Adding vlan 0x%04x\n", vid);
1766
1767 vlan = kzalloc(sizeof(*vlan), GFP_KERNEL);
1768 if (!vlan) {
1769 DP_INFO(edev, "Failed to allocate struct for vlan\n");
1770 return -ENOMEM;
1771 }
1772 INIT_LIST_HEAD(&vlan->list);
1773 vlan->vid = vid;
1774 vlan->configured = false;
1775
1776 /* Verify vlan isn't already configured */
1777 list_for_each_entry(tmp, &edev->vlan_list, list) {
1778 if (tmp->vid == vlan->vid) {
1779 DP_VERBOSE(edev, (NETIF_MSG_IFUP | NETIF_MSG_IFDOWN),
1780 "vlan already configured\n");
1781 kfree(vlan);
1782 return -EEXIST;
1783 }
1784 }
1785
1786 /* If interface is down, cache this VLAN ID and return */
1787 if (edev->state != QEDE_STATE_OPEN) {
1788 DP_VERBOSE(edev, NETIF_MSG_IFDOWN,
1789 "Interface is down, VLAN %d will be configured when interface is up\n",
1790 vid);
1791 if (vid != 0)
1792 edev->non_configured_vlans++;
1793 list_add(&vlan->list, &edev->vlan_list);
1794
1795 return 0;
1796 }
1797
1798 /* Check for the filter limit.
1799 * Note - vlan0 has a reserved filter and can be added without
1800 * worrying about quota
1801 */
1802 if ((edev->configured_vlans < edev->dev_info.num_vlan_filters) ||
1803 (vlan->vid == 0)) {
1804 rc = qede_set_ucast_rx_vlan(edev,
1805 QED_FILTER_XCAST_TYPE_ADD,
1806 vlan->vid);
1807 if (rc) {
1808 DP_ERR(edev, "Failed to configure VLAN %d\n",
1809 vlan->vid);
1810 kfree(vlan);
1811 return -EINVAL;
1812 }
1813 vlan->configured = true;
1814
1815 /* vlan0 filter isn't consuming out of our quota */
1816 if (vlan->vid != 0)
1817 edev->configured_vlans++;
1818 } else {
1819 /* Out of quota; Activate accept-any-VLAN mode */
1820 if (!edev->non_configured_vlans)
1821 qede_config_accept_any_vlan(edev, true);
1822
1823 edev->non_configured_vlans++;
1824 }
1825
1826 list_add(&vlan->list, &edev->vlan_list);
1827
1828 return 0;
1829}
1830
1831static void qede_del_vlan_from_list(struct qede_dev *edev,
1832 struct qede_vlan *vlan)
1833{
1834 /* vlan0 filter isn't consuming out of our quota */
1835 if (vlan->vid != 0) {
1836 if (vlan->configured)
1837 edev->configured_vlans--;
1838 else
1839 edev->non_configured_vlans--;
1840 }
1841
1842 list_del(&vlan->list);
1843 kfree(vlan);
1844}
1845
1846static int qede_configure_vlan_filters(struct qede_dev *edev)
1847{
1848 int rc = 0, real_rc = 0, accept_any_vlan = 0;
1849 struct qed_dev_eth_info *dev_info;
1850 struct qede_vlan *vlan = NULL;
1851
1852 if (list_empty(&edev->vlan_list))
1853 return 0;
1854
1855 dev_info = &edev->dev_info;
1856
1857 /* Configure non-configured vlans */
1858 list_for_each_entry(vlan, &edev->vlan_list, list) {
1859 if (vlan->configured)
1860 continue;
1861
1862 /* We have used all our credits, now enable accept_any_vlan */
1863 if ((vlan->vid != 0) &&
1864 (edev->configured_vlans == dev_info->num_vlan_filters)) {
1865 accept_any_vlan = 1;
1866 continue;
1867 }
1868
1869 DP_VERBOSE(edev, NETIF_MSG_IFUP, "Adding vlan %d\n", vlan->vid);
1870
1871 rc = qede_set_ucast_rx_vlan(edev, QED_FILTER_XCAST_TYPE_ADD,
1872 vlan->vid);
1873 if (rc) {
1874 DP_ERR(edev, "Failed to configure VLAN %u\n",
1875 vlan->vid);
1876 real_rc = rc;
1877 continue;
1878 }
1879
1880 vlan->configured = true;
1881 /* vlan0 filter doesn't consume our VLAN filter's quota */
1882 if (vlan->vid != 0) {
1883 edev->non_configured_vlans--;
1884 edev->configured_vlans++;
1885 }
1886 }
1887
1888 /* enable accept_any_vlan mode if we have more VLANs than credits,
1889 * or remove accept_any_vlan mode if we've actually removed
1890 * a non-configured vlan, and all remaining vlans are truly configured.
1891 */
1892
1893 if (accept_any_vlan)
1894 qede_config_accept_any_vlan(edev, true);
1895 else if (!edev->non_configured_vlans)
1896 qede_config_accept_any_vlan(edev, false);
1897
1898 return real_rc;
1899}
1900
1901static int qede_vlan_rx_kill_vid(struct net_device *dev, __be16 proto, u16 vid)
1902{
1903 struct qede_dev *edev = netdev_priv(dev);
1904 struct qede_vlan *vlan = NULL;
1905 int rc;
1906
1907 DP_VERBOSE(edev, NETIF_MSG_IFDOWN, "Removing vlan 0x%04x\n", vid);
1908
1909 /* Find whether entry exists */
1910 list_for_each_entry(vlan, &edev->vlan_list, list)
1911 if (vlan->vid == vid)
1912 break;
1913
1914 if (!vlan || (vlan->vid != vid)) {
1915 DP_VERBOSE(edev, (NETIF_MSG_IFUP | NETIF_MSG_IFDOWN),
1916 "Vlan isn't configured\n");
1917 return 0;
1918 }
1919
1920 if (edev->state != QEDE_STATE_OPEN) {
1921 /* As interface is already down, we don't have a VPORT
1922 * instance to remove vlan filter. So just update vlan list
1923 */
1924 DP_VERBOSE(edev, NETIF_MSG_IFDOWN,
1925 "Interface is down, removing VLAN from list only\n");
1926 qede_del_vlan_from_list(edev, vlan);
1927 return 0;
1928 }
1929
1930 /* Remove vlan */
1931 rc = qede_set_ucast_rx_vlan(edev, QED_FILTER_XCAST_TYPE_DEL, vid);
1932 if (rc) {
1933 DP_ERR(edev, "Failed to remove VLAN %d\n", vid);
1934 return -EINVAL;
1935 }
1936
1937 qede_del_vlan_from_list(edev, vlan);
1938
1939 /* We have removed a VLAN - try to see if we can
1940 * configure non-configured VLAN from the list.
1941 */
1942 rc = qede_configure_vlan_filters(edev);
1943
1944 return rc;
1945}
1946
1947static void qede_vlan_mark_nonconfigured(struct qede_dev *edev)
1948{
1949 struct qede_vlan *vlan = NULL;
1950
1951 if (list_empty(&edev->vlan_list))
1952 return;
1953
1954 list_for_each_entry(vlan, &edev->vlan_list, list) {
1955 if (!vlan->configured)
1956 continue;
1957
1958 vlan->configured = false;
1959
1960 /* vlan0 filter isn't consuming out of our quota */
1961 if (vlan->vid != 0) {
1962 edev->non_configured_vlans++;
1963 edev->configured_vlans--;
1964 }
1965
1966 DP_VERBOSE(edev, NETIF_MSG_IFDOWN,
1967 "marked vlan %d as non-configured\n",
1968 vlan->vid);
1969 }
1970
1971 edev->accept_any_vlan = false;
1972}
1973
b18e170c
MC
1974#ifdef CONFIG_QEDE_VXLAN
1975static void qede_add_vxlan_port(struct net_device *dev,
1976 sa_family_t sa_family, __be16 port)
1977{
1978 struct qede_dev *edev = netdev_priv(dev);
1979 u16 t_port = ntohs(port);
1980
1981 if (edev->vxlan_dst_port)
1982 return;
1983
1984 edev->vxlan_dst_port = t_port;
1985
1986 DP_VERBOSE(edev, QED_MSG_DEBUG, "Added vxlan port=%d", t_port);
1987
1988 set_bit(QEDE_SP_VXLAN_PORT_CONFIG, &edev->sp_flags);
1989 schedule_delayed_work(&edev->sp_task, 0);
1990}
1991
1992static void qede_del_vxlan_port(struct net_device *dev,
1993 sa_family_t sa_family, __be16 port)
1994{
1995 struct qede_dev *edev = netdev_priv(dev);
1996 u16 t_port = ntohs(port);
1997
1998 if (t_port != edev->vxlan_dst_port)
1999 return;
2000
2001 edev->vxlan_dst_port = 0;
2002
2003 DP_VERBOSE(edev, QED_MSG_DEBUG, "Deleted vxlan port=%d", t_port);
2004
2005 set_bit(QEDE_SP_VXLAN_PORT_CONFIG, &edev->sp_flags);
2006 schedule_delayed_work(&edev->sp_task, 0);
2007}
2008#endif
2009
9a109dd0
MC
2010#ifdef CONFIG_QEDE_GENEVE
2011static void qede_add_geneve_port(struct net_device *dev,
2012 sa_family_t sa_family, __be16 port)
2013{
2014 struct qede_dev *edev = netdev_priv(dev);
2015 u16 t_port = ntohs(port);
2016
2017 if (edev->geneve_dst_port)
2018 return;
2019
2020 edev->geneve_dst_port = t_port;
2021
2022 DP_VERBOSE(edev, QED_MSG_DEBUG, "Added geneve port=%d", t_port);
2023 set_bit(QEDE_SP_GENEVE_PORT_CONFIG, &edev->sp_flags);
2024 schedule_delayed_work(&edev->sp_task, 0);
2025}
2026
2027static void qede_del_geneve_port(struct net_device *dev,
2028 sa_family_t sa_family, __be16 port)
2029{
2030 struct qede_dev *edev = netdev_priv(dev);
2031 u16 t_port = ntohs(port);
2032
2033 if (t_port != edev->geneve_dst_port)
2034 return;
2035
2036 edev->geneve_dst_port = 0;
2037
2038 DP_VERBOSE(edev, QED_MSG_DEBUG, "Deleted geneve port=%d", t_port);
2039 set_bit(QEDE_SP_GENEVE_PORT_CONFIG, &edev->sp_flags);
2040 schedule_delayed_work(&edev->sp_task, 0);
2041}
2042#endif
2043
2950219d
YM
2044static const struct net_device_ops qede_netdev_ops = {
2045 .ndo_open = qede_open,
2046 .ndo_stop = qede_close,
2047 .ndo_start_xmit = qede_start_xmit,
0d8e0aa0
SK
2048 .ndo_set_rx_mode = qede_set_rx_mode,
2049 .ndo_set_mac_address = qede_set_mac_addr,
2950219d 2050 .ndo_validate_addr = eth_validate_addr,
133fac0e 2051 .ndo_change_mtu = qede_change_mtu,
7c1bfcad
SRK
2052 .ndo_vlan_rx_add_vid = qede_vlan_rx_add_vid,
2053 .ndo_vlan_rx_kill_vid = qede_vlan_rx_kill_vid,
133fac0e 2054 .ndo_get_stats64 = qede_get_stats64,
b18e170c
MC
2055#ifdef CONFIG_QEDE_VXLAN
2056 .ndo_add_vxlan_port = qede_add_vxlan_port,
2057 .ndo_del_vxlan_port = qede_del_vxlan_port,
2058#endif
9a109dd0
MC
2059#ifdef CONFIG_QEDE_GENEVE
2060 .ndo_add_geneve_port = qede_add_geneve_port,
2061 .ndo_del_geneve_port = qede_del_geneve_port,
2062#endif
2950219d
YM
2063};
2064
e712d52b
YM
2065/* -------------------------------------------------------------------------
2066 * START OF PROBE / REMOVE
2067 * -------------------------------------------------------------------------
2068 */
2069
2070static struct qede_dev *qede_alloc_etherdev(struct qed_dev *cdev,
2071 struct pci_dev *pdev,
2072 struct qed_dev_eth_info *info,
2073 u32 dp_module,
2074 u8 dp_level)
2075{
2076 struct net_device *ndev;
2077 struct qede_dev *edev;
2078
2079 ndev = alloc_etherdev_mqs(sizeof(*edev),
2080 info->num_queues,
2081 info->num_queues);
2082 if (!ndev) {
2083 pr_err("etherdev allocation failed\n");
2084 return NULL;
2085 }
2086
2087 edev = netdev_priv(ndev);
2088 edev->ndev = ndev;
2089 edev->cdev = cdev;
2090 edev->pdev = pdev;
2091 edev->dp_module = dp_module;
2092 edev->dp_level = dp_level;
2093 edev->ops = qed_ops;
2950219d
YM
2094 edev->q_num_rx_buffers = NUM_RX_BDS_DEF;
2095 edev->q_num_tx_buffers = NUM_TX_BDS_DEF;
e712d52b 2096
e712d52b
YM
2097 SET_NETDEV_DEV(ndev, &pdev->dev);
2098
133fac0e 2099 memset(&edev->stats, 0, sizeof(edev->stats));
e712d52b
YM
2100 memcpy(&edev->dev_info, info, sizeof(*info));
2101
2102 edev->num_tc = edev->dev_info.num_tc;
2103
7c1bfcad
SRK
2104 INIT_LIST_HEAD(&edev->vlan_list);
2105
e712d52b
YM
2106 return edev;
2107}
2108
2109static void qede_init_ndev(struct qede_dev *edev)
2110{
2111 struct net_device *ndev = edev->ndev;
2112 struct pci_dev *pdev = edev->pdev;
2113 u32 hw_features;
2114
2115 pci_set_drvdata(pdev, ndev);
2116
2117 ndev->mem_start = edev->dev_info.common.pci_mem_start;
2118 ndev->base_addr = ndev->mem_start;
2119 ndev->mem_end = edev->dev_info.common.pci_mem_end;
2120 ndev->irq = edev->dev_info.common.pci_irq;
2121
2122 ndev->watchdog_timeo = TX_TIMEOUT;
2123
2950219d
YM
2124 ndev->netdev_ops = &qede_netdev_ops;
2125
133fac0e
SK
2126 qede_set_ethtool_ops(ndev);
2127
e712d52b
YM
2128 /* user-changeble features */
2129 hw_features = NETIF_F_GRO | NETIF_F_SG |
2130 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
2131 NETIF_F_TSO | NETIF_F_TSO6;
2132
14db81de
MC
2133 /* Encap features*/
2134 hw_features |= NETIF_F_GSO_GRE | NETIF_F_GSO_UDP_TUNNEL |
2135 NETIF_F_TSO_ECN;
2136 ndev->hw_enc_features = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
2137 NETIF_F_SG | NETIF_F_TSO | NETIF_F_TSO_ECN |
2138 NETIF_F_TSO6 | NETIF_F_GSO_GRE |
2139 NETIF_F_GSO_UDP_TUNNEL | NETIF_F_RXCSUM;
2140
e712d52b
YM
2141 ndev->vlan_features = hw_features | NETIF_F_RXHASH | NETIF_F_RXCSUM |
2142 NETIF_F_HIGHDMA;
2143 ndev->features = hw_features | NETIF_F_RXHASH | NETIF_F_RXCSUM |
2144 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HIGHDMA |
7c1bfcad 2145 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_TX;
e712d52b
YM
2146
2147 ndev->hw_features = hw_features;
2148
2149 /* Set network device HW mac */
2150 ether_addr_copy(edev->ndev->dev_addr, edev->dev_info.common.hw_mac);
2151}
2152
2153/* This function converts from 32b param to two params of level and module
2154 * Input 32b decoding:
2155 * b31 - enable all NOTICE prints. NOTICE prints are for deviation from the
2156 * 'happy' flow, e.g. memory allocation failed.
2157 * b30 - enable all INFO prints. INFO prints are for major steps in the flow
2158 * and provide important parameters.
2159 * b29-b0 - per-module bitmap, where each bit enables VERBOSE prints of that
2160 * module. VERBOSE prints are for tracking the specific flow in low level.
2161 *
2162 * Notice that the level should be that of the lowest required logs.
2163 */
133fac0e 2164void qede_config_debug(uint debug, u32 *p_dp_module, u8 *p_dp_level)
e712d52b
YM
2165{
2166 *p_dp_level = QED_LEVEL_NOTICE;
2167 *p_dp_module = 0;
2168
2169 if (debug & QED_LOG_VERBOSE_MASK) {
2170 *p_dp_level = QED_LEVEL_VERBOSE;
2171 *p_dp_module = (debug & 0x3FFFFFFF);
2172 } else if (debug & QED_LOG_INFO_MASK) {
2173 *p_dp_level = QED_LEVEL_INFO;
2174 } else if (debug & QED_LOG_NOTICE_MASK) {
2175 *p_dp_level = QED_LEVEL_NOTICE;
2176 }
2177}
2178
2950219d
YM
2179static void qede_free_fp_array(struct qede_dev *edev)
2180{
2181 if (edev->fp_array) {
2182 struct qede_fastpath *fp;
2183 int i;
2184
2185 for_each_rss(i) {
2186 fp = &edev->fp_array[i];
2187
2188 kfree(fp->sb_info);
2189 kfree(fp->rxq);
2190 kfree(fp->txqs);
2191 }
2192 kfree(edev->fp_array);
2193 }
2194 edev->num_rss = 0;
2195}
2196
2197static int qede_alloc_fp_array(struct qede_dev *edev)
2198{
2199 struct qede_fastpath *fp;
2200 int i;
2201
2202 edev->fp_array = kcalloc(QEDE_RSS_CNT(edev),
2203 sizeof(*edev->fp_array), GFP_KERNEL);
2204 if (!edev->fp_array) {
2205 DP_NOTICE(edev, "fp array allocation failed\n");
2206 goto err;
2207 }
2208
2209 for_each_rss(i) {
2210 fp = &edev->fp_array[i];
2211
2212 fp->sb_info = kcalloc(1, sizeof(*fp->sb_info), GFP_KERNEL);
2213 if (!fp->sb_info) {
2214 DP_NOTICE(edev, "sb info struct allocation failed\n");
2215 goto err;
2216 }
2217
2218 fp->rxq = kcalloc(1, sizeof(*fp->rxq), GFP_KERNEL);
2219 if (!fp->rxq) {
2220 DP_NOTICE(edev, "RXQ struct allocation failed\n");
2221 goto err;
2222 }
2223
2224 fp->txqs = kcalloc(edev->num_tc, sizeof(*fp->txqs), GFP_KERNEL);
2225 if (!fp->txqs) {
2226 DP_NOTICE(edev, "TXQ array allocation failed\n");
2227 goto err;
2228 }
2229 }
2230
2231 return 0;
2232err:
2233 qede_free_fp_array(edev);
2234 return -ENOMEM;
2235}
2236
0d8e0aa0
SK
2237static void qede_sp_task(struct work_struct *work)
2238{
2239 struct qede_dev *edev = container_of(work, struct qede_dev,
2240 sp_task.work);
b18e170c
MC
2241 struct qed_dev *cdev = edev->cdev;
2242
0d8e0aa0
SK
2243 mutex_lock(&edev->qede_lock);
2244
2245 if (edev->state == QEDE_STATE_OPEN) {
2246 if (test_and_clear_bit(QEDE_SP_RX_MODE, &edev->sp_flags))
2247 qede_config_rx_mode(edev->ndev);
2248 }
2249
b18e170c
MC
2250 if (test_and_clear_bit(QEDE_SP_VXLAN_PORT_CONFIG, &edev->sp_flags)) {
2251 struct qed_tunn_params tunn_params;
2252
2253 memset(&tunn_params, 0, sizeof(tunn_params));
2254 tunn_params.update_vxlan_port = 1;
2255 tunn_params.vxlan_port = edev->vxlan_dst_port;
2256 qed_ops->tunn_config(cdev, &tunn_params);
2257 }
2258
9a109dd0
MC
2259 if (test_and_clear_bit(QEDE_SP_GENEVE_PORT_CONFIG, &edev->sp_flags)) {
2260 struct qed_tunn_params tunn_params;
2261
2262 memset(&tunn_params, 0, sizeof(tunn_params));
2263 tunn_params.update_geneve_port = 1;
2264 tunn_params.geneve_port = edev->geneve_dst_port;
2265 qed_ops->tunn_config(cdev, &tunn_params);
2266 }
2267
0d8e0aa0
SK
2268 mutex_unlock(&edev->qede_lock);
2269}
2270
e712d52b
YM
2271static void qede_update_pf_params(struct qed_dev *cdev)
2272{
2273 struct qed_pf_params pf_params;
2274
8e0ddc04 2275 /* 64 rx + 64 tx */
e712d52b 2276 memset(&pf_params, 0, sizeof(struct qed_pf_params));
8e0ddc04 2277 pf_params.eth_pf_params.num_cons = 128;
e712d52b
YM
2278 qed_ops->common->update_pf_params(cdev, &pf_params);
2279}
2280
2281enum qede_probe_mode {
2282 QEDE_PROBE_NORMAL,
2283};
2284
2285static int __qede_probe(struct pci_dev *pdev, u32 dp_module, u8 dp_level,
2286 enum qede_probe_mode mode)
2287{
2288 struct qed_slowpath_params params;
2289 struct qed_dev_eth_info dev_info;
2290 struct qede_dev *edev;
2291 struct qed_dev *cdev;
2292 int rc;
2293
2294 if (unlikely(dp_level & QED_LEVEL_INFO))
2295 pr_notice("Starting qede probe\n");
2296
2297 cdev = qed_ops->common->probe(pdev, QED_PROTOCOL_ETH,
2298 dp_module, dp_level);
2299 if (!cdev) {
2300 rc = -ENODEV;
2301 goto err0;
2302 }
2303
2304 qede_update_pf_params(cdev);
2305
2306 /* Start the Slowpath-process */
2307 memset(&params, 0, sizeof(struct qed_slowpath_params));
2308 params.int_mode = QED_INT_MODE_MSIX;
2309 params.drv_major = QEDE_MAJOR_VERSION;
2310 params.drv_minor = QEDE_MINOR_VERSION;
2311 params.drv_rev = QEDE_REVISION_VERSION;
2312 params.drv_eng = QEDE_ENGINEERING_VERSION;
2313 strlcpy(params.name, "qede LAN", QED_DRV_VER_STR_SIZE);
2314 rc = qed_ops->common->slowpath_start(cdev, &params);
2315 if (rc) {
2316 pr_notice("Cannot start slowpath\n");
2317 goto err1;
2318 }
2319
2320 /* Learn information crucial for qede to progress */
2321 rc = qed_ops->fill_dev_info(cdev, &dev_info);
2322 if (rc)
2323 goto err2;
2324
2325 edev = qede_alloc_etherdev(cdev, pdev, &dev_info, dp_module,
2326 dp_level);
2327 if (!edev) {
2328 rc = -ENOMEM;
2329 goto err2;
2330 }
2331
2332 qede_init_ndev(edev);
2333
2950219d
YM
2334 rc = register_netdev(edev->ndev);
2335 if (rc) {
2336 DP_NOTICE(edev, "Cannot register net-device\n");
2337 goto err3;
2338 }
2339
e712d52b
YM
2340 edev->ops->common->set_id(cdev, edev->ndev->name, DRV_MODULE_VERSION);
2341
a2ec6172
SK
2342 edev->ops->register_ops(cdev, &qede_ll_ops, edev);
2343
0d8e0aa0
SK
2344 INIT_DELAYED_WORK(&edev->sp_task, qede_sp_task);
2345 mutex_init(&edev->qede_lock);
2346
e712d52b
YM
2347 DP_INFO(edev, "Ending successfully qede probe\n");
2348
2349 return 0;
2350
2950219d
YM
2351err3:
2352 free_netdev(edev->ndev);
e712d52b
YM
2353err2:
2354 qed_ops->common->slowpath_stop(cdev);
2355err1:
2356 qed_ops->common->remove(cdev);
2357err0:
2358 return rc;
2359}
2360
2361static int qede_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2362{
2363 u32 dp_module = 0;
2364 u8 dp_level = 0;
2365
2366 qede_config_debug(debug, &dp_module, &dp_level);
2367
2368 return __qede_probe(pdev, dp_module, dp_level,
2369 QEDE_PROBE_NORMAL);
2370}
2371
2372enum qede_remove_mode {
2373 QEDE_REMOVE_NORMAL,
2374};
2375
2376static void __qede_remove(struct pci_dev *pdev, enum qede_remove_mode mode)
2377{
2378 struct net_device *ndev = pci_get_drvdata(pdev);
2379 struct qede_dev *edev = netdev_priv(ndev);
2380 struct qed_dev *cdev = edev->cdev;
2381
2382 DP_INFO(edev, "Starting qede_remove\n");
2383
0d8e0aa0 2384 cancel_delayed_work_sync(&edev->sp_task);
2950219d
YM
2385 unregister_netdev(ndev);
2386
e712d52b
YM
2387 edev->ops->common->set_power_state(cdev, PCI_D0);
2388
2389 pci_set_drvdata(pdev, NULL);
2390
2391 free_netdev(ndev);
2392
2393 /* Use global ops since we've freed edev */
2394 qed_ops->common->slowpath_stop(cdev);
2395 qed_ops->common->remove(cdev);
2396
2397 pr_notice("Ending successfully qede_remove\n");
2398}
2399
2400static void qede_remove(struct pci_dev *pdev)
2401{
2402 __qede_remove(pdev, QEDE_REMOVE_NORMAL);
2403}
2950219d
YM
2404
2405/* -------------------------------------------------------------------------
2406 * START OF LOAD / UNLOAD
2407 * -------------------------------------------------------------------------
2408 */
2409
2410static int qede_set_num_queues(struct qede_dev *edev)
2411{
2412 int rc;
2413 u16 rss_num;
2414
2415 /* Setup queues according to possible resources*/
8edf049d
SK
2416 if (edev->req_rss)
2417 rss_num = edev->req_rss;
2418 else
2419 rss_num = netif_get_num_default_rss_queues() *
2420 edev->dev_info.common.num_hwfns;
2950219d
YM
2421
2422 rss_num = min_t(u16, QEDE_MAX_RSS_CNT(edev), rss_num);
2423
2424 rc = edev->ops->common->set_fp_int(edev->cdev, rss_num);
2425 if (rc > 0) {
2426 /* Managed to request interrupts for our queues */
2427 edev->num_rss = rc;
2428 DP_INFO(edev, "Managed %d [of %d] RSS queues\n",
2429 QEDE_RSS_CNT(edev), rss_num);
2430 rc = 0;
2431 }
2432 return rc;
2433}
2434
2435static void qede_free_mem_sb(struct qede_dev *edev,
2436 struct qed_sb_info *sb_info)
2437{
2438 if (sb_info->sb_virt)
2439 dma_free_coherent(&edev->pdev->dev, sizeof(*sb_info->sb_virt),
2440 (void *)sb_info->sb_virt, sb_info->sb_phys);
2441}
2442
2443/* This function allocates fast-path status block memory */
2444static int qede_alloc_mem_sb(struct qede_dev *edev,
2445 struct qed_sb_info *sb_info,
2446 u16 sb_id)
2447{
2448 struct status_block *sb_virt;
2449 dma_addr_t sb_phys;
2450 int rc;
2451
2452 sb_virt = dma_alloc_coherent(&edev->pdev->dev,
2453 sizeof(*sb_virt),
2454 &sb_phys, GFP_KERNEL);
2455 if (!sb_virt) {
2456 DP_ERR(edev, "Status block allocation failed\n");
2457 return -ENOMEM;
2458 }
2459
2460 rc = edev->ops->common->sb_init(edev->cdev, sb_info,
2461 sb_virt, sb_phys, sb_id,
2462 QED_SB_TYPE_L2_QUEUE);
2463 if (rc) {
2464 DP_ERR(edev, "Status block initialization failed\n");
2465 dma_free_coherent(&edev->pdev->dev, sizeof(*sb_virt),
2466 sb_virt, sb_phys);
2467 return rc;
2468 }
2469
2470 return 0;
2471}
2472
2473static void qede_free_rx_buffers(struct qede_dev *edev,
2474 struct qede_rx_queue *rxq)
2475{
2476 u16 i;
2477
2478 for (i = rxq->sw_rx_cons; i != rxq->sw_rx_prod; i++) {
2479 struct sw_rx_data *rx_buf;
fc48b7a6 2480 struct page *data;
2950219d
YM
2481
2482 rx_buf = &rxq->sw_rx_ring[i & NUM_RX_BDS_MAX];
2483 data = rx_buf->data;
2484
fc48b7a6
YM
2485 dma_unmap_page(&edev->pdev->dev,
2486 rx_buf->mapping,
2487 PAGE_SIZE, DMA_FROM_DEVICE);
2950219d
YM
2488
2489 rx_buf->data = NULL;
fc48b7a6 2490 __free_page(data);
2950219d
YM
2491 }
2492}
2493
55482edc
MC
2494static void qede_free_sge_mem(struct qede_dev *edev,
2495 struct qede_rx_queue *rxq) {
2496 int i;
2497
2498 if (edev->gro_disable)
2499 return;
2500
2501 for (i = 0; i < ETH_TPA_MAX_AGGS_NUM; i++) {
2502 struct qede_agg_info *tpa_info = &rxq->tpa_info[i];
2503 struct sw_rx_data *replace_buf = &tpa_info->replace_buf;
2504
f86af2df 2505 if (replace_buf->data) {
55482edc
MC
2506 dma_unmap_page(&edev->pdev->dev,
2507 dma_unmap_addr(replace_buf, mapping),
2508 PAGE_SIZE, DMA_FROM_DEVICE);
2509 __free_page(replace_buf->data);
2510 }
2511 }
2512}
2513
2950219d
YM
2514static void qede_free_mem_rxq(struct qede_dev *edev,
2515 struct qede_rx_queue *rxq)
2516{
55482edc
MC
2517 qede_free_sge_mem(edev, rxq);
2518
2950219d
YM
2519 /* Free rx buffers */
2520 qede_free_rx_buffers(edev, rxq);
2521
2522 /* Free the parallel SW ring */
2523 kfree(rxq->sw_rx_ring);
2524
2525 /* Free the real RQ ring used by FW */
2526 edev->ops->common->chain_free(edev->cdev, &rxq->rx_bd_ring);
2527 edev->ops->common->chain_free(edev->cdev, &rxq->rx_comp_ring);
2528}
2529
2530static int qede_alloc_rx_buffer(struct qede_dev *edev,
2531 struct qede_rx_queue *rxq)
2532{
2533 struct sw_rx_data *sw_rx_data;
2534 struct eth_rx_bd *rx_bd;
2535 dma_addr_t mapping;
fc48b7a6 2536 struct page *data;
2950219d 2537 u16 rx_buf_size;
2950219d
YM
2538
2539 rx_buf_size = rxq->rx_buf_size;
2540
fc48b7a6 2541 data = alloc_pages(GFP_ATOMIC, 0);
2950219d 2542 if (unlikely(!data)) {
fc48b7a6 2543 DP_NOTICE(edev, "Failed to allocate Rx data [page]\n");
2950219d
YM
2544 return -ENOMEM;
2545 }
2546
fc48b7a6
YM
2547 /* Map the entire page as it would be used
2548 * for multiple RX buffer segment size mapping.
2549 */
2550 mapping = dma_map_page(&edev->pdev->dev, data, 0,
2551 PAGE_SIZE, DMA_FROM_DEVICE);
2950219d 2552 if (unlikely(dma_mapping_error(&edev->pdev->dev, mapping))) {
fc48b7a6 2553 __free_page(data);
2950219d
YM
2554 DP_NOTICE(edev, "Failed to map Rx buffer\n");
2555 return -ENOMEM;
2556 }
2557
2558 sw_rx_data = &rxq->sw_rx_ring[rxq->sw_rx_prod & NUM_RX_BDS_MAX];
fc48b7a6 2559 sw_rx_data->page_offset = 0;
2950219d 2560 sw_rx_data->data = data;
fc48b7a6 2561 sw_rx_data->mapping = mapping;
2950219d
YM
2562
2563 /* Advance PROD and get BD pointer */
2564 rx_bd = (struct eth_rx_bd *)qed_chain_produce(&rxq->rx_bd_ring);
2565 WARN_ON(!rx_bd);
2566 rx_bd->addr.hi = cpu_to_le32(upper_32_bits(mapping));
2567 rx_bd->addr.lo = cpu_to_le32(lower_32_bits(mapping));
2568
2569 rxq->sw_rx_prod++;
2570
2571 return 0;
2572}
2573
55482edc
MC
2574static int qede_alloc_sge_mem(struct qede_dev *edev,
2575 struct qede_rx_queue *rxq)
2576{
2577 dma_addr_t mapping;
2578 int i;
2579
2580 if (edev->gro_disable)
2581 return 0;
2582
2583 if (edev->ndev->mtu > PAGE_SIZE) {
2584 edev->gro_disable = 1;
2585 return 0;
2586 }
2587
2588 for (i = 0; i < ETH_TPA_MAX_AGGS_NUM; i++) {
2589 struct qede_agg_info *tpa_info = &rxq->tpa_info[i];
2590 struct sw_rx_data *replace_buf = &tpa_info->replace_buf;
2591
2592 replace_buf->data = alloc_pages(GFP_ATOMIC, 0);
2593 if (unlikely(!replace_buf->data)) {
2594 DP_NOTICE(edev,
2595 "Failed to allocate TPA skb pool [replacement buffer]\n");
2596 goto err;
2597 }
2598
2599 mapping = dma_map_page(&edev->pdev->dev, replace_buf->data, 0,
2600 rxq->rx_buf_size, DMA_FROM_DEVICE);
2601 if (unlikely(dma_mapping_error(&edev->pdev->dev, mapping))) {
2602 DP_NOTICE(edev,
2603 "Failed to map TPA replacement buffer\n");
2604 goto err;
2605 }
2606
2607 dma_unmap_addr_set(replace_buf, mapping, mapping);
2608 tpa_info->replace_buf.page_offset = 0;
2609
2610 tpa_info->replace_buf_mapping = mapping;
2611 tpa_info->agg_state = QEDE_AGG_STATE_NONE;
2612 }
2613
2614 return 0;
2615err:
2616 qede_free_sge_mem(edev, rxq);
2617 edev->gro_disable = 1;
2618 return -ENOMEM;
2619}
2620
2950219d
YM
2621/* This function allocates all memory needed per Rx queue */
2622static int qede_alloc_mem_rxq(struct qede_dev *edev,
2623 struct qede_rx_queue *rxq)
2624{
f86af2df 2625 int i, rc, size;
2950219d
YM
2626
2627 rxq->num_rx_buffers = edev->q_num_rx_buffers;
2628
fc48b7a6
YM
2629 rxq->rx_buf_size = NET_IP_ALIGN + ETH_OVERHEAD +
2630 edev->ndev->mtu;
2631 if (rxq->rx_buf_size > PAGE_SIZE)
2632 rxq->rx_buf_size = PAGE_SIZE;
2633
2634 /* Segment size to spilt a page in multiple equal parts */
2635 rxq->rx_buf_seg_size = roundup_pow_of_two(rxq->rx_buf_size);
2950219d
YM
2636
2637 /* Allocate the parallel driver ring for Rx buffers */
fc48b7a6 2638 size = sizeof(*rxq->sw_rx_ring) * RX_RING_SIZE;
2950219d
YM
2639 rxq->sw_rx_ring = kzalloc(size, GFP_KERNEL);
2640 if (!rxq->sw_rx_ring) {
2641 DP_ERR(edev, "Rx buffers ring allocation failed\n");
f86af2df 2642 rc = -ENOMEM;
2950219d
YM
2643 goto err;
2644 }
2645
2646 /* Allocate FW Rx ring */
2647 rc = edev->ops->common->chain_alloc(edev->cdev,
2648 QED_CHAIN_USE_TO_CONSUME_PRODUCE,
2649 QED_CHAIN_MODE_NEXT_PTR,
fc48b7a6 2650 RX_RING_SIZE,
2950219d
YM
2651 sizeof(struct eth_rx_bd),
2652 &rxq->rx_bd_ring);
2653
2654 if (rc)
2655 goto err;
2656
2657 /* Allocate FW completion ring */
2658 rc = edev->ops->common->chain_alloc(edev->cdev,
2659 QED_CHAIN_USE_TO_CONSUME,
2660 QED_CHAIN_MODE_PBL,
fc48b7a6 2661 RX_RING_SIZE,
2950219d
YM
2662 sizeof(union eth_rx_cqe),
2663 &rxq->rx_comp_ring);
2664 if (rc)
2665 goto err;
2666
2667 /* Allocate buffers for the Rx ring */
2668 for (i = 0; i < rxq->num_rx_buffers; i++) {
2669 rc = qede_alloc_rx_buffer(edev, rxq);
f86af2df
MC
2670 if (rc) {
2671 DP_ERR(edev,
2672 "Rx buffers allocation failed at index %d\n", i);
2673 goto err;
2674 }
2950219d
YM
2675 }
2676
f86af2df 2677 rc = qede_alloc_sge_mem(edev, rxq);
2950219d 2678err:
f86af2df 2679 return rc;
2950219d
YM
2680}
2681
2682static void qede_free_mem_txq(struct qede_dev *edev,
2683 struct qede_tx_queue *txq)
2684{
2685 /* Free the parallel SW ring */
2686 kfree(txq->sw_tx_ring);
2687
2688 /* Free the real RQ ring used by FW */
2689 edev->ops->common->chain_free(edev->cdev, &txq->tx_pbl);
2690}
2691
2692/* This function allocates all memory needed per Tx queue */
2693static int qede_alloc_mem_txq(struct qede_dev *edev,
2694 struct qede_tx_queue *txq)
2695{
2696 int size, rc;
2697 union eth_tx_bd_types *p_virt;
2698
2699 txq->num_tx_buffers = edev->q_num_tx_buffers;
2700
2701 /* Allocate the parallel driver ring for Tx buffers */
2702 size = sizeof(*txq->sw_tx_ring) * NUM_TX_BDS_MAX;
2703 txq->sw_tx_ring = kzalloc(size, GFP_KERNEL);
2704 if (!txq->sw_tx_ring) {
2705 DP_NOTICE(edev, "Tx buffers ring allocation failed\n");
2706 goto err;
2707 }
2708
2709 rc = edev->ops->common->chain_alloc(edev->cdev,
2710 QED_CHAIN_USE_TO_CONSUME_PRODUCE,
2711 QED_CHAIN_MODE_PBL,
2712 NUM_TX_BDS_MAX,
2713 sizeof(*p_virt),
2714 &txq->tx_pbl);
2715 if (rc)
2716 goto err;
2717
2718 return 0;
2719
2720err:
2721 qede_free_mem_txq(edev, txq);
2722 return -ENOMEM;
2723}
2724
2725/* This function frees all memory of a single fp */
2726static void qede_free_mem_fp(struct qede_dev *edev,
2727 struct qede_fastpath *fp)
2728{
2729 int tc;
2730
2731 qede_free_mem_sb(edev, fp->sb_info);
2732
2733 qede_free_mem_rxq(edev, fp->rxq);
2734
2735 for (tc = 0; tc < edev->num_tc; tc++)
2736 qede_free_mem_txq(edev, &fp->txqs[tc]);
2737}
2738
2739/* This function allocates all memory needed for a single fp (i.e. an entity
2740 * which contains status block, one rx queue and multiple per-TC tx queues.
2741 */
2742static int qede_alloc_mem_fp(struct qede_dev *edev,
2743 struct qede_fastpath *fp)
2744{
2745 int rc, tc;
2746
2747 rc = qede_alloc_mem_sb(edev, fp->sb_info, fp->rss_id);
2748 if (rc)
2749 goto err;
2750
2751 rc = qede_alloc_mem_rxq(edev, fp->rxq);
2752 if (rc)
2753 goto err;
2754
2755 for (tc = 0; tc < edev->num_tc; tc++) {
2756 rc = qede_alloc_mem_txq(edev, &fp->txqs[tc]);
2757 if (rc)
2758 goto err;
2759 }
2760
2761 return 0;
2950219d 2762err:
f86af2df 2763 return rc;
2950219d
YM
2764}
2765
2766static void qede_free_mem_load(struct qede_dev *edev)
2767{
2768 int i;
2769
2770 for_each_rss(i) {
2771 struct qede_fastpath *fp = &edev->fp_array[i];
2772
2773 qede_free_mem_fp(edev, fp);
2774 }
2775}
2776
2777/* This function allocates all qede memory at NIC load. */
2778static int qede_alloc_mem_load(struct qede_dev *edev)
2779{
2780 int rc = 0, rss_id;
2781
2782 for (rss_id = 0; rss_id < QEDE_RSS_CNT(edev); rss_id++) {
2783 struct qede_fastpath *fp = &edev->fp_array[rss_id];
2784
2785 rc = qede_alloc_mem_fp(edev, fp);
f86af2df 2786 if (rc) {
2950219d 2787 DP_ERR(edev,
f86af2df
MC
2788 "Failed to allocate memory for fastpath - rss id = %d\n",
2789 rss_id);
2790 qede_free_mem_load(edev);
2791 return rc;
2950219d 2792 }
2950219d
YM
2793 }
2794
2795 return 0;
2796}
2797
2798/* This function inits fp content and resets the SB, RXQ and TXQ structures */
2799static void qede_init_fp(struct qede_dev *edev)
2800{
2801 int rss_id, txq_index, tc;
2802 struct qede_fastpath *fp;
2803
2804 for_each_rss(rss_id) {
2805 fp = &edev->fp_array[rss_id];
2806
2807 fp->edev = edev;
2808 fp->rss_id = rss_id;
2809
2810 memset((void *)&fp->napi, 0, sizeof(fp->napi));
2811
2812 memset((void *)fp->sb_info, 0, sizeof(*fp->sb_info));
2813
2814 memset((void *)fp->rxq, 0, sizeof(*fp->rxq));
2815 fp->rxq->rxq_id = rss_id;
2816
2817 memset((void *)fp->txqs, 0, (edev->num_tc * sizeof(*fp->txqs)));
2818 for (tc = 0; tc < edev->num_tc; tc++) {
2819 txq_index = tc * QEDE_RSS_CNT(edev) + rss_id;
2820 fp->txqs[tc].index = txq_index;
2821 }
2822
2823 snprintf(fp->name, sizeof(fp->name), "%s-fp-%d",
2824 edev->ndev->name, rss_id);
2825 }
55482edc
MC
2826
2827 edev->gro_disable = !(edev->ndev->features & NETIF_F_GRO);
2950219d
YM
2828}
2829
2830static int qede_set_real_num_queues(struct qede_dev *edev)
2831{
2832 int rc = 0;
2833
2834 rc = netif_set_real_num_tx_queues(edev->ndev, QEDE_TSS_CNT(edev));
2835 if (rc) {
2836 DP_NOTICE(edev, "Failed to set real number of Tx queues\n");
2837 return rc;
2838 }
2839 rc = netif_set_real_num_rx_queues(edev->ndev, QEDE_RSS_CNT(edev));
2840 if (rc) {
2841 DP_NOTICE(edev, "Failed to set real number of Rx queues\n");
2842 return rc;
2843 }
2844
2845 return 0;
2846}
2847
2848static void qede_napi_disable_remove(struct qede_dev *edev)
2849{
2850 int i;
2851
2852 for_each_rss(i) {
2853 napi_disable(&edev->fp_array[i].napi);
2854
2855 netif_napi_del(&edev->fp_array[i].napi);
2856 }
2857}
2858
2859static void qede_napi_add_enable(struct qede_dev *edev)
2860{
2861 int i;
2862
2863 /* Add NAPI objects */
2864 for_each_rss(i) {
2865 netif_napi_add(edev->ndev, &edev->fp_array[i].napi,
2866 qede_poll, NAPI_POLL_WEIGHT);
2867 napi_enable(&edev->fp_array[i].napi);
2868 }
2869}
2870
2871static void qede_sync_free_irqs(struct qede_dev *edev)
2872{
2873 int i;
2874
2875 for (i = 0; i < edev->int_info.used_cnt; i++) {
2876 if (edev->int_info.msix_cnt) {
2877 synchronize_irq(edev->int_info.msix[i].vector);
2878 free_irq(edev->int_info.msix[i].vector,
2879 &edev->fp_array[i]);
2880 } else {
2881 edev->ops->common->simd_handler_clean(edev->cdev, i);
2882 }
2883 }
2884
2885 edev->int_info.used_cnt = 0;
2886}
2887
2888static int qede_req_msix_irqs(struct qede_dev *edev)
2889{
2890 int i, rc;
2891
2892 /* Sanitize number of interrupts == number of prepared RSS queues */
2893 if (QEDE_RSS_CNT(edev) > edev->int_info.msix_cnt) {
2894 DP_ERR(edev,
2895 "Interrupt mismatch: %d RSS queues > %d MSI-x vectors\n",
2896 QEDE_RSS_CNT(edev), edev->int_info.msix_cnt);
2897 return -EINVAL;
2898 }
2899
2900 for (i = 0; i < QEDE_RSS_CNT(edev); i++) {
2901 rc = request_irq(edev->int_info.msix[i].vector,
2902 qede_msix_fp_int, 0, edev->fp_array[i].name,
2903 &edev->fp_array[i]);
2904 if (rc) {
2905 DP_ERR(edev, "Request fp %d irq failed\n", i);
2906 qede_sync_free_irqs(edev);
2907 return rc;
2908 }
2909 DP_VERBOSE(edev, NETIF_MSG_INTR,
2910 "Requested fp irq for %s [entry %d]. Cookie is at %p\n",
2911 edev->fp_array[i].name, i,
2912 &edev->fp_array[i]);
2913 edev->int_info.used_cnt++;
2914 }
2915
2916 return 0;
2917}
2918
2919static void qede_simd_fp_handler(void *cookie)
2920{
2921 struct qede_fastpath *fp = (struct qede_fastpath *)cookie;
2922
2923 napi_schedule_irqoff(&fp->napi);
2924}
2925
2926static int qede_setup_irqs(struct qede_dev *edev)
2927{
2928 int i, rc = 0;
2929
2930 /* Learn Interrupt configuration */
2931 rc = edev->ops->common->get_fp_int(edev->cdev, &edev->int_info);
2932 if (rc)
2933 return rc;
2934
2935 if (edev->int_info.msix_cnt) {
2936 rc = qede_req_msix_irqs(edev);
2937 if (rc)
2938 return rc;
2939 edev->ndev->irq = edev->int_info.msix[0].vector;
2940 } else {
2941 const struct qed_common_ops *ops;
2942
2943 /* qed should learn receive the RSS ids and callbacks */
2944 ops = edev->ops->common;
2945 for (i = 0; i < QEDE_RSS_CNT(edev); i++)
2946 ops->simd_handler_config(edev->cdev,
2947 &edev->fp_array[i], i,
2948 qede_simd_fp_handler);
2949 edev->int_info.used_cnt = QEDE_RSS_CNT(edev);
2950 }
2951 return 0;
2952}
2953
2954static int qede_drain_txq(struct qede_dev *edev,
2955 struct qede_tx_queue *txq,
2956 bool allow_drain)
2957{
2958 int rc, cnt = 1000;
2959
2960 while (txq->sw_tx_cons != txq->sw_tx_prod) {
2961 if (!cnt) {
2962 if (allow_drain) {
2963 DP_NOTICE(edev,
2964 "Tx queue[%d] is stuck, requesting MCP to drain\n",
2965 txq->index);
2966 rc = edev->ops->common->drain(edev->cdev);
2967 if (rc)
2968 return rc;
2969 return qede_drain_txq(edev, txq, false);
2970 }
2971 DP_NOTICE(edev,
2972 "Timeout waiting for tx queue[%d]: PROD=%d, CONS=%d\n",
2973 txq->index, txq->sw_tx_prod,
2974 txq->sw_tx_cons);
2975 return -ENODEV;
2976 }
2977 cnt--;
2978 usleep_range(1000, 2000);
2979 barrier();
2980 }
2981
2982 /* FW finished processing, wait for HW to transmit all tx packets */
2983 usleep_range(1000, 2000);
2984
2985 return 0;
2986}
2987
2988static int qede_stop_queues(struct qede_dev *edev)
2989{
2990 struct qed_update_vport_params vport_update_params;
2991 struct qed_dev *cdev = edev->cdev;
2992 int rc, tc, i;
2993
2994 /* Disable the vport */
2995 memset(&vport_update_params, 0, sizeof(vport_update_params));
2996 vport_update_params.vport_id = 0;
2997 vport_update_params.update_vport_active_flg = 1;
2998 vport_update_params.vport_active_flg = 0;
2999 vport_update_params.update_rss_flg = 0;
3000
3001 rc = edev->ops->vport_update(cdev, &vport_update_params);
3002 if (rc) {
3003 DP_ERR(edev, "Failed to update vport\n");
3004 return rc;
3005 }
3006
3007 /* Flush Tx queues. If needed, request drain from MCP */
3008 for_each_rss(i) {
3009 struct qede_fastpath *fp = &edev->fp_array[i];
3010
3011 for (tc = 0; tc < edev->num_tc; tc++) {
3012 struct qede_tx_queue *txq = &fp->txqs[tc];
3013
3014 rc = qede_drain_txq(edev, txq, true);
3015 if (rc)
3016 return rc;
3017 }
3018 }
3019
3020 /* Stop all Queues in reverse order*/
3021 for (i = QEDE_RSS_CNT(edev) - 1; i >= 0; i--) {
3022 struct qed_stop_rxq_params rx_params;
3023
3024 /* Stop the Tx Queue(s)*/
3025 for (tc = 0; tc < edev->num_tc; tc++) {
3026 struct qed_stop_txq_params tx_params;
3027
3028 tx_params.rss_id = i;
3029 tx_params.tx_queue_id = tc * QEDE_RSS_CNT(edev) + i;
3030 rc = edev->ops->q_tx_stop(cdev, &tx_params);
3031 if (rc) {
3032 DP_ERR(edev, "Failed to stop TXQ #%d\n",
3033 tx_params.tx_queue_id);
3034 return rc;
3035 }
3036 }
3037
3038 /* Stop the Rx Queue*/
3039 memset(&rx_params, 0, sizeof(rx_params));
3040 rx_params.rss_id = i;
3041 rx_params.rx_queue_id = i;
3042
3043 rc = edev->ops->q_rx_stop(cdev, &rx_params);
3044 if (rc) {
3045 DP_ERR(edev, "Failed to stop RXQ #%d\n", i);
3046 return rc;
3047 }
3048 }
3049
3050 /* Stop the vport */
3051 rc = edev->ops->vport_stop(cdev, 0);
3052 if (rc)
3053 DP_ERR(edev, "Failed to stop VPORT\n");
3054
3055 return rc;
3056}
3057
3058static int qede_start_queues(struct qede_dev *edev)
3059{
3060 int rc, tc, i;
088c8618 3061 int vlan_removal_en = 1;
2950219d 3062 struct qed_dev *cdev = edev->cdev;
2950219d
YM
3063 struct qed_update_vport_params vport_update_params;
3064 struct qed_queue_start_common_params q_params;
088c8618 3065 struct qed_start_vport_params start = {0};
961acdea 3066 bool reset_rss_indir = false;
2950219d
YM
3067
3068 if (!edev->num_rss) {
3069 DP_ERR(edev,
3070 "Cannot update V-VPORT as active as there are no Rx queues\n");
3071 return -EINVAL;
3072 }
3073
55482edc 3074 start.gro_enable = !edev->gro_disable;
088c8618
MC
3075 start.mtu = edev->ndev->mtu;
3076 start.vport_id = 0;
3077 start.drop_ttl0 = true;
3078 start.remove_inner_vlan = vlan_removal_en;
3079
3080 rc = edev->ops->vport_start(cdev, &start);
2950219d
YM
3081
3082 if (rc) {
3083 DP_ERR(edev, "Start V-PORT failed %d\n", rc);
3084 return rc;
3085 }
3086
3087 DP_VERBOSE(edev, NETIF_MSG_IFUP,
3088 "Start vport ramrod passed, vport_id = %d, MTU = %d, vlan_removal_en = %d\n",
088c8618 3089 start.vport_id, edev->ndev->mtu + 0xe, vlan_removal_en);
2950219d
YM
3090
3091 for_each_rss(i) {
3092 struct qede_fastpath *fp = &edev->fp_array[i];
3093 dma_addr_t phys_table = fp->rxq->rx_comp_ring.pbl.p_phys_table;
3094
3095 memset(&q_params, 0, sizeof(q_params));
3096 q_params.rss_id = i;
3097 q_params.queue_id = i;
3098 q_params.vport_id = 0;
3099 q_params.sb = fp->sb_info->igu_sb_id;
3100 q_params.sb_idx = RX_PI;
3101
3102 rc = edev->ops->q_rx_start(cdev, &q_params,
3103 fp->rxq->rx_buf_size,
3104 fp->rxq->rx_bd_ring.p_phys_addr,
3105 phys_table,
3106 fp->rxq->rx_comp_ring.page_cnt,
3107 &fp->rxq->hw_rxq_prod_addr);
3108 if (rc) {
3109 DP_ERR(edev, "Start RXQ #%d failed %d\n", i, rc);
3110 return rc;
3111 }
3112
3113 fp->rxq->hw_cons_ptr = &fp->sb_info->sb_virt->pi_array[RX_PI];
3114
3115 qede_update_rx_prod(edev, fp->rxq);
3116
3117 for (tc = 0; tc < edev->num_tc; tc++) {
3118 struct qede_tx_queue *txq = &fp->txqs[tc];
3119 int txq_index = tc * QEDE_RSS_CNT(edev) + i;
3120
3121 memset(&q_params, 0, sizeof(q_params));
3122 q_params.rss_id = i;
3123 q_params.queue_id = txq_index;
3124 q_params.vport_id = 0;
3125 q_params.sb = fp->sb_info->igu_sb_id;
3126 q_params.sb_idx = TX_PI(tc);
3127
3128 rc = edev->ops->q_tx_start(cdev, &q_params,
3129 txq->tx_pbl.pbl.p_phys_table,
3130 txq->tx_pbl.page_cnt,
3131 &txq->doorbell_addr);
3132 if (rc) {
3133 DP_ERR(edev, "Start TXQ #%d failed %d\n",
3134 txq_index, rc);
3135 return rc;
3136 }
3137
3138 txq->hw_cons_ptr =
3139 &fp->sb_info->sb_virt->pi_array[TX_PI(tc)];
3140 SET_FIELD(txq->tx_db.data.params,
3141 ETH_DB_DATA_DEST, DB_DEST_XCM);
3142 SET_FIELD(txq->tx_db.data.params, ETH_DB_DATA_AGG_CMD,
3143 DB_AGG_CMD_SET);
3144 SET_FIELD(txq->tx_db.data.params,
3145 ETH_DB_DATA_AGG_VAL_SEL,
3146 DQ_XCM_ETH_TX_BD_PROD_CMD);
3147
3148 txq->tx_db.data.agg_flags = DQ_XCM_ETH_DQ_CF_CMD;
3149 }
3150 }
3151
3152 /* Prepare and send the vport enable */
3153 memset(&vport_update_params, 0, sizeof(vport_update_params));
088c8618 3154 vport_update_params.vport_id = start.vport_id;
2950219d
YM
3155 vport_update_params.update_vport_active_flg = 1;
3156 vport_update_params.vport_active_flg = 1;
3157
3158 /* Fill struct with RSS params */
3159 if (QEDE_RSS_CNT(edev) > 1) {
3160 vport_update_params.update_rss_flg = 1;
961acdea
SRK
3161
3162 /* Need to validate current RSS config uses valid entries */
3163 for (i = 0; i < QED_RSS_IND_TABLE_SIZE; i++) {
3164 if (edev->rss_params.rss_ind_table[i] >=
3165 edev->num_rss) {
3166 reset_rss_indir = true;
3167 break;
3168 }
3169 }
3170
3171 if (!(edev->rss_params_inited & QEDE_RSS_INDIR_INITED) ||
3172 reset_rss_indir) {
3173 u16 val;
3174
3175 for (i = 0; i < QED_RSS_IND_TABLE_SIZE; i++) {
3176 u16 indir_val;
3177
3178 val = QEDE_RSS_CNT(edev);
3179 indir_val = ethtool_rxfh_indir_default(i, val);
3180 edev->rss_params.rss_ind_table[i] = indir_val;
3181 }
3182 edev->rss_params_inited |= QEDE_RSS_INDIR_INITED;
3183 }
3184
3185 if (!(edev->rss_params_inited & QEDE_RSS_KEY_INITED)) {
3186 netdev_rss_key_fill(edev->rss_params.rss_key,
3187 sizeof(edev->rss_params.rss_key));
3188 edev->rss_params_inited |= QEDE_RSS_KEY_INITED;
3189 }
3190
3191 if (!(edev->rss_params_inited & QEDE_RSS_CAPS_INITED)) {
3192 edev->rss_params.rss_caps = QED_RSS_IPV4 |
3193 QED_RSS_IPV6 |
3194 QED_RSS_IPV4_TCP |
3195 QED_RSS_IPV6_TCP;
3196 edev->rss_params_inited |= QEDE_RSS_CAPS_INITED;
3197 }
3198
3199 memcpy(&vport_update_params.rss_params, &edev->rss_params,
3200 sizeof(vport_update_params.rss_params));
2950219d 3201 } else {
961acdea
SRK
3202 memset(&vport_update_params.rss_params, 0,
3203 sizeof(vport_update_params.rss_params));
2950219d 3204 }
2950219d
YM
3205
3206 rc = edev->ops->vport_update(cdev, &vport_update_params);
3207 if (rc) {
3208 DP_ERR(edev, "Update V-PORT failed %d\n", rc);
3209 return rc;
3210 }
3211
3212 return 0;
3213}
3214
0d8e0aa0
SK
3215static int qede_set_mcast_rx_mac(struct qede_dev *edev,
3216 enum qed_filter_xcast_params_type opcode,
3217 unsigned char *mac, int num_macs)
3218{
3219 struct qed_filter_params filter_cmd;
3220 int i;
3221
3222 memset(&filter_cmd, 0, sizeof(filter_cmd));
3223 filter_cmd.type = QED_FILTER_TYPE_MCAST;
3224 filter_cmd.filter.mcast.type = opcode;
3225 filter_cmd.filter.mcast.num = num_macs;
3226
3227 for (i = 0; i < num_macs; i++, mac += ETH_ALEN)
3228 ether_addr_copy(filter_cmd.filter.mcast.mac[i], mac);
3229
3230 return edev->ops->filter_config(edev->cdev, &filter_cmd);
3231}
3232
2950219d
YM
3233enum qede_unload_mode {
3234 QEDE_UNLOAD_NORMAL,
3235};
3236
3237static void qede_unload(struct qede_dev *edev, enum qede_unload_mode mode)
3238{
a2ec6172 3239 struct qed_link_params link_params;
2950219d
YM
3240 int rc;
3241
3242 DP_INFO(edev, "Starting qede unload\n");
3243
0d8e0aa0
SK
3244 mutex_lock(&edev->qede_lock);
3245 edev->state = QEDE_STATE_CLOSED;
3246
2950219d
YM
3247 /* Close OS Tx */
3248 netif_tx_disable(edev->ndev);
3249 netif_carrier_off(edev->ndev);
3250
a2ec6172
SK
3251 /* Reset the link */
3252 memset(&link_params, 0, sizeof(link_params));
3253 link_params.link_up = false;
3254 edev->ops->common->set_link(edev->cdev, &link_params);
2950219d
YM
3255 rc = qede_stop_queues(edev);
3256 if (rc) {
3257 qede_sync_free_irqs(edev);
3258 goto out;
3259 }
3260
3261 DP_INFO(edev, "Stopped Queues\n");
3262
7c1bfcad 3263 qede_vlan_mark_nonconfigured(edev);
2950219d
YM
3264 edev->ops->fastpath_stop(edev->cdev);
3265
3266 /* Release the interrupts */
3267 qede_sync_free_irqs(edev);
3268 edev->ops->common->set_fp_int(edev->cdev, 0);
3269
3270 qede_napi_disable_remove(edev);
3271
3272 qede_free_mem_load(edev);
3273 qede_free_fp_array(edev);
3274
3275out:
3276 mutex_unlock(&edev->qede_lock);
3277 DP_INFO(edev, "Ending qede unload\n");
3278}
3279
3280enum qede_load_mode {
3281 QEDE_LOAD_NORMAL,
3282};
3283
3284static int qede_load(struct qede_dev *edev, enum qede_load_mode mode)
3285{
a2ec6172
SK
3286 struct qed_link_params link_params;
3287 struct qed_link_output link_output;
2950219d
YM
3288 int rc;
3289
3290 DP_INFO(edev, "Starting qede load\n");
3291
3292 rc = qede_set_num_queues(edev);
3293 if (rc)
3294 goto err0;
3295
3296 rc = qede_alloc_fp_array(edev);
3297 if (rc)
3298 goto err0;
3299
3300 qede_init_fp(edev);
3301
3302 rc = qede_alloc_mem_load(edev);
3303 if (rc)
3304 goto err1;
3305 DP_INFO(edev, "Allocated %d RSS queues on %d TC/s\n",
3306 QEDE_RSS_CNT(edev), edev->num_tc);
3307
3308 rc = qede_set_real_num_queues(edev);
3309 if (rc)
3310 goto err2;
3311
3312 qede_napi_add_enable(edev);
3313 DP_INFO(edev, "Napi added and enabled\n");
3314
3315 rc = qede_setup_irqs(edev);
3316 if (rc)
3317 goto err3;
3318 DP_INFO(edev, "Setup IRQs succeeded\n");
3319
3320 rc = qede_start_queues(edev);
3321 if (rc)
3322 goto err4;
3323 DP_INFO(edev, "Start VPORT, RXQ and TXQ succeeded\n");
3324
3325 /* Add primary mac and set Rx filters */
3326 ether_addr_copy(edev->primary_mac, edev->ndev->dev_addr);
3327
0d8e0aa0
SK
3328 mutex_lock(&edev->qede_lock);
3329 edev->state = QEDE_STATE_OPEN;
3330 mutex_unlock(&edev->qede_lock);
a2ec6172 3331
7c1bfcad
SRK
3332 /* Program un-configured VLANs */
3333 qede_configure_vlan_filters(edev);
3334
a2ec6172
SK
3335 /* Ask for link-up using current configuration */
3336 memset(&link_params, 0, sizeof(link_params));
3337 link_params.link_up = true;
3338 edev->ops->common->set_link(edev->cdev, &link_params);
3339
3340 /* Query whether link is already-up */
3341 memset(&link_output, 0, sizeof(link_output));
3342 edev->ops->common->get_link(edev->cdev, &link_output);
3343 qede_link_update(edev, &link_output);
3344
2950219d
YM
3345 DP_INFO(edev, "Ending successfully qede load\n");
3346
3347 return 0;
3348
3349err4:
3350 qede_sync_free_irqs(edev);
3351 memset(&edev->int_info.msix_cnt, 0, sizeof(struct qed_int_info));
3352err3:
3353 qede_napi_disable_remove(edev);
3354err2:
3355 qede_free_mem_load(edev);
3356err1:
3357 edev->ops->common->set_fp_int(edev->cdev, 0);
3358 qede_free_fp_array(edev);
3359 edev->num_rss = 0;
3360err0:
3361 return rc;
3362}
3363
133fac0e
SK
3364void qede_reload(struct qede_dev *edev,
3365 void (*func)(struct qede_dev *, union qede_reload_args *),
3366 union qede_reload_args *args)
3367{
3368 qede_unload(edev, QEDE_UNLOAD_NORMAL);
3369 /* Call function handler to update parameters
3370 * needed for function load.
3371 */
3372 if (func)
3373 func(edev, args);
3374
3375 qede_load(edev, QEDE_LOAD_NORMAL);
3376
3377 mutex_lock(&edev->qede_lock);
3378 qede_config_rx_mode(edev->ndev);
3379 mutex_unlock(&edev->qede_lock);
3380}
3381
2950219d
YM
3382/* called with rtnl_lock */
3383static int qede_open(struct net_device *ndev)
3384{
3385 struct qede_dev *edev = netdev_priv(ndev);
b18e170c 3386 int rc;
2950219d
YM
3387
3388 netif_carrier_off(ndev);
3389
3390 edev->ops->common->set_power_state(edev->cdev, PCI_D0);
3391
b18e170c
MC
3392 rc = qede_load(edev, QEDE_LOAD_NORMAL);
3393
3394 if (rc)
3395 return rc;
3396
3397#ifdef CONFIG_QEDE_VXLAN
3398 vxlan_get_rx_port(ndev);
9a109dd0
MC
3399#endif
3400#ifdef CONFIG_QEDE_GENEVE
3401 geneve_get_rx_port(ndev);
b18e170c
MC
3402#endif
3403 return 0;
2950219d
YM
3404}
3405
3406static int qede_close(struct net_device *ndev)
3407{
3408 struct qede_dev *edev = netdev_priv(ndev);
3409
3410 qede_unload(edev, QEDE_UNLOAD_NORMAL);
3411
3412 return 0;
3413}
0d8e0aa0 3414
a2ec6172
SK
3415static void qede_link_update(void *dev, struct qed_link_output *link)
3416{
3417 struct qede_dev *edev = dev;
3418
3419 if (!netif_running(edev->ndev)) {
3420 DP_VERBOSE(edev, NETIF_MSG_LINK, "Interface is not running\n");
3421 return;
3422 }
3423
3424 if (link->link_up) {
8e025ae2
YM
3425 if (!netif_carrier_ok(edev->ndev)) {
3426 DP_NOTICE(edev, "Link is up\n");
3427 netif_tx_start_all_queues(edev->ndev);
3428 netif_carrier_on(edev->ndev);
3429 }
a2ec6172 3430 } else {
8e025ae2
YM
3431 if (netif_carrier_ok(edev->ndev)) {
3432 DP_NOTICE(edev, "Link is down\n");
3433 netif_tx_disable(edev->ndev);
3434 netif_carrier_off(edev->ndev);
3435 }
a2ec6172
SK
3436 }
3437}
3438
0d8e0aa0
SK
3439static int qede_set_mac_addr(struct net_device *ndev, void *p)
3440{
3441 struct qede_dev *edev = netdev_priv(ndev);
3442 struct sockaddr *addr = p;
3443 int rc;
3444
3445 ASSERT_RTNL(); /* @@@TBD To be removed */
3446
3447 DP_INFO(edev, "Set_mac_addr called\n");
3448
3449 if (!is_valid_ether_addr(addr->sa_data)) {
3450 DP_NOTICE(edev, "The MAC address is not valid\n");
3451 return -EFAULT;
3452 }
3453
3454 ether_addr_copy(ndev->dev_addr, addr->sa_data);
3455
3456 if (!netif_running(ndev)) {
3457 DP_NOTICE(edev, "The device is currently down\n");
3458 return 0;
3459 }
3460
3461 /* Remove the previous primary mac */
3462 rc = qede_set_ucast_rx_mac(edev, QED_FILTER_XCAST_TYPE_DEL,
3463 edev->primary_mac);
3464 if (rc)
3465 return rc;
3466
3467 /* Add MAC filter according to the new unicast HW MAC address */
3468 ether_addr_copy(edev->primary_mac, ndev->dev_addr);
3469 return qede_set_ucast_rx_mac(edev, QED_FILTER_XCAST_TYPE_ADD,
3470 edev->primary_mac);
3471}
3472
3473static int
3474qede_configure_mcast_filtering(struct net_device *ndev,
3475 enum qed_filter_rx_mode_type *accept_flags)
3476{
3477 struct qede_dev *edev = netdev_priv(ndev);
3478 unsigned char *mc_macs, *temp;
3479 struct netdev_hw_addr *ha;
3480 int rc = 0, mc_count;
3481 size_t size;
3482
3483 size = 64 * ETH_ALEN;
3484
3485 mc_macs = kzalloc(size, GFP_KERNEL);
3486 if (!mc_macs) {
3487 DP_NOTICE(edev,
3488 "Failed to allocate memory for multicast MACs\n");
3489 rc = -ENOMEM;
3490 goto exit;
3491 }
3492
3493 temp = mc_macs;
3494
3495 /* Remove all previously configured MAC filters */
3496 rc = qede_set_mcast_rx_mac(edev, QED_FILTER_XCAST_TYPE_DEL,
3497 mc_macs, 1);
3498 if (rc)
3499 goto exit;
3500
3501 netif_addr_lock_bh(ndev);
3502
3503 mc_count = netdev_mc_count(ndev);
3504 if (mc_count < 64) {
3505 netdev_for_each_mc_addr(ha, ndev) {
3506 ether_addr_copy(temp, ha->addr);
3507 temp += ETH_ALEN;
3508 }
3509 }
3510
3511 netif_addr_unlock_bh(ndev);
3512
3513 /* Check for all multicast @@@TBD resource allocation */
3514 if ((ndev->flags & IFF_ALLMULTI) ||
3515 (mc_count > 64)) {
3516 if (*accept_flags == QED_FILTER_RX_MODE_TYPE_REGULAR)
3517 *accept_flags = QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
3518 } else {
3519 /* Add all multicast MAC filters */
3520 rc = qede_set_mcast_rx_mac(edev, QED_FILTER_XCAST_TYPE_ADD,
3521 mc_macs, mc_count);
3522 }
3523
3524exit:
3525 kfree(mc_macs);
3526 return rc;
3527}
3528
3529static void qede_set_rx_mode(struct net_device *ndev)
3530{
3531 struct qede_dev *edev = netdev_priv(ndev);
3532
3533 DP_INFO(edev, "qede_set_rx_mode called\n");
3534
3535 if (edev->state != QEDE_STATE_OPEN) {
3536 DP_INFO(edev,
3537 "qede_set_rx_mode called while interface is down\n");
3538 } else {
3539 set_bit(QEDE_SP_RX_MODE, &edev->sp_flags);
3540 schedule_delayed_work(&edev->sp_task, 0);
3541 }
3542}
3543
3544/* Must be called with qede_lock held */
3545static void qede_config_rx_mode(struct net_device *ndev)
3546{
3547 enum qed_filter_rx_mode_type accept_flags = QED_FILTER_TYPE_UCAST;
3548 struct qede_dev *edev = netdev_priv(ndev);
3549 struct qed_filter_params rx_mode;
3550 unsigned char *uc_macs, *temp;
3551 struct netdev_hw_addr *ha;
3552 int rc, uc_count;
3553 size_t size;
3554
3555 netif_addr_lock_bh(ndev);
3556
3557 uc_count = netdev_uc_count(ndev);
3558 size = uc_count * ETH_ALEN;
3559
3560 uc_macs = kzalloc(size, GFP_ATOMIC);
3561 if (!uc_macs) {
3562 DP_NOTICE(edev, "Failed to allocate memory for unicast MACs\n");
3563 netif_addr_unlock_bh(ndev);
3564 return;
3565 }
3566
3567 temp = uc_macs;
3568 netdev_for_each_uc_addr(ha, ndev) {
3569 ether_addr_copy(temp, ha->addr);
3570 temp += ETH_ALEN;
3571 }
3572
3573 netif_addr_unlock_bh(ndev);
3574
3575 /* Configure the struct for the Rx mode */
3576 memset(&rx_mode, 0, sizeof(struct qed_filter_params));
3577 rx_mode.type = QED_FILTER_TYPE_RX_MODE;
3578
3579 /* Remove all previous unicast secondary macs and multicast macs
3580 * (configrue / leave the primary mac)
3581 */
3582 rc = qede_set_ucast_rx_mac(edev, QED_FILTER_XCAST_TYPE_REPLACE,
3583 edev->primary_mac);
3584 if (rc)
3585 goto out;
3586
3587 /* Check for promiscuous */
3588 if ((ndev->flags & IFF_PROMISC) ||
3589 (uc_count > 15)) { /* @@@TBD resource allocation - 1 */
3590 accept_flags = QED_FILTER_RX_MODE_TYPE_PROMISC;
3591 } else {
3592 /* Add MAC filters according to the unicast secondary macs */
3593 int i;
3594
3595 temp = uc_macs;
3596 for (i = 0; i < uc_count; i++) {
3597 rc = qede_set_ucast_rx_mac(edev,
3598 QED_FILTER_XCAST_TYPE_ADD,
3599 temp);
3600 if (rc)
3601 goto out;
3602
3603 temp += ETH_ALEN;
3604 }
3605
3606 rc = qede_configure_mcast_filtering(ndev, &accept_flags);
3607 if (rc)
3608 goto out;
3609 }
3610
7c1bfcad
SRK
3611 /* take care of VLAN mode */
3612 if (ndev->flags & IFF_PROMISC) {
3613 qede_config_accept_any_vlan(edev, true);
3614 } else if (!edev->non_configured_vlans) {
3615 /* It's possible that accept_any_vlan mode is set due to a
3616 * previous setting of IFF_PROMISC. If vlan credits are
3617 * sufficient, disable accept_any_vlan.
3618 */
3619 qede_config_accept_any_vlan(edev, false);
3620 }
3621
0d8e0aa0
SK
3622 rx_mode.filter.accept_flags = accept_flags;
3623 edev->ops->filter_config(edev->cdev, &rx_mode);
3624out:
3625 kfree(uc_macs);
3626}
This page took 0.24302 seconds and 5 git commands to generate.