mempool/cnxk: add cn9k mempool operations

Add Marvell CN9k mempool ops and implement CN9k mempool
alloc which makes sure that the element size always occupy
odd number of cachelines to ensure even distribution among
of elements among L1D cache sets.

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
Signed-off-by: Ashwin Sekhar T K <asekhar@marvell.com>
This commit is contained in:
Ashwin Sekhar T K 2021-04-08 15:20:43 +05:30 committed by Jerin Jacob
parent 0ad49b2083
commit e43b51fec3
3 changed files with 59 additions and 2 deletions

View File

@ -0,0 +1,54 @@
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(C) 2021 Marvell.
*/
#include <rte_mempool.h>
#include "roc_api.h"
#include "cnxk_mempool.h"
static int
cn9k_mempool_alloc(struct rte_mempool *mp)
{
size_t block_size, padding;
block_size = mp->elt_size + mp->header_size + mp->trailer_size;
/* Align header size to ROC_ALIGN */
if (mp->header_size % ROC_ALIGN != 0) {
padding = RTE_ALIGN_CEIL(mp->header_size, ROC_ALIGN) -
mp->header_size;
mp->header_size += padding;
block_size += padding;
}
/* Align block size to ROC_ALIGN */
if (block_size % ROC_ALIGN != 0) {
padding = RTE_ALIGN_CEIL(block_size, ROC_ALIGN) - block_size;
mp->trailer_size += padding;
block_size += padding;
}
/*
* Marvell CN9k has 8 sets, 41 ways L1D cache, VA<9:7> bits dictate the
* set selection. Add additional padding to ensure that the element size
* always occupies odd number of cachelines to ensure even distribution
* of elements among L1D cache sets.
*/
padding = ((block_size / ROC_ALIGN) % 2) ? 0 : ROC_ALIGN;
mp->trailer_size += padding;
return cnxk_mempool_alloc(mp);
}
static struct rte_mempool_ops cn9k_mempool_ops = {
.name = "cn9k_mempool_ops",
.alloc = cn9k_mempool_alloc,
.free = cnxk_mempool_free,
.enqueue = cnxk_mempool_enq,
.dequeue = cnxk_mempool_deq,
.get_count = cnxk_mempool_get_count,
.calc_mem_size = cnxk_mempool_calc_mem_size,
.populate = cnxk_mempool_populate,
};
MEMPOOL_REGISTER_OPS(cn9k_mempool_ops);

View File

@ -174,7 +174,9 @@ cnxk_mempool_populate(struct rte_mempool *mp, unsigned int max_objs,
static int
cnxk_mempool_plt_init(void)
{
if (roc_model_is_cn10k() || roc_model_is_cn9k())
if (roc_model_is_cn9k())
rte_mbuf_set_platform_mempool_ops("cn9k_mempool_ops");
else if (roc_model_is_cn10k())
rte_mbuf_set_platform_mempool_ops("cnxk_mempool_ops");
return 0;

View File

@ -9,6 +9,7 @@ if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
endif
sources = files('cnxk_mempool.c',
'cnxk_mempool_ops.c')
'cnxk_mempool_ops.c',
'cn9k_mempool_ops.c')
deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_cnxk', 'mempool']