From 36452f444b3b23bfab1bc3f3fe848d85df300f8c Mon Sep 17 00:00:00 2001 From: Liam Girdwood Date: Fri, 6 Aug 2021 16:57:56 +0100 Subject: [PATCH] testbench: increase the testbench mailbox size to support larger tplgs Testbench should be able to support ALL DSP based topologies. Signed-off-by: Liam Girdwood --- src/platform/library/include/platform/lib/mailbox.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/platform/library/include/platform/lib/mailbox.h b/src/platform/library/include/platform/lib/mailbox.h index 7d8376561..fbfbc3719 100644 --- a/src/platform/library/include/platform/lib/mailbox.h +++ b/src/platform/library/include/platform/lib/mailbox.h @@ -39,7 +39,8 @@ #define MAILBOX_STREAM_OFFSET \ (MAILBOX_DEBUG_SIZE + MAILBOX_DEBUG_OFFSET) -#define MAILBOX_STREAM_SIZE 0x200 +/* host mailbox can be bigger to support larger and more complex use cases */ +#define MAILBOX_STREAM_SIZE 0x2000 #define MAILBOX_STREAM_BASE \ (MAILBOX_BASE + MAILBOX_STREAM_OFFSET)