c7f634e3238a21a5eb7100e2d51c9fc24e1bee64
[dpdk.git] / drivers / net / mlx5 / mlx5_rxtx.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2015 6WIND S.A.
5  *   Copyright 2015 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 RTE_PMD_MLX5_RXTX_H_
35 #define RTE_PMD_MLX5_RXTX_H_
36
37 #include <stdint.h>
38
39 /* Verbs header. */
40 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
41 #ifdef PEDANTIC
42 #pragma GCC diagnostic ignored "-pedantic"
43 #endif
44 #include <infiniband/verbs.h>
45 #ifdef PEDANTIC
46 #pragma GCC diagnostic error "-pedantic"
47 #endif
48
49 /* DPDK headers don't like -pedantic. */
50 #ifdef PEDANTIC
51 #pragma GCC diagnostic ignored "-pedantic"
52 #endif
53 #include <rte_mbuf.h>
54 #include <rte_mempool.h>
55 #ifdef PEDANTIC
56 #pragma GCC diagnostic error "-pedantic"
57 #endif
58
59 #include "mlx5_utils.h"
60 #include "mlx5.h"
61 #include "mlx5_defs.h"
62
63 /* RX element (scattered packets). */
64 struct rxq_elt_sp {
65         struct ibv_recv_wr wr; /* Work Request. */
66         struct ibv_sge sges[MLX5_PMD_SGE_WR_N]; /* Scatter/Gather Elements. */
67         struct rte_mbuf *bufs[MLX5_PMD_SGE_WR_N]; /* SGEs buffers. */
68 };
69
70 /* RX element. */
71 struct rxq_elt {
72         struct ibv_recv_wr wr; /* Work Request. */
73         struct ibv_sge sge; /* Scatter/Gather Element. */
74         /* mbuf pointer is derived from WR_ID(wr.wr_id).offset. */
75 };
76
77 struct priv;
78
79 /* RX queue descriptor. */
80 struct rxq {
81         struct priv *priv; /* Back pointer to private data. */
82         struct rte_mempool *mp; /* Memory Pool for allocations. */
83         struct ibv_mr *mr; /* Memory Region (for mp). */
84         struct ibv_cq *cq; /* Completion Queue. */
85         struct ibv_qp *qp; /* Queue Pair. */
86         struct ibv_exp_qp_burst_family *if_qp; /* QP burst interface. */
87         struct ibv_exp_cq_family *if_cq; /* CQ interface. */
88         /* MAC flow steering rules. */
89         struct ibv_flow *mac_flow[MLX5_MAX_MAC_ADDRESSES];
90         unsigned int port_id; /* Port ID for incoming packets. */
91         unsigned int elts_n; /* (*elts)[] length. */
92         unsigned int elts_head; /* Current index in (*elts)[]. */
93         union {
94                 struct rxq_elt_sp (*sp)[]; /* Scattered RX elements. */
95                 struct rxq_elt (*no_sp)[]; /* RX elements. */
96         } elts;
97         unsigned int sp:1; /* Use scattered RX elements. */
98         uint32_t mb_len; /* Length of a mp-issued mbuf. */
99         unsigned int socket; /* CPU socket ID for allocations. */
100         struct ibv_exp_res_domain *rd; /* Resource Domain. */
101 };
102
103 /* TX element. */
104 struct txq_elt {
105         struct rte_mbuf *buf;
106 };
107
108 /* Linear buffer type. It is used when transmitting buffers with too many
109  * segments that do not fit the hardware queue (see max_send_sge).
110  * Extra segments are copied (linearized) in such buffers, replacing the
111  * last SGE during TX.
112  * The size is arbitrary but large enough to hold a jumbo frame with
113  * 8 segments considering mbuf.buf_len is about 2048 bytes. */
114 typedef uint8_t linear_t[16384];
115
116 /* TX queue descriptor. */
117 struct txq {
118         struct priv *priv; /* Back pointer to private data. */
119         struct {
120                 struct rte_mempool *mp; /* Cached Memory Pool. */
121                 struct ibv_mr *mr; /* Memory Region (for mp). */
122                 uint32_t lkey; /* mr->lkey */
123         } mp2mr[MLX5_PMD_TX_MP_CACHE]; /* MP to MR translation table. */
124         struct ibv_cq *cq; /* Completion Queue. */
125         struct ibv_qp *qp; /* Queue Pair. */
126         struct ibv_exp_qp_burst_family *if_qp; /* QP burst interface. */
127         struct ibv_exp_cq_family *if_cq; /* CQ interface. */
128 #if MLX5_PMD_MAX_INLINE > 0
129         uint32_t max_inline; /* Max inline send size <= MLX5_PMD_MAX_INLINE. */
130 #endif
131         unsigned int elts_n; /* (*elts)[] length. */
132         struct txq_elt (*elts)[]; /* TX elements. */
133         unsigned int elts_head; /* Current index in (*elts)[]. */
134         unsigned int elts_tail; /* First element awaiting completion. */
135         unsigned int elts_comp; /* Number of completion requests. */
136         unsigned int elts_comp_cd; /* Countdown for next completion request. */
137         unsigned int elts_comp_cd_init; /* Initial value for countdown. */
138         linear_t (*elts_linear)[]; /* Linearized buffers. */
139         struct ibv_mr *mr_linear; /* Memory Region for linearized buffers. */
140         unsigned int socket; /* CPU socket ID for allocations. */
141         struct ibv_exp_res_domain *rd; /* Resource Domain. */
142 };
143
144 /* mlx5_rxq.c */
145
146 void rxq_cleanup(struct rxq *);
147 int rxq_setup(struct rte_eth_dev *, struct rxq *, uint16_t, unsigned int,
148               const struct rte_eth_rxconf *, struct rte_mempool *);
149 int mlx5_rx_queue_setup(struct rte_eth_dev *, uint16_t, uint16_t, unsigned int,
150                         const struct rte_eth_rxconf *, struct rte_mempool *);
151 void mlx5_rx_queue_release(void *);
152
153 /* mlx5_txq.c */
154
155 void txq_cleanup(struct txq *);
156 int mlx5_tx_queue_setup(struct rte_eth_dev *, uint16_t, uint16_t, unsigned int,
157                         const struct rte_eth_txconf *);
158 void mlx5_tx_queue_release(void *);
159
160 /* mlx5_rxtx.c */
161
162 uint16_t mlx5_tx_burst(void *, struct rte_mbuf **, uint16_t);
163 uint16_t mlx5_rx_burst_sp(void *, struct rte_mbuf **, uint16_t);
164 uint16_t mlx5_rx_burst(void *, struct rte_mbuf **, uint16_t);
165 uint16_t removed_tx_burst(void *, struct rte_mbuf **, uint16_t);
166 uint16_t removed_rx_burst(void *, struct rte_mbuf **, uint16_t);
167
168 #endif /* RTE_PMD_MLX5_RXTX_H_ */