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
1 change: 1 addition & 0 deletions app/boards/intel_adsp_ace40_nvl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ CONFIG_COMP_CHAIN_DMA=y
CONFIG_COMP_DRC=y
CONFIG_COMP_KPB=y
CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y
CONFIG_COMP_TESTER=y
CONFIG_COMP_UP_DOWN_MIXER=y
CONFIG_COMP_VOLUME_WINDOWS_FADE=y
CONFIG_FORMAT_CONVERT_HIFI3=n
Expand Down
1 change: 1 addition & 0 deletions app/boards/intel_adsp_ace40_nvls.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ CONFIG_COMP_CHAIN_DMA=y
CONFIG_COMP_DRC=y
CONFIG_COMP_KPB=y
CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y
CONFIG_COMP_TESTER=y
CONFIG_COMP_UP_DOWN_MIXER=y
CONFIG_COMP_VOLUME_WINDOWS_FADE=y
CONFIG_FORMAT_CONVERT_HIFI3=n
Expand Down
24 changes: 12 additions & 12 deletions scripts/xtensa-build-zephyr.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,18 @@ class PlatformConfig:
# These cannot be built by everyone out of the box yet.
# For instance: there's no open-source toolchain available for them yet.
extra_platform_configs = {
"nvl" : PlatformConfig(
"intel", "intel_adsp/ace40/nvl",
f"RI-2022.10{xtensa_tools_version_postfix}",
"ace4px_HiFi5MMU_PIF_nlib",
ipc4 = True
),
"nvl-s" : PlatformConfig(
"intel", "intel_adsp/ace40/nvls",
f"RI-2022.10{xtensa_tools_version_postfix}",
"ace4px_HiFi5MMU_PIF_nlib",
ipc4 = True
),
"wcl-sim" : PlatformConfig(
"intel", "intel_adsp/ace30/wcl/sim",
f"RI-2022.10{xtensa_tools_version_postfix}",
Expand Down Expand Up @@ -180,18 +192,6 @@ class PlatformConfig:
"ace30_LX7HiFi4_PIF",
ipc4 = True
),
"nvl" : PlatformConfig(
"intel", "intel_adsp/ace40/nvl",
f"RI-2022.10{xtensa_tools_version_postfix}",
"ace4px_HiFi5MMU_PIF_nlib",
ipc4 = True
),
"nvl-s" : PlatformConfig(
"intel", "intel_adsp/ace40/nvls",
f"RI-2022.10{xtensa_tools_version_postfix}",
"ace4px_HiFi5MMU_PIF_nlib",
ipc4 = True
),

# NXP platforms
"imx8" : PlatformConfig(
Expand Down
4 changes: 4 additions & 0 deletions tools/rimage/config/lnl.toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@

index = __COUNTER__

#if defined(CONFIG_COMP_TESTER) || defined(LLEXT_FORCE_ALL_MODULAR)
#include <debug/tester/tester.toml>
#endif

#if defined(CONFIG_COMP_MIXIN_MIXOUT) || defined(LLEXT_FORCE_ALL_MODULAR)
#include <audio/mixin_mixout/mixin_mixout.toml>
#endif
Expand Down
4 changes: 4 additions & 0 deletions tools/rimage/config/nvl.toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ auto_start = "0"

index = __COUNTER__

#if defined(CONFIG_COMP_TESTER)
#include <debug/tester/tester.toml>
#endif

#ifdef CONFIG_COMP_MIXIN_MIXOUT
#include <audio/mixin_mixout/mixin_mixout.toml>
#endif
Expand Down
4 changes: 4 additions & 0 deletions tools/rimage/config/ptl.toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ auto_start = "0"

index = __COUNTER__

#if defined(CONFIG_COMP_TESTER) || defined(LLEXT_FORCE_ALL_MODULAR)
#include <debug/tester/tester.toml>
#endif

#if defined(CONFIG_COMP_MIXIN_MIXOUT) || defined(LLEXT_FORCE_ALL_MODULAR)
#include <audio/mixin_mixout/mixin_mixout.toml>
#endif
Expand Down
4 changes: 4 additions & 0 deletions tools/rimage/config/wcl.toml.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ auto_start = "0"

index = __COUNTER__

#if defined(CONFIG_COMP_TESTER) || defined(LLEXT_FORCE_ALL_MODULAR)
#include <debug/tester/tester.toml>
#endif

#if defined(CONFIG_COMP_MIXIN_MIXOUT) || defined(LLEXT_FORCE_ALL_MODULAR)
#include <audio/mixin_mixout/mixin_mixout.toml>
#endif
Expand Down
Loading