net/mlx4: separate Rx/Tx definitions
[dpdk.git] / drivers / net / mlx4 / mlx4_rxtx.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2017 6WIND S.A.
5  *   Copyright 2017 Mellanox
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef MLX4_RXTX_H_
35 #define MLX4_RXTX_H_
36
37 #include <stdint.h>
38
39 /* Verbs headers do not support -pedantic. */
40 #ifdef PEDANTIC
41 #pragma GCC diagnostic ignored "-Wpedantic"
42 #endif
43 #include <infiniband/verbs.h>
44 #ifdef PEDANTIC
45 #pragma GCC diagnostic error "-Wpedantic"
46 #endif
47
48 #include <rte_mbuf.h>
49 #include <rte_mempool.h>
50
51 #include "mlx4.h"
52
53 /** Rx queue counters. */
54 struct mlx4_rxq_stats {
55         unsigned int idx; /**< Mapping index. */
56         uint64_t ipackets; /**< Total of successfully received packets. */
57         uint64_t ibytes; /**< Total of successfully received bytes. */
58         uint64_t idropped; /**< Total of packets dropped when Rx ring full. */
59         uint64_t rx_nombuf; /**< Total of Rx mbuf allocation failures. */
60 };
61
62 /** Rx element. */
63 struct rxq_elt {
64         struct ibv_recv_wr wr; /**< Work request. */
65         struct ibv_sge sge; /**< Scatter/gather element. */
66         struct rte_mbuf *buf; /**< Buffer. */
67 };
68
69 /** Rx queue descriptor. */
70 struct rxq {
71         struct priv *priv; /**< Back pointer to private data. */
72         struct rte_mempool *mp; /**< Memory pool for allocations. */
73         struct ibv_mr *mr; /**< Memory region (for mp). */
74         struct ibv_cq *cq; /**< Completion queue. */
75         struct ibv_qp *qp; /**< Queue pair. */
76         struct ibv_comp_channel *channel; /**< Rx completion channel. */
77         unsigned int port_id; /**< Port ID for incoming packets. */
78         unsigned int elts_n; /**< (*elts)[] length. */
79         unsigned int elts_head; /**< Current index in (*elts)[]. */
80         struct rxq_elt (*elts)[]; /**< Rx elements. */
81         struct mlx4_rxq_stats stats; /**< Rx queue counters. */
82         unsigned int socket; /**< CPU socket ID for allocations. */
83 };
84
85 /** Tx element. */
86 struct txq_elt {
87         struct ibv_send_wr wr; /* Work request. */
88         struct ibv_sge sge; /* Scatter/gather element. */
89         struct rte_mbuf *buf; /**< Buffer. */
90 };
91
92 /** Rx queue counters. */
93 struct mlx4_txq_stats {
94         unsigned int idx; /**< Mapping index. */
95         uint64_t opackets; /**< Total of successfully sent packets. */
96         uint64_t obytes; /**< Total of successfully sent bytes. */
97         uint64_t odropped; /**< Total of packets not sent when Tx ring full. */
98 };
99
100 /** Tx queue descriptor. */
101 struct txq {
102         struct priv *priv; /**< Back pointer to private data. */
103         struct {
104                 const struct rte_mempool *mp; /**< Cached memory pool. */
105                 struct ibv_mr *mr; /**< Memory region (for mp). */
106                 uint32_t lkey; /**< mr->lkey copy. */
107         } mp2mr[MLX4_PMD_TX_MP_CACHE]; /**< MP to MR translation table. */
108         struct ibv_cq *cq; /**< Completion queue. */
109         struct ibv_qp *qp; /**< Queue pair. */
110         uint32_t max_inline; /**< Max inline send size. */
111         unsigned int elts_n; /**< (*elts)[] length. */
112         struct txq_elt (*elts)[]; /**< Tx elements. */
113         unsigned int elts_head; /**< Current index in (*elts)[]. */
114         unsigned int elts_tail; /**< First element awaiting completion. */
115         unsigned int elts_comp; /**< Number of completion requests. */
116         unsigned int elts_comp_cd; /**< Countdown for next completion. */
117         unsigned int elts_comp_cd_init; /**< Initial value for countdown. */
118         struct mlx4_txq_stats stats; /**< Tx queue counters. */
119         unsigned int socket; /**< CPU socket ID for allocations. */
120 };
121
122 #endif /* MLX4_RXTX_H_ */