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