Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/xtensa-build-zephyr.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@
"XTENSA_CORE": "X6H3CNL_2017_8",
"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",
"PLAT_CONFIG": "intel_adsp_cavs25",
Expand Down
7 changes: 5 additions & 2 deletions scripts/xtensa-build-zephyr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SOF_TOP=$(cd "$(dirname "$0")" && cd .. && pwd)
DEFAULT_PLATFORMS=()

# Intel
DEFAULT_PLATFORMS+=(apl cnl icl tgl-h tgl)
DEFAULT_PLATFORMS+=(apl cnl icl jsl tgl-h tgl)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Depending on how long the Zephyr PR is going to take, you can add it to SUPPORTED_PLATFORMS right now. This will enable other people to try it now without breaking CI.

Same thing with line 84 in the python script.


# NXP
DEFAULT_PLATFORMS+=(imx8 imx8x imx8m)
Expand Down Expand Up @@ -189,8 +189,11 @@ build_platforms()
XTENSA_CORE="X6H3CNL_2017_8"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
icl)
icl|jsl)
PLAT_CONFIG='intel_adsp_cavs20'
if test "$platform" = jsl ; then
PLAT_CONFIG="intel_adsp_cavs20_jsl"
fi
XTENSA_CORE="X6H3CNL_2017_8"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
Expand Down