bnx2x: driver core
[dpdk.git] / drivers / net / bnx2x / bnx2x_rxtx.h
1 /*
2  * Copyright (c) 2013-2015 Brocade Communications Systems, Inc.
3  *
4  * All rights reserved.
5  */
6
7 #ifndef _BNX2X_RXTX_H_
8 #define _BNX2X_RXTX_H_
9
10
11 #define DEFAULT_RX_FREE_THRESH   0
12 #define DEFAULT_TX_FREE_THRESH   512
13 #define RTE_PMD_BNX2X_TX_MAX_BURST 1
14
15 /**
16  * Structure associated with each descriptor of the RX ring of a RX queue.
17  */
18 struct bnx2x_rx_entry {
19         struct rte_mbuf     *mbuf;                /**< mbuf associated with RX descriptor. */
20 };
21
22 /**
23  * Structure associated with each RX queue.
24  */
25 struct bnx2x_rx_queue {
26         struct rte_mempool         *mb_pool;             /**< mbuf pool to populate RX ring. */
27         union eth_rx_cqe           *cq_ring;             /**< RCQ ring virtual address. */
28         uint64_t                   cq_ring_phys_addr;    /**< RCQ ring DMA address. */
29         uint64_t                   *rx_ring;             /**< RX ring virtual address. */
30         uint64_t                   rx_ring_phys_addr;    /**< RX ring DMA address. */
31         struct rte_mbuf            **sw_ring;            /**< address of RX software ring. */
32         struct rte_mbuf            *pkt_first_seg;       /**< First segment of current packet. */
33         struct rte_mbuf            *pkt_last_seg;        /**< Last segment of current packet. */
34         uint16_t                   nb_cq_pages;          /**< number of RCQ pages. */
35         uint16_t                   nb_rx_desc;           /**< number of RX descriptors. */
36         uint16_t                   nb_rx_pages;          /**< number of RX pages. */
37         uint16_t                   rx_bd_head;           /**< Index of current rx bd. */
38         uint16_t                   rx_bd_tail;           /**< Index of last rx bd. */
39         uint16_t                   rx_cq_head;           /**< Index of current rcq bd. */
40         uint16_t                   rx_cq_tail;           /**< Index of last rcq bd. */
41         uint16_t                   nb_rx_hold;           /**< number of held free RX desc. */
42         uint16_t                   rx_free_thresh;       /**< max free RX desc to hold. */
43         uint16_t                   queue_id;             /**< RX queue index. */
44         uint8_t                    port_id;              /**< Device port identifier. */
45         uint8_t                    crc_len;              /**< 0 if CRC stripped, 4 otherwise. */
46         struct bnx2x_softc           *sc;                  /**< Ptr to dev_private data. */
47         uint64_t                   rx_mbuf_alloc;        /**< Number of allocated mbufs. */
48 };
49
50 /**
51  * Structure associated with each TX queue.
52  */
53 struct bnx2x_tx_queue {
54         /** TX ring virtual address. */
55         union eth_tx_bd_types      *tx_ring;             /**< TX ring virtual address. */
56         uint64_t                   tx_ring_phys_addr;    /**< TX ring DMA address. */
57         struct rte_mbuf            **sw_ring;            /**< virtual address of SW ring. */
58         uint16_t                   tx_pkt_tail;          /**< Index of current tx pkt. */
59         uint16_t                   tx_pkt_head;          /**< Index of last pkt counted by txeof. */
60         uint16_t                   tx_bd_tail;           /**< Index of current tx bd. */
61         uint16_t                   tx_bd_head;           /**< Index of last bd counted by txeof. */
62         uint16_t                   nb_tx_desc;           /**< number of TX descriptors. */
63         uint16_t                   tx_free_thresh;       /**< minimum TX before freeing. */
64         uint16_t                   nb_tx_avail;          /**< Number of TX descriptors available. */
65         uint16_t                   nb_tx_pages;          /**< number of TX pages */
66         uint16_t                   queue_id;             /**< TX queue index. */
67         uint8_t                    port_id;              /**< Device port identifier. */
68         struct bnx2x_softc           *sc;                  /**< Ptr to dev_private data */
69 };
70
71 int bnx2x_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
72                               uint16_t nb_rx_desc, unsigned int socket_id,
73                               const struct rte_eth_rxconf *rx_conf,
74                               struct rte_mempool *mb_pool);
75
76 int bnx2x_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
77                               uint16_t nb_tx_desc, unsigned int socket_id,
78                               const struct rte_eth_txconf *tx_conf);
79
80 void bnx2x_dev_rx_queue_release(void *rxq);
81 void bnx2x_dev_tx_queue_release(void *txq);
82 int bnx2x_dev_rx_init(struct rte_eth_dev *dev);
83 void bnx2x_dev_clear_queues(struct rte_eth_dev *dev);
84
85 #endif /* _BNX2X_RXTX_H_ */