mirror of https://github.com/thesofproject/sof.git
mt8195: Bump task stack size for Google AEC
AEC initialization is stack-hungry, needing ~6kb during initialization. That happens under the IPC task, not a component-local stack. So bump the default for all tasks as that's the only way to make sure IPC gets it. (Really this shouldn't be a platform choice, but that's where the symbol exists) Signed-off-by: Andy Ross <andyross@google.com>
This commit is contained in:
parent
02e88372d0
commit
8ab49bbf24
|
@ -165,7 +165,11 @@
|
|||
#define HEAP_BUF_ALIGNMENT DCACHE_LINE_SIZE
|
||||
|
||||
/** \brief EDF task's default stack size in bytes. */
|
||||
#ifdef CONFIG_COMP_GOOGLE_RTC_AUDIO_PROCESSING
|
||||
#define PLATFORM_TASK_DEFAULT_STACK_SIZE 8192
|
||||
#else
|
||||
#define PLATFORM_TASK_DEFAULT_STACK_SIZE 3072
|
||||
#endif
|
||||
|
||||
#if !defined(__ASSEMBLER__) && !defined(LINKER)
|
||||
|
||||
|
|
Loading…
Reference in New Issue