crypto/caam_jr: integrate DPAAX table

Virtual to physical conversions are optimized using the
DPAAX tables. This patch integrates DPAAX with caam_jr PMD.

Signed-off-by: Gagandeep Singh <g.singh@nxp.com>
Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
This commit is contained in:
Gagandeep Singh 2019-09-02 17:57:47 +05:30 committed by Akhil Goyal
parent b48a3d859f
commit 9e727d4a3f
2 changed files with 7 additions and 0 deletions

View file

@ -39,5 +39,6 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
LDLIBS += -lrte_cryptodev
LDLIBS += -lrte_bus_dpaa
LDLIBS += -lrte_bus_vdev
LDLIBS += -lrte_common_dpaax
include $(RTE_SDK)/mk/rte.lib.mk

View file

@ -6,6 +6,7 @@
#define CAAM_JR_PVT_H
#include <hw/desc/ipsec.h>
#include <dpaax_iova_table.h>
/* NXP CAAM JR PMD device name */
@ -254,6 +255,11 @@ caam_jr_mem_vtop(void *vaddr)
static inline void *
caam_jr_dma_ptov(rte_iova_t paddr)
{
void *va;
va = dpaax_iova_table_get_va(paddr);
if (likely(va != NULL))
return va;
return rte_mem_iova2virt(paddr);
}