From c085aa307ef1d6ef3f99b2a6021faba8a52c0a92 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 12 Sep 2025 16:00:20 +0300 Subject: [PATCH 1/5] app: boards: remove setting of CONFIG_MM_DRV for Intel boards CONFIG_MM_DRV is set based on hardware properties in the Zephyr soc defconfig file, so no need to set this in each board file. Signed-off-by: Kai Vehmanen --- app/boards/intel_adsp/Kconfig.defconfig | 3 +++ app/boards/intel_adsp_ace30_ptl.conf | 1 - app/boards/intel_adsp_ace30_wcl.conf | 1 - app/boards/intel_adsp_ace40_nvl.conf | 1 - app/boards/intel_adsp_ace40_nvls.conf | 1 - app/boards/intel_adsp_cavs25.conf | 1 - app/boards/intel_adsp_cavs25_tgph.conf | 1 - 7 files changed, 3 insertions(+), 6 deletions(-) diff --git a/app/boards/intel_adsp/Kconfig.defconfig b/app/boards/intel_adsp/Kconfig.defconfig index 59026e7f7cc4..a03c4989b392 100644 --- a/app/boards/intel_adsp/Kconfig.defconfig +++ b/app/boards/intel_adsp/Kconfig.defconfig @@ -111,6 +111,9 @@ config INTEL_ADSP_IPC config INTEL_ADSP_TIMER default y +config MM_DRV + default y + # # Zephyr / power settings # ---------------------------------------- diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index a02e8ea6c2f3..06aac87feaec 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -5,7 +5,6 @@ CONFIG_RIMAGE_SIGNING_SCHEMA="ptl" CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings -CONFIG_MM_DRV=y CONFIG_COMP_CHAIN_DMA=y CONFIG_COMP_KPB=y CONFIG_COMP_TESTER=m diff --git a/app/boards/intel_adsp_ace30_wcl.conf b/app/boards/intel_adsp_ace30_wcl.conf index aba660a511e2..0ca38999c8bc 100644 --- a/app/boards/intel_adsp_ace30_wcl.conf +++ b/app/boards/intel_adsp_ace30_wcl.conf @@ -5,7 +5,6 @@ CONFIG_RIMAGE_SIGNING_SCHEMA="ptl" CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings -CONFIG_MM_DRV=y CONFIG_COMP_KPB=y CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y diff --git a/app/boards/intel_adsp_ace40_nvl.conf b/app/boards/intel_adsp_ace40_nvl.conf index 592ba109a387..f6aeeb7eb566 100644 --- a/app/boards/intel_adsp_ace40_nvl.conf +++ b/app/boards/intel_adsp_ace40_nvl.conf @@ -6,7 +6,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_SRC=y -CONFIG_MM_DRV=y CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=y CONFIG_COMP_KPB=y diff --git a/app/boards/intel_adsp_ace40_nvls.conf b/app/boards/intel_adsp_ace40_nvls.conf index 95be818421aa..692f715b0b65 100644 --- a/app/boards/intel_adsp_ace40_nvls.conf +++ b/app/boards/intel_adsp_ace40_nvls.conf @@ -6,7 +6,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_SRC=y -CONFIG_MM_DRV=y CONFIG_COMP_ARIA=y CONFIG_COMP_CHAIN_DMA=y CONFIG_COMP_DRC=y diff --git a/app/boards/intel_adsp_cavs25.conf b/app/boards/intel_adsp_cavs25.conf index 2499eecd8555..0d39b072324c 100644 --- a/app/boards/intel_adsp_cavs25.conf +++ b/app/boards/intel_adsp_cavs25.conf @@ -42,7 +42,6 @@ CONFIG_DMA_DW_LLI_POOL_SIZE=100 CONFIG_DMA_DW_HW_LLI=y CONFIG_DMA_DW_FIFO_PARTITION=y CONFIG_DMA_INTEL_ADSP_GPDMA_HAS_LLP=y -CONFIG_MM_DRV=y # Zephyr / power settings CONFIG_PM_POLICY_CUSTOM=y diff --git a/app/boards/intel_adsp_cavs25_tgph.conf b/app/boards/intel_adsp_cavs25_tgph.conf index 6bc77e92a43f..2d6ac891cbd0 100644 --- a/app/boards/intel_adsp_cavs25_tgph.conf +++ b/app/boards/intel_adsp_cavs25_tgph.conf @@ -41,7 +41,6 @@ CONFIG_DMA_DW_LLI_POOL_SIZE=100 CONFIG_DMA_DW_HW_LLI=y CONFIG_DMA_DW_FIFO_PARTITION=y CONFIG_DMA_INTEL_ADSP_GPDMA_HAS_LLP=y -CONFIG_MM_DRV=y # Zephyr / power settings CONFIG_PM=y From fe3a4ce82d3f639ae422114465a2448be003df54 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 12 Sep 2025 16:02:33 +0300 Subject: [PATCH 2/5] app: boards: remove unnecessary COMP_CHAIN_DMA=y defines Remove a few leftover unnecessary statements to set COMP_CHAIN_DMA=y. This is already set in the board defconfig for the Intel DSPs, so no need to set this in the board file. Signed-off-by: Kai Vehmanen --- app/boards/intel_adsp_ace30_ptl.conf | 1 - app/boards/intel_adsp_ace40_nvls.conf | 1 - 2 files changed, 2 deletions(-) diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index 06aac87feaec..fecd2315a296 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -5,7 +5,6 @@ CONFIG_RIMAGE_SIGNING_SCHEMA="ptl" CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings -CONFIG_COMP_CHAIN_DMA=y CONFIG_COMP_KPB=y CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y diff --git a/app/boards/intel_adsp_ace40_nvls.conf b/app/boards/intel_adsp_ace40_nvls.conf index 692f715b0b65..f6aeeb7eb566 100644 --- a/app/boards/intel_adsp_ace40_nvls.conf +++ b/app/boards/intel_adsp_ace40_nvls.conf @@ -7,7 +7,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_SRC=y CONFIG_COMP_ARIA=y -CONFIG_COMP_CHAIN_DMA=y CONFIG_COMP_DRC=y CONFIG_COMP_KPB=y CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y From e0cc9d36b745601aaa1e265b308166e6b2c1e7dd Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 12 Sep 2025 16:06:02 +0300 Subject: [PATCH 3/5] app: boards: intel_adsp: set COMP_KPB for all boards Move COMP_KPB to the shared defconfig file. This has not been enabled for cavs25 boards, but no reason why not, so enable it for all. Signed-off-by: Kai Vehmanen --- app/boards/intel_adsp/Kconfig.defconfig | 3 +++ app/boards/intel_adsp_ace15_mtpm.conf | 1 - app/boards/intel_adsp_ace20_lnl.conf | 1 - app/boards/intel_adsp_ace30_ptl.conf | 1 - app/boards/intel_adsp_ace30_wcl.conf | 1 - app/boards/intel_adsp_ace40_nvl.conf | 1 - app/boards/intel_adsp_ace40_nvls.conf | 1 - 7 files changed, 3 insertions(+), 6 deletions(-) diff --git a/app/boards/intel_adsp/Kconfig.defconfig b/app/boards/intel_adsp/Kconfig.defconfig index a03c4989b392..788d2444249d 100644 --- a/app/boards/intel_adsp/Kconfig.defconfig +++ b/app/boards/intel_adsp/Kconfig.defconfig @@ -21,6 +21,9 @@ config IPC4_BASE_FW_INTEL config COMP_CHAIN_DMA default y +config COMP_KPB + default y + config FAST_GET default y diff --git a/app/boards/intel_adsp_ace15_mtpm.conf b/app/boards/intel_adsp_ace15_mtpm.conf index 2bf518f375f4..1b0966f0c07a 100644 --- a/app/boards/intel_adsp_ace15_mtpm.conf +++ b/app/boards/intel_adsp_ace15_mtpm.conf @@ -8,7 +8,6 @@ CONFIG_IPC_MAJOR_4=y CONFIG_COMP_ARIA=y CONFIG_COMP_CROSSOVER=y CONFIG_COMP_DRC=y -CONFIG_COMP_KPB=y CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_SRC_LITE=y diff --git a/app/boards/intel_adsp_ace20_lnl.conf b/app/boards/intel_adsp_ace20_lnl.conf index 986752ae0344..0eb995d23603 100644 --- a/app/boards/intel_adsp_ace20_lnl.conf +++ b/app/boards/intel_adsp_ace20_lnl.conf @@ -7,7 +7,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=m -CONFIG_COMP_KPB=y CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_UP_DOWN_MIXER=y diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index fecd2315a296..3a8ace153f7c 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -5,7 +5,6 @@ CONFIG_RIMAGE_SIGNING_SCHEMA="ptl" CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings -CONFIG_COMP_KPB=y CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_UP_DOWN_MIXER=y diff --git a/app/boards/intel_adsp_ace30_wcl.conf b/app/boards/intel_adsp_ace30_wcl.conf index 0ca38999c8bc..0b53165b0363 100644 --- a/app/boards/intel_adsp_ace30_wcl.conf +++ b/app/boards/intel_adsp_ace30_wcl.conf @@ -5,7 +5,6 @@ CONFIG_RIMAGE_SIGNING_SCHEMA="ptl" CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings -CONFIG_COMP_KPB=y CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_UP_DOWN_MIXER=y diff --git a/app/boards/intel_adsp_ace40_nvl.conf b/app/boards/intel_adsp_ace40_nvl.conf index f6aeeb7eb566..b555f08241bf 100644 --- a/app/boards/intel_adsp_ace40_nvl.conf +++ b/app/boards/intel_adsp_ace40_nvl.conf @@ -8,7 +8,6 @@ CONFIG_IPC_MAJOR_4=y CONFIG_COMP_SRC=y CONFIG_COMP_ARIA=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 diff --git a/app/boards/intel_adsp_ace40_nvls.conf b/app/boards/intel_adsp_ace40_nvls.conf index f6aeeb7eb566..b555f08241bf 100644 --- a/app/boards/intel_adsp_ace40_nvls.conf +++ b/app/boards/intel_adsp_ace40_nvls.conf @@ -8,7 +8,6 @@ CONFIG_IPC_MAJOR_4=y CONFIG_COMP_SRC=y CONFIG_COMP_ARIA=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 From 67c36a6a46ed2e06ee96f2d259e1d50d6ce56098 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 12 Sep 2025 18:26:00 +0300 Subject: [PATCH 4/5] app: boards: intel_adsp: COMP_UP_DOWN_MIXER set for all boards Move COMP_UP_DOWN_MIXER to the shared defconfig file. This has not been enabled for cavs25 boards, but no reason why not, so enable it for all. Signed-off-by: Kai Vehmanen --- app/boards/intel_adsp/Kconfig.defconfig | 3 +++ app/boards/intel_adsp_ace15_mtpm.conf | 1 - app/boards/intel_adsp_ace20_lnl.conf | 1 - app/boards/intel_adsp_ace30_ptl.conf | 1 - app/boards/intel_adsp_ace30_ptl_sim.conf | 1 - app/boards/intel_adsp_ace30_wcl.conf | 1 - app/boards/intel_adsp_ace30_wcl_sim.conf | 1 - app/boards/intel_adsp_ace40_nvl.conf | 1 - app/boards/intel_adsp_ace40_nvls.conf | 1 - 9 files changed, 3 insertions(+), 8 deletions(-) diff --git a/app/boards/intel_adsp/Kconfig.defconfig b/app/boards/intel_adsp/Kconfig.defconfig index 788d2444249d..c2245f8d6431 100644 --- a/app/boards/intel_adsp/Kconfig.defconfig +++ b/app/boards/intel_adsp/Kconfig.defconfig @@ -24,6 +24,9 @@ config COMP_CHAIN_DMA config COMP_KPB default y +config COMP_UP_DOWN_MIXER + default y + config FAST_GET default y diff --git a/app/boards/intel_adsp_ace15_mtpm.conf b/app/boards/intel_adsp_ace15_mtpm.conf index 1b0966f0c07a..87c88def966e 100644 --- a/app/boards/intel_adsp_ace15_mtpm.conf +++ b/app/boards/intel_adsp_ace15_mtpm.conf @@ -13,7 +13,6 @@ CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_SRC_LITE=y CONFIG_COMP_MFCC=y CONFIG_COMP_MULTIBAND_DRC=y -CONFIG_COMP_UP_DOWN_MIXER=y CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n CONFIG_SAMPLE_KEYPHRASE=y diff --git a/app/boards/intel_adsp_ace20_lnl.conf b/app/boards/intel_adsp_ace20_lnl.conf index 0eb995d23603..414613349ff3 100644 --- a/app/boards/intel_adsp_ace20_lnl.conf +++ b/app/boards/intel_adsp_ace20_lnl.conf @@ -9,7 +9,6 @@ CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=m CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y -CONFIG_COMP_UP_DOWN_MIXER=y CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n CONFIG_SAMPLE_KEYPHRASE=y diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index 3a8ace153f7c..eec2e9a84022 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -7,7 +7,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y -CONFIG_COMP_UP_DOWN_MIXER=y CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n diff --git a/app/boards/intel_adsp_ace30_ptl_sim.conf b/app/boards/intel_adsp_ace30_ptl_sim.conf index 58806d13b315..7d674ca0a0a6 100644 --- a/app/boards/intel_adsp_ace30_ptl_sim.conf +++ b/app/boards/intel_adsp_ace30_ptl_sim.conf @@ -28,7 +28,6 @@ CONFIG_LOG=n CONFIG_LOG_MODE_DEFERRED=n CONFIG_LOG_FUNC_NAME_PREFIX_INF=n CONFIG_COMP_VOLUME_WINDOWS_FADE=y -CONFIG_COMP_UP_DOWN_MIXER=y CONFIG_SYS_CLOCK_TICKS_PER_SEC=12000 CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=19200000 diff --git a/app/boards/intel_adsp_ace30_wcl.conf b/app/boards/intel_adsp_ace30_wcl.conf index 0b53165b0363..edcd4e109bf5 100644 --- a/app/boards/intel_adsp_ace30_wcl.conf +++ b/app/boards/intel_adsp_ace30_wcl.conf @@ -7,7 +7,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y -CONFIG_COMP_UP_DOWN_MIXER=y CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n diff --git a/app/boards/intel_adsp_ace30_wcl_sim.conf b/app/boards/intel_adsp_ace30_wcl_sim.conf index d885cf7eb3e0..47bb1973c7d2 100644 --- a/app/boards/intel_adsp_ace30_wcl_sim.conf +++ b/app/boards/intel_adsp_ace30_wcl_sim.conf @@ -27,7 +27,6 @@ CONFIG_LOG=n CONFIG_LOG_MODE_DEFERRED=n CONFIG_LOG_FUNC_NAME_PREFIX_INF=n CONFIG_COMP_VOLUME_WINDOWS_FADE=y -CONFIG_COMP_UP_DOWN_MIXER=y CONFIG_SYS_CLOCK_TICKS_PER_SEC=12000 CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=19200000 diff --git a/app/boards/intel_adsp_ace40_nvl.conf b/app/boards/intel_adsp_ace40_nvl.conf index b555f08241bf..055244a0751d 100644 --- a/app/boards/intel_adsp_ace40_nvl.conf +++ b/app/boards/intel_adsp_ace40_nvl.conf @@ -10,7 +10,6 @@ CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=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 diff --git a/app/boards/intel_adsp_ace40_nvls.conf b/app/boards/intel_adsp_ace40_nvls.conf index b555f08241bf..055244a0751d 100644 --- a/app/boards/intel_adsp_ace40_nvls.conf +++ b/app/boards/intel_adsp_ace40_nvls.conf @@ -10,7 +10,6 @@ CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=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 From 7039898b78eee669f3165541828d4b1449bd8f22 Mon Sep 17 00:00:00 2001 From: Kai Vehmanen Date: Fri, 12 Sep 2025 18:41:14 +0300 Subject: [PATCH 5/5] app: boards: intel_adsp: COMP_VOLUME_WINDOWS_FADE set for all boards Move COMP_VOLUME_WINDOWS_FADE to the shared defconfig file. This has not been enabled for cavs25 boards, but no reason why not, so enable it for all. Signed-off-by: Kai Vehmanen --- app/boards/intel_adsp/Kconfig.defconfig | 3 +++ app/boards/intel_adsp_ace15_mtpm.conf | 1 - app/boards/intel_adsp_ace20_lnl.conf | 1 - app/boards/intel_adsp_ace30_ptl.conf | 1 - app/boards/intel_adsp_ace30_ptl_sim.conf | 1 - app/boards/intel_adsp_ace30_wcl.conf | 1 - app/boards/intel_adsp_ace30_wcl_sim.conf | 1 - app/boards/intel_adsp_ace40_nvl.conf | 1 - app/boards/intel_adsp_ace40_nvls.conf | 1 - 9 files changed, 3 insertions(+), 8 deletions(-) diff --git a/app/boards/intel_adsp/Kconfig.defconfig b/app/boards/intel_adsp/Kconfig.defconfig index c2245f8d6431..a2ba2db15db6 100644 --- a/app/boards/intel_adsp/Kconfig.defconfig +++ b/app/boards/intel_adsp/Kconfig.defconfig @@ -27,6 +27,9 @@ config COMP_KPB config COMP_UP_DOWN_MIXER default y +config COMP_VOLUME_WINDOWS_FADE + default y + config FAST_GET default y diff --git a/app/boards/intel_adsp_ace15_mtpm.conf b/app/boards/intel_adsp_ace15_mtpm.conf index 87c88def966e..4ebf4498375d 100644 --- a/app/boards/intel_adsp_ace15_mtpm.conf +++ b/app/boards/intel_adsp_ace15_mtpm.conf @@ -13,7 +13,6 @@ CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_SRC_LITE=y CONFIG_COMP_MFCC=y CONFIG_COMP_MULTIBAND_DRC=y -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n CONFIG_SAMPLE_KEYPHRASE=y diff --git a/app/boards/intel_adsp_ace20_lnl.conf b/app/boards/intel_adsp_ace20_lnl.conf index 414613349ff3..bc716dbf293d 100644 --- a/app/boards/intel_adsp_ace20_lnl.conf +++ b/app/boards/intel_adsp_ace20_lnl.conf @@ -9,7 +9,6 @@ CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=m CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n CONFIG_SAMPLE_KEYPHRASE=y diff --git a/app/boards/intel_adsp_ace30_ptl.conf b/app/boards/intel_adsp_ace30_ptl.conf index eec2e9a84022..e77a4888e6ce 100644 --- a/app/boards/intel_adsp_ace30_ptl.conf +++ b/app/boards/intel_adsp_ace30_ptl.conf @@ -7,7 +7,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n # SOF / infrastructure diff --git a/app/boards/intel_adsp_ace30_ptl_sim.conf b/app/boards/intel_adsp_ace30_ptl_sim.conf index 7d674ca0a0a6..477450d2d271 100644 --- a/app/boards/intel_adsp_ace30_ptl_sim.conf +++ b/app/boards/intel_adsp_ace30_ptl_sim.conf @@ -27,7 +27,6 @@ CONFIG_FORMAT_CONVERT_HIFI3=n CONFIG_LOG=n CONFIG_LOG_MODE_DEFERRED=n CONFIG_LOG_FUNC_NAME_PREFIX_INF=n -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_SYS_CLOCK_TICKS_PER_SEC=12000 CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=19200000 diff --git a/app/boards/intel_adsp_ace30_wcl.conf b/app/boards/intel_adsp_ace30_wcl.conf index edcd4e109bf5..faa20dd97a9b 100644 --- a/app/boards/intel_adsp_ace30_wcl.conf +++ b/app/boards/intel_adsp_ace30_wcl.conf @@ -7,7 +7,6 @@ CONFIG_IPC_MAJOR_4=y # SOF / audio pipeline and module settings CONFIG_COMP_TESTER=m CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n # SOF / infrastructure diff --git a/app/boards/intel_adsp_ace30_wcl_sim.conf b/app/boards/intel_adsp_ace30_wcl_sim.conf index 47bb1973c7d2..288305be6313 100644 --- a/app/boards/intel_adsp_ace30_wcl_sim.conf +++ b/app/boards/intel_adsp_ace30_wcl_sim.conf @@ -26,7 +26,6 @@ CONFIG_RIMAGE_SIGNING_SCHEMA="ptl" CONFIG_LOG=n CONFIG_LOG_MODE_DEFERRED=n CONFIG_LOG_FUNC_NAME_PREFIX_INF=n -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_SYS_CLOCK_TICKS_PER_SEC=12000 CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=19200000 diff --git a/app/boards/intel_adsp_ace40_nvl.conf b/app/boards/intel_adsp_ace40_nvl.conf index 055244a0751d..55a6628959e1 100644 --- a/app/boards/intel_adsp_ace40_nvl.conf +++ b/app/boards/intel_adsp_ace40_nvl.conf @@ -10,7 +10,6 @@ CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=y CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_TESTER=y -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n # SOF / infrastructure diff --git a/app/boards/intel_adsp_ace40_nvls.conf b/app/boards/intel_adsp_ace40_nvls.conf index 055244a0751d..55a6628959e1 100644 --- a/app/boards/intel_adsp_ace40_nvls.conf +++ b/app/boards/intel_adsp_ace40_nvls.conf @@ -10,7 +10,6 @@ CONFIG_COMP_ARIA=y CONFIG_COMP_DRC=y CONFIG_COMP_SRC_IPC4_FULL_MATRIX=y CONFIG_COMP_TESTER=y -CONFIG_COMP_VOLUME_WINDOWS_FADE=y CONFIG_FORMAT_CONVERT_HIFI3=n # SOF / infrastructure