#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"
        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,
 
--- /dev/null
+/* 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_ */