net/mlx5: use port id in PMD log
[dpdk.git] / drivers / net / mlx5 / mlx5_mr.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2016 6WIND S.A.
3  * Copyright 2016 Mellanox.
4  */
5
6 #ifdef PEDANTIC
7 #pragma GCC diagnostic ignored "-Wpedantic"
8 #endif
9 #include <infiniband/verbs.h>
10 #ifdef PEDANTIC
11 #pragma GCC diagnostic error "-Wpedantic"
12 #endif
13
14 #include <rte_mempool.h>
15 #include <rte_malloc.h>
16
17 #include "mlx5.h"
18 #include "mlx5_rxtx.h"
19 #include "mlx5_glue.h"
20
21 struct mlx5_check_mempool_data {
22         int ret;
23         char *start;
24         char *end;
25 };
26
27 /* Called by mlx5_check_mempool() when iterating the memory chunks. */
28 static void
29 mlx5_check_mempool_cb(struct rte_mempool *mp __rte_unused,
30                       void *opaque, struct rte_mempool_memhdr *memhdr,
31                       unsigned int mem_idx __rte_unused)
32 {
33         struct mlx5_check_mempool_data *data = opaque;
34
35         /* It already failed, skip the next chunks. */
36         if (data->ret != 0)
37                 return;
38         /* It is the first chunk. */
39         if (data->start == NULL && data->end == NULL) {
40                 data->start = memhdr->addr;
41                 data->end = data->start + memhdr->len;
42                 return;
43         }
44         if (data->end == memhdr->addr) {
45                 data->end += memhdr->len;
46                 return;
47         }
48         if (data->start == (char *)memhdr->addr + memhdr->len) {
49                 data->start -= memhdr->len;
50                 return;
51         }
52         /* Error, mempool is not virtually contiguous. */
53         data->ret = -1;
54 }
55
56 /**
57  * Check if a mempool can be used: it must be virtually contiguous.
58  *
59  * @param[in] mp
60  *   Pointer to memory pool.
61  * @param[out] start
62  *   Pointer to the start address of the mempool virtual memory area
63  * @param[out] end
64  *   Pointer to the end address of the mempool virtual memory area
65  *
66  * @return
67  *   0 on success (mempool is virtually contiguous), -1 on error.
68  */
69 static int
70 mlx5_check_mempool(struct rte_mempool *mp, uintptr_t *start,
71                    uintptr_t *end)
72 {
73         struct mlx5_check_mempool_data data;
74
75         memset(&data, 0, sizeof(data));
76         rte_mempool_mem_iter(mp, mlx5_check_mempool_cb, &data);
77         *start = (uintptr_t)data.start;
78         *end = (uintptr_t)data.end;
79         return data.ret;
80 }
81
82 /**
83  * Register a Memory Region (MR) <-> Memory Pool (MP) association in
84  * txq->mp2mr[]. If mp2mr[] is full, remove an entry first.
85  *
86  * @param txq
87  *   Pointer to TX queue structure.
88  * @param[in] mp
89  *   Memory Pool for which a Memory Region lkey must be returned.
90  * @param idx
91  *   Index of the next available entry.
92  *
93  * @return
94  *   mr on success, NULL on failure and rte_errno is set.
95  */
96 struct mlx5_mr *
97 mlx5_txq_mp2mr_reg(struct mlx5_txq_data *txq, struct rte_mempool *mp,
98                    unsigned int idx)
99 {
100         struct mlx5_txq_ctrl *txq_ctrl =
101                 container_of(txq, struct mlx5_txq_ctrl, txq);
102         struct rte_eth_dev *dev;
103         struct mlx5_mr *mr;
104
105         rte_spinlock_lock(&txq_ctrl->priv->mr_lock);
106         /* Add a new entry, register MR first. */
107         DEBUG("port %u discovered new memory pool \"%s\" (%p)",
108               txq_ctrl->priv->dev->data->port_id, mp->name, (void *)mp);
109         dev = txq_ctrl->priv->dev;
110         mr = mlx5_mr_get(dev, mp);
111         if (mr == NULL) {
112                 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
113                         DEBUG("port %u using unregistered mempool 0x%p(%s) in "
114                               "secondary process, please create mempool before "
115                               " rte_eth_dev_start()",
116                               txq_ctrl->priv->dev->data->port_id,
117                              (void *)mp, mp->name);
118                         rte_spinlock_unlock(&txq_ctrl->priv->mr_lock);
119                         rte_errno = ENOTSUP;
120                         return NULL;
121                 }
122                 mr = mlx5_mr_new(dev, mp);
123         }
124         if (unlikely(mr == NULL)) {
125                 rte_spinlock_unlock(&txq_ctrl->priv->mr_lock);
126                 DEBUG("port %u unable to configure memory region, ibv_reg_mr()"
127                       " failed",
128                       txq_ctrl->priv->dev->data->port_id);
129                 return NULL;
130         }
131         if (unlikely(idx == RTE_DIM(txq->mp2mr))) {
132                 /* Table is full, remove oldest entry. */
133                 DEBUG("port %u memroy region <-> memory pool table full, "
134                       " dropping oldest entry",
135                       txq_ctrl->priv->dev->data->port_id);
136                 --idx;
137                 mlx5_mr_release(txq->mp2mr[0]);
138                 memmove(&txq->mp2mr[0], &txq->mp2mr[1],
139                         (sizeof(txq->mp2mr) - sizeof(txq->mp2mr[0])));
140         }
141         /* Store the new entry. */
142         txq_ctrl->txq.mp2mr[idx] = mr;
143         DEBUG("port %u new memory region lkey for MP \"%s\" (%p): 0x%08" PRIu32,
144               txq_ctrl->priv->dev->data->port_id, mp->name, (void *)mp,
145               txq_ctrl->txq.mp2mr[idx]->lkey);
146         rte_spinlock_unlock(&txq_ctrl->priv->mr_lock);
147         return mr;
148 }
149
150 struct mlx5_mp2mr_mbuf_check_data {
151         int ret;
152 };
153
154 /**
155  * Callback function for rte_mempool_obj_iter() to check whether a given
156  * mempool object looks like a mbuf.
157  *
158  * @param[in] mp
159  *   The mempool pointer
160  * @param[in] arg
161  *   Context data (struct txq_mp2mr_mbuf_check_data). Contains the
162  *   return value.
163  * @param[in] obj
164  *   Object address.
165  * @param index
166  *   Object index, unused.
167  */
168 static void
169 txq_mp2mr_mbuf_check(struct rte_mempool *mp, void *arg, void *obj,
170         uint32_t index __rte_unused)
171 {
172         struct mlx5_mp2mr_mbuf_check_data *data = arg;
173         struct rte_mbuf *buf = obj;
174
175         /*
176          * Check whether mbuf structure fits element size and whether mempool
177          * pointer is valid.
178          */
179         if (sizeof(*buf) > mp->elt_size || buf->pool != mp)
180                 data->ret = -1;
181 }
182
183 /**
184  * Iterator function for rte_mempool_walk() to register existing mempools and
185  * fill the MP to MR cache of a TX queue.
186  *
187  * @param[in] mp
188  *   Memory Pool to register.
189  * @param *arg
190  *   Pointer to TX queue structure.
191  */
192 void
193 mlx5_mp2mr_iter(struct rte_mempool *mp, void *arg)
194 {
195         struct priv *priv = (struct priv *)arg;
196         struct mlx5_mp2mr_mbuf_check_data data = {
197                 .ret = 0,
198         };
199         struct mlx5_mr *mr;
200
201         /* Register mempool only if the first element looks like a mbuf. */
202         if (rte_mempool_obj_iter(mp, txq_mp2mr_mbuf_check, &data) == 0 ||
203                         data.ret == -1)
204                 return;
205         mr = mlx5_mr_get(priv->dev, mp);
206         if (mr) {
207                 mlx5_mr_release(mr);
208                 return;
209         }
210         mr = mlx5_mr_new(priv->dev, mp);
211         if (!mr)
212                 ERROR("port %u cannot create memory region: %s",
213                       priv->dev->data->port_id, strerror(rte_errno));
214 }
215
216 /**
217  * Register a new memory region from the mempool and store it in the memory
218  * region list.
219  *
220  * @param dev
221  *   Pointer to Ethernet device.
222  * @param mp
223  *   Pointer to the memory pool to register.
224  *
225  * @return
226  *   The memory region on success, NULL on failure and rte_errno is set.
227  */
228 struct mlx5_mr *
229 mlx5_mr_new(struct rte_eth_dev *dev, struct rte_mempool *mp)
230 {
231         struct priv *priv = dev->data->dev_private;
232         const struct rte_memseg *ms = rte_eal_get_physmem_layout();
233         uintptr_t start;
234         uintptr_t end;
235         unsigned int i;
236         struct mlx5_mr *mr;
237
238         mr = rte_zmalloc_socket(__func__, sizeof(*mr), 0, mp->socket_id);
239         if (!mr) {
240                 DEBUG("port %u unable to configure memory region, ibv_reg_mr()"
241                       " failed",
242                       dev->data->port_id);
243                 rte_errno = ENOMEM;
244                 return NULL;
245         }
246         if (mlx5_check_mempool(mp, &start, &end) != 0) {
247                 ERROR("port %u mempool %p: not virtually contiguous",
248                       dev->data->port_id, (void *)mp);
249                 rte_errno = ENOMEM;
250                 return NULL;
251         }
252         DEBUG("port %u mempool %p area start=%p end=%p size=%zu",
253               dev->data->port_id, (void *)mp, (void *)start, (void *)end,
254               (size_t)(end - start));
255         /* Save original addresses for exact MR lookup. */
256         mr->start = start;
257         mr->end = end;
258         /* Round start and end to page boundary if found in memory segments. */
259         for (i = 0; (i < RTE_MAX_MEMSEG) && (ms[i].addr != NULL); ++i) {
260                 uintptr_t addr = (uintptr_t)ms[i].addr;
261                 size_t len = ms[i].len;
262                 unsigned int align = ms[i].hugepage_sz;
263
264                 if ((start > addr) && (start < addr + len))
265                         start = RTE_ALIGN_FLOOR(start, align);
266                 if ((end > addr) && (end < addr + len))
267                         end = RTE_ALIGN_CEIL(end, align);
268         }
269         DEBUG("port %u mempool %p using start=%p end=%p size=%zu for memory"
270               " region",
271               dev->data->port_id, (void *)mp, (void *)start, (void *)end,
272               (size_t)(end - start));
273         mr->mr = mlx5_glue->reg_mr(priv->pd, (void *)start, end - start,
274                                    IBV_ACCESS_LOCAL_WRITE);
275         if (!mr->mr) {
276                 rte_errno = ENOMEM;
277                 return NULL;
278         }
279         mr->mp = mp;
280         mr->lkey = rte_cpu_to_be_32(mr->mr->lkey);
281         rte_atomic32_inc(&mr->refcnt);
282         DEBUG("port %u new memory region %p refcnt: %d",
283               dev->data->port_id, (void *)mr, rte_atomic32_read(&mr->refcnt));
284         LIST_INSERT_HEAD(&priv->mr, mr, next);
285         return mr;
286 }
287
288 /**
289  * Search the memory region object in the memory region list.
290  *
291  * @param dev
292  *   Pointer to Ethernet device.
293  * @param mp
294  *   Pointer to the memory pool to register.
295  *
296  * @return
297  *   The memory region on success.
298  */
299 struct mlx5_mr *
300 mlx5_mr_get(struct rte_eth_dev *dev, struct rte_mempool *mp)
301 {
302         struct priv *priv = dev->data->dev_private;
303         struct mlx5_mr *mr;
304
305         assert(mp);
306         if (LIST_EMPTY(&priv->mr))
307                 return NULL;
308         LIST_FOREACH(mr, &priv->mr, next) {
309                 if (mr->mp == mp) {
310                         rte_atomic32_inc(&mr->refcnt);
311                         DEBUG("port %u memory region %p refcnt: %d",
312                               dev->data->port_id, (void *)mr,
313                               rte_atomic32_read(&mr->refcnt));
314                         return mr;
315                 }
316         }
317         return NULL;
318 }
319
320 /**
321  * Release the memory region object.
322  *
323  * @param  mr
324  *   Pointer to memory region to release.
325  *
326  * @return
327  *   1 while a reference on it exists, 0 when freed.
328  */
329 int
330 mlx5_mr_release(struct mlx5_mr *mr)
331 {
332         assert(mr);
333         DEBUG("memory region %p refcnt: %d", (void *)mr,
334               rte_atomic32_read(&mr->refcnt));
335         if (rte_atomic32_dec_and_test(&mr->refcnt)) {
336                 claim_zero(mlx5_glue->dereg_mr(mr->mr));
337                 LIST_REMOVE(mr, next);
338                 rte_free(mr);
339                 return 0;
340         }
341         return 1;
342 }
343
344 /**
345  * Verify the flow list is empty
346  *
347  * @param dev
348  *   Pointer to Ethernet device.
349  *
350  * @return
351  *   The number of object not released.
352  */
353 int
354 mlx5_mr_verify(struct rte_eth_dev *dev)
355 {
356         struct priv *priv = dev->data->dev_private;
357         int ret = 0;
358         struct mlx5_mr *mr;
359
360         LIST_FOREACH(mr, &priv->mr, next) {
361                 DEBUG("port %u memory region %p still referenced",
362                       dev->data->port_id, (void *)mr);
363                 ++ret;
364         }
365         return ret;
366 }