net/ena: fix delayed cleanup of Rx descriptors
[dpdk.git] / drivers / net / ena / ena_ethdev.c
1 /*-
2 * BSD LICENSE
3 *
4 * Copyright (c) 2015-2016 Amazon.com, Inc. or its affiliates.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * * Neither the name of copyright holder nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34 #include <rte_ether.h>
35 #include <rte_ethdev.h>
36 #include <rte_ethdev_pci.h>
37 #include <rte_tcp.h>
38 #include <rte_atomic.h>
39 #include <rte_dev.h>
40 #include <rte_errno.h>
41 #include <rte_version.h>
42 #include <rte_eal_memconfig.h>
43 #include <rte_net.h>
44
45 #include "ena_ethdev.h"
46 #include "ena_logs.h"
47 #include "ena_platform.h"
48 #include "ena_com.h"
49 #include "ena_eth_com.h"
50
51 #include <ena_common_defs.h>
52 #include <ena_regs_defs.h>
53 #include <ena_admin_defs.h>
54 #include <ena_eth_io_defs.h>
55
56 #define DRV_MODULE_VER_MAJOR    1
57 #define DRV_MODULE_VER_MINOR    0
58 #define DRV_MODULE_VER_SUBMINOR 0
59
60 #define ENA_IO_TXQ_IDX(q)       (2 * (q))
61 #define ENA_IO_RXQ_IDX(q)       (2 * (q) + 1)
62 /*reverse version of ENA_IO_RXQ_IDX*/
63 #define ENA_IO_RXQ_IDX_REV(q)   ((q - 1) / 2)
64
65 /* While processing submitted and completed descriptors (rx and tx path
66  * respectively) in a loop it is desired to:
67  *  - perform batch submissions while populating sumbissmion queue
68  *  - avoid blocking transmission of other packets during cleanup phase
69  * Hence the utilization ratio of 1/8 of a queue size.
70  */
71 #define ENA_RING_DESCS_RATIO(ring_size) (ring_size / 8)
72
73 #define __MERGE_64B_H_L(h, l) (((uint64_t)h << 32) | l)
74 #define TEST_BIT(val, bit_shift) (val & (1UL << bit_shift))
75
76 #define GET_L4_HDR_LEN(mbuf)                                    \
77         ((rte_pktmbuf_mtod_offset(mbuf, struct tcp_hdr *,       \
78                 mbuf->l3_len + mbuf->l2_len)->data_off) >> 4)
79
80 #define ENA_RX_RSS_TABLE_LOG_SIZE  7
81 #define ENA_RX_RSS_TABLE_SIZE   (1 << ENA_RX_RSS_TABLE_LOG_SIZE)
82 #define ENA_HASH_KEY_SIZE       40
83 #define ENA_ETH_SS_STATS        0xFF
84 #define ETH_GSTRING_LEN 32
85
86 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
87
88 enum ethtool_stringset {
89         ETH_SS_TEST             = 0,
90         ETH_SS_STATS,
91 };
92
93 struct ena_stats {
94         char name[ETH_GSTRING_LEN];
95         int stat_offset;
96 };
97
98 #define ENA_STAT_ENA_COM_ENTRY(stat) { \
99         .name = #stat, \
100         .stat_offset = offsetof(struct ena_com_stats_admin, stat) \
101 }
102
103 #define ENA_STAT_ENTRY(stat, stat_type) { \
104         .name = #stat, \
105         .stat_offset = offsetof(struct ena_stats_##stat_type, stat) \
106 }
107
108 #define ENA_STAT_RX_ENTRY(stat) \
109         ENA_STAT_ENTRY(stat, rx)
110
111 #define ENA_STAT_TX_ENTRY(stat) \
112         ENA_STAT_ENTRY(stat, tx)
113
114 #define ENA_STAT_GLOBAL_ENTRY(stat) \
115         ENA_STAT_ENTRY(stat, dev)
116
117 static const struct ena_stats ena_stats_global_strings[] = {
118         ENA_STAT_GLOBAL_ENTRY(tx_timeout),
119         ENA_STAT_GLOBAL_ENTRY(io_suspend),
120         ENA_STAT_GLOBAL_ENTRY(io_resume),
121         ENA_STAT_GLOBAL_ENTRY(wd_expired),
122         ENA_STAT_GLOBAL_ENTRY(interface_up),
123         ENA_STAT_GLOBAL_ENTRY(interface_down),
124         ENA_STAT_GLOBAL_ENTRY(admin_q_pause),
125 };
126
127 static const struct ena_stats ena_stats_tx_strings[] = {
128         ENA_STAT_TX_ENTRY(cnt),
129         ENA_STAT_TX_ENTRY(bytes),
130         ENA_STAT_TX_ENTRY(queue_stop),
131         ENA_STAT_TX_ENTRY(queue_wakeup),
132         ENA_STAT_TX_ENTRY(dma_mapping_err),
133         ENA_STAT_TX_ENTRY(linearize),
134         ENA_STAT_TX_ENTRY(linearize_failed),
135         ENA_STAT_TX_ENTRY(tx_poll),
136         ENA_STAT_TX_ENTRY(doorbells),
137         ENA_STAT_TX_ENTRY(prepare_ctx_err),
138         ENA_STAT_TX_ENTRY(missing_tx_comp),
139         ENA_STAT_TX_ENTRY(bad_req_id),
140 };
141
142 static const struct ena_stats ena_stats_rx_strings[] = {
143         ENA_STAT_RX_ENTRY(cnt),
144         ENA_STAT_RX_ENTRY(bytes),
145         ENA_STAT_RX_ENTRY(refil_partial),
146         ENA_STAT_RX_ENTRY(bad_csum),
147         ENA_STAT_RX_ENTRY(page_alloc_fail),
148         ENA_STAT_RX_ENTRY(skb_alloc_fail),
149         ENA_STAT_RX_ENTRY(dma_mapping_err),
150         ENA_STAT_RX_ENTRY(bad_desc_num),
151         ENA_STAT_RX_ENTRY(small_copy_len_pkt),
152 };
153
154 static const struct ena_stats ena_stats_ena_com_strings[] = {
155         ENA_STAT_ENA_COM_ENTRY(aborted_cmd),
156         ENA_STAT_ENA_COM_ENTRY(submitted_cmd),
157         ENA_STAT_ENA_COM_ENTRY(completed_cmd),
158         ENA_STAT_ENA_COM_ENTRY(out_of_space),
159         ENA_STAT_ENA_COM_ENTRY(no_completion),
160 };
161
162 #define ENA_STATS_ARRAY_GLOBAL  ARRAY_SIZE(ena_stats_global_strings)
163 #define ENA_STATS_ARRAY_TX      ARRAY_SIZE(ena_stats_tx_strings)
164 #define ENA_STATS_ARRAY_RX      ARRAY_SIZE(ena_stats_rx_strings)
165 #define ENA_STATS_ARRAY_ENA_COM ARRAY_SIZE(ena_stats_ena_com_strings)
166
167 /** Vendor ID used by Amazon devices */
168 #define PCI_VENDOR_ID_AMAZON 0x1D0F
169 /** Amazon devices */
170 #define PCI_DEVICE_ID_ENA_VF    0xEC20
171 #define PCI_DEVICE_ID_ENA_LLQ_VF        0xEC21
172
173 #define ENA_TX_OFFLOAD_MASK     (\
174         PKT_TX_L4_MASK |         \
175         PKT_TX_IP_CKSUM |        \
176         PKT_TX_TCP_SEG)
177
178 #define ENA_TX_OFFLOAD_NOTSUP_MASK      \
179         (PKT_TX_OFFLOAD_MASK ^ ENA_TX_OFFLOAD_MASK)
180
181 static const struct rte_pci_id pci_id_ena_map[] = {
182         { RTE_PCI_DEVICE(PCI_VENDOR_ID_AMAZON, PCI_DEVICE_ID_ENA_VF) },
183         { RTE_PCI_DEVICE(PCI_VENDOR_ID_AMAZON, PCI_DEVICE_ID_ENA_LLQ_VF) },
184         { .device_id = 0 },
185 };
186
187 static int ena_device_init(struct ena_com_dev *ena_dev,
188                            struct ena_com_dev_get_features_ctx *get_feat_ctx);
189 static int ena_dev_configure(struct rte_eth_dev *dev);
190 static uint16_t eth_ena_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
191                                   uint16_t nb_pkts);
192 static uint16_t eth_ena_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
193                 uint16_t nb_pkts);
194 static int ena_tx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
195                               uint16_t nb_desc, unsigned int socket_id,
196                               const struct rte_eth_txconf *tx_conf);
197 static int ena_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
198                               uint16_t nb_desc, unsigned int socket_id,
199                               const struct rte_eth_rxconf *rx_conf,
200                               struct rte_mempool *mp);
201 static uint16_t eth_ena_recv_pkts(void *rx_queue,
202                                   struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
203 static int ena_populate_rx_queue(struct ena_ring *rxq, unsigned int count);
204 static void ena_init_rings(struct ena_adapter *adapter);
205 static int ena_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
206 static int ena_start(struct rte_eth_dev *dev);
207 static void ena_close(struct rte_eth_dev *dev);
208 static void ena_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats);
209 static void ena_rx_queue_release_all(struct rte_eth_dev *dev);
210 static void ena_tx_queue_release_all(struct rte_eth_dev *dev);
211 static void ena_rx_queue_release(void *queue);
212 static void ena_tx_queue_release(void *queue);
213 static void ena_rx_queue_release_bufs(struct ena_ring *ring);
214 static void ena_tx_queue_release_bufs(struct ena_ring *ring);
215 static int ena_link_update(struct rte_eth_dev *dev,
216                            __rte_unused int wait_to_complete);
217 static int ena_queue_restart(struct ena_ring *ring);
218 static int ena_queue_restart_all(struct rte_eth_dev *dev,
219                                  enum ena_ring_type ring_type);
220 static void ena_stats_restart(struct rte_eth_dev *dev);
221 static void ena_infos_get(__rte_unused struct rte_eth_dev *dev,
222                           struct rte_eth_dev_info *dev_info);
223 static int ena_rss_reta_update(struct rte_eth_dev *dev,
224                                struct rte_eth_rss_reta_entry64 *reta_conf,
225                                uint16_t reta_size);
226 static int ena_rss_reta_query(struct rte_eth_dev *dev,
227                               struct rte_eth_rss_reta_entry64 *reta_conf,
228                               uint16_t reta_size);
229 static int ena_get_sset_count(struct rte_eth_dev *dev, int sset);
230
231 static const struct eth_dev_ops ena_dev_ops = {
232         .dev_configure        = ena_dev_configure,
233         .dev_infos_get        = ena_infos_get,
234         .rx_queue_setup       = ena_rx_queue_setup,
235         .tx_queue_setup       = ena_tx_queue_setup,
236         .dev_start            = ena_start,
237         .link_update          = ena_link_update,
238         .stats_get            = ena_stats_get,
239         .mtu_set              = ena_mtu_set,
240         .rx_queue_release     = ena_rx_queue_release,
241         .tx_queue_release     = ena_tx_queue_release,
242         .dev_close            = ena_close,
243         .reta_update          = ena_rss_reta_update,
244         .reta_query           = ena_rss_reta_query,
245 };
246
247 #define NUMA_NO_NODE    SOCKET_ID_ANY
248
249 static inline int ena_cpu_to_node(int cpu)
250 {
251         struct rte_config *config = rte_eal_get_configuration();
252
253         if (likely(cpu < RTE_MAX_MEMZONE))
254                 return config->mem_config->memzone[cpu].socket_id;
255
256         return NUMA_NO_NODE;
257 }
258
259 static inline void ena_rx_mbuf_prepare(struct rte_mbuf *mbuf,
260                                        struct ena_com_rx_ctx *ena_rx_ctx)
261 {
262         uint64_t ol_flags = 0;
263
264         if (ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_TCP)
265                 ol_flags |= PKT_TX_TCP_CKSUM;
266         else if (ena_rx_ctx->l4_proto == ENA_ETH_IO_L4_PROTO_UDP)
267                 ol_flags |= PKT_TX_UDP_CKSUM;
268
269         if (ena_rx_ctx->l3_proto == ENA_ETH_IO_L3_PROTO_IPV4)
270                 ol_flags |= PKT_TX_IPV4;
271         else if (ena_rx_ctx->l3_proto == ENA_ETH_IO_L3_PROTO_IPV6)
272                 ol_flags |= PKT_TX_IPV6;
273
274         if (unlikely(ena_rx_ctx->l4_csum_err))
275                 ol_flags |= PKT_RX_L4_CKSUM_BAD;
276         if (unlikely(ena_rx_ctx->l3_csum_err))
277                 ol_flags |= PKT_RX_IP_CKSUM_BAD;
278
279         mbuf->ol_flags = ol_flags;
280 }
281
282 static inline void ena_tx_mbuf_prepare(struct rte_mbuf *mbuf,
283                                        struct ena_com_tx_ctx *ena_tx_ctx)
284 {
285         struct ena_com_tx_meta *ena_meta = &ena_tx_ctx->ena_meta;
286
287         if (mbuf->ol_flags &
288             (PKT_TX_L4_MASK | PKT_TX_IP_CKSUM | PKT_TX_TCP_SEG)) {
289                 /* check if TSO is required */
290                 if (mbuf->ol_flags & PKT_TX_TCP_SEG) {
291                         ena_tx_ctx->tso_enable = true;
292
293                         ena_meta->l4_hdr_len = GET_L4_HDR_LEN(mbuf);
294                 }
295
296                 /* check if L3 checksum is needed */
297                 if (mbuf->ol_flags & PKT_TX_IP_CKSUM)
298                         ena_tx_ctx->l3_csum_enable = true;
299
300                 if (mbuf->ol_flags & PKT_TX_IPV6) {
301                         ena_tx_ctx->l3_proto = ENA_ETH_IO_L3_PROTO_IPV6;
302                 } else {
303                         ena_tx_ctx->l3_proto = ENA_ETH_IO_L3_PROTO_IPV4;
304
305                         /* set don't fragment (DF) flag */
306                         if (mbuf->packet_type &
307                                 (RTE_PTYPE_L4_NONFRAG
308                                  | RTE_PTYPE_INNER_L4_NONFRAG))
309                                 ena_tx_ctx->df = true;
310                 }
311
312                 /* check if L4 checksum is needed */
313                 switch (mbuf->ol_flags & PKT_TX_L4_MASK) {
314                 case PKT_TX_TCP_CKSUM:
315                         ena_tx_ctx->l4_proto = ENA_ETH_IO_L4_PROTO_TCP;
316                         ena_tx_ctx->l4_csum_enable = true;
317                         break;
318                 case PKT_TX_UDP_CKSUM:
319                         ena_tx_ctx->l4_proto = ENA_ETH_IO_L4_PROTO_UDP;
320                         ena_tx_ctx->l4_csum_enable = true;
321                         break;
322                 default:
323                         ena_tx_ctx->l4_proto = ENA_ETH_IO_L4_PROTO_UNKNOWN;
324                         ena_tx_ctx->l4_csum_enable = false;
325                         break;
326                 }
327
328                 ena_meta->mss = mbuf->tso_segsz;
329                 ena_meta->l3_hdr_len = mbuf->l3_len;
330                 ena_meta->l3_hdr_offset = mbuf->l2_len;
331                 /* this param needed only for TSO */
332                 ena_meta->l3_outer_hdr_len = 0;
333                 ena_meta->l3_outer_hdr_offset = 0;
334
335                 ena_tx_ctx->meta_valid = true;
336         } else {
337                 ena_tx_ctx->meta_valid = false;
338         }
339 }
340
341 static void ena_config_host_info(struct ena_com_dev *ena_dev)
342 {
343         struct ena_admin_host_info *host_info;
344         int rc;
345
346         /* Allocate only the host info */
347         rc = ena_com_allocate_host_info(ena_dev);
348         if (rc) {
349                 RTE_LOG(ERR, PMD, "Cannot allocate host info\n");
350                 return;
351         }
352
353         host_info = ena_dev->host_attr.host_info;
354
355         host_info->os_type = ENA_ADMIN_OS_DPDK;
356         host_info->kernel_ver = RTE_VERSION;
357         snprintf((char *)host_info->kernel_ver_str,
358                  sizeof(host_info->kernel_ver_str),
359                  "%s", rte_version());
360         host_info->os_dist = RTE_VERSION;
361         snprintf((char *)host_info->os_dist_str,
362                  sizeof(host_info->os_dist_str),
363                  "%s", rte_version());
364         host_info->driver_version =
365                 (DRV_MODULE_VER_MAJOR) |
366                 (DRV_MODULE_VER_MINOR << ENA_ADMIN_HOST_INFO_MINOR_SHIFT) |
367                 (DRV_MODULE_VER_SUBMINOR <<
368                         ENA_ADMIN_HOST_INFO_SUB_MINOR_SHIFT);
369
370         rc = ena_com_set_host_attributes(ena_dev);
371         if (rc) {
372                 RTE_LOG(ERR, PMD, "Cannot set host attributes\n");
373                 if (rc != -EPERM)
374                         goto err;
375         }
376
377         return;
378
379 err:
380         ena_com_delete_host_info(ena_dev);
381 }
382
383 static int
384 ena_get_sset_count(struct rte_eth_dev *dev, int sset)
385 {
386         if (sset != ETH_SS_STATS)
387                 return -EOPNOTSUPP;
388
389          /* Workaround for clang:
390          * touch internal structures to prevent
391          * compiler error
392          */
393         ENA_TOUCH(ena_stats_global_strings);
394         ENA_TOUCH(ena_stats_tx_strings);
395         ENA_TOUCH(ena_stats_rx_strings);
396         ENA_TOUCH(ena_stats_ena_com_strings);
397
398         return  dev->data->nb_tx_queues *
399                 (ENA_STATS_ARRAY_TX + ENA_STATS_ARRAY_RX) +
400                 ENA_STATS_ARRAY_GLOBAL + ENA_STATS_ARRAY_ENA_COM;
401 }
402
403 static void ena_config_debug_area(struct ena_adapter *adapter)
404 {
405         u32 debug_area_size;
406         int rc, ss_count;
407
408         ss_count = ena_get_sset_count(adapter->rte_dev, ETH_SS_STATS);
409         if (ss_count <= 0) {
410                 RTE_LOG(ERR, PMD, "SS count is negative\n");
411                 return;
412         }
413
414         /* allocate 32 bytes for each string and 64bit for the value */
415         debug_area_size = ss_count * ETH_GSTRING_LEN + sizeof(u64) * ss_count;
416
417         rc = ena_com_allocate_debug_area(&adapter->ena_dev, debug_area_size);
418         if (rc) {
419                 RTE_LOG(ERR, PMD, "Cannot allocate debug area\n");
420                 return;
421         }
422
423         rc = ena_com_set_host_attributes(&adapter->ena_dev);
424         if (rc) {
425                 RTE_LOG(WARNING, PMD, "Cannot set host attributes\n");
426                 if (rc != -EPERM)
427                         goto err;
428         }
429
430         return;
431 err:
432         ena_com_delete_debug_area(&adapter->ena_dev);
433 }
434
435 static void ena_close(struct rte_eth_dev *dev)
436 {
437         struct ena_adapter *adapter =
438                 (struct ena_adapter *)(dev->data->dev_private);
439
440         adapter->state = ENA_ADAPTER_STATE_STOPPED;
441
442         ena_rx_queue_release_all(dev);
443         ena_tx_queue_release_all(dev);
444 }
445
446 static int ena_rss_reta_update(struct rte_eth_dev *dev,
447                                struct rte_eth_rss_reta_entry64 *reta_conf,
448                                uint16_t reta_size)
449 {
450         struct ena_adapter *adapter =
451                 (struct ena_adapter *)(dev->data->dev_private);
452         struct ena_com_dev *ena_dev = &adapter->ena_dev;
453         int ret, i;
454         u16 entry_value;
455         int conf_idx;
456         int idx;
457
458         if ((reta_size == 0) || (reta_conf == NULL))
459                 return -EINVAL;
460
461         if (reta_size > ENA_RX_RSS_TABLE_SIZE) {
462                 RTE_LOG(WARNING, PMD,
463                         "indirection table %d is bigger than supported (%d)\n",
464                         reta_size, ENA_RX_RSS_TABLE_SIZE);
465                 ret = -EINVAL;
466                 goto err;
467         }
468
469         for (i = 0 ; i < reta_size ; i++) {
470                 /* each reta_conf is for 64 entries.
471                  * to support 128 we use 2 conf of 64
472                  */
473                 conf_idx = i / RTE_RETA_GROUP_SIZE;
474                 idx = i % RTE_RETA_GROUP_SIZE;
475                 if (TEST_BIT(reta_conf[conf_idx].mask, idx)) {
476                         entry_value =
477                                 ENA_IO_RXQ_IDX(reta_conf[conf_idx].reta[idx]);
478                         ret = ena_com_indirect_table_fill_entry(ena_dev,
479                                                                 i,
480                                                                 entry_value);
481                         if (unlikely(ret && (ret != ENA_COM_PERMISSION))) {
482                                 RTE_LOG(ERR, PMD,
483                                         "Cannot fill indirect table\n");
484                                 ret = -ENOTSUP;
485                                 goto err;
486                         }
487                 }
488         }
489
490         ret = ena_com_indirect_table_set(ena_dev);
491         if (unlikely(ret && (ret != ENA_COM_PERMISSION))) {
492                 RTE_LOG(ERR, PMD, "Cannot flush the indirect table\n");
493                 ret = -ENOTSUP;
494                 goto err;
495         }
496
497         RTE_LOG(DEBUG, PMD, "%s(): RSS configured %d entries  for port %d\n",
498                 __func__, reta_size, adapter->rte_dev->data->port_id);
499 err:
500         return ret;
501 }
502
503 /* Query redirection table. */
504 static int ena_rss_reta_query(struct rte_eth_dev *dev,
505                               struct rte_eth_rss_reta_entry64 *reta_conf,
506                               uint16_t reta_size)
507 {
508         struct ena_adapter *adapter =
509                 (struct ena_adapter *)(dev->data->dev_private);
510         struct ena_com_dev *ena_dev = &adapter->ena_dev;
511         int ret;
512         int i;
513         u32 indirect_table[ENA_RX_RSS_TABLE_SIZE] = {0};
514         int reta_conf_idx;
515         int reta_idx;
516
517         if (reta_size == 0 || reta_conf == NULL ||
518             (reta_size > RTE_RETA_GROUP_SIZE && ((reta_conf + 1) == NULL)))
519                 return -EINVAL;
520
521         ret = ena_com_indirect_table_get(ena_dev, indirect_table);
522         if (unlikely(ret && (ret != ENA_COM_PERMISSION))) {
523                 RTE_LOG(ERR, PMD, "cannot get indirect table\n");
524                 ret = -ENOTSUP;
525                 goto err;
526         }
527
528         for (i = 0 ; i < reta_size ; i++) {
529                 reta_conf_idx = i / RTE_RETA_GROUP_SIZE;
530                 reta_idx = i % RTE_RETA_GROUP_SIZE;
531                 if (TEST_BIT(reta_conf[reta_conf_idx].mask, reta_idx))
532                         reta_conf[reta_conf_idx].reta[reta_idx] =
533                                 ENA_IO_RXQ_IDX_REV(indirect_table[i]);
534         }
535 err:
536         return ret;
537 }
538
539 static int ena_rss_init_default(struct ena_adapter *adapter)
540 {
541         struct ena_com_dev *ena_dev = &adapter->ena_dev;
542         uint16_t nb_rx_queues = adapter->rte_dev->data->nb_rx_queues;
543         int rc, i;
544         u32 val;
545
546         rc = ena_com_rss_init(ena_dev, ENA_RX_RSS_TABLE_LOG_SIZE);
547         if (unlikely(rc)) {
548                 RTE_LOG(ERR, PMD, "Cannot init indirect table\n");
549                 goto err_rss_init;
550         }
551
552         for (i = 0; i < ENA_RX_RSS_TABLE_SIZE; i++) {
553                 val = i % nb_rx_queues;
554                 rc = ena_com_indirect_table_fill_entry(ena_dev, i,
555                                                        ENA_IO_RXQ_IDX(val));
556                 if (unlikely(rc && (rc != ENA_COM_PERMISSION))) {
557                         RTE_LOG(ERR, PMD, "Cannot fill indirect table\n");
558                         goto err_fill_indir;
559                 }
560         }
561
562         rc = ena_com_fill_hash_function(ena_dev, ENA_ADMIN_CRC32, NULL,
563                                         ENA_HASH_KEY_SIZE, 0xFFFFFFFF);
564         if (unlikely(rc && (rc != ENA_COM_PERMISSION))) {
565                 RTE_LOG(INFO, PMD, "Cannot fill hash function\n");
566                 goto err_fill_indir;
567         }
568
569         rc = ena_com_set_default_hash_ctrl(ena_dev);
570         if (unlikely(rc && (rc != ENA_COM_PERMISSION))) {
571                 RTE_LOG(INFO, PMD, "Cannot fill hash control\n");
572                 goto err_fill_indir;
573         }
574
575         rc = ena_com_indirect_table_set(ena_dev);
576         if (unlikely(rc && (rc != ENA_COM_PERMISSION))) {
577                 RTE_LOG(ERR, PMD, "Cannot flush the indirect table\n");
578                 goto err_fill_indir;
579         }
580         RTE_LOG(DEBUG, PMD, "RSS configured for port %d\n",
581                 adapter->rte_dev->data->port_id);
582
583         return 0;
584
585 err_fill_indir:
586         ena_com_rss_destroy(ena_dev);
587 err_rss_init:
588
589         return rc;
590 }
591
592 static void ena_rx_queue_release_all(struct rte_eth_dev *dev)
593 {
594         struct ena_ring **queues = (struct ena_ring **)dev->data->rx_queues;
595         int nb_queues = dev->data->nb_rx_queues;
596         int i;
597
598         for (i = 0; i < nb_queues; i++)
599                 ena_rx_queue_release(queues[i]);
600 }
601
602 static void ena_tx_queue_release_all(struct rte_eth_dev *dev)
603 {
604         struct ena_ring **queues = (struct ena_ring **)dev->data->tx_queues;
605         int nb_queues = dev->data->nb_tx_queues;
606         int i;
607
608         for (i = 0; i < nb_queues; i++)
609                 ena_tx_queue_release(queues[i]);
610 }
611
612 static void ena_rx_queue_release(void *queue)
613 {
614         struct ena_ring *ring = (struct ena_ring *)queue;
615         struct ena_adapter *adapter = ring->adapter;
616         int ena_qid;
617
618         ena_assert_msg(ring->configured,
619                        "API violation - releasing not configured queue");
620         ena_assert_msg(ring->adapter->state != ENA_ADAPTER_STATE_RUNNING,
621                        "API violation");
622
623         /* Destroy HW queue */
624         ena_qid = ENA_IO_RXQ_IDX(ring->id);
625         ena_com_destroy_io_queue(&adapter->ena_dev, ena_qid);
626
627         /* Free all bufs */
628         ena_rx_queue_release_bufs(ring);
629
630         /* Free ring resources */
631         if (ring->rx_buffer_info)
632                 rte_free(ring->rx_buffer_info);
633         ring->rx_buffer_info = NULL;
634
635         ring->configured = 0;
636
637         RTE_LOG(NOTICE, PMD, "RX Queue %d:%d released\n",
638                 ring->port_id, ring->id);
639 }
640
641 static void ena_tx_queue_release(void *queue)
642 {
643         struct ena_ring *ring = (struct ena_ring *)queue;
644         struct ena_adapter *adapter = ring->adapter;
645         int ena_qid;
646
647         ena_assert_msg(ring->configured,
648                        "API violation. Releasing not configured queue");
649         ena_assert_msg(ring->adapter->state != ENA_ADAPTER_STATE_RUNNING,
650                        "API violation");
651
652         /* Destroy HW queue */
653         ena_qid = ENA_IO_TXQ_IDX(ring->id);
654         ena_com_destroy_io_queue(&adapter->ena_dev, ena_qid);
655
656         /* Free all bufs */
657         ena_tx_queue_release_bufs(ring);
658
659         /* Free ring resources */
660         if (ring->tx_buffer_info)
661                 rte_free(ring->tx_buffer_info);
662
663         if (ring->empty_tx_reqs)
664                 rte_free(ring->empty_tx_reqs);
665
666         ring->empty_tx_reqs = NULL;
667         ring->tx_buffer_info = NULL;
668
669         ring->configured = 0;
670
671         RTE_LOG(NOTICE, PMD, "TX Queue %d:%d released\n",
672                 ring->port_id, ring->id);
673 }
674
675 static void ena_rx_queue_release_bufs(struct ena_ring *ring)
676 {
677         unsigned int ring_mask = ring->ring_size - 1;
678
679         while (ring->next_to_clean != ring->next_to_use) {
680                 struct rte_mbuf *m =
681                         ring->rx_buffer_info[ring->next_to_clean & ring_mask];
682
683                 if (m)
684                         rte_mbuf_raw_free(m);
685
686                 ring->next_to_clean++;
687         }
688 }
689
690 static void ena_tx_queue_release_bufs(struct ena_ring *ring)
691 {
692         unsigned int ring_mask = ring->ring_size - 1;
693
694         while (ring->next_to_clean != ring->next_to_use) {
695                 struct ena_tx_buffer *tx_buf =
696                         &ring->tx_buffer_info[ring->next_to_clean & ring_mask];
697
698                 if (tx_buf->mbuf)
699                         rte_pktmbuf_free(tx_buf->mbuf);
700
701                 ring->next_to_clean++;
702         }
703 }
704
705 static int ena_link_update(struct rte_eth_dev *dev,
706                            __rte_unused int wait_to_complete)
707 {
708         struct rte_eth_link *link = &dev->data->dev_link;
709
710         link->link_status = 1;
711         link->link_speed = ETH_SPEED_NUM_10G;
712         link->link_duplex = ETH_LINK_FULL_DUPLEX;
713
714         return 0;
715 }
716
717 static int ena_queue_restart_all(struct rte_eth_dev *dev,
718                                  enum ena_ring_type ring_type)
719 {
720         struct ena_adapter *adapter =
721                 (struct ena_adapter *)(dev->data->dev_private);
722         struct ena_ring *queues = NULL;
723         int i = 0;
724         int rc = 0;
725
726         queues = (ring_type == ENA_RING_TYPE_RX) ?
727                 adapter->rx_ring : adapter->tx_ring;
728
729         for (i = 0; i < adapter->num_queues; i++) {
730                 if (queues[i].configured) {
731                         if (ring_type == ENA_RING_TYPE_RX) {
732                                 ena_assert_msg(
733                                         dev->data->rx_queues[i] == &queues[i],
734                                         "Inconsistent state of rx queues\n");
735                         } else {
736                                 ena_assert_msg(
737                                         dev->data->tx_queues[i] == &queues[i],
738                                         "Inconsistent state of tx queues\n");
739                         }
740
741                         rc = ena_queue_restart(&queues[i]);
742
743                         if (rc) {
744                                 PMD_INIT_LOG(ERR,
745                                              "failed to restart queue %d type(%d)",
746                                              i, ring_type);
747                                 return -1;
748                         }
749                 }
750         }
751
752         return 0;
753 }
754
755 static uint32_t ena_get_mtu_conf(struct ena_adapter *adapter)
756 {
757         uint32_t max_frame_len = adapter->max_mtu;
758
759         if (adapter->rte_eth_dev_data->dev_conf.rxmode.jumbo_frame == 1)
760                 max_frame_len =
761                         adapter->rte_eth_dev_data->dev_conf.rxmode.max_rx_pkt_len;
762
763         return max_frame_len;
764 }
765
766 static int ena_check_valid_conf(struct ena_adapter *adapter)
767 {
768         uint32_t max_frame_len = ena_get_mtu_conf(adapter);
769
770         if (max_frame_len > adapter->max_mtu) {
771                 PMD_INIT_LOG(ERR, "Unsupported MTU of %d", max_frame_len);
772                 return -1;
773         }
774
775         return 0;
776 }
777
778 static int
779 ena_calc_queue_size(struct ena_com_dev *ena_dev,
780                     struct ena_com_dev_get_features_ctx *get_feat_ctx)
781 {
782         uint32_t queue_size = ENA_DEFAULT_RING_SIZE;
783
784         queue_size = RTE_MIN(queue_size,
785                              get_feat_ctx->max_queues.max_cq_depth);
786         queue_size = RTE_MIN(queue_size,
787                              get_feat_ctx->max_queues.max_sq_depth);
788
789         if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV)
790                 queue_size = RTE_MIN(queue_size,
791                                      get_feat_ctx->max_queues.max_llq_depth);
792
793         /* Round down to power of 2 */
794         if (!rte_is_power_of_2(queue_size))
795                 queue_size = rte_align32pow2(queue_size >> 1);
796
797         if (queue_size == 0) {
798                 PMD_INIT_LOG(ERR, "Invalid queue size");
799                 return -EFAULT;
800         }
801
802         return queue_size;
803 }
804
805 static void ena_stats_restart(struct rte_eth_dev *dev)
806 {
807         struct ena_adapter *adapter =
808                 (struct ena_adapter *)(dev->data->dev_private);
809
810         rte_atomic64_init(&adapter->drv_stats->ierrors);
811         rte_atomic64_init(&adapter->drv_stats->oerrors);
812         rte_atomic64_init(&adapter->drv_stats->rx_nombuf);
813 }
814
815 static void ena_stats_get(struct rte_eth_dev *dev,
816                           struct rte_eth_stats *stats)
817 {
818         struct ena_admin_basic_stats ena_stats;
819         struct ena_adapter *adapter =
820                 (struct ena_adapter *)(dev->data->dev_private);
821         struct ena_com_dev *ena_dev = &adapter->ena_dev;
822         int rc;
823
824         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
825                 return;
826
827         memset(&ena_stats, 0, sizeof(ena_stats));
828         rc = ena_com_get_dev_basic_stats(ena_dev, &ena_stats);
829         if (unlikely(rc)) {
830                 RTE_LOG(ERR, PMD, "Could not retrieve statistics from ENA");
831                 return;
832         }
833
834         /* Set of basic statistics from ENA */
835         stats->ipackets = __MERGE_64B_H_L(ena_stats.rx_pkts_high,
836                                           ena_stats.rx_pkts_low);
837         stats->opackets = __MERGE_64B_H_L(ena_stats.tx_pkts_high,
838                                           ena_stats.tx_pkts_low);
839         stats->ibytes = __MERGE_64B_H_L(ena_stats.rx_bytes_high,
840                                         ena_stats.rx_bytes_low);
841         stats->obytes = __MERGE_64B_H_L(ena_stats.tx_bytes_high,
842                                         ena_stats.tx_bytes_low);
843         stats->imissed = __MERGE_64B_H_L(ena_stats.rx_drops_high,
844                                          ena_stats.rx_drops_low);
845
846         /* Driver related stats */
847         stats->ierrors = rte_atomic64_read(&adapter->drv_stats->ierrors);
848         stats->oerrors = rte_atomic64_read(&adapter->drv_stats->oerrors);
849         stats->rx_nombuf = rte_atomic64_read(&adapter->drv_stats->rx_nombuf);
850 }
851
852 static int ena_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
853 {
854         struct ena_adapter *adapter;
855         struct ena_com_dev *ena_dev;
856         int rc = 0;
857
858         ena_assert_msg(dev->data != NULL, "Uninitialized device");
859         ena_assert_msg(dev->data->dev_private != NULL, "Uninitialized device");
860         adapter = (struct ena_adapter *)(dev->data->dev_private);
861
862         ena_dev = &adapter->ena_dev;
863         ena_assert_msg(ena_dev != NULL, "Uninitialized device");
864
865         if (mtu > ena_get_mtu_conf(adapter)) {
866                 RTE_LOG(ERR, PMD,
867                         "Given MTU (%d) exceeds maximum MTU supported (%d)\n",
868                         mtu, ena_get_mtu_conf(adapter));
869                 rc = -EINVAL;
870                 goto err;
871         }
872
873         rc = ena_com_set_dev_mtu(ena_dev, mtu);
874         if (rc)
875                 RTE_LOG(ERR, PMD, "Could not set MTU: %d\n", mtu);
876         else
877                 RTE_LOG(NOTICE, PMD, "Set MTU: %d\n", mtu);
878
879 err:
880         return rc;
881 }
882
883 static int ena_start(struct rte_eth_dev *dev)
884 {
885         struct ena_adapter *adapter =
886                 (struct ena_adapter *)(dev->data->dev_private);
887         int rc = 0;
888
889         if (!(adapter->state == ENA_ADAPTER_STATE_CONFIG ||
890               adapter->state == ENA_ADAPTER_STATE_STOPPED)) {
891                 PMD_INIT_LOG(ERR, "API violation");
892                 return -1;
893         }
894
895         rc = ena_check_valid_conf(adapter);
896         if (rc)
897                 return rc;
898
899         rc = ena_queue_restart_all(dev, ENA_RING_TYPE_RX);
900         if (rc)
901                 return rc;
902
903         rc = ena_queue_restart_all(dev, ENA_RING_TYPE_TX);
904         if (rc)
905                 return rc;
906
907         if (adapter->rte_dev->data->dev_conf.rxmode.mq_mode &
908             ETH_MQ_RX_RSS_FLAG) {
909                 rc = ena_rss_init_default(adapter);
910                 if (rc)
911                         return rc;
912         }
913
914         ena_stats_restart(dev);
915
916         adapter->state = ENA_ADAPTER_STATE_RUNNING;
917
918         return 0;
919 }
920
921 static int ena_queue_restart(struct ena_ring *ring)
922 {
923         int rc, bufs_num;
924
925         ena_assert_msg(ring->configured == 1,
926                        "Trying to restart unconfigured queue\n");
927
928         ring->next_to_clean = 0;
929         ring->next_to_use = 0;
930
931         if (ring->type == ENA_RING_TYPE_TX)
932                 return 0;
933
934         bufs_num = ring->ring_size - 1;
935         rc = ena_populate_rx_queue(ring, bufs_num);
936         if (rc != bufs_num) {
937                 PMD_INIT_LOG(ERR, "Failed to populate rx ring !");
938                 return (-1);
939         }
940
941         return 0;
942 }
943
944 static int ena_tx_queue_setup(struct rte_eth_dev *dev,
945                               uint16_t queue_idx,
946                               uint16_t nb_desc,
947                               __rte_unused unsigned int socket_id,
948                               __rte_unused const struct rte_eth_txconf *tx_conf)
949 {
950         struct ena_com_create_io_ctx ctx =
951                 /* policy set to _HOST just to satisfy icc compiler */
952                 { ENA_ADMIN_PLACEMENT_POLICY_HOST,
953                   ENA_COM_IO_QUEUE_DIRECTION_TX, 0, 0, 0, 0 };
954         struct ena_ring *txq = NULL;
955         struct ena_adapter *adapter =
956                 (struct ena_adapter *)(dev->data->dev_private);
957         unsigned int i;
958         int ena_qid;
959         int rc;
960         struct ena_com_dev *ena_dev = &adapter->ena_dev;
961
962         txq = &adapter->tx_ring[queue_idx];
963
964         if (txq->configured) {
965                 RTE_LOG(CRIT, PMD,
966                         "API violation. Queue %d is already configured\n",
967                         queue_idx);
968                 return -1;
969         }
970
971         if (!rte_is_power_of_2(nb_desc)) {
972                 RTE_LOG(ERR, PMD,
973                         "Unsupported size of RX queue: %d is not a power of 2.",
974                         nb_desc);
975                 return -EINVAL;
976         }
977
978         if (nb_desc > adapter->tx_ring_size) {
979                 RTE_LOG(ERR, PMD,
980                         "Unsupported size of TX queue (max size: %d)\n",
981                         adapter->tx_ring_size);
982                 return -EINVAL;
983         }
984
985         ena_qid = ENA_IO_TXQ_IDX(queue_idx);
986
987         ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_TX;
988         ctx.qid = ena_qid;
989         ctx.msix_vector = -1; /* admin interrupts not used */
990         ctx.mem_queue_type = ena_dev->tx_mem_queue_type;
991         ctx.queue_size = adapter->tx_ring_size;
992         ctx.numa_node = ena_cpu_to_node(queue_idx);
993
994         rc = ena_com_create_io_queue(ena_dev, &ctx);
995         if (rc) {
996                 RTE_LOG(ERR, PMD,
997                         "failed to create io TX queue #%d (qid:%d) rc: %d\n",
998                         queue_idx, ena_qid, rc);
999         }
1000         txq->ena_com_io_cq = &ena_dev->io_cq_queues[ena_qid];
1001         txq->ena_com_io_sq = &ena_dev->io_sq_queues[ena_qid];
1002
1003         rc = ena_com_get_io_handlers(ena_dev, ena_qid,
1004                                      &txq->ena_com_io_sq,
1005                                      &txq->ena_com_io_cq);
1006         if (rc) {
1007                 RTE_LOG(ERR, PMD,
1008                         "Failed to get TX queue handlers. TX queue num %d rc: %d\n",
1009                         queue_idx, rc);
1010                 ena_com_destroy_io_queue(ena_dev, ena_qid);
1011                 goto err;
1012         }
1013
1014         txq->port_id = dev->data->port_id;
1015         txq->next_to_clean = 0;
1016         txq->next_to_use = 0;
1017         txq->ring_size = nb_desc;
1018
1019         txq->tx_buffer_info = rte_zmalloc("txq->tx_buffer_info",
1020                                           sizeof(struct ena_tx_buffer) *
1021                                           txq->ring_size,
1022                                           RTE_CACHE_LINE_SIZE);
1023         if (!txq->tx_buffer_info) {
1024                 RTE_LOG(ERR, PMD, "failed to alloc mem for tx buffer info\n");
1025                 return -ENOMEM;
1026         }
1027
1028         txq->empty_tx_reqs = rte_zmalloc("txq->empty_tx_reqs",
1029                                          sizeof(u16) * txq->ring_size,
1030                                          RTE_CACHE_LINE_SIZE);
1031         if (!txq->empty_tx_reqs) {
1032                 RTE_LOG(ERR, PMD, "failed to alloc mem for tx reqs\n");
1033                 rte_free(txq->tx_buffer_info);
1034                 return -ENOMEM;
1035         }
1036         for (i = 0; i < txq->ring_size; i++)
1037                 txq->empty_tx_reqs[i] = i;
1038
1039         /* Store pointer to this queue in upper layer */
1040         txq->configured = 1;
1041         dev->data->tx_queues[queue_idx] = txq;
1042 err:
1043         return rc;
1044 }
1045
1046 static int ena_rx_queue_setup(struct rte_eth_dev *dev,
1047                               uint16_t queue_idx,
1048                               uint16_t nb_desc,
1049                               __rte_unused unsigned int socket_id,
1050                               __rte_unused const struct rte_eth_rxconf *rx_conf,
1051                               struct rte_mempool *mp)
1052 {
1053         struct ena_com_create_io_ctx ctx =
1054                 /* policy set to _HOST just to satisfy icc compiler */
1055                 { ENA_ADMIN_PLACEMENT_POLICY_HOST,
1056                   ENA_COM_IO_QUEUE_DIRECTION_RX, 0, 0, 0, 0 };
1057         struct ena_adapter *adapter =
1058                 (struct ena_adapter *)(dev->data->dev_private);
1059         struct ena_ring *rxq = NULL;
1060         uint16_t ena_qid = 0;
1061         int rc = 0;
1062         struct ena_com_dev *ena_dev = &adapter->ena_dev;
1063
1064         rxq = &adapter->rx_ring[queue_idx];
1065         if (rxq->configured) {
1066                 RTE_LOG(CRIT, PMD,
1067                         "API violation. Queue %d is already configured\n",
1068                         queue_idx);
1069                 return -1;
1070         }
1071
1072         if (!rte_is_power_of_2(nb_desc)) {
1073                 RTE_LOG(ERR, PMD,
1074                         "Unsupported size of TX queue: %d is not a power of 2.",
1075                         nb_desc);
1076                 return -EINVAL;
1077         }
1078
1079         if (nb_desc > adapter->rx_ring_size) {
1080                 RTE_LOG(ERR, PMD,
1081                         "Unsupported size of RX queue (max size: %d)\n",
1082                         adapter->rx_ring_size);
1083                 return -EINVAL;
1084         }
1085
1086         ena_qid = ENA_IO_RXQ_IDX(queue_idx);
1087
1088         ctx.qid = ena_qid;
1089         ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_RX;
1090         ctx.mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST;
1091         ctx.msix_vector = -1; /* admin interrupts not used */
1092         ctx.queue_size = adapter->rx_ring_size;
1093         ctx.numa_node = ena_cpu_to_node(queue_idx);
1094
1095         rc = ena_com_create_io_queue(ena_dev, &ctx);
1096         if (rc)
1097                 RTE_LOG(ERR, PMD, "failed to create io RX queue #%d rc: %d\n",
1098                         queue_idx, rc);
1099
1100         rxq->ena_com_io_cq = &ena_dev->io_cq_queues[ena_qid];
1101         rxq->ena_com_io_sq = &ena_dev->io_sq_queues[ena_qid];
1102
1103         rc = ena_com_get_io_handlers(ena_dev, ena_qid,
1104                                      &rxq->ena_com_io_sq,
1105                                      &rxq->ena_com_io_cq);
1106         if (rc) {
1107                 RTE_LOG(ERR, PMD,
1108                         "Failed to get RX queue handlers. RX queue num %d rc: %d\n",
1109                         queue_idx, rc);
1110                 ena_com_destroy_io_queue(ena_dev, ena_qid);
1111         }
1112
1113         rxq->port_id = dev->data->port_id;
1114         rxq->next_to_clean = 0;
1115         rxq->next_to_use = 0;
1116         rxq->ring_size = nb_desc;
1117         rxq->mb_pool = mp;
1118
1119         rxq->rx_buffer_info = rte_zmalloc("rxq->buffer_info",
1120                                           sizeof(struct rte_mbuf *) * nb_desc,
1121                                           RTE_CACHE_LINE_SIZE);
1122         if (!rxq->rx_buffer_info) {
1123                 RTE_LOG(ERR, PMD, "failed to alloc mem for rx buffer info\n");
1124                 return -ENOMEM;
1125         }
1126
1127         /* Store pointer to this queue in upper layer */
1128         rxq->configured = 1;
1129         dev->data->rx_queues[queue_idx] = rxq;
1130
1131         return rc;
1132 }
1133
1134 static int ena_populate_rx_queue(struct ena_ring *rxq, unsigned int count)
1135 {
1136         unsigned int i;
1137         int rc;
1138         uint16_t ring_size = rxq->ring_size;
1139         uint16_t ring_mask = ring_size - 1;
1140         uint16_t next_to_use = rxq->next_to_use;
1141         uint16_t in_use;
1142         struct rte_mbuf **mbufs = &rxq->rx_buffer_info[0];
1143
1144         if (unlikely(!count))
1145                 return 0;
1146
1147         in_use = rxq->next_to_use - rxq->next_to_clean;
1148         ena_assert_msg(((in_use + count) < ring_size), "bad ring state");
1149
1150         count = RTE_MIN(count,
1151                         (uint16_t)(ring_size - (next_to_use & ring_mask)));
1152
1153         /* get resources for incoming packets */
1154         rc = rte_mempool_get_bulk(rxq->mb_pool,
1155                                   (void **)(&mbufs[next_to_use & ring_mask]),
1156                                   count);
1157         if (unlikely(rc < 0)) {
1158                 rte_atomic64_inc(&rxq->adapter->drv_stats->rx_nombuf);
1159                 PMD_RX_LOG(DEBUG, "there are no enough free buffers");
1160                 return 0;
1161         }
1162
1163         for (i = 0; i < count; i++) {
1164                 uint16_t next_to_use_masked = next_to_use & ring_mask;
1165                 struct rte_mbuf *mbuf = mbufs[next_to_use_masked];
1166                 struct ena_com_buf ebuf;
1167
1168                 rte_prefetch0(mbufs[((next_to_use + 4) & ring_mask)]);
1169                 /* prepare physical address for DMA transaction */
1170                 ebuf.paddr = mbuf->buf_physaddr + RTE_PKTMBUF_HEADROOM;
1171                 ebuf.len = mbuf->buf_len - RTE_PKTMBUF_HEADROOM;
1172                 /* pass resource to device */
1173                 rc = ena_com_add_single_rx_desc(rxq->ena_com_io_sq,
1174                                                 &ebuf, next_to_use_masked);
1175                 if (unlikely(rc)) {
1176                         RTE_LOG(WARNING, PMD, "failed adding rx desc\n");
1177                         break;
1178                 }
1179                 next_to_use++;
1180         }
1181
1182         /* When we submitted free recources to device... */
1183         if (i > 0) {
1184                 /* ...let HW know that it can fill buffers with data */
1185                 rte_wmb();
1186                 ena_com_write_sq_doorbell(rxq->ena_com_io_sq);
1187
1188                 rxq->next_to_use = next_to_use;
1189         }
1190
1191         return i;
1192 }
1193
1194 static int ena_device_init(struct ena_com_dev *ena_dev,
1195                            struct ena_com_dev_get_features_ctx *get_feat_ctx)
1196 {
1197         int rc;
1198         bool readless_supported;
1199
1200         /* Initialize mmio registers */
1201         rc = ena_com_mmio_reg_read_request_init(ena_dev);
1202         if (rc) {
1203                 RTE_LOG(ERR, PMD, "failed to init mmio read less\n");
1204                 return rc;
1205         }
1206
1207         /* The PCIe configuration space revision id indicate if mmio reg
1208          * read is disabled.
1209          */
1210         readless_supported =
1211                 !(((struct rte_pci_device *)ena_dev->dmadev)->id.class_id
1212                                & ENA_MMIO_DISABLE_REG_READ);
1213         ena_com_set_mmio_read_mode(ena_dev, readless_supported);
1214
1215         /* reset device */
1216         rc = ena_com_dev_reset(ena_dev);
1217         if (rc) {
1218                 RTE_LOG(ERR, PMD, "cannot reset device\n");
1219                 goto err_mmio_read_less;
1220         }
1221
1222         /* check FW version */
1223         rc = ena_com_validate_version(ena_dev);
1224         if (rc) {
1225                 RTE_LOG(ERR, PMD, "device version is too low\n");
1226                 goto err_mmio_read_less;
1227         }
1228
1229         ena_dev->dma_addr_bits = ena_com_get_dma_width(ena_dev);
1230
1231         /* ENA device administration layer init */
1232         rc = ena_com_admin_init(ena_dev, NULL, true);
1233         if (rc) {
1234                 RTE_LOG(ERR, PMD,
1235                         "cannot initialize ena admin queue with device\n");
1236                 goto err_mmio_read_less;
1237         }
1238
1239         /* To enable the msix interrupts the driver needs to know the number
1240          * of queues. So the driver uses polling mode to retrieve this
1241          * information.
1242          */
1243         ena_com_set_admin_polling_mode(ena_dev, true);
1244
1245         ena_config_host_info(ena_dev);
1246
1247         /* Get Device Attributes and features */
1248         rc = ena_com_get_dev_attr_feat(ena_dev, get_feat_ctx);
1249         if (rc) {
1250                 RTE_LOG(ERR, PMD,
1251                         "cannot get attribute for ena device rc= %d\n", rc);
1252                 goto err_admin_init;
1253         }
1254
1255         return 0;
1256
1257 err_admin_init:
1258         ena_com_admin_destroy(ena_dev);
1259
1260 err_mmio_read_less:
1261         ena_com_mmio_reg_read_request_destroy(ena_dev);
1262
1263         return rc;
1264 }
1265
1266 static int eth_ena_dev_init(struct rte_eth_dev *eth_dev)
1267 {
1268         struct rte_pci_device *pci_dev;
1269         struct ena_adapter *adapter =
1270                 (struct ena_adapter *)(eth_dev->data->dev_private);
1271         struct ena_com_dev *ena_dev = &adapter->ena_dev;
1272         struct ena_com_dev_get_features_ctx get_feat_ctx;
1273         int queue_size, rc;
1274
1275         static int adapters_found;
1276
1277         memset(adapter, 0, sizeof(struct ena_adapter));
1278         ena_dev = &adapter->ena_dev;
1279
1280         eth_dev->dev_ops = &ena_dev_ops;
1281         eth_dev->rx_pkt_burst = &eth_ena_recv_pkts;
1282         eth_dev->tx_pkt_burst = &eth_ena_xmit_pkts;
1283         eth_dev->tx_pkt_prepare = &eth_ena_prep_pkts;
1284         adapter->rte_eth_dev_data = eth_dev->data;
1285         adapter->rte_dev = eth_dev;
1286
1287         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1288                 return 0;
1289
1290         pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
1291         adapter->pdev = pci_dev;
1292
1293         PMD_INIT_LOG(INFO, "Initializing %x:%x:%x.%d",
1294                      pci_dev->addr.domain,
1295                      pci_dev->addr.bus,
1296                      pci_dev->addr.devid,
1297                      pci_dev->addr.function);
1298
1299         adapter->regs = pci_dev->mem_resource[ENA_REGS_BAR].addr;
1300         adapter->dev_mem_base = pci_dev->mem_resource[ENA_MEM_BAR].addr;
1301
1302         /* Present ENA_MEM_BAR indicates available LLQ mode.
1303          * Use corresponding policy
1304          */
1305         if (adapter->dev_mem_base)
1306                 ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_DEV;
1307         else if (adapter->regs)
1308                 ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST;
1309         else
1310                 PMD_INIT_LOG(CRIT, "Failed to access registers BAR(%d)",
1311                              ENA_REGS_BAR);
1312
1313         ena_dev->reg_bar = adapter->regs;
1314         ena_dev->dmadev = adapter->pdev;
1315
1316         adapter->id_number = adapters_found;
1317
1318         snprintf(adapter->name, ENA_NAME_MAX_LEN, "ena_%d",
1319                  adapter->id_number);
1320
1321         /* device specific initialization routine */
1322         rc = ena_device_init(ena_dev, &get_feat_ctx);
1323         if (rc) {
1324                 PMD_INIT_LOG(CRIT, "Failed to init ENA device");
1325                 return -1;
1326         }
1327
1328         if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) {
1329                 if (get_feat_ctx.max_queues.max_llq_num == 0) {
1330                         PMD_INIT_LOG(ERR,
1331                                      "Trying to use LLQ but llq_num is 0.\n"
1332                                      "Fall back into regular queues.");
1333                         ena_dev->tx_mem_queue_type =
1334                                 ENA_ADMIN_PLACEMENT_POLICY_HOST;
1335                         adapter->num_queues =
1336                                 get_feat_ctx.max_queues.max_sq_num;
1337                 } else {
1338                         adapter->num_queues =
1339                                 get_feat_ctx.max_queues.max_llq_num;
1340                 }
1341         } else {
1342                 adapter->num_queues = get_feat_ctx.max_queues.max_sq_num;
1343         }
1344
1345         queue_size = ena_calc_queue_size(ena_dev, &get_feat_ctx);
1346         if ((queue_size <= 0) || (adapter->num_queues <= 0))
1347                 return -EFAULT;
1348
1349         adapter->tx_ring_size = queue_size;
1350         adapter->rx_ring_size = queue_size;
1351
1352         /* prepare ring structures */
1353         ena_init_rings(adapter);
1354
1355         ena_config_debug_area(adapter);
1356
1357         /* Set max MTU for this device */
1358         adapter->max_mtu = get_feat_ctx.dev_attr.max_mtu;
1359
1360         /* set device support for TSO */
1361         adapter->tso4_supported = get_feat_ctx.offload.tx &
1362                                   ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_MASK;
1363
1364         /* Copy MAC address and point DPDK to it */
1365         eth_dev->data->mac_addrs = (struct ether_addr *)adapter->mac_addr;
1366         ether_addr_copy((struct ether_addr *)get_feat_ctx.dev_attr.mac_addr,
1367                         (struct ether_addr *)adapter->mac_addr);
1368
1369         adapter->drv_stats = rte_zmalloc("adapter stats",
1370                                          sizeof(*adapter->drv_stats),
1371                                          RTE_CACHE_LINE_SIZE);
1372         if (!adapter->drv_stats) {
1373                 RTE_LOG(ERR, PMD, "failed to alloc mem for adapter stats\n");
1374                 return -ENOMEM;
1375         }
1376
1377         adapters_found++;
1378         adapter->state = ENA_ADAPTER_STATE_INIT;
1379
1380         return 0;
1381 }
1382
1383 static int ena_dev_configure(struct rte_eth_dev *dev)
1384 {
1385         struct ena_adapter *adapter =
1386                 (struct ena_adapter *)(dev->data->dev_private);
1387
1388         if (!(adapter->state == ENA_ADAPTER_STATE_INIT ||
1389               adapter->state == ENA_ADAPTER_STATE_STOPPED)) {
1390                 PMD_INIT_LOG(ERR, "Illegal adapter state: %d",
1391                              adapter->state);
1392                 return -1;
1393         }
1394
1395         switch (adapter->state) {
1396         case ENA_ADAPTER_STATE_INIT:
1397         case ENA_ADAPTER_STATE_STOPPED:
1398                 adapter->state = ENA_ADAPTER_STATE_CONFIG;
1399                 break;
1400         case ENA_ADAPTER_STATE_CONFIG:
1401                 RTE_LOG(WARNING, PMD,
1402                         "Ivalid driver state while trying to configure device\n");
1403                 break;
1404         default:
1405                 break;
1406         }
1407
1408         return 0;
1409 }
1410
1411 static void ena_init_rings(struct ena_adapter *adapter)
1412 {
1413         int i;
1414
1415         for (i = 0; i < adapter->num_queues; i++) {
1416                 struct ena_ring *ring = &adapter->tx_ring[i];
1417
1418                 ring->configured = 0;
1419                 ring->type = ENA_RING_TYPE_TX;
1420                 ring->adapter = adapter;
1421                 ring->id = i;
1422                 ring->tx_mem_queue_type = adapter->ena_dev.tx_mem_queue_type;
1423                 ring->tx_max_header_size = adapter->ena_dev.tx_max_header_size;
1424         }
1425
1426         for (i = 0; i < adapter->num_queues; i++) {
1427                 struct ena_ring *ring = &adapter->rx_ring[i];
1428
1429                 ring->configured = 0;
1430                 ring->type = ENA_RING_TYPE_RX;
1431                 ring->adapter = adapter;
1432                 ring->id = i;
1433         }
1434 }
1435
1436 static void ena_infos_get(struct rte_eth_dev *dev,
1437                           struct rte_eth_dev_info *dev_info)
1438 {
1439         struct ena_adapter *adapter;
1440         struct ena_com_dev *ena_dev;
1441         struct ena_com_dev_get_features_ctx feat;
1442         uint32_t rx_feat = 0, tx_feat = 0;
1443         int rc = 0;
1444
1445         ena_assert_msg(dev->data != NULL, "Uninitialized device");
1446         ena_assert_msg(dev->data->dev_private != NULL, "Uninitialized device");
1447         adapter = (struct ena_adapter *)(dev->data->dev_private);
1448
1449         ena_dev = &adapter->ena_dev;
1450         ena_assert_msg(ena_dev != NULL, "Uninitialized device");
1451
1452         dev_info->pci_dev = RTE_DEV_TO_PCI(dev->device);
1453
1454         dev_info->speed_capa =
1455                         ETH_LINK_SPEED_1G   |
1456                         ETH_LINK_SPEED_2_5G |
1457                         ETH_LINK_SPEED_5G   |
1458                         ETH_LINK_SPEED_10G  |
1459                         ETH_LINK_SPEED_25G  |
1460                         ETH_LINK_SPEED_40G  |
1461                         ETH_LINK_SPEED_50G  |
1462                         ETH_LINK_SPEED_100G;
1463
1464         /* Get supported features from HW */
1465         rc = ena_com_get_dev_attr_feat(ena_dev, &feat);
1466         if (unlikely(rc)) {
1467                 RTE_LOG(ERR, PMD,
1468                         "Cannot get attribute for ena device rc= %d\n", rc);
1469                 return;
1470         }
1471
1472         /* Set Tx & Rx features available for device */
1473         if (feat.offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_MASK)
1474                 tx_feat |= DEV_TX_OFFLOAD_TCP_TSO;
1475
1476         if (feat.offload.tx &
1477             ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_PART_MASK)
1478                 tx_feat |= DEV_TX_OFFLOAD_IPV4_CKSUM |
1479                         DEV_TX_OFFLOAD_UDP_CKSUM |
1480                         DEV_TX_OFFLOAD_TCP_CKSUM;
1481
1482         if (feat.offload.rx_supported &
1483             ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV4_CSUM_MASK)
1484                 rx_feat |= DEV_RX_OFFLOAD_IPV4_CKSUM |
1485                         DEV_RX_OFFLOAD_UDP_CKSUM  |
1486                         DEV_RX_OFFLOAD_TCP_CKSUM;
1487
1488         /* Inform framework about available features */
1489         dev_info->rx_offload_capa = rx_feat;
1490         dev_info->tx_offload_capa = tx_feat;
1491
1492         dev_info->min_rx_bufsize = ENA_MIN_FRAME_LEN;
1493         dev_info->max_rx_pktlen  = adapter->max_mtu;
1494         dev_info->max_mac_addrs = 1;
1495
1496         dev_info->max_rx_queues = adapter->num_queues;
1497         dev_info->max_tx_queues = adapter->num_queues;
1498         dev_info->reta_size = ENA_RX_RSS_TABLE_SIZE;
1499 }
1500
1501 static uint16_t eth_ena_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
1502                                   uint16_t nb_pkts)
1503 {
1504         struct ena_ring *rx_ring = (struct ena_ring *)(rx_queue);
1505         unsigned int ring_size = rx_ring->ring_size;
1506         unsigned int ring_mask = ring_size - 1;
1507         uint16_t next_to_clean = rx_ring->next_to_clean;
1508         uint16_t desc_in_use = 0;
1509         unsigned int recv_idx = 0;
1510         struct rte_mbuf *mbuf = NULL;
1511         struct rte_mbuf *mbuf_head = NULL;
1512         struct rte_mbuf *mbuf_prev = NULL;
1513         struct rte_mbuf **rx_buff_info = rx_ring->rx_buffer_info;
1514         unsigned int completed;
1515
1516         struct ena_com_rx_ctx ena_rx_ctx;
1517         int rc = 0;
1518
1519         /* Check adapter state */
1520         if (unlikely(rx_ring->adapter->state != ENA_ADAPTER_STATE_RUNNING)) {
1521                 RTE_LOG(ALERT, PMD,
1522                         "Trying to receive pkts while device is NOT running\n");
1523                 return 0;
1524         }
1525
1526         desc_in_use = rx_ring->next_to_use - next_to_clean;
1527         if (unlikely(nb_pkts > desc_in_use))
1528                 nb_pkts = desc_in_use;
1529
1530         for (completed = 0; completed < nb_pkts; completed++) {
1531                 int segments = 0;
1532
1533                 ena_rx_ctx.max_bufs = rx_ring->ring_size;
1534                 ena_rx_ctx.ena_bufs = rx_ring->ena_bufs;
1535                 ena_rx_ctx.descs = 0;
1536                 /* receive packet context */
1537                 rc = ena_com_rx_pkt(rx_ring->ena_com_io_cq,
1538                                     rx_ring->ena_com_io_sq,
1539                                     &ena_rx_ctx);
1540                 if (unlikely(rc)) {
1541                         RTE_LOG(ERR, PMD, "ena_com_rx_pkt error %d\n", rc);
1542                         return 0;
1543                 }
1544
1545                 if (unlikely(ena_rx_ctx.descs == 0))
1546                         break;
1547
1548                 while (segments < ena_rx_ctx.descs) {
1549                         mbuf = rx_buff_info[next_to_clean & ring_mask];
1550                         mbuf->data_len = ena_rx_ctx.ena_bufs[segments].len;
1551                         mbuf->data_off = RTE_PKTMBUF_HEADROOM;
1552                         mbuf->refcnt = 1;
1553                         mbuf->next = NULL;
1554                         if (segments == 0) {
1555                                 mbuf->nb_segs = ena_rx_ctx.descs;
1556                                 mbuf->port = rx_ring->port_id;
1557                                 mbuf->pkt_len = 0;
1558                                 mbuf_head = mbuf;
1559                         } else {
1560                                 /* for multi-segment pkts create mbuf chain */
1561                                 mbuf_prev->next = mbuf;
1562                         }
1563                         mbuf_head->pkt_len += mbuf->data_len;
1564
1565                         mbuf_prev = mbuf;
1566                         segments++;
1567                         next_to_clean++;
1568                 }
1569
1570                 /* fill mbuf attributes if any */
1571                 ena_rx_mbuf_prepare(mbuf_head, &ena_rx_ctx);
1572                 mbuf_head->hash.rss = (uint32_t)rx_ring->id;
1573
1574                 /* pass to DPDK application head mbuf */
1575                 rx_pkts[recv_idx] = mbuf_head;
1576                 recv_idx++;
1577         }
1578
1579         rx_ring->next_to_clean = next_to_clean;
1580
1581         desc_in_use = desc_in_use - completed + 1;
1582         /* Burst refill to save doorbells, memory barriers, const interval */
1583         if (ring_size - desc_in_use > ENA_RING_DESCS_RATIO(ring_size))
1584                 ena_populate_rx_queue(rx_ring, ring_size - desc_in_use);
1585
1586         return recv_idx;
1587 }
1588
1589 static uint16_t
1590 eth_ena_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
1591                 uint16_t nb_pkts)
1592 {
1593         int32_t ret;
1594         uint32_t i;
1595         struct rte_mbuf *m;
1596         struct ena_ring *tx_ring = (struct ena_ring *)(tx_queue);
1597         struct ipv4_hdr *ip_hdr;
1598         uint64_t ol_flags;
1599         uint16_t frag_field;
1600
1601         /* ENA needs partial checksum for TSO packets only, skip early */
1602         if (!tx_ring->adapter->tso4_supported)
1603                 return nb_pkts;
1604
1605         for (i = 0; i != nb_pkts; i++) {
1606                 m = tx_pkts[i];
1607                 ol_flags = m->ol_flags;
1608
1609                 if ((ol_flags & ENA_TX_OFFLOAD_NOTSUP_MASK) != 0 ||
1610                                 (ol_flags & PKT_TX_L4_MASK) ==
1611                                 PKT_TX_SCTP_CKSUM) {
1612                         rte_errno = -ENOTSUP;
1613                         return i;
1614                 }
1615
1616 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
1617                 ret = rte_validate_tx_offload(m);
1618                 if (ret != 0) {
1619                         rte_errno = ret;
1620                         return i;
1621                 }
1622 #endif
1623
1624                 if (!(m->ol_flags & PKT_TX_IPV4))
1625                         continue;
1626
1627                 ip_hdr = rte_pktmbuf_mtod_offset(m, struct ipv4_hdr *,
1628                                                  m->l2_len);
1629                 frag_field = rte_be_to_cpu_16(ip_hdr->fragment_offset);
1630                 if (frag_field & IPV4_HDR_DF_FLAG)
1631                         continue;
1632
1633                 /* In case we are supposed to TSO and have DF not set (DF=0)
1634                  * hardware must be provided with partial checksum, otherwise
1635                  * it will take care of necessary calculations.
1636                  */
1637
1638                 ret = rte_net_intel_cksum_flags_prepare(m,
1639                         ol_flags & ~PKT_TX_TCP_SEG);
1640                 if (ret != 0) {
1641                         rte_errno = ret;
1642                         return i;
1643                 }
1644         }
1645
1646         return i;
1647 }
1648
1649 static uint16_t eth_ena_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
1650                                   uint16_t nb_pkts)
1651 {
1652         struct ena_ring *tx_ring = (struct ena_ring *)(tx_queue);
1653         uint16_t next_to_use = tx_ring->next_to_use;
1654         uint16_t next_to_clean = tx_ring->next_to_clean;
1655         struct rte_mbuf *mbuf;
1656         unsigned int ring_size = tx_ring->ring_size;
1657         unsigned int ring_mask = ring_size - 1;
1658         struct ena_com_tx_ctx ena_tx_ctx;
1659         struct ena_tx_buffer *tx_info;
1660         struct ena_com_buf *ebuf;
1661         uint16_t rc, req_id, total_tx_descs = 0;
1662         uint16_t sent_idx = 0, empty_tx_reqs;
1663         int nb_hw_desc;
1664
1665         /* Check adapter state */
1666         if (unlikely(tx_ring->adapter->state != ENA_ADAPTER_STATE_RUNNING)) {
1667                 RTE_LOG(ALERT, PMD,
1668                         "Trying to xmit pkts while device is NOT running\n");
1669                 return 0;
1670         }
1671
1672         empty_tx_reqs = ring_size - (next_to_use - next_to_clean);
1673         if (nb_pkts > empty_tx_reqs)
1674                 nb_pkts = empty_tx_reqs;
1675
1676         for (sent_idx = 0; sent_idx < nb_pkts; sent_idx++) {
1677                 mbuf = tx_pkts[sent_idx];
1678
1679                 req_id = tx_ring->empty_tx_reqs[next_to_use & ring_mask];
1680                 tx_info = &tx_ring->tx_buffer_info[req_id];
1681                 tx_info->mbuf = mbuf;
1682                 tx_info->num_of_bufs = 0;
1683                 ebuf = tx_info->bufs;
1684
1685                 /* Prepare TX context */
1686                 memset(&ena_tx_ctx, 0x0, sizeof(struct ena_com_tx_ctx));
1687                 memset(&ena_tx_ctx.ena_meta, 0x0,
1688                        sizeof(struct ena_com_tx_meta));
1689                 ena_tx_ctx.ena_bufs = ebuf;
1690                 ena_tx_ctx.req_id = req_id;
1691                 if (tx_ring->tx_mem_queue_type ==
1692                                 ENA_ADMIN_PLACEMENT_POLICY_DEV) {
1693                         /* prepare the push buffer with
1694                          * virtual address of the data
1695                          */
1696                         ena_tx_ctx.header_len =
1697                                 RTE_MIN(mbuf->data_len,
1698                                         tx_ring->tx_max_header_size);
1699                         ena_tx_ctx.push_header =
1700                                 (void *)((char *)mbuf->buf_addr +
1701                                          mbuf->data_off);
1702                 } /* there's no else as we take advantage of memset zeroing */
1703
1704                 /* Set TX offloads flags, if applicable */
1705                 ena_tx_mbuf_prepare(mbuf, &ena_tx_ctx);
1706
1707                 if (unlikely(mbuf->ol_flags &
1708                              (PKT_RX_L4_CKSUM_BAD | PKT_RX_IP_CKSUM_BAD)))
1709                         rte_atomic64_inc(&tx_ring->adapter->drv_stats->ierrors);
1710
1711                 rte_prefetch0(tx_pkts[(sent_idx + 4) & ring_mask]);
1712
1713                 /* Process first segment taking into
1714                  * consideration pushed header
1715                  */
1716                 if (mbuf->data_len > ena_tx_ctx.header_len) {
1717                         ebuf->paddr = mbuf->buf_physaddr +
1718                                       mbuf->data_off +
1719                                       ena_tx_ctx.header_len;
1720                         ebuf->len = mbuf->data_len - ena_tx_ctx.header_len;
1721                         ebuf++;
1722                         tx_info->num_of_bufs++;
1723                 }
1724
1725                 while ((mbuf = mbuf->next) != NULL) {
1726                         ebuf->paddr = mbuf->buf_physaddr + mbuf->data_off;
1727                         ebuf->len = mbuf->data_len;
1728                         ebuf++;
1729                         tx_info->num_of_bufs++;
1730                 }
1731
1732                 ena_tx_ctx.num_bufs = tx_info->num_of_bufs;
1733
1734                 /* Write data to device */
1735                 rc = ena_com_prepare_tx(tx_ring->ena_com_io_sq,
1736                                         &ena_tx_ctx, &nb_hw_desc);
1737                 if (unlikely(rc))
1738                         break;
1739
1740                 tx_info->tx_descs = nb_hw_desc;
1741
1742                 next_to_use++;
1743         }
1744
1745         /* If there are ready packets to be xmitted... */
1746         if (sent_idx > 0) {
1747                 /* ...let HW do its best :-) */
1748                 rte_wmb();
1749                 ena_com_write_sq_doorbell(tx_ring->ena_com_io_sq);
1750
1751                 tx_ring->next_to_use = next_to_use;
1752         }
1753
1754         /* Clear complete packets  */
1755         while (ena_com_tx_comp_req_id_get(tx_ring->ena_com_io_cq, &req_id) >= 0) {
1756                 /* Get Tx info & store how many descs were processed  */
1757                 tx_info = &tx_ring->tx_buffer_info[req_id];
1758                 total_tx_descs += tx_info->tx_descs;
1759
1760                 /* Free whole mbuf chain  */
1761                 mbuf = tx_info->mbuf;
1762                 rte_pktmbuf_free(mbuf);
1763
1764                 /* Put back descriptor to the ring for reuse */
1765                 tx_ring->empty_tx_reqs[next_to_clean & ring_mask] = req_id;
1766                 next_to_clean++;
1767
1768                 /* If too many descs to clean, leave it for another run */
1769                 if (unlikely(total_tx_descs > ENA_RING_DESCS_RATIO(ring_size)))
1770                         break;
1771         }
1772
1773         if (total_tx_descs > 0) {
1774                 /* acknowledge completion of sent packets */
1775                 ena_com_comp_ack(tx_ring->ena_com_io_sq, total_tx_descs);
1776                 tx_ring->next_to_clean = next_to_clean;
1777         }
1778
1779         return sent_idx;
1780 }
1781
1782 static int eth_ena_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1783         struct rte_pci_device *pci_dev)
1784 {
1785         return rte_eth_dev_pci_generic_probe(pci_dev,
1786                 sizeof(struct ena_adapter), eth_ena_dev_init);
1787 }
1788
1789 static int eth_ena_pci_remove(struct rte_pci_device *pci_dev)
1790 {
1791         return rte_eth_dev_pci_generic_remove(pci_dev, NULL);
1792 }
1793
1794 static struct rte_pci_driver rte_ena_pmd = {
1795         .id_table = pci_id_ena_map,
1796         .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1797         .probe = eth_ena_pci_probe,
1798         .remove = eth_ena_pci_remove,
1799 };
1800
1801 RTE_PMD_REGISTER_PCI(net_ena, rte_ena_pmd);
1802 RTE_PMD_REGISTER_PCI_TABLE(net_ena, pci_id_ena_map);
1803 RTE_PMD_REGISTER_KMOD_DEP(net_ena, "* igb_uio | uio_pci_generic | vfio");