drivers/net: do not use ethdev driver
[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;
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         rc = ena_populate_rx_queue(ring, ring->ring_size);
935         if ((unsigned int)rc != ring->ring_size) {
936                 PMD_INIT_LOG(ERR, "Failed to populate rx ring !");
937                 return (-1);
938         }
939
940         return 0;
941 }
942
943 static int ena_tx_queue_setup(struct rte_eth_dev *dev,
944                               uint16_t queue_idx,
945                               uint16_t nb_desc,
946                               __rte_unused unsigned int socket_id,
947                               __rte_unused const struct rte_eth_txconf *tx_conf)
948 {
949         struct ena_com_create_io_ctx ctx =
950                 /* policy set to _HOST just to satisfy icc compiler */
951                 { ENA_ADMIN_PLACEMENT_POLICY_HOST,
952                   ENA_COM_IO_QUEUE_DIRECTION_TX, 0, 0, 0, 0 };
953         struct ena_ring *txq = NULL;
954         struct ena_adapter *adapter =
955                 (struct ena_adapter *)(dev->data->dev_private);
956         unsigned int i;
957         int ena_qid;
958         int rc;
959         struct ena_com_dev *ena_dev = &adapter->ena_dev;
960
961         txq = &adapter->tx_ring[queue_idx];
962
963         if (txq->configured) {
964                 RTE_LOG(CRIT, PMD,
965                         "API violation. Queue %d is already configured\n",
966                         queue_idx);
967                 return -1;
968         }
969
970         if (!rte_is_power_of_2(nb_desc)) {
971                 RTE_LOG(ERR, PMD,
972                         "Unsupported size of RX queue: %d is not a power of 2.",
973                         nb_desc);
974                 return -EINVAL;
975         }
976
977         if (nb_desc > adapter->tx_ring_size) {
978                 RTE_LOG(ERR, PMD,
979                         "Unsupported size of TX queue (max size: %d)\n",
980                         adapter->tx_ring_size);
981                 return -EINVAL;
982         }
983
984         ena_qid = ENA_IO_TXQ_IDX(queue_idx);
985
986         ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_TX;
987         ctx.qid = ena_qid;
988         ctx.msix_vector = -1; /* admin interrupts not used */
989         ctx.mem_queue_type = ena_dev->tx_mem_queue_type;
990         ctx.queue_size = adapter->tx_ring_size;
991         ctx.numa_node = ena_cpu_to_node(queue_idx);
992
993         rc = ena_com_create_io_queue(ena_dev, &ctx);
994         if (rc) {
995                 RTE_LOG(ERR, PMD,
996                         "failed to create io TX queue #%d (qid:%d) rc: %d\n",
997                         queue_idx, ena_qid, rc);
998         }
999         txq->ena_com_io_cq = &ena_dev->io_cq_queues[ena_qid];
1000         txq->ena_com_io_sq = &ena_dev->io_sq_queues[ena_qid];
1001
1002         rc = ena_com_get_io_handlers(ena_dev, ena_qid,
1003                                      &txq->ena_com_io_sq,
1004                                      &txq->ena_com_io_cq);
1005         if (rc) {
1006                 RTE_LOG(ERR, PMD,
1007                         "Failed to get TX queue handlers. TX queue num %d rc: %d\n",
1008                         queue_idx, rc);
1009                 ena_com_destroy_io_queue(ena_dev, ena_qid);
1010                 goto err;
1011         }
1012
1013         txq->port_id = dev->data->port_id;
1014         txq->next_to_clean = 0;
1015         txq->next_to_use = 0;
1016         txq->ring_size = nb_desc;
1017
1018         txq->tx_buffer_info = rte_zmalloc("txq->tx_buffer_info",
1019                                           sizeof(struct ena_tx_buffer) *
1020                                           txq->ring_size,
1021                                           RTE_CACHE_LINE_SIZE);
1022         if (!txq->tx_buffer_info) {
1023                 RTE_LOG(ERR, PMD, "failed to alloc mem for tx buffer info\n");
1024                 return -ENOMEM;
1025         }
1026
1027         txq->empty_tx_reqs = rte_zmalloc("txq->empty_tx_reqs",
1028                                          sizeof(u16) * txq->ring_size,
1029                                          RTE_CACHE_LINE_SIZE);
1030         if (!txq->empty_tx_reqs) {
1031                 RTE_LOG(ERR, PMD, "failed to alloc mem for tx reqs\n");
1032                 rte_free(txq->tx_buffer_info);
1033                 return -ENOMEM;
1034         }
1035         for (i = 0; i < txq->ring_size; i++)
1036                 txq->empty_tx_reqs[i] = i;
1037
1038         /* Store pointer to this queue in upper layer */
1039         txq->configured = 1;
1040         dev->data->tx_queues[queue_idx] = txq;
1041 err:
1042         return rc;
1043 }
1044
1045 static int ena_rx_queue_setup(struct rte_eth_dev *dev,
1046                               uint16_t queue_idx,
1047                               uint16_t nb_desc,
1048                               __rte_unused unsigned int socket_id,
1049                               __rte_unused const struct rte_eth_rxconf *rx_conf,
1050                               struct rte_mempool *mp)
1051 {
1052         struct ena_com_create_io_ctx ctx =
1053                 /* policy set to _HOST just to satisfy icc compiler */
1054                 { ENA_ADMIN_PLACEMENT_POLICY_HOST,
1055                   ENA_COM_IO_QUEUE_DIRECTION_RX, 0, 0, 0, 0 };
1056         struct ena_adapter *adapter =
1057                 (struct ena_adapter *)(dev->data->dev_private);
1058         struct ena_ring *rxq = NULL;
1059         uint16_t ena_qid = 0;
1060         int rc = 0;
1061         struct ena_com_dev *ena_dev = &adapter->ena_dev;
1062
1063         rxq = &adapter->rx_ring[queue_idx];
1064         if (rxq->configured) {
1065                 RTE_LOG(CRIT, PMD,
1066                         "API violation. Queue %d is already configured\n",
1067                         queue_idx);
1068                 return -1;
1069         }
1070
1071         if (!rte_is_power_of_2(nb_desc)) {
1072                 RTE_LOG(ERR, PMD,
1073                         "Unsupported size of TX queue: %d is not a power of 2.",
1074                         nb_desc);
1075                 return -EINVAL;
1076         }
1077
1078         if (nb_desc > adapter->rx_ring_size) {
1079                 RTE_LOG(ERR, PMD,
1080                         "Unsupported size of RX queue (max size: %d)\n",
1081                         adapter->rx_ring_size);
1082                 return -EINVAL;
1083         }
1084
1085         ena_qid = ENA_IO_RXQ_IDX(queue_idx);
1086
1087         ctx.qid = ena_qid;
1088         ctx.direction = ENA_COM_IO_QUEUE_DIRECTION_RX;
1089         ctx.mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST;
1090         ctx.msix_vector = -1; /* admin interrupts not used */
1091         ctx.queue_size = adapter->rx_ring_size;
1092         ctx.numa_node = ena_cpu_to_node(queue_idx);
1093
1094         rc = ena_com_create_io_queue(ena_dev, &ctx);
1095         if (rc)
1096                 RTE_LOG(ERR, PMD, "failed to create io RX queue #%d rc: %d\n",
1097                         queue_idx, rc);
1098
1099         rxq->ena_com_io_cq = &ena_dev->io_cq_queues[ena_qid];
1100         rxq->ena_com_io_sq = &ena_dev->io_sq_queues[ena_qid];
1101
1102         rc = ena_com_get_io_handlers(ena_dev, ena_qid,
1103                                      &rxq->ena_com_io_sq,
1104                                      &rxq->ena_com_io_cq);
1105         if (rc) {
1106                 RTE_LOG(ERR, PMD,
1107                         "Failed to get RX queue handlers. RX queue num %d rc: %d\n",
1108                         queue_idx, rc);
1109                 ena_com_destroy_io_queue(ena_dev, ena_qid);
1110         }
1111
1112         rxq->port_id = dev->data->port_id;
1113         rxq->next_to_clean = 0;
1114         rxq->next_to_use = 0;
1115         rxq->ring_size = nb_desc;
1116         rxq->mb_pool = mp;
1117
1118         rxq->rx_buffer_info = rte_zmalloc("rxq->buffer_info",
1119                                           sizeof(struct rte_mbuf *) * nb_desc,
1120                                           RTE_CACHE_LINE_SIZE);
1121         if (!rxq->rx_buffer_info) {
1122                 RTE_LOG(ERR, PMD, "failed to alloc mem for rx buffer info\n");
1123                 return -ENOMEM;
1124         }
1125
1126         /* Store pointer to this queue in upper layer */
1127         rxq->configured = 1;
1128         dev->data->rx_queues[queue_idx] = rxq;
1129
1130         return rc;
1131 }
1132
1133 static int ena_populate_rx_queue(struct ena_ring *rxq, unsigned int count)
1134 {
1135         unsigned int i;
1136         int rc;
1137         uint16_t ring_size = rxq->ring_size;
1138         uint16_t ring_mask = ring_size - 1;
1139         uint16_t next_to_use = rxq->next_to_use;
1140         uint16_t in_use;
1141         struct rte_mbuf **mbufs = &rxq->rx_buffer_info[0];
1142
1143         if (unlikely(!count))
1144                 return 0;
1145
1146         in_use = rxq->next_to_use - rxq->next_to_clean;
1147         ena_assert_msg(((in_use + count) <= ring_size), "bad ring state");
1148
1149         count = RTE_MIN(count,
1150                         (uint16_t)(ring_size - (next_to_use & ring_mask)));
1151
1152         /* get resources for incoming packets */
1153         rc = rte_mempool_get_bulk(rxq->mb_pool,
1154                                   (void **)(&mbufs[next_to_use & ring_mask]),
1155                                   count);
1156         if (unlikely(rc < 0)) {
1157                 rte_atomic64_inc(&rxq->adapter->drv_stats->rx_nombuf);
1158                 PMD_RX_LOG(DEBUG, "there are no enough free buffers");
1159                 return 0;
1160         }
1161
1162         for (i = 0; i < count; i++) {
1163                 uint16_t next_to_use_masked = next_to_use & ring_mask;
1164                 struct rte_mbuf *mbuf = mbufs[next_to_use_masked];
1165                 struct ena_com_buf ebuf;
1166
1167                 rte_prefetch0(mbufs[((next_to_use + 4) & ring_mask)]);
1168                 /* prepare physical address for DMA transaction */
1169                 ebuf.paddr = mbuf->buf_physaddr + RTE_PKTMBUF_HEADROOM;
1170                 ebuf.len = mbuf->buf_len - RTE_PKTMBUF_HEADROOM;
1171                 /* pass resource to device */
1172                 rc = ena_com_add_single_rx_desc(rxq->ena_com_io_sq,
1173                                                 &ebuf, next_to_use_masked);
1174                 if (unlikely(rc)) {
1175                         RTE_LOG(WARNING, PMD, "failed adding rx desc\n");
1176                         break;
1177                 }
1178                 next_to_use++;
1179         }
1180
1181         /* When we submitted free recources to device... */
1182         if (i > 0) {
1183                 /* ...let HW know that it can fill buffers with data */
1184                 rte_wmb();
1185                 ena_com_write_sq_doorbell(rxq->ena_com_io_sq);
1186
1187                 rxq->next_to_use = next_to_use;
1188         }
1189
1190         return i;
1191 }
1192
1193 static int ena_device_init(struct ena_com_dev *ena_dev,
1194                            struct ena_com_dev_get_features_ctx *get_feat_ctx)
1195 {
1196         int rc;
1197         bool readless_supported;
1198
1199         /* Initialize mmio registers */
1200         rc = ena_com_mmio_reg_read_request_init(ena_dev);
1201         if (rc) {
1202                 RTE_LOG(ERR, PMD, "failed to init mmio read less\n");
1203                 return rc;
1204         }
1205
1206         /* The PCIe configuration space revision id indicate if mmio reg
1207          * read is disabled.
1208          */
1209         readless_supported =
1210                 !(((struct rte_pci_device *)ena_dev->dmadev)->id.class_id
1211                                & ENA_MMIO_DISABLE_REG_READ);
1212         ena_com_set_mmio_read_mode(ena_dev, readless_supported);
1213
1214         /* reset device */
1215         rc = ena_com_dev_reset(ena_dev);
1216         if (rc) {
1217                 RTE_LOG(ERR, PMD, "cannot reset device\n");
1218                 goto err_mmio_read_less;
1219         }
1220
1221         /* check FW version */
1222         rc = ena_com_validate_version(ena_dev);
1223         if (rc) {
1224                 RTE_LOG(ERR, PMD, "device version is too low\n");
1225                 goto err_mmio_read_less;
1226         }
1227
1228         ena_dev->dma_addr_bits = ena_com_get_dma_width(ena_dev);
1229
1230         /* ENA device administration layer init */
1231         rc = ena_com_admin_init(ena_dev, NULL, true);
1232         if (rc) {
1233                 RTE_LOG(ERR, PMD,
1234                         "cannot initialize ena admin queue with device\n");
1235                 goto err_mmio_read_less;
1236         }
1237
1238         /* To enable the msix interrupts the driver needs to know the number
1239          * of queues. So the driver uses polling mode to retrieve this
1240          * information.
1241          */
1242         ena_com_set_admin_polling_mode(ena_dev, true);
1243
1244         ena_config_host_info(ena_dev);
1245
1246         /* Get Device Attributes and features */
1247         rc = ena_com_get_dev_attr_feat(ena_dev, get_feat_ctx);
1248         if (rc) {
1249                 RTE_LOG(ERR, PMD,
1250                         "cannot get attribute for ena device rc= %d\n", rc);
1251                 goto err_admin_init;
1252         }
1253
1254         return 0;
1255
1256 err_admin_init:
1257         ena_com_admin_destroy(ena_dev);
1258
1259 err_mmio_read_less:
1260         ena_com_mmio_reg_read_request_destroy(ena_dev);
1261
1262         return rc;
1263 }
1264
1265 static int eth_ena_dev_init(struct rte_eth_dev *eth_dev)
1266 {
1267         struct rte_pci_device *pci_dev;
1268         struct ena_adapter *adapter =
1269                 (struct ena_adapter *)(eth_dev->data->dev_private);
1270         struct ena_com_dev *ena_dev = &adapter->ena_dev;
1271         struct ena_com_dev_get_features_ctx get_feat_ctx;
1272         int queue_size, rc;
1273
1274         static int adapters_found;
1275
1276         memset(adapter, 0, sizeof(struct ena_adapter));
1277         ena_dev = &adapter->ena_dev;
1278
1279         eth_dev->dev_ops = &ena_dev_ops;
1280         eth_dev->rx_pkt_burst = &eth_ena_recv_pkts;
1281         eth_dev->tx_pkt_burst = &eth_ena_xmit_pkts;
1282         eth_dev->tx_pkt_prepare = &eth_ena_prep_pkts;
1283         adapter->rte_eth_dev_data = eth_dev->data;
1284         adapter->rte_dev = eth_dev;
1285
1286         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1287                 return 0;
1288
1289         pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
1290         adapter->pdev = pci_dev;
1291
1292         PMD_INIT_LOG(INFO, "Initializing %x:%x:%x.%d",
1293                      pci_dev->addr.domain,
1294                      pci_dev->addr.bus,
1295                      pci_dev->addr.devid,
1296                      pci_dev->addr.function);
1297
1298         adapter->regs = pci_dev->mem_resource[ENA_REGS_BAR].addr;
1299         adapter->dev_mem_base = pci_dev->mem_resource[ENA_MEM_BAR].addr;
1300
1301         /* Present ENA_MEM_BAR indicates available LLQ mode.
1302          * Use corresponding policy
1303          */
1304         if (adapter->dev_mem_base)
1305                 ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_DEV;
1306         else if (adapter->regs)
1307                 ena_dev->tx_mem_queue_type = ENA_ADMIN_PLACEMENT_POLICY_HOST;
1308         else
1309                 PMD_INIT_LOG(CRIT, "Failed to access registers BAR(%d)",
1310                              ENA_REGS_BAR);
1311
1312         ena_dev->reg_bar = adapter->regs;
1313         ena_dev->dmadev = adapter->pdev;
1314
1315         adapter->id_number = adapters_found;
1316
1317         snprintf(adapter->name, ENA_NAME_MAX_LEN, "ena_%d",
1318                  adapter->id_number);
1319
1320         /* device specific initialization routine */
1321         rc = ena_device_init(ena_dev, &get_feat_ctx);
1322         if (rc) {
1323                 PMD_INIT_LOG(CRIT, "Failed to init ENA device");
1324                 return -1;
1325         }
1326
1327         if (ena_dev->tx_mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) {
1328                 if (get_feat_ctx.max_queues.max_llq_num == 0) {
1329                         PMD_INIT_LOG(ERR,
1330                                      "Trying to use LLQ but llq_num is 0.\n"
1331                                      "Fall back into regular queues.");
1332                         ena_dev->tx_mem_queue_type =
1333                                 ENA_ADMIN_PLACEMENT_POLICY_HOST;
1334                         adapter->num_queues =
1335                                 get_feat_ctx.max_queues.max_sq_num;
1336                 } else {
1337                         adapter->num_queues =
1338                                 get_feat_ctx.max_queues.max_llq_num;
1339                 }
1340         } else {
1341                 adapter->num_queues = get_feat_ctx.max_queues.max_sq_num;
1342         }
1343
1344         queue_size = ena_calc_queue_size(ena_dev, &get_feat_ctx);
1345         if ((queue_size <= 0) || (adapter->num_queues <= 0))
1346                 return -EFAULT;
1347
1348         adapter->tx_ring_size = queue_size;
1349         adapter->rx_ring_size = queue_size;
1350
1351         /* prepare ring structures */
1352         ena_init_rings(adapter);
1353
1354         ena_config_debug_area(adapter);
1355
1356         /* Set max MTU for this device */
1357         adapter->max_mtu = get_feat_ctx.dev_attr.max_mtu;
1358
1359         /* set device support for TSO */
1360         adapter->tso4_supported = get_feat_ctx.offload.tx &
1361                                   ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_MASK;
1362
1363         /* Copy MAC address and point DPDK to it */
1364         eth_dev->data->mac_addrs = (struct ether_addr *)adapter->mac_addr;
1365         ether_addr_copy((struct ether_addr *)get_feat_ctx.dev_attr.mac_addr,
1366                         (struct ether_addr *)adapter->mac_addr);
1367
1368         adapter->drv_stats = rte_zmalloc("adapter stats",
1369                                          sizeof(*adapter->drv_stats),
1370                                          RTE_CACHE_LINE_SIZE);
1371         if (!adapter->drv_stats) {
1372                 RTE_LOG(ERR, PMD, "failed to alloc mem for adapter stats\n");
1373                 return -ENOMEM;
1374         }
1375
1376         adapters_found++;
1377         adapter->state = ENA_ADAPTER_STATE_INIT;
1378
1379         return 0;
1380 }
1381
1382 static int ena_dev_configure(struct rte_eth_dev *dev)
1383 {
1384         struct ena_adapter *adapter =
1385                 (struct ena_adapter *)(dev->data->dev_private);
1386
1387         if (!(adapter->state == ENA_ADAPTER_STATE_INIT ||
1388               adapter->state == ENA_ADAPTER_STATE_STOPPED)) {
1389                 PMD_INIT_LOG(ERR, "Illegal adapter state: %d",
1390                              adapter->state);
1391                 return -1;
1392         }
1393
1394         switch (adapter->state) {
1395         case ENA_ADAPTER_STATE_INIT:
1396         case ENA_ADAPTER_STATE_STOPPED:
1397                 adapter->state = ENA_ADAPTER_STATE_CONFIG;
1398                 break;
1399         case ENA_ADAPTER_STATE_CONFIG:
1400                 RTE_LOG(WARNING, PMD,
1401                         "Ivalid driver state while trying to configure device\n");
1402                 break;
1403         default:
1404                 break;
1405         }
1406
1407         return 0;
1408 }
1409
1410 static void ena_init_rings(struct ena_adapter *adapter)
1411 {
1412         int i;
1413
1414         for (i = 0; i < adapter->num_queues; i++) {
1415                 struct ena_ring *ring = &adapter->tx_ring[i];
1416
1417                 ring->configured = 0;
1418                 ring->type = ENA_RING_TYPE_TX;
1419                 ring->adapter = adapter;
1420                 ring->id = i;
1421                 ring->tx_mem_queue_type = adapter->ena_dev.tx_mem_queue_type;
1422                 ring->tx_max_header_size = adapter->ena_dev.tx_max_header_size;
1423         }
1424
1425         for (i = 0; i < adapter->num_queues; i++) {
1426                 struct ena_ring *ring = &adapter->rx_ring[i];
1427
1428                 ring->configured = 0;
1429                 ring->type = ENA_RING_TYPE_RX;
1430                 ring->adapter = adapter;
1431                 ring->id = i;
1432         }
1433 }
1434
1435 static void ena_infos_get(struct rte_eth_dev *dev,
1436                           struct rte_eth_dev_info *dev_info)
1437 {
1438         struct ena_adapter *adapter;
1439         struct ena_com_dev *ena_dev;
1440         struct ena_com_dev_get_features_ctx feat;
1441         uint32_t rx_feat = 0, tx_feat = 0;
1442         int rc = 0;
1443
1444         ena_assert_msg(dev->data != NULL, "Uninitialized device");
1445         ena_assert_msg(dev->data->dev_private != NULL, "Uninitialized device");
1446         adapter = (struct ena_adapter *)(dev->data->dev_private);
1447
1448         ena_dev = &adapter->ena_dev;
1449         ena_assert_msg(ena_dev != NULL, "Uninitialized device");
1450
1451         dev_info->pci_dev = RTE_DEV_TO_PCI(dev->device);
1452
1453         dev_info->speed_capa =
1454                         ETH_LINK_SPEED_1G   |
1455                         ETH_LINK_SPEED_2_5G |
1456                         ETH_LINK_SPEED_5G   |
1457                         ETH_LINK_SPEED_10G  |
1458                         ETH_LINK_SPEED_25G  |
1459                         ETH_LINK_SPEED_40G  |
1460                         ETH_LINK_SPEED_50G  |
1461                         ETH_LINK_SPEED_100G;
1462
1463         /* Get supported features from HW */
1464         rc = ena_com_get_dev_attr_feat(ena_dev, &feat);
1465         if (unlikely(rc)) {
1466                 RTE_LOG(ERR, PMD,
1467                         "Cannot get attribute for ena device rc= %d\n", rc);
1468                 return;
1469         }
1470
1471         /* Set Tx & Rx features available for device */
1472         if (feat.offload.tx & ENA_ADMIN_FEATURE_OFFLOAD_DESC_TSO_IPV4_MASK)
1473                 tx_feat |= DEV_TX_OFFLOAD_TCP_TSO;
1474
1475         if (feat.offload.tx &
1476             ENA_ADMIN_FEATURE_OFFLOAD_DESC_TX_L4_IPV4_CSUM_PART_MASK)
1477                 tx_feat |= DEV_TX_OFFLOAD_IPV4_CKSUM |
1478                         DEV_TX_OFFLOAD_UDP_CKSUM |
1479                         DEV_TX_OFFLOAD_TCP_CKSUM;
1480
1481         if (feat.offload.rx_supported &
1482             ENA_ADMIN_FEATURE_OFFLOAD_DESC_RX_L4_IPV4_CSUM_MASK)
1483                 rx_feat |= DEV_RX_OFFLOAD_IPV4_CKSUM |
1484                         DEV_RX_OFFLOAD_UDP_CKSUM  |
1485                         DEV_RX_OFFLOAD_TCP_CKSUM;
1486
1487         /* Inform framework about available features */
1488         dev_info->rx_offload_capa = rx_feat;
1489         dev_info->tx_offload_capa = tx_feat;
1490
1491         dev_info->min_rx_bufsize = ENA_MIN_FRAME_LEN;
1492         dev_info->max_rx_pktlen  = adapter->max_mtu;
1493         dev_info->max_mac_addrs = 1;
1494
1495         dev_info->max_rx_queues = adapter->num_queues;
1496         dev_info->max_tx_queues = adapter->num_queues;
1497         dev_info->reta_size = ENA_RX_RSS_TABLE_SIZE;
1498 }
1499
1500 static uint16_t eth_ena_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
1501                                   uint16_t nb_pkts)
1502 {
1503         struct ena_ring *rx_ring = (struct ena_ring *)(rx_queue);
1504         unsigned int ring_size = rx_ring->ring_size;
1505         unsigned int ring_mask = ring_size - 1;
1506         uint16_t next_to_clean = rx_ring->next_to_clean;
1507         uint16_t desc_in_use = 0;
1508         unsigned int recv_idx = 0;
1509         struct rte_mbuf *mbuf = NULL;
1510         struct rte_mbuf *mbuf_head = NULL;
1511         struct rte_mbuf *mbuf_prev = NULL;
1512         struct rte_mbuf **rx_buff_info = rx_ring->rx_buffer_info;
1513         unsigned int completed;
1514
1515         struct ena_com_rx_ctx ena_rx_ctx;
1516         int rc = 0;
1517
1518         /* Check adapter state */
1519         if (unlikely(rx_ring->adapter->state != ENA_ADAPTER_STATE_RUNNING)) {
1520                 RTE_LOG(ALERT, PMD,
1521                         "Trying to receive pkts while device is NOT running\n");
1522                 return 0;
1523         }
1524
1525         desc_in_use = rx_ring->next_to_use - next_to_clean;
1526         if (unlikely(nb_pkts > desc_in_use))
1527                 nb_pkts = desc_in_use;
1528
1529         for (completed = 0; completed < nb_pkts; completed++) {
1530                 int segments = 0;
1531
1532                 ena_rx_ctx.max_bufs = rx_ring->ring_size;
1533                 ena_rx_ctx.ena_bufs = rx_ring->ena_bufs;
1534                 ena_rx_ctx.descs = 0;
1535                 /* receive packet context */
1536                 rc = ena_com_rx_pkt(rx_ring->ena_com_io_cq,
1537                                     rx_ring->ena_com_io_sq,
1538                                     &ena_rx_ctx);
1539                 if (unlikely(rc)) {
1540                         RTE_LOG(ERR, PMD, "ena_com_rx_pkt error %d\n", rc);
1541                         return 0;
1542                 }
1543
1544                 if (unlikely(ena_rx_ctx.descs == 0))
1545                         break;
1546
1547                 while (segments < ena_rx_ctx.descs) {
1548                         mbuf = rx_buff_info[next_to_clean & ring_mask];
1549                         mbuf->data_len = ena_rx_ctx.ena_bufs[segments].len;
1550                         mbuf->data_off = RTE_PKTMBUF_HEADROOM;
1551                         mbuf->refcnt = 1;
1552                         mbuf->next = NULL;
1553                         if (segments == 0) {
1554                                 mbuf->nb_segs = ena_rx_ctx.descs;
1555                                 mbuf->port = rx_ring->port_id;
1556                                 mbuf->pkt_len = 0;
1557                                 mbuf_head = mbuf;
1558                         } else {
1559                                 /* for multi-segment pkts create mbuf chain */
1560                                 mbuf_prev->next = mbuf;
1561                         }
1562                         mbuf_head->pkt_len += mbuf->data_len;
1563
1564                         mbuf_prev = mbuf;
1565                         segments++;
1566                         next_to_clean++;
1567                 }
1568
1569                 /* fill mbuf attributes if any */
1570                 ena_rx_mbuf_prepare(mbuf_head, &ena_rx_ctx);
1571                 mbuf_head->hash.rss = (uint32_t)rx_ring->id;
1572
1573                 /* pass to DPDK application head mbuf */
1574                 rx_pkts[recv_idx] = mbuf_head;
1575                 recv_idx++;
1576         }
1577
1578         /* Burst refill to save doorbells, memory barriers, const interval */
1579         if (ring_size - desc_in_use > ENA_RING_DESCS_RATIO(ring_size))
1580                 ena_populate_rx_queue(rx_ring, ring_size - desc_in_use);
1581
1582         rx_ring->next_to_clean = next_to_clean;
1583
1584         return recv_idx;
1585 }
1586
1587 static uint16_t
1588 eth_ena_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
1589                 uint16_t nb_pkts)
1590 {
1591         int32_t ret;
1592         uint32_t i;
1593         struct rte_mbuf *m;
1594         struct ena_ring *tx_ring = (struct ena_ring *)(tx_queue);
1595         struct ipv4_hdr *ip_hdr;
1596         uint64_t ol_flags;
1597         uint16_t frag_field;
1598
1599         /* ENA needs partial checksum for TSO packets only, skip early */
1600         if (!tx_ring->adapter->tso4_supported)
1601                 return nb_pkts;
1602
1603         for (i = 0; i != nb_pkts; i++) {
1604                 m = tx_pkts[i];
1605                 ol_flags = m->ol_flags;
1606
1607                 if ((ol_flags & ENA_TX_OFFLOAD_NOTSUP_MASK) != 0 ||
1608                                 (ol_flags & PKT_TX_L4_MASK) ==
1609                                 PKT_TX_SCTP_CKSUM) {
1610                         rte_errno = -ENOTSUP;
1611                         return i;
1612                 }
1613
1614 #ifdef RTE_LIBRTE_ETHDEV_DEBUG
1615                 ret = rte_validate_tx_offload(m);
1616                 if (ret != 0) {
1617                         rte_errno = ret;
1618                         return i;
1619                 }
1620 #endif
1621
1622                 if (!(m->ol_flags & PKT_TX_IPV4))
1623                         continue;
1624
1625                 ip_hdr = rte_pktmbuf_mtod_offset(m, struct ipv4_hdr *,
1626                                                  m->l2_len);
1627                 frag_field = rte_be_to_cpu_16(ip_hdr->fragment_offset);
1628                 if (frag_field & IPV4_HDR_DF_FLAG)
1629                         continue;
1630
1631                 /* In case we are supposed to TSO and have DF not set (DF=0)
1632                  * hardware must be provided with partial checksum, otherwise
1633                  * it will take care of necessary calculations.
1634                  */
1635
1636                 ret = rte_net_intel_cksum_flags_prepare(m,
1637                         ol_flags & ~PKT_TX_TCP_SEG);
1638                 if (ret != 0) {
1639                         rte_errno = ret;
1640                         return i;
1641                 }
1642         }
1643
1644         return i;
1645 }
1646
1647 static uint16_t eth_ena_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
1648                                   uint16_t nb_pkts)
1649 {
1650         struct ena_ring *tx_ring = (struct ena_ring *)(tx_queue);
1651         uint16_t next_to_use = tx_ring->next_to_use;
1652         uint16_t next_to_clean = tx_ring->next_to_clean;
1653         struct rte_mbuf *mbuf;
1654         unsigned int ring_size = tx_ring->ring_size;
1655         unsigned int ring_mask = ring_size - 1;
1656         struct ena_com_tx_ctx ena_tx_ctx;
1657         struct ena_tx_buffer *tx_info;
1658         struct ena_com_buf *ebuf;
1659         uint16_t rc, req_id, total_tx_descs = 0;
1660         uint16_t sent_idx = 0, empty_tx_reqs;
1661         int nb_hw_desc;
1662
1663         /* Check adapter state */
1664         if (unlikely(tx_ring->adapter->state != ENA_ADAPTER_STATE_RUNNING)) {
1665                 RTE_LOG(ALERT, PMD,
1666                         "Trying to xmit pkts while device is NOT running\n");
1667                 return 0;
1668         }
1669
1670         empty_tx_reqs = ring_size - (next_to_use - next_to_clean);
1671         if (nb_pkts > empty_tx_reqs)
1672                 nb_pkts = empty_tx_reqs;
1673
1674         for (sent_idx = 0; sent_idx < nb_pkts; sent_idx++) {
1675                 mbuf = tx_pkts[sent_idx];
1676
1677                 req_id = tx_ring->empty_tx_reqs[next_to_use & ring_mask];
1678                 tx_info = &tx_ring->tx_buffer_info[req_id];
1679                 tx_info->mbuf = mbuf;
1680                 tx_info->num_of_bufs = 0;
1681                 ebuf = tx_info->bufs;
1682
1683                 /* Prepare TX context */
1684                 memset(&ena_tx_ctx, 0x0, sizeof(struct ena_com_tx_ctx));
1685                 memset(&ena_tx_ctx.ena_meta, 0x0,
1686                        sizeof(struct ena_com_tx_meta));
1687                 ena_tx_ctx.ena_bufs = ebuf;
1688                 ena_tx_ctx.req_id = req_id;
1689                 if (tx_ring->tx_mem_queue_type ==
1690                                 ENA_ADMIN_PLACEMENT_POLICY_DEV) {
1691                         /* prepare the push buffer with
1692                          * virtual address of the data
1693                          */
1694                         ena_tx_ctx.header_len =
1695                                 RTE_MIN(mbuf->data_len,
1696                                         tx_ring->tx_max_header_size);
1697                         ena_tx_ctx.push_header =
1698                                 (void *)((char *)mbuf->buf_addr +
1699                                          mbuf->data_off);
1700                 } /* there's no else as we take advantage of memset zeroing */
1701
1702                 /* Set TX offloads flags, if applicable */
1703                 ena_tx_mbuf_prepare(mbuf, &ena_tx_ctx);
1704
1705                 if (unlikely(mbuf->ol_flags &
1706                              (PKT_RX_L4_CKSUM_BAD | PKT_RX_IP_CKSUM_BAD)))
1707                         rte_atomic64_inc(&tx_ring->adapter->drv_stats->ierrors);
1708
1709                 rte_prefetch0(tx_pkts[(sent_idx + 4) & ring_mask]);
1710
1711                 /* Process first segment taking into
1712                  * consideration pushed header
1713                  */
1714                 if (mbuf->data_len > ena_tx_ctx.header_len) {
1715                         ebuf->paddr = mbuf->buf_physaddr +
1716                                       mbuf->data_off +
1717                                       ena_tx_ctx.header_len;
1718                         ebuf->len = mbuf->data_len - ena_tx_ctx.header_len;
1719                         ebuf++;
1720                         tx_info->num_of_bufs++;
1721                 }
1722
1723                 while ((mbuf = mbuf->next) != NULL) {
1724                         ebuf->paddr = mbuf->buf_physaddr + mbuf->data_off;
1725                         ebuf->len = mbuf->data_len;
1726                         ebuf++;
1727                         tx_info->num_of_bufs++;
1728                 }
1729
1730                 ena_tx_ctx.num_bufs = tx_info->num_of_bufs;
1731
1732                 /* Write data to device */
1733                 rc = ena_com_prepare_tx(tx_ring->ena_com_io_sq,
1734                                         &ena_tx_ctx, &nb_hw_desc);
1735                 if (unlikely(rc))
1736                         break;
1737
1738                 tx_info->tx_descs = nb_hw_desc;
1739
1740                 next_to_use++;
1741         }
1742
1743         /* If there are ready packets to be xmitted... */
1744         if (sent_idx > 0) {
1745                 /* ...let HW do its best :-) */
1746                 rte_wmb();
1747                 ena_com_write_sq_doorbell(tx_ring->ena_com_io_sq);
1748
1749                 tx_ring->next_to_use = next_to_use;
1750         }
1751
1752         /* Clear complete packets  */
1753         while (ena_com_tx_comp_req_id_get(tx_ring->ena_com_io_cq, &req_id) >= 0) {
1754                 /* Get Tx info & store how many descs were processed  */
1755                 tx_info = &tx_ring->tx_buffer_info[req_id];
1756                 total_tx_descs += tx_info->tx_descs;
1757
1758                 /* Free whole mbuf chain  */
1759                 mbuf = tx_info->mbuf;
1760                 rte_pktmbuf_free(mbuf);
1761
1762                 /* Put back descriptor to the ring for reuse */
1763                 tx_ring->empty_tx_reqs[next_to_clean & ring_mask] = req_id;
1764                 next_to_clean++;
1765
1766                 /* If too many descs to clean, leave it for another run */
1767                 if (unlikely(total_tx_descs > ENA_RING_DESCS_RATIO(ring_size)))
1768                         break;
1769         }
1770
1771         if (total_tx_descs > 0) {
1772                 /* acknowledge completion of sent packets */
1773                 ena_com_comp_ack(tx_ring->ena_com_io_sq, total_tx_descs);
1774                 tx_ring->next_to_clean = next_to_clean;
1775         }
1776
1777         return sent_idx;
1778 }
1779
1780 static int eth_ena_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1781         struct rte_pci_device *pci_dev)
1782 {
1783         return rte_eth_dev_pci_generic_probe(pci_dev,
1784                 sizeof(struct ena_adapter), eth_ena_dev_init);
1785 }
1786
1787 static int eth_ena_pci_remove(struct rte_pci_device *pci_dev)
1788 {
1789         return rte_eth_dev_pci_generic_remove(pci_dev, NULL);
1790 }
1791
1792 static struct rte_pci_driver rte_ena_pmd = {
1793         .id_table = pci_id_ena_map,
1794         .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1795         .probe = eth_ena_pci_probe,
1796         .remove = eth_ena_pci_remove,
1797 };
1798
1799 RTE_PMD_REGISTER_PCI(net_ena, rte_ena_pmd);
1800 RTE_PMD_REGISTER_PCI_TABLE(net_ena, pci_id_ena_map);
1801 RTE_PMD_REGISTER_KMOD_DEP(net_ena, "* igb_uio | uio_pci_generic | vfio");