From 692ea29b4bf7fede32a616d618d79be13cc0b832 Mon Sep 17 00:00:00 2001 From: Seppo Ingalsuo Date: Wed, 28 Aug 2024 17:51:59 +0300 Subject: [PATCH] Scripts: Add testbench build for Intel NVL platform DSP This patch adds to "scripts/rebuild-testbench.sh -p nvl" option to test processing components with NVL DSP build. Signed-off-by: Seppo Ingalsuo --- scripts/set_xtensa_params.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/set_xtensa_params.sh b/scripts/set_xtensa_params.sh index 92e4d7d384a6..4bdaf93c809d 100644 --- a/scripts/set_xtensa_params.sh +++ b/scripts/set_xtensa_params.sh @@ -66,6 +66,11 @@ case "$platform" in XTENSA_CORE="ace30_LX7HiFi4_PIF" TOOLCHAIN_VER="RI-2022.10-linux" ;; + nvl) + PLATFORM="$platform" + XTENSA_CORE="ace4px_HiFi5MMU_PIF_nlib" + TOOLCHAIN_VER="RI-2022.10-linux" + ;; # NXP imx8) @@ -153,7 +158,7 @@ esac # Pre-zephyr "XTOS" build, testbench,... case "$platform" in - mtl|lnl|ptl|acp_7_0|mt8196) + mtl|lnl|ptl|acp_7_0|mt8196|nvl) SOF_CC_BASE='clang';; *) SOF_CC_BASE='xcc';;