platform: imx: Increase system runtime heap size

The introduction of the DMA multi channel domain made it so the cascaded
interrupt handling fails to allocate memory from this heap. Increasing
the size of the system runtime heap will allow the registering of
cascaded interrupts (and in particular the EDMA interrupt within the DMA
scheduling domain) to continue.

On this platform we have 8MB of total memory. Allocating 24kB instead of
12kB for the system runtime heap does not cause any noticeable change
besides removing the memory allocation failures.

Signed-off-by: Paul Olaru <paul.olaru@nxp.com>
This commit is contained in:
Paul Olaru 2019-10-17 15:01:47 +03:00 committed by Daniel Baluta
parent 0234df5b4a
commit 3cec2101da
1 changed files with 3 additions and 3 deletions

View File

@ -111,9 +111,9 @@
#define HEAP_RT_COUNT2048 4
/* Heap section sizes for system runtime heap */
#define HEAP_SYS_RT_COUNT64 64
#define HEAP_SYS_RT_COUNT512 8
#define HEAP_SYS_RT_COUNT1024 4
#define HEAP_SYS_RT_COUNT64 128
#define HEAP_SYS_RT_COUNT512 16
#define HEAP_SYS_RT_COUNT1024 8
/* Heap configuration */