xtensa-build-all: add a separate target for JSL

Use intel_adsp_cavs20_jsl Zephyr board when building for
Intel Jasper Lake.

BugLink: https://github.com/thesofproject/sof/issues/4539
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
This commit is contained in:
Kai Vehmanen 2022-03-09 18:12:29 +02:00 committed by Liam Girdwood
parent 177e18f701
commit 6d0ecc37cc
2 changed files with 11 additions and 2 deletions

View File

@ -47,6 +47,12 @@ platform_list = [
"XTENSA_CORE": "X6H3CNL_2017_8", "XTENSA_CORE": "X6H3CNL_2017_8",
"XTENSA_TOOLS_VERSION": f"RG-2017.8{xtensa_tools_version_postfix}" "XTENSA_TOOLS_VERSION": f"RG-2017.8{xtensa_tools_version_postfix}"
}, },
{
"name": "jsl",
"PLAT_CONFIG": "intel_adsp_cavs20_jsl",
"XTENSA_CORE": "X6H3CNL_2017_8",
"XTENSA_TOOLS_VERSION": f"RG-2017.8{xtensa_tools_version_postfix}"
},
{ {
"name": "tgl", "name": "tgl",
"PLAT_CONFIG": "intel_adsp_cavs25", "PLAT_CONFIG": "intel_adsp_cavs25",

View File

@ -11,7 +11,7 @@ SOF_TOP=$(cd "$(dirname "$0")" && cd .. && pwd)
DEFAULT_PLATFORMS=() DEFAULT_PLATFORMS=()
# Intel # Intel
DEFAULT_PLATFORMS+=(apl cnl icl tgl-h tgl) DEFAULT_PLATFORMS+=(apl cnl icl jsl tgl-h tgl)
# NXP # NXP
DEFAULT_PLATFORMS+=(imx8 imx8x imx8m) DEFAULT_PLATFORMS+=(imx8 imx8x imx8m)
@ -200,8 +200,11 @@ build_platforms()
XTENSA_CORE="X6H3CNL_2017_8" XTENSA_CORE="X6H3CNL_2017_8"
XTENSA_TOOLS_VERSION="RG-2017.8-linux" XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;; ;;
icl) icl|jsl)
PLAT_CONFIG='intel_adsp_cavs20' PLAT_CONFIG='intel_adsp_cavs20'
if test "$platform" = jsl ; then
PLAT_CONFIG="intel_adsp_cavs20_jsl"
fi
XTENSA_CORE="X6H3CNL_2017_8" XTENSA_CORE="X6H3CNL_2017_8"
XTENSA_TOOLS_VERSION="RG-2017.8-linux" XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;; ;;