]> git.droids-corp.org - dpdk.git/commitdiff
raw/cnxk_gpio: enqueue buffers
authorTomasz Duszynski <tduszynski@marvell.com>
Thu, 17 Feb 2022 11:09:19 +0000 (12:09 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 18 Feb 2022 11:54:45 +0000 (12:54 +0100)
Add dummy support for enqueuing buffers.

Signed-off-by: Tomasz Duszynski <tduszynski@marvell.com>
drivers/raw/cnxk_gpio/cnxk_gpio.c
drivers/raw/cnxk_gpio/cnxk_gpio.h
drivers/raw/cnxk_gpio/meson.build
drivers/raw/cnxk_gpio/rte_pmd_cnxk_gpio.h [new file with mode: 0644]

index ec82a559187eb1a85e6eb768ce499bdced2e9a71..6f3795df414931a5a299884ebccd0abff9488499 100644 (file)
@@ -14,6 +14,7 @@
 #include <roc_api.h>
 
 #include "cnxk_gpio.h"
+#include "rte_pmd_cnxk_gpio.h"
 
 #define CNXK_GPIO_BUFSZ 128
 #define CNXK_GPIO_CLASS_PATH "/sys/class/gpio"
@@ -274,8 +275,54 @@ cnxk_gpio_dev_close(struct rte_rawdev *dev)
        return 0;
 }
 
+static int
+cnxk_gpio_process_buf(struct cnxk_gpio *gpio, struct rte_rawdev_buf *rbuf)
+{
+       struct cnxk_gpio_msg *msg = rbuf->buf_addr;
+       void *rsp = NULL;
+       int ret;
+
+       switch (msg->type) {
+       default:
+               return -EINVAL;
+       }
+
+       /* get rid of last response if any */
+       if (gpio->rsp) {
+               RTE_LOG(WARNING, PMD, "previous response got overwritten\n");
+               rte_free(gpio->rsp);
+       }
+       gpio->rsp = rsp;
+
+       return ret;
+}
+
+static int
+cnxk_gpio_enqueue_bufs(struct rte_rawdev *dev, struct rte_rawdev_buf **buffers,
+                      unsigned int count, rte_rawdev_obj_t context)
+{
+       struct cnxk_gpiochip *gpiochip = dev->dev_private;
+       unsigned int queue = (size_t)context;
+       struct cnxk_gpio *gpio;
+       int ret;
+
+       if (count == 0)
+               return 0;
+
+       gpio = cnxk_gpio_lookup(gpiochip, queue);
+       if (!gpio)
+               return -ENODEV;
+
+       ret = cnxk_gpio_process_buf(gpio, buffers[0]);
+       if (ret)
+               return ret;
+
+       return 1;
+}
+
 static const struct rte_rawdev_ops cnxk_gpio_rawdev_ops = {
        .dev_close = cnxk_gpio_dev_close,
+       .enqueue_bufs = cnxk_gpio_enqueue_bufs,
        .queue_def_conf = cnxk_gpio_queue_def_conf,
        .queue_count = cnxk_gpio_queue_count,
        .queue_setup = cnxk_gpio_queue_setup,
index 4dae8316ba25ce44bf008ec83003327c5054123e..6b54ebe6e6567423dcff6dbc491aa2ee3b4a05a3 100644 (file)
@@ -9,6 +9,7 @@ struct cnxk_gpiochip;
 
 struct cnxk_gpio {
        struct cnxk_gpiochip *gpiochip;
+       void *rsp;
        int num;
 };
 
index 9a7e716c1e212766f6c96070317cfcf5ff2d65f4..3fbfdd838cd55913d6706387e58d4e7df2b7c762 100644 (file)
@@ -6,3 +6,4 @@ deps += ['bus_vdev', 'common_cnxk', 'rawdev', 'kvargs']
 sources = files(
         'cnxk_gpio.c',
 )
+headers = files('rte_pmd_cnxk_gpio.h')
diff --git a/drivers/raw/cnxk_gpio/rte_pmd_cnxk_gpio.h b/drivers/raw/cnxk_gpio/rte_pmd_cnxk_gpio.h
new file mode 100644 (file)
index 0000000..c71065e
--- /dev/null
@@ -0,0 +1,38 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(C) 2021 Marvell.
+ */
+
+#ifndef _RTE_PMD_CNXK_GPIO_H_
+#define _RTE_PMD_CNXK_GPIO_H_
+
+/**
+ * @file rte_pmd_cnxk_gpio.h
+ *
+ * Marvell GPIO PMD specific structures and interface
+ *
+ * This API allows applications to manage GPIOs in user space along with
+ * installing interrupt handlers for low latency signal processing.
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/** Available message types */
+enum cnxk_gpio_msg_type {
+       /** Invalid message type */
+       CNXK_GPIO_MSG_TYPE_INVALID,
+};
+
+struct cnxk_gpio_msg {
+       /** Message type */
+       enum cnxk_gpio_msg_type type;
+       /** Message data passed to PMD or received from PMD */
+       void *data;
+};
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _RTE_PMD_CNXK_GPIO_H_ */