1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2016 6WIND S.A.
3 * Copyright 2020 Mellanox Technologies, Ltd
5 #include <rte_eal_memconfig.h>
7 #include <rte_mempool.h>
8 #include <rte_malloc.h>
9 #include <rte_rwlock.h>
11 #include "mlx5_glue.h"
12 #include "mlx5_common_mp.h"
13 #include "mlx5_common_mr.h"
14 #include "mlx5_common_utils.h"
16 struct mr_find_contig_memsegs_data {
20 const struct rte_memseg_list *msl;
24 * Expand B-tree table to a given size. Can't be called with holding
25 * memory_hotplug_lock or share_cache.rwlock due to rte_realloc().
28 * Pointer to B-tree structure.
30 * Number of entries for expansion.
33 * 0 on success, -1 on failure.
36 mr_btree_expand(struct mlx5_mr_btree *bt, int n)
44 * Downside of directly using rte_realloc() is that SOCKET_ID_ANY is
45 * used inside if there's no room to expand. Because this is a quite
46 * rare case and a part of very slow path, it is very acceptable.
47 * Initially cache_bh[] will be given practically enough space and once
48 * it is expanded, expansion wouldn't be needed again ever.
50 mem = rte_realloc(bt->table, n * sizeof(struct mr_cache_entry), 0);
52 /* Not an error, B-tree search will be skipped. */
53 DRV_LOG(WARNING, "failed to expand MR B-tree (%p) table",
57 DRV_LOG(DEBUG, "expanded MR B-tree table (size=%u)", n);
65 * Look up LKey from given B-tree lookup table, store the last index and return
69 * Pointer to B-tree structure.
71 * Pointer to index. Even on search failure, returns index where it stops
72 * searching so that index can be used when inserting a new entry.
77 * Searched LKey on success, UINT32_MAX on no match.
80 mr_btree_lookup(struct mlx5_mr_btree *bt, uint16_t *idx, uintptr_t addr)
82 struct mr_cache_entry *lkp_tbl;
86 MLX5_ASSERT(bt != NULL);
89 /* First entry must be NULL for comparison. */
90 MLX5_ASSERT(bt->len > 0 || (lkp_tbl[0].start == 0 &&
91 lkp_tbl[0].lkey == UINT32_MAX));
94 register uint16_t delta = n >> 1;
96 if (addr < lkp_tbl[base + delta].start) {
103 MLX5_ASSERT(addr >= lkp_tbl[base].start);
105 if (addr < lkp_tbl[base].end)
106 return lkp_tbl[base].lkey;
112 * Insert an entry to B-tree lookup table.
115 * Pointer to B-tree structure.
117 * Pointer to new entry to insert.
120 * 0 on success, -1 on failure.
123 mr_btree_insert(struct mlx5_mr_btree *bt, struct mr_cache_entry *entry)
125 struct mr_cache_entry *lkp_tbl;
129 MLX5_ASSERT(bt != NULL);
130 MLX5_ASSERT(bt->len <= bt->size);
131 MLX5_ASSERT(bt->len > 0);
132 lkp_tbl = *bt->table;
133 /* Find out the slot for insertion. */
134 if (mr_btree_lookup(bt, &idx, entry->start) != UINT32_MAX) {
136 "abort insertion to B-tree(%p): already exist at"
137 " idx=%u [0x%" PRIxPTR ", 0x%" PRIxPTR ") lkey=0x%x",
138 (void *)bt, idx, entry->start, entry->end, entry->lkey);
139 /* Already exist, return. */
142 /* If table is full, return error. */
143 if (unlikely(bt->len == bt->size)) {
149 shift = (bt->len - idx) * sizeof(struct mr_cache_entry);
151 memmove(&lkp_tbl[idx + 1], &lkp_tbl[idx], shift);
152 lkp_tbl[idx] = *entry;
155 "inserted B-tree(%p)[%u],"
156 " [0x%" PRIxPTR ", 0x%" PRIxPTR ") lkey=0x%x",
157 (void *)bt, idx, entry->start, entry->end, entry->lkey);
162 * Initialize B-tree and allocate memory for lookup table.
165 * Pointer to B-tree structure.
167 * Number of entries to allocate.
169 * NUMA socket on which memory must be allocated.
172 * 0 on success, a negative errno value otherwise and rte_errno is set.
175 mlx5_mr_btree_init(struct mlx5_mr_btree *bt, int n, int socket)
181 MLX5_ASSERT(!bt->table && !bt->size);
182 memset(bt, 0, sizeof(*bt));
183 bt->table = rte_calloc_socket("B-tree table",
184 n, sizeof(struct mr_cache_entry),
186 if (bt->table == NULL) {
188 DEBUG("failed to allocate memory for btree cache on socket %d",
193 /* First entry must be NULL for binary search. */
194 (*bt->table)[bt->len++] = (struct mr_cache_entry) {
197 DEBUG("initialized B-tree %p with table %p",
198 (void *)bt, (void *)bt->table);
203 * Free B-tree resources.
206 * Pointer to B-tree structure.
209 mlx5_mr_btree_free(struct mlx5_mr_btree *bt)
213 DEBUG("freeing B-tree %p with table %p",
214 (void *)bt, (void *)bt->table);
216 memset(bt, 0, sizeof(*bt));
220 * Dump all the entries in a B-tree
223 * Pointer to B-tree structure.
226 mlx5_mr_btree_dump(struct mlx5_mr_btree *bt __rte_unused)
228 #ifdef RTE_LIBRTE_MLX5_DEBUG
230 struct mr_cache_entry *lkp_tbl;
234 lkp_tbl = *bt->table;
235 for (idx = 0; idx < bt->len; ++idx) {
236 struct mr_cache_entry *entry = &lkp_tbl[idx];
238 DEBUG("B-tree(%p)[%u],"
239 " [0x%" PRIxPTR ", 0x%" PRIxPTR ") lkey=0x%x",
240 (void *)bt, idx, entry->start, entry->end, entry->lkey);
246 * Find virtually contiguous memory chunk in a given MR.
249 * Pointer to MR structure.
251 * Pointer to returning MR cache entry. If not found, this will not be
254 * Start index of the memseg bitmap.
257 * Next index to go on lookup.
260 mr_find_next_chunk(struct mlx5_mr *mr, struct mr_cache_entry *entry,
267 /* MR for external memory doesn't have memseg list. */
268 if (mr->msl == NULL) {
269 struct ibv_mr *ibv_mr = mr->ibv_mr;
271 MLX5_ASSERT(mr->ms_bmp_n == 1);
272 MLX5_ASSERT(mr->ms_n == 1);
273 MLX5_ASSERT(base_idx == 0);
275 * Can't search it from memseg list but get it directly from
276 * verbs MR as there's only one chunk.
278 entry->start = (uintptr_t)ibv_mr->addr;
279 entry->end = (uintptr_t)ibv_mr->addr + mr->ibv_mr->length;
280 entry->lkey = rte_cpu_to_be_32(mr->ibv_mr->lkey);
281 /* Returning 1 ends iteration. */
284 for (idx = base_idx; idx < mr->ms_bmp_n; ++idx) {
285 if (rte_bitmap_get(mr->ms_bmp, idx)) {
286 const struct rte_memseg_list *msl;
287 const struct rte_memseg *ms;
290 ms = rte_fbarray_get(&msl->memseg_arr,
291 mr->ms_base_idx + idx);
292 MLX5_ASSERT(msl->page_sz == ms->hugepage_sz);
295 end = ms->addr_64 + ms->hugepage_sz;
297 /* Passed the end of a fragment. */
302 /* Found one chunk. */
303 entry->start = start;
305 entry->lkey = rte_cpu_to_be_32(mr->ibv_mr->lkey);
311 * Insert a MR to the global B-tree cache. It may fail due to low-on-memory.
312 * Then, this entry will have to be searched by mr_lookup_list() in
313 * mlx5_mr_create() on miss.
316 * Pointer to a global shared MR cache.
318 * Pointer to MR to insert.
321 * 0 on success, -1 on failure.
324 mlx5_mr_insert_cache(struct mlx5_mr_share_cache *share_cache,
329 DRV_LOG(DEBUG, "Inserting MR(%p) to global cache(%p)",
330 (void *)mr, (void *)share_cache);
331 for (n = 0; n < mr->ms_bmp_n; ) {
332 struct mr_cache_entry entry;
334 memset(&entry, 0, sizeof(entry));
335 /* Find a contiguous chunk and advance the index. */
336 n = mr_find_next_chunk(mr, &entry, n);
339 if (mr_btree_insert(&share_cache->cache, &entry) < 0) {
341 * Overflowed, but the global table cannot be expanded
342 * because of deadlock.
351 * Look up address in the original global MR list.
354 * Pointer to a global shared MR cache.
356 * Pointer to returning MR cache entry. If no match, this will not be updated.
361 * Found MR on match, NULL otherwise.
364 mlx5_mr_lookup_list(struct mlx5_mr_share_cache *share_cache,
365 struct mr_cache_entry *entry, uintptr_t addr)
369 /* Iterate all the existing MRs. */
370 LIST_FOREACH(mr, &share_cache->mr_list, mr) {
375 for (n = 0; n < mr->ms_bmp_n; ) {
376 struct mr_cache_entry ret;
378 memset(&ret, 0, sizeof(ret));
379 n = mr_find_next_chunk(mr, &ret, n);
380 if (addr >= ret.start && addr < ret.end) {
391 * Look up address on global MR cache.
394 * Pointer to a global shared MR cache.
396 * Pointer to returning MR cache entry. If no match, this will not be updated.
401 * Searched LKey on success, UINT32_MAX on failure and rte_errno is set.
404 mlx5_mr_lookup_cache(struct mlx5_mr_share_cache *share_cache,
405 struct mr_cache_entry *entry, uintptr_t addr)
408 uint32_t lkey = UINT32_MAX;
412 * If the global cache has overflowed since it failed to expand the
413 * B-tree table, it can't have all the existing MRs. Then, the address
414 * has to be searched by traversing the original MR list instead, which
415 * is very slow path. Otherwise, the global cache is all inclusive.
417 if (!unlikely(share_cache->cache.overflow)) {
418 lkey = mr_btree_lookup(&share_cache->cache, &idx, addr);
419 if (lkey != UINT32_MAX)
420 *entry = (*share_cache->cache.table)[idx];
422 /* Falling back to the slowest path. */
423 mr = mlx5_mr_lookup_list(share_cache, entry, addr);
427 MLX5_ASSERT(lkey == UINT32_MAX || (addr >= entry->start &&
433 * Free MR resources. MR lock must not be held to avoid a deadlock. rte_free()
434 * can raise memory free event and the callback function will spin on the lock.
437 * Pointer to MR to free.
440 mr_free(struct mlx5_mr *mr)
444 DRV_LOG(DEBUG, "freeing MR(%p):", (void *)mr);
445 if (mr->ibv_mr != NULL)
446 claim_zero(mlx5_glue->dereg_mr(mr->ibv_mr));
447 if (mr->ms_bmp != NULL)
448 rte_bitmap_free(mr->ms_bmp);
453 mlx5_mr_rebuild_cache(struct mlx5_mr_share_cache *share_cache)
457 DRV_LOG(DEBUG, "Rebuild dev cache[] %p", (void *)share_cache);
458 /* Flush cache to rebuild. */
459 share_cache->cache.len = 1;
460 share_cache->cache.overflow = 0;
461 /* Iterate all the existing MRs. */
462 LIST_FOREACH(mr, &share_cache->mr_list, mr)
463 if (mlx5_mr_insert_cache(share_cache, mr) < 0)
468 * Release resources of detached MR having no online entry.
471 * Pointer to a global shared MR cache.
474 mlx5_mr_garbage_collect(struct mlx5_mr_share_cache *share_cache)
476 struct mlx5_mr *mr_next;
477 struct mlx5_mr_list free_list = LIST_HEAD_INITIALIZER(free_list);
479 /* Must be called from the primary process. */
480 MLX5_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
482 * MR can't be freed with holding the lock because rte_free() could call
483 * memory free callback function. This will be a deadlock situation.
485 rte_rwlock_write_lock(&share_cache->rwlock);
486 /* Detach the whole free list and release it after unlocking. */
487 free_list = share_cache->mr_free_list;
488 LIST_INIT(&share_cache->mr_free_list);
489 rte_rwlock_write_unlock(&share_cache->rwlock);
490 /* Release resources. */
491 mr_next = LIST_FIRST(&free_list);
492 while (mr_next != NULL) {
493 struct mlx5_mr *mr = mr_next;
495 mr_next = LIST_NEXT(mr, mr);
500 /* Called during rte_memseg_contig_walk() by mlx5_mr_create(). */
502 mr_find_contig_memsegs_cb(const struct rte_memseg_list *msl,
503 const struct rte_memseg *ms, size_t len, void *arg)
505 struct mr_find_contig_memsegs_data *data = arg;
507 if (data->addr < ms->addr_64 || data->addr >= ms->addr_64 + len)
509 /* Found, save it and stop walking. */
510 data->start = ms->addr_64;
511 data->end = ms->addr_64 + len;
517 * Create a new global Memory Region (MR) for a missing virtual address.
518 * This API should be called on a secondary process, then a request is sent to
519 * the primary process in order to create a MR for the address. As the global MR
520 * list is on the shared memory, following LKey lookup should succeed unless the
524 * Pointer to pd of a device (net, regex, vdpa,...).
526 * Pointer to a global shared MR cache.
528 * Pointer to returning MR cache entry, found in the global cache or newly
529 * created. If failed to create one, this will not be updated.
531 * Target virtual address to register.
532 * @param mr_ext_memseg_en
533 * Configurable flag about external memory segment enable or not.
536 * Searched LKey on success, UINT32_MAX on failure and rte_errno is set.
539 mlx5_mr_create_secondary(void *pd __rte_unused,
540 struct mlx5_mp_id *mp_id,
541 struct mlx5_mr_share_cache *share_cache,
542 struct mr_cache_entry *entry, uintptr_t addr,
543 unsigned int mr_ext_memseg_en __rte_unused)
547 DEBUG("port %u requesting MR creation for address (%p)",
548 mp_id->port_id, (void *)addr);
549 ret = mlx5_mp_req_mr_create(mp_id, addr);
551 DEBUG("Fail to request MR creation for address (%p)",
555 rte_rwlock_read_lock(&share_cache->rwlock);
556 /* Fill in output data. */
557 mlx5_mr_lookup_cache(share_cache, entry, addr);
558 /* Lookup can't fail. */
559 MLX5_ASSERT(entry->lkey != UINT32_MAX);
560 rte_rwlock_read_unlock(&share_cache->rwlock);
561 DEBUG("MR CREATED by primary process for %p:\n"
562 " [0x%" PRIxPTR ", 0x%" PRIxPTR "), lkey=0x%x",
563 (void *)addr, entry->start, entry->end, entry->lkey);
568 * Create a new global Memory Region (MR) for a missing virtual address.
569 * Register entire virtually contiguous memory chunk around the address.
572 * Pointer to pd of a device (net, regex, vdpa,...).
574 * Pointer to a global shared MR cache.
576 * Pointer to returning MR cache entry, found in the global cache or newly
577 * created. If failed to create one, this will not be updated.
579 * Target virtual address to register.
580 * @param mr_ext_memseg_en
581 * Configurable flag about external memory segment enable or not.
584 * Searched LKey on success, UINT32_MAX on failure and rte_errno is set.
587 mlx5_mr_create_primary(void *pd,
588 struct mlx5_mr_share_cache *share_cache,
589 struct mr_cache_entry *entry, uintptr_t addr,
590 unsigned int mr_ext_memseg_en)
592 struct mr_find_contig_memsegs_data data = {.addr = addr, };
593 struct mr_find_contig_memsegs_data data_re;
594 const struct rte_memseg_list *msl;
595 const struct rte_memseg *ms;
596 struct mlx5_mr *mr = NULL;
597 int ms_idx_shift = -1;
604 DRV_LOG(DEBUG, "Creating a MR using address (%p)", (void *)addr);
606 * Release detached MRs if any. This can't be called with holding either
607 * memory_hotplug_lock or share_cache->rwlock. MRs on the free list have
608 * been detached by the memory free event but it couldn't be released
609 * inside the callback due to deadlock. As a result, releasing resources
610 * is quite opportunistic.
612 mlx5_mr_garbage_collect(share_cache);
614 * If enabled, find out a contiguous virtual address chunk in use, to
615 * which the given address belongs, in order to register maximum range.
616 * In the best case where mempools are not dynamically recreated and
617 * '--socket-mem' is specified as an EAL option, it is very likely to
618 * have only one MR(LKey) per a socket and per a hugepage-size even
619 * though the system memory is highly fragmented. As the whole memory
620 * chunk will be pinned by kernel, it can't be reused unless entire
621 * chunk is freed from EAL.
623 * If disabled, just register one memseg (page). Then, memory
624 * consumption will be minimized but it may drop performance if there
625 * are many MRs to lookup on the datapath.
627 if (!mr_ext_memseg_en) {
628 data.msl = rte_mem_virt2memseg_list((void *)addr);
629 data.start = RTE_ALIGN_FLOOR(addr, data.msl->page_sz);
630 data.end = data.start + data.msl->page_sz;
631 } else if (!rte_memseg_contig_walk(mr_find_contig_memsegs_cb, &data)) {
633 "Unable to find virtually contiguous"
634 " chunk for address (%p)."
635 " rte_memseg_contig_walk() failed.", (void *)addr);
640 /* Addresses must be page-aligned. */
641 MLX5_ASSERT(data.msl);
642 MLX5_ASSERT(rte_is_aligned((void *)data.start, data.msl->page_sz));
643 MLX5_ASSERT(rte_is_aligned((void *)data.end, data.msl->page_sz));
645 ms = rte_mem_virt2memseg((void *)data.start, msl);
646 len = data.end - data.start;
648 MLX5_ASSERT(msl->page_sz == ms->hugepage_sz);
649 /* Number of memsegs in the range. */
650 ms_n = len / msl->page_sz;
651 DEBUG("Extending %p to [0x%" PRIxPTR ", 0x%" PRIxPTR "),"
652 " page_sz=0x%" PRIx64 ", ms_n=%u",
653 (void *)addr, data.start, data.end, msl->page_sz, ms_n);
654 /* Size of memory for bitmap. */
655 bmp_size = rte_bitmap_get_memory_footprint(ms_n);
656 mr = rte_zmalloc_socket(NULL,
657 RTE_ALIGN_CEIL(sizeof(*mr),
658 RTE_CACHE_LINE_SIZE) +
660 RTE_CACHE_LINE_SIZE, msl->socket_id);
662 DEBUG("Unable to allocate memory for a new MR of"
663 " address (%p).", (void *)addr);
669 * Save the index of the first memseg and initialize memseg bitmap. To
670 * see if a memseg of ms_idx in the memseg-list is still valid, check:
671 * rte_bitmap_get(mr->bmp, ms_idx - mr->ms_base_idx)
673 mr->ms_base_idx = rte_fbarray_find_idx(&msl->memseg_arr, ms);
674 bmp_mem = RTE_PTR_ALIGN_CEIL(mr + 1, RTE_CACHE_LINE_SIZE);
675 mr->ms_bmp = rte_bitmap_init(ms_n, bmp_mem, bmp_size);
676 if (mr->ms_bmp == NULL) {
677 DEBUG("Unable to initialize bitmap for a new MR of"
678 " address (%p).", (void *)addr);
683 * Should recheck whether the extended contiguous chunk is still valid.
684 * Because memory_hotplug_lock can't be held if there's any memory
685 * related calls in a critical path, resource allocation above can't be
686 * locked. If the memory has been changed at this point, try again with
687 * just single page. If not, go on with the big chunk atomically from
690 rte_mcfg_mem_read_lock();
692 if (len > msl->page_sz &&
693 !rte_memseg_contig_walk(mr_find_contig_memsegs_cb, &data_re)) {
694 DEBUG("Unable to find virtually contiguous"
695 " chunk for address (%p)."
696 " rte_memseg_contig_walk() failed.", (void *)addr);
700 if (data.start != data_re.start || data.end != data_re.end) {
702 * The extended contiguous chunk has been changed. Try again
703 * with single memseg instead.
705 data.start = RTE_ALIGN_FLOOR(addr, msl->page_sz);
706 data.end = data.start + msl->page_sz;
707 rte_mcfg_mem_read_unlock();
709 goto alloc_resources;
711 MLX5_ASSERT(data.msl == data_re.msl);
712 rte_rwlock_write_lock(&share_cache->rwlock);
714 * Check the address is really missing. If other thread already created
715 * one or it is not found due to overflow, abort and return.
717 if (mlx5_mr_lookup_cache(share_cache, entry, addr) != UINT32_MAX) {
719 * Insert to the global cache table. It may fail due to
720 * low-on-memory. Then, this entry will have to be searched
723 mr_btree_insert(&share_cache->cache, entry);
724 DEBUG("Found MR for %p on final lookup, abort", (void *)addr);
725 rte_rwlock_write_unlock(&share_cache->rwlock);
726 rte_mcfg_mem_read_unlock();
728 * Must be unlocked before calling rte_free() because
729 * mlx5_mr_mem_event_free_cb() can be called inside.
735 * Trim start and end addresses for verbs MR. Set bits for registering
736 * memsegs but exclude already registered ones. Bitmap can be
739 for (n = 0; n < ms_n; ++n) {
741 struct mr_cache_entry ret;
743 memset(&ret, 0, sizeof(ret));
744 start = data_re.start + n * msl->page_sz;
745 /* Exclude memsegs already registered by other MRs. */
746 if (mlx5_mr_lookup_cache(share_cache, &ret, start) ==
749 * Start from the first unregistered memseg in the
752 if (ms_idx_shift == -1) {
753 mr->ms_base_idx += n;
757 data.end = start + msl->page_sz;
758 rte_bitmap_set(mr->ms_bmp, n - ms_idx_shift);
762 len = data.end - data.start;
763 mr->ms_bmp_n = len / msl->page_sz;
764 MLX5_ASSERT(ms_idx_shift + mr->ms_bmp_n <= ms_n);
766 * Finally create a verbs MR for the memory chunk. ibv_reg_mr() can be
767 * called with holding the memory lock because it doesn't use
768 * mlx5_alloc_buf_extern() which eventually calls rte_malloc_socket()
769 * through mlx5_alloc_verbs_buf().
771 mr->ibv_mr = mlx5_glue->reg_mr(pd, (void *)data.start, len,
772 IBV_ACCESS_LOCAL_WRITE |
773 (haswell_broadwell_cpu ? 0 :
774 IBV_ACCESS_RELAXED_ORDERING));
775 if (mr->ibv_mr == NULL) {
776 DEBUG("Fail to create a verbs MR for address (%p)",
781 MLX5_ASSERT((uintptr_t)mr->ibv_mr->addr == data.start);
782 MLX5_ASSERT(mr->ibv_mr->length == len);
783 LIST_INSERT_HEAD(&share_cache->mr_list, mr, mr);
784 DEBUG("MR CREATED (%p) for %p:\n"
785 " [0x%" PRIxPTR ", 0x%" PRIxPTR "),"
786 " lkey=0x%x base_idx=%u ms_n=%u, ms_bmp_n=%u",
787 (void *)mr, (void *)addr, data.start, data.end,
788 rte_cpu_to_be_32(mr->ibv_mr->lkey),
789 mr->ms_base_idx, mr->ms_n, mr->ms_bmp_n);
790 /* Insert to the global cache table. */
791 mlx5_mr_insert_cache(share_cache, mr);
792 /* Fill in output data. */
793 mlx5_mr_lookup_cache(share_cache, entry, addr);
794 /* Lookup can't fail. */
795 MLX5_ASSERT(entry->lkey != UINT32_MAX);
796 rte_rwlock_write_unlock(&share_cache->rwlock);
797 rte_mcfg_mem_read_unlock();
800 rte_rwlock_write_unlock(&share_cache->rwlock);
802 rte_mcfg_mem_read_unlock();
805 * In case of error, as this can be called in a datapath, a warning
806 * message per an error is preferable instead. Must be unlocked before
807 * calling rte_free() because mlx5_mr_mem_event_free_cb() can be called
815 * Create a new global Memory Region (MR) for a missing virtual address.
816 * This can be called from primary and secondary process.
819 * Pointer to pd handle of a device (net, regex, vdpa,...).
821 * Pointer to a global shared MR cache.
823 * Pointer to returning MR cache entry, found in the global cache or newly
824 * created. If failed to create one, this will not be updated.
826 * Target virtual address to register.
829 * Searched LKey on success, UINT32_MAX on failure and rte_errno is set.
832 mlx5_mr_create(void *pd, struct mlx5_mp_id *mp_id,
833 struct mlx5_mr_share_cache *share_cache,
834 struct mr_cache_entry *entry, uintptr_t addr,
835 unsigned int mr_ext_memseg_en)
839 switch (rte_eal_process_type()) {
840 case RTE_PROC_PRIMARY:
841 ret = mlx5_mr_create_primary(pd, share_cache, entry,
842 addr, mr_ext_memseg_en);
844 case RTE_PROC_SECONDARY:
845 ret = mlx5_mr_create_secondary(pd, mp_id, share_cache, entry,
846 addr, mr_ext_memseg_en);
855 * Look up address in the global MR cache table. If not found, create a new MR.
856 * Insert the found/created entry to local bottom-half cache table.
859 * Pointer to pd of a device (net, regex, vdpa,...).
861 * Pointer to a global shared MR cache.
863 * Pointer to per-queue MR control structure.
865 * Pointer to returning MR cache entry, found in the global cache or newly
866 * created. If failed to create one, this is not written.
871 * Searched LKey on success, UINT32_MAX on no match.
874 mr_lookup_caches(void *pd, struct mlx5_mp_id *mp_id,
875 struct mlx5_mr_share_cache *share_cache,
876 struct mlx5_mr_ctrl *mr_ctrl,
877 struct mr_cache_entry *entry, uintptr_t addr,
878 unsigned int mr_ext_memseg_en)
880 struct mlx5_mr_btree *bt = &mr_ctrl->cache_bh;
884 /* If local cache table is full, try to double it. */
885 if (unlikely(bt->len == bt->size))
886 mr_btree_expand(bt, bt->size << 1);
887 /* Look up in the global cache. */
888 rte_rwlock_read_lock(&share_cache->rwlock);
889 lkey = mr_btree_lookup(&share_cache->cache, &idx, addr);
890 if (lkey != UINT32_MAX) {
892 *entry = (*share_cache->cache.table)[idx];
893 rte_rwlock_read_unlock(&share_cache->rwlock);
895 * Update local cache. Even if it fails, return the found entry
896 * to update top-half cache. Next time, this entry will be found
897 * in the global cache.
899 mr_btree_insert(bt, entry);
902 rte_rwlock_read_unlock(&share_cache->rwlock);
903 /* First time to see the address? Create a new MR. */
904 lkey = mlx5_mr_create(pd, mp_id, share_cache, entry, addr,
907 * Update the local cache if successfully created a new global MR. Even
908 * if failed to create one, there's no action to take in this datapath
909 * code. As returning LKey is invalid, this will eventually make HW
912 if (lkey != UINT32_MAX)
913 mr_btree_insert(bt, entry);
918 * Bottom-half of LKey search on datapath. First search in cache_bh[] and if
919 * misses, search in the global MR cache table and update the new entry to
920 * per-queue local caches.
923 * Pointer to pd of a device (net, regex, vdpa,...).
925 * Pointer to a global shared MR cache.
927 * Pointer to per-queue MR control structure.
932 * Searched LKey on success, UINT32_MAX on no match.
934 uint32_t mlx5_mr_addr2mr_bh(void *pd, struct mlx5_mp_id *mp_id,
935 struct mlx5_mr_share_cache *share_cache,
936 struct mlx5_mr_ctrl *mr_ctrl,
937 uintptr_t addr, unsigned int mr_ext_memseg_en)
941 /* Victim in top-half cache to replace with new entry. */
942 struct mr_cache_entry *repl = &mr_ctrl->cache[mr_ctrl->head];
944 /* Binary-search MR translation table. */
945 lkey = mr_btree_lookup(&mr_ctrl->cache_bh, &bh_idx, addr);
946 /* Update top-half cache. */
947 if (likely(lkey != UINT32_MAX)) {
948 *repl = (*mr_ctrl->cache_bh.table)[bh_idx];
951 * If missed in local lookup table, search in the global cache
952 * and local cache_bh[] will be updated inside if possible.
953 * Top-half cache entry will also be updated.
955 lkey = mr_lookup_caches(pd, mp_id, share_cache, mr_ctrl,
956 repl, addr, mr_ext_memseg_en);
957 if (unlikely(lkey == UINT32_MAX))
960 /* Update the most recently used entry. */
961 mr_ctrl->mru = mr_ctrl->head;
962 /* Point to the next victim, the oldest. */
963 mr_ctrl->head = (mr_ctrl->head + 1) % MLX5_MR_CACHE_N;
968 * Release all the created MRs and resources on global MR cache of a device.
972 * Pointer to a global shared MR cache.
975 mlx5_mr_release_cache(struct mlx5_mr_share_cache *share_cache)
977 struct mlx5_mr *mr_next;
979 rte_rwlock_write_lock(&share_cache->rwlock);
980 /* Detach from MR list and move to free list. */
981 mr_next = LIST_FIRST(&share_cache->mr_list);
982 while (mr_next != NULL) {
983 struct mlx5_mr *mr = mr_next;
985 mr_next = LIST_NEXT(mr, mr);
987 LIST_INSERT_HEAD(&share_cache->mr_free_list, mr, mr);
989 LIST_INIT(&share_cache->mr_list);
990 /* Free global cache. */
991 mlx5_mr_btree_free(&share_cache->cache);
992 rte_rwlock_write_unlock(&share_cache->rwlock);
993 /* Free all remaining MRs. */
994 mlx5_mr_garbage_collect(share_cache);
998 * Flush all of the local cache entries.
1001 * Pointer to per-queue MR local cache.
1004 mlx5_mr_flush_local_cache(struct mlx5_mr_ctrl *mr_ctrl)
1006 /* Reset the most-recently-used index. */
1008 /* Reset the linear search array. */
1010 memset(mr_ctrl->cache, 0, sizeof(mr_ctrl->cache));
1011 /* Reset the B-tree table. */
1012 mr_ctrl->cache_bh.len = 1;
1013 mr_ctrl->cache_bh.overflow = 0;
1014 /* Update the generation number. */
1015 mr_ctrl->cur_gen = *mr_ctrl->dev_gen_ptr;
1016 DRV_LOG(DEBUG, "mr_ctrl(%p): flushed, cur_gen=%d",
1017 (void *)mr_ctrl, mr_ctrl->cur_gen);
1021 * Creates a memory region for external memory, that is memory which is not
1022 * part of the DPDK memory segments.
1025 * Pointer to pd of a device (net, regex, vdpa,...).
1027 * Starting virtual address of memory.
1029 * Length of memory segment being mapped.
1031 * Socket to allocate heap memory for the control structures.
1034 * Pointer to MR structure on success, NULL otherwise.
1037 mlx5_create_mr_ext(void *pd, uintptr_t addr, size_t len, int socket_id)
1039 struct mlx5_mr *mr = NULL;
1041 mr = rte_zmalloc_socket(NULL,
1042 RTE_ALIGN_CEIL(sizeof(*mr),
1043 RTE_CACHE_LINE_SIZE),
1044 RTE_CACHE_LINE_SIZE, socket_id);
1047 mr->ibv_mr = mlx5_glue->reg_mr(pd, (void *)addr, len,
1048 IBV_ACCESS_LOCAL_WRITE |
1049 (haswell_broadwell_cpu ? 0 :
1050 IBV_ACCESS_RELAXED_ORDERING));
1051 if (mr->ibv_mr == NULL) {
1053 "Fail to create a verbs MR for address (%p)",
1058 mr->msl = NULL; /* Mark it is external memory. */
1063 "MR CREATED (%p) for external memory %p:\n"
1064 " [0x%" PRIxPTR ", 0x%" PRIxPTR "),"
1065 " lkey=0x%x base_idx=%u ms_n=%u, ms_bmp_n=%u",
1066 (void *)mr, (void *)addr,
1067 addr, addr + len, rte_cpu_to_be_32(mr->ibv_mr->lkey),
1068 mr->ms_base_idx, mr->ms_n, mr->ms_bmp_n);
1073 * Dump all the created MRs and the global cache entries.
1076 * Pointer to Ethernet device shared context.
1079 mlx5_mr_dump_cache(struct mlx5_mr_share_cache *share_cache __rte_unused)
1081 #ifdef RTE_LIBRTE_MLX5_DEBUG
1086 rte_rwlock_read_lock(&share_cache->rwlock);
1087 /* Iterate all the existing MRs. */
1088 LIST_FOREACH(mr, &share_cache->mr_list, mr) {
1091 DEBUG("MR[%u], LKey = 0x%x, ms_n = %u, ms_bmp_n = %u",
1092 mr_n++, rte_cpu_to_be_32(mr->ibv_mr->lkey),
1093 mr->ms_n, mr->ms_bmp_n);
1096 for (n = 0; n < mr->ms_bmp_n; ) {
1097 struct mr_cache_entry ret = { 0, };
1099 n = mr_find_next_chunk(mr, &ret, n);
1102 DEBUG(" chunk[%u], [0x%" PRIxPTR ", 0x%" PRIxPTR ")",
1103 chunk_n++, ret.start, ret.end);
1106 DEBUG("Dumping global cache %p", (void *)share_cache);
1107 mlx5_mr_btree_dump(&share_cache->cache);
1108 rte_rwlock_read_unlock(&share_cache->rwlock);