net/bnxt: fix filter type for non-ntuple flows
[dpdk.git] / drivers / raw / ioat / ioat_rawdev_test.c
index ab67181..f6c7dbb 100644 (file)
  * Copyright(c) 2019 Intel Corporation
  */
 
+#include <unistd.h>
 #include <inttypes.h>
+#include <rte_mbuf.h>
 #include "rte_rawdev.h"
 #include "rte_ioat_rawdev.h"
 
 int ioat_rawdev_test(uint16_t dev_id); /* pre-define to keep compiler happy */
 
+static struct rte_mempool *pool;
+
+static int
+test_enqueue_copies(int dev_id)
+{
+       const unsigned int length = 1024;
+       unsigned int i;
+
+       do {
+               struct rte_mbuf *src, *dst;
+               char *src_data, *dst_data;
+               struct rte_mbuf *completed[2] = {0};
+
+               /* test doing a single copy */
+               src = rte_pktmbuf_alloc(pool);
+               dst = rte_pktmbuf_alloc(pool);
+               src->data_len = src->pkt_len = length;
+               dst->data_len = dst->pkt_len = length;
+               src_data = rte_pktmbuf_mtod(src, char *);
+               dst_data = rte_pktmbuf_mtod(dst, char *);
+
+               for (i = 0; i < length; i++)
+                       src_data[i] = rand() & 0xFF;
+
+               if (rte_ioat_enqueue_copy(dev_id,
+                               src->buf_iova + src->data_off,
+                               dst->buf_iova + dst->data_off,
+                               length,
+                               (uintptr_t)src,
+                               (uintptr_t)dst,
+                               0 /* no fence */) != 1) {
+                       printf("Error with rte_ioat_enqueue_copy\n");
+                       return -1;
+               }
+               rte_ioat_do_copies(dev_id);
+               usleep(10);
+
+               if (rte_ioat_completed_copies(dev_id, 1, (void *)&completed[0],
+                               (void *)&completed[1]) != 1) {
+                       printf("Error with rte_ioat_completed_copies\n");
+                       return -1;
+               }
+               if (completed[0] != src || completed[1] != dst) {
+                       printf("Error with completions: got (%p, %p), not (%p,%p)\n",
+                                       completed[0], completed[1], src, dst);
+                       return -1;
+               }
+
+               for (i = 0; i < length; i++)
+                       if (dst_data[i] != src_data[i]) {
+                               printf("Data mismatch at char %u\n", i);
+                               return -1;
+                       }
+               rte_pktmbuf_free(src);
+               rte_pktmbuf_free(dst);
+       } while (0);
+
+       /* test doing multiple copies */
+       do {
+               struct rte_mbuf *srcs[32], *dsts[32];
+               struct rte_mbuf *completed_src[64];
+               struct rte_mbuf *completed_dst[64];
+               unsigned int j;
+
+               for (i = 0; i < RTE_DIM(srcs); i++) {
+                       char *src_data;
+
+                       srcs[i] = rte_pktmbuf_alloc(pool);
+                       dsts[i] = rte_pktmbuf_alloc(pool);
+                       srcs[i]->data_len = srcs[i]->pkt_len = length;
+                       dsts[i]->data_len = dsts[i]->pkt_len = length;
+                       src_data = rte_pktmbuf_mtod(srcs[i], char *);
+
+                       for (j = 0; j < length; j++)
+                               src_data[j] = rand() & 0xFF;
+
+                       if (rte_ioat_enqueue_copy(dev_id,
+                                       srcs[i]->buf_iova + srcs[i]->data_off,
+                                       dsts[i]->buf_iova + dsts[i]->data_off,
+                                       length,
+                                       (uintptr_t)srcs[i],
+                                       (uintptr_t)dsts[i],
+                                       0 /* nofence */) != 1) {
+                               printf("Error with rte_ioat_enqueue_copy for buffer %u\n",
+                                               i);
+                               return -1;
+                       }
+               }
+               rte_ioat_do_copies(dev_id);
+               usleep(100);
+
+               if (rte_ioat_completed_copies(dev_id, 64, (void *)completed_src,
+                               (void *)completed_dst) != RTE_DIM(srcs)) {
+                       printf("Error with rte_ioat_completed_copies\n");
+                       return -1;
+               }
+               for (i = 0; i < RTE_DIM(srcs); i++) {
+                       char *src_data, *dst_data;
+
+                       if (completed_src[i] != srcs[i]) {
+                               printf("Error with source pointer %u\n", i);
+                               return -1;
+                       }
+                       if (completed_dst[i] != dsts[i]) {
+                               printf("Error with dest pointer %u\n", i);
+                               return -1;
+                       }
+
+                       src_data = rte_pktmbuf_mtod(srcs[i], char *);
+                       dst_data = rte_pktmbuf_mtod(dsts[i], char *);
+                       for (j = 0; j < length; j++)
+                               if (src_data[j] != dst_data[j]) {
+                                       printf("Error with copy of packet %u, byte %u\n",
+                                                       i, j);
+                                       return -1;
+                               }
+                       rte_pktmbuf_free(srcs[i]);
+                       rte_pktmbuf_free(dsts[i]);
+               }
+
+       } while (0);
+
+       return 0;
+}
+
 int
 ioat_rawdev_test(uint16_t dev_id)
 {
@@ -44,6 +171,17 @@ ioat_rawdev_test(uint16_t dev_id)
                return -1;
        }
 
+       pool = rte_pktmbuf_pool_create("TEST_IOAT_POOL",
+                       256, /* n == num elements */
+                       32,  /* cache size */
+                       0,   /* priv size */
+                       2048, /* data room size */
+                       info.socket_id);
+       if (pool == NULL) {
+               printf("Error with mempool creation\n");
+               return -1;
+       }
+
        /* allocate memory for xstats names and values */
        nb_xstats = rte_rawdev_xstats_names_get(dev_id, NULL, 0);
 
@@ -68,17 +206,28 @@ ioat_rawdev_test(uint16_t dev_id)
                goto err;
        }
 
-       rte_rawdev_xstats_get(dev_id, ids, stats, nb_xstats);
-       for (i = 0; i < nb_xstats; i++)
-               printf("%s: %"PRIu64"   ", snames[i].name, stats[i]);
+       /* run the test cases */
+       for (i = 0; i < 100; i++) {
+               unsigned int j;
+
+               if (test_enqueue_copies(dev_id) != 0)
+                       goto err;
+
+               rte_rawdev_xstats_get(dev_id, ids, stats, nb_xstats);
+               for (j = 0; j < nb_xstats; j++)
+                       printf("%s: %"PRIu64"   ", snames[j].name, stats[j]);
+               printf("\r");
+       }
        printf("\n");
 
+       rte_mempool_free(pool);
        free(snames);
        free(stats);
        free(ids);
        return 0;
 
 err:
+       rte_mempool_free(pool);
        free(snames);
        free(stats);
        free(ids);