net/mlx4: drop inline receive support
[dpdk.git] / drivers / net / mlx4 / mlx4.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2012 6WIND S.A.
5  *   Copyright 2012 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_MLX4_H_
35 #define RTE_PMD_MLX4_H_
36
37 #include <stdint.h>
38
39 /*
40  * Runtime logging through RTE_LOG() is enabled when not in debugging mode.
41  * Intermediate LOG_*() macros add the required end-of-line characters.
42  */
43 #ifndef NDEBUG
44 #define INFO(...) DEBUG(__VA_ARGS__)
45 #define WARN(...) DEBUG(__VA_ARGS__)
46 #define ERROR(...) DEBUG(__VA_ARGS__)
47 #else
48 #define LOG__(level, m, ...) \
49         RTE_LOG(level, PMD, MLX4_DRIVER_NAME ": " m "%c", __VA_ARGS__)
50 #define LOG_(level, ...) LOG__(level, __VA_ARGS__, '\n')
51 #define INFO(...) LOG_(INFO, __VA_ARGS__)
52 #define WARN(...) LOG_(WARNING, __VA_ARGS__)
53 #define ERROR(...) LOG_(ERR, __VA_ARGS__)
54 #endif
55
56 /* Verbs header. */
57 /* ISO C doesn't support unnamed structs/unions, disabling -pedantic. */
58 #ifdef PEDANTIC
59 #pragma GCC diagnostic ignored "-Wpedantic"
60 #endif
61 #include <infiniband/verbs.h>
62 #ifdef PEDANTIC
63 #pragma GCC diagnostic error "-Wpedantic"
64 #endif
65
66 /* Request send completion once in every 64 sends, might be less. */
67 #define MLX4_PMD_TX_PER_COMP_REQ 64
68
69 /* Maximum size for inline data. */
70 #define MLX4_PMD_MAX_INLINE 0
71
72 /*
73  * Maximum number of cached Memory Pools (MPs) per TX queue. Each RTE MP
74  * from which buffers are to be transmitted will have to be mapped by this
75  * driver to their own Memory Region (MR). This is a slow operation.
76  *
77  * This value is always 1 for RX queues.
78  */
79 #ifndef MLX4_PMD_TX_MP_CACHE
80 #define MLX4_PMD_TX_MP_CACHE 8
81 #endif
82
83 /* Alarm timeout. */
84 #define MLX4_ALARM_TIMEOUT_US 100000
85
86 /* Port parameter. */
87 #define MLX4_PMD_PORT_KVARG "port"
88
89 enum {
90         PCI_VENDOR_ID_MELLANOX = 0x15b3,
91 };
92
93 enum {
94         PCI_DEVICE_ID_MELLANOX_CONNECTX3 = 0x1003,
95         PCI_DEVICE_ID_MELLANOX_CONNECTX3VF = 0x1004,
96         PCI_DEVICE_ID_MELLANOX_CONNECTX3PRO = 0x1007,
97 };
98
99 #define MLX4_DRIVER_NAME "net_mlx4"
100
101 /* Number of elements in array. */
102 #define elemof(a) (sizeof(a) / sizeof((a)[0]))
103
104 /* Debugging */
105 #ifndef NDEBUG
106 #include <stdio.h>
107 #define DEBUG__(m, ...)                                         \
108         (fprintf(stderr, "%s:%d: %s(): " m "%c",                \
109                  __FILE__, __LINE__, __func__, __VA_ARGS__),    \
110          fflush(stderr),                                        \
111          (void)0)
112 /*
113  * Save/restore errno around DEBUG__().
114  * XXX somewhat undefined behavior, but works.
115  */
116 #define DEBUG_(...)                             \
117         (errno = ((int []){                     \
118                 *(volatile int *)&errno,        \
119                 (DEBUG__(__VA_ARGS__), 0)       \
120         })[0])
121 #define DEBUG(...) DEBUG_(__VA_ARGS__, '\n')
122 #ifndef MLX4_PMD_DEBUG_BROKEN_VERBS
123 #define claim_zero(...) assert((__VA_ARGS__) == 0)
124 #else /* MLX4_PMD_DEBUG_BROKEN_VERBS */
125 #define claim_zero(...) \
126         (void)(((__VA_ARGS__) == 0) || \
127                 DEBUG("Assertion `(" # __VA_ARGS__ ") == 0' failed (IGNORED)."))
128 #endif /* MLX4_PMD_DEBUG_BROKEN_VERBS */
129 #define claim_nonzero(...) assert((__VA_ARGS__) != 0)
130 #define claim_positive(...) assert((__VA_ARGS__) >= 0)
131 #else /* NDEBUG */
132 /* No-ops. */
133 #define DEBUG(...) (void)0
134 #define claim_zero(...) (__VA_ARGS__)
135 #define claim_nonzero(...) (__VA_ARGS__)
136 #define claim_positive(...) (__VA_ARGS__)
137 #endif /* NDEBUG */
138
139 struct mlx4_rxq_stats {
140         unsigned int idx; /**< Mapping index. */
141         uint64_t ipackets; /**< Total of successfully received packets. */
142         uint64_t ibytes; /**< Total of successfully received bytes. */
143         uint64_t idropped; /**< Total of packets dropped when RX ring full. */
144         uint64_t rx_nombuf; /**< Total of RX mbuf allocation failures. */
145 };
146
147 /* RX element. */
148 struct rxq_elt {
149         struct ibv_recv_wr wr; /* Work Request. */
150         struct ibv_sge sge; /* Scatter/Gather Element. */
151         /* mbuf pointer is derived from WR_ID(wr.wr_id).offset. */
152 };
153
154 /* RX queue descriptor. */
155 struct rxq {
156         struct priv *priv; /* Back pointer to private data. */
157         struct rte_mempool *mp; /* Memory Pool for allocations. */
158         struct ibv_mr *mr; /* Memory Region (for mp). */
159         struct ibv_cq *cq; /* Completion Queue. */
160         struct ibv_qp *qp; /* Queue Pair. */
161         struct ibv_exp_qp_burst_family *if_qp; /* QP burst interface. */
162         struct ibv_exp_cq_family *if_cq; /* CQ interface. */
163         struct ibv_comp_channel *channel;
164         unsigned int port_id; /* Port ID for incoming packets. */
165         unsigned int elts_n; /* (*elts)[] length. */
166         unsigned int elts_head; /* Current index in (*elts)[]. */
167         struct rxq_elt (*elts)[]; /* Rx elements. */
168         struct mlx4_rxq_stats stats; /* RX queue counters. */
169         unsigned int socket; /* CPU socket ID for allocations. */
170         struct ibv_exp_res_domain *rd; /* Resource Domain. */
171 };
172
173 /* TX element. */
174 struct txq_elt {
175         struct rte_mbuf *buf;
176 };
177
178 struct mlx4_txq_stats {
179         unsigned int idx; /**< Mapping index. */
180         uint64_t opackets; /**< Total of successfully sent packets. */
181         uint64_t obytes;   /**< Total of successfully sent bytes. */
182         uint64_t odropped; /**< Total of packets not sent when TX ring full. */
183 };
184
185 /* TX queue descriptor. */
186 struct txq {
187         struct priv *priv; /* Back pointer to private data. */
188         struct {
189                 const struct rte_mempool *mp; /* Cached Memory Pool. */
190                 struct ibv_mr *mr; /* Memory Region (for mp). */
191                 uint32_t lkey; /* mr->lkey */
192         } mp2mr[MLX4_PMD_TX_MP_CACHE]; /* MP to MR translation table. */
193         struct ibv_cq *cq; /* Completion Queue. */
194         struct ibv_qp *qp; /* Queue Pair. */
195         struct ibv_exp_qp_burst_family *if_qp; /* QP burst interface. */
196         struct ibv_exp_cq_family *if_cq; /* CQ interface. */
197         uint32_t max_inline; /* Max inline send size <= MLX4_PMD_MAX_INLINE. */
198         unsigned int elts_n; /* (*elts)[] length. */
199         struct txq_elt (*elts)[]; /* TX elements. */
200         unsigned int elts_head; /* Current index in (*elts)[]. */
201         unsigned int elts_tail; /* First element awaiting completion. */
202         unsigned int elts_comp; /* Number of completion requests. */
203         unsigned int elts_comp_cd; /* Countdown for next completion request. */
204         unsigned int elts_comp_cd_init; /* Initial value for countdown. */
205         struct mlx4_txq_stats stats; /* TX queue counters. */
206         unsigned int socket; /* CPU socket ID for allocations. */
207         struct ibv_exp_res_domain *rd; /* Resource Domain. */
208 };
209
210 struct rte_flow;
211
212 struct priv {
213         struct rte_eth_dev *dev; /* Ethernet device. */
214         struct ibv_context *ctx; /* Verbs context. */
215         struct ibv_device_attr device_attr; /* Device properties. */
216         struct ibv_pd *pd; /* Protection Domain. */
217         struct ether_addr mac; /* MAC address. */
218         struct ibv_flow *mac_flow; /* Flow associated with MAC address. */
219         /* Device properties. */
220         uint16_t mtu; /* Configured MTU. */
221         uint8_t port; /* Physical port number. */
222         unsigned int started:1; /* Device started, flows enabled. */
223         unsigned int vf:1; /* This is a VF device. */
224         unsigned int pending_alarm:1; /* An alarm is pending. */
225         unsigned int isolated:1; /* Toggle isolated mode. */
226         /* RX/TX queues. */
227         unsigned int rxqs_n; /* RX queues array size. */
228         unsigned int txqs_n; /* TX queues array size. */
229         struct rxq *(*rxqs)[]; /* RX queues. */
230         struct txq *(*txqs)[]; /* TX queues. */
231         struct rte_intr_handle intr_handle_dev; /* Device interrupt handler. */
232         struct rte_intr_handle intr_handle; /* Interrupt handler. */
233         struct rte_flow_drop *flow_drop_queue; /* Flow drop queue. */
234         LIST_HEAD(mlx4_flows, rte_flow) flows;
235         struct rte_intr_conf intr_conf; /* Active interrupt configuration. */
236         rte_spinlock_t lock; /* Lock for control functions. */
237 };
238
239 void priv_lock(struct priv *priv);
240 void priv_unlock(struct priv *priv);
241
242 #endif /* RTE_PMD_MLX4_H_ */