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