Adds queue management operations so that an appliation can setup and
release the transmit and receive queues.

Signed-off-by: Allain Legacy <allain.leg...@windriver.com>
Signed-off-by: Matt Peters <matt.pet...@windriver.com>
---
 drivers/net/avp/avp_ethdev.c | 148 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 147 insertions(+), 1 deletion(-)

diff --git a/drivers/net/avp/avp_ethdev.c b/drivers/net/avp/avp_ethdev.c
index 71a6927..0f14fef 100644
--- a/drivers/net/avp/avp_ethdev.c
+++ b/drivers/net/avp/avp_ethdev.c
@@ -72,7 +72,21 @@ static void avp_dev_info_get(struct rte_eth_dev *dev,
 static void avp_vlan_offload_set(struct rte_eth_dev *dev, int mask);
 static int avp_dev_link_update(struct rte_eth_dev *dev,
                               __rte_unused int wait_to_complete);
-
+static int avp_dev_rx_queue_setup(struct rte_eth_dev *dev,
+                                 uint16_t rx_queue_id,
+                                 uint16_t nb_rx_desc,
+                                 unsigned int socket_id,
+                                 const struct rte_eth_rxconf *rx_conf,
+                                 struct rte_mempool *pool);
+
+static int avp_dev_tx_queue_setup(struct rte_eth_dev *dev,
+                                 uint16_t tx_queue_id,
+                                 uint16_t nb_tx_desc,
+                                 unsigned int socket_id,
+                                 const struct rte_eth_txconf *tx_conf);
+
+static void avp_dev_rx_queue_release(void *rxq);
+static void avp_dev_tx_queue_release(void *txq);
 #define AVP_DEV_TO_PCI(eth_dev) RTE_DEV_TO_PCI((eth_dev)->device)
 
 
@@ -118,6 +132,10 @@ static int avp_dev_link_update(struct rte_eth_dev *dev,
        .dev_infos_get       = avp_dev_info_get,
        .vlan_offload_set    = avp_vlan_offload_set,
        .link_update         = avp_dev_link_update,
+       .rx_queue_setup      = avp_dev_rx_queue_setup,
+       .rx_queue_release    = avp_dev_rx_queue_release,
+       .tx_queue_setup      = avp_dev_tx_queue_setup,
+       .tx_queue_release    = avp_dev_tx_queue_release,
 };
 
 /**@{ AVP device flags */
@@ -1001,6 +1019,134 @@ struct avp_queue {
 
 
 static int
+avp_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
+                      uint16_t rx_queue_id,
+                      uint16_t nb_rx_desc,
+                      unsigned int socket_id,
+                      const struct rte_eth_rxconf *rx_conf,
+                      struct rte_mempool *pool)
+{
+       struct avp_dev *avp =
+               RTE_AVP_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
+       struct rte_pktmbuf_pool_private *mbp_priv;
+       struct avp_queue *rxq;
+
+       if (rx_queue_id >= eth_dev->data->nb_rx_queues) {
+               PMD_DRV_LOG(ERR, "RX queue id is out of range: "
+                           "rx_queue_id=%u, nb_rx_queues=%u\n",
+                           rx_queue_id, eth_dev->data->nb_rx_queues);
+               return -EINVAL;
+       }
+
+       /* Save mbuf pool pointer */
+       avp->pool = pool;
+
+       /* Save the local mbuf size */
+       mbp_priv = rte_mempool_get_priv(pool);
+       avp->guest_mbuf_size = (uint16_t)(mbp_priv->mbuf_data_room_size);
+       avp->guest_mbuf_size -= RTE_PKTMBUF_HEADROOM;
+
+       PMD_DRV_LOG(DEBUG, "AVP max_rx_pkt_len=(%u,%u) mbuf_size=(%u,%u)\n",
+                   avp->max_rx_pkt_len,
+                   eth_dev->data->dev_conf.rxmode.max_rx_pkt_len,
+                   avp->host_mbuf_size,
+                   avp->guest_mbuf_size);
+
+       /* allocate a queue object */
+       rxq = rte_zmalloc_socket("ethdev RX queue", sizeof(struct avp_queue),
+                                RTE_CACHE_LINE_SIZE, socket_id);
+       if (rxq == NULL) {
+               PMD_DRV_LOG(ERR, "Failed to allocate new Rx queue object\n");
+               return -ENOMEM;
+       }
+
+       /* save back pointers to AVP and Ethernet devices */
+       rxq->avp = avp;
+       rxq->dev_data = eth_dev->data;
+       eth_dev->data->rx_queues[rx_queue_id] = (void *)rxq;
+
+       /* setup the queue receive mapping for the current queue. */
+       _avp_set_rx_queue_mappings(eth_dev, rx_queue_id);
+
+       PMD_DRV_LOG(DEBUG, "Rx queue %u setup at %p\n", rx_queue_id, rxq);
+
+       (void)nb_rx_desc;
+       (void)rx_conf;
+       return 0;
+}
+
+static int
+avp_dev_tx_queue_setup(struct rte_eth_dev *eth_dev,
+                      uint16_t tx_queue_id,
+                      uint16_t nb_tx_desc,
+                      unsigned int socket_id,
+                      const struct rte_eth_txconf *tx_conf)
+{
+       struct avp_dev *avp =
+               RTE_AVP_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
+       struct avp_queue *txq;
+
+       if (tx_queue_id >= eth_dev->data->nb_tx_queues) {
+               PMD_DRV_LOG(ERR, "TX queue id is out of range: "
+                           "tx_queue_id=%u, nb_tx_queues=%u\n",
+                           tx_queue_id, eth_dev->data->nb_tx_queues);
+               return -EINVAL;
+       }
+
+       /* allocate a queue object */
+       txq = rte_zmalloc_socket("ethdev TX queue", sizeof(struct avp_queue),
+                                RTE_CACHE_LINE_SIZE, socket_id);
+       if (txq == NULL) {
+               PMD_DRV_LOG(ERR, "Failed to allocate new Tx queue object\n");
+               return -ENOMEM;
+       }
+
+       /* only the configured set of transmit queues are used */
+       txq->queue_id = tx_queue_id;
+       txq->queue_base = tx_queue_id;
+       txq->queue_limit = tx_queue_id;
+
+       /* save back pointers to AVP and Ethernet devices */
+       txq->avp = avp;
+       txq->dev_data = eth_dev->data;
+       eth_dev->data->tx_queues[tx_queue_id] = (void *)txq;
+
+       PMD_DRV_LOG(DEBUG, "Tx queue %u setup at %p\n", tx_queue_id, txq);
+
+       (void)nb_tx_desc;
+       (void)tx_conf;
+       return 0;
+}
+
+static void
+avp_dev_rx_queue_release(void *rx_queue)
+{
+       struct avp_queue *rxq = (struct avp_queue *)rx_queue;
+       struct avp_dev *avp = rxq->avp;
+       struct rte_eth_dev_data *data = avp->dev_data;
+       unsigned int i;
+
+       for (i = 0; i < avp->num_rx_queues; i++) {
+               if (data->rx_queues[i] == rxq)
+                       data->rx_queues[i] = NULL;
+       }
+}
+
+static void
+avp_dev_tx_queue_release(void *tx_queue)
+{
+       struct avp_queue *txq = (struct avp_queue *)tx_queue;
+       struct avp_dev *avp = txq->avp;
+       struct rte_eth_dev_data *data = avp->dev_data;
+       unsigned int i;
+
+       for (i = 0; i < avp->num_tx_queues; i++) {
+               if (data->tx_queues[i] == txq)
+                       data->tx_queues[i] = NULL;
+       }
+}
+
+static int
 avp_dev_configure(struct rte_eth_dev *eth_dev)
 {
        struct rte_pci_device *pci_dev = AVP_DEV_TO_PCI(eth_dev);
-- 
1.8.3.1

Reply via email to