From 547040d42447032dff64c01d58b64577455af6ec Mon Sep 17 00:00:00 2001 From: Jaroslaw Stelter Date: Tue, 24 Oct 2023 13:29:18 +0200 Subject: [PATCH] mtl: Fix KD topology tests failure KD topology tests fail on MTL due to insufficient size of heap memory. During creation of KD topologies with 4ch audio format, FW fails on memory allocation. The patch increases HEAPMEM size. Signed-off-by: Jaroslaw Stelter --- src/platform/meteorlake/include/platform/lib/memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/meteorlake/include/platform/lib/memory.h b/src/platform/meteorlake/include/platform/lib/memory.h index a741d0fb1025..77e8b7c1b25b 100644 --- a/src/platform/meteorlake/include/platform/lib/memory.h +++ b/src/platform/meteorlake/include/platform/lib/memory.h @@ -56,7 +56,7 @@ /** * size of HPSRAM system heap */ -#define HEAPMEM_SIZE 0xD0000 +#define HEAPMEM_SIZE 0xF0000 #endif /* __PLATFORM_LIB_MEMORY_H__ */