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