diff options
author | Sandor Yu <R01008@freescale.com> | 2014-07-07 15:59:12 +0800 |
---|---|---|
committer | Sandor Yu <R01008@freescale.com> | 2014-07-08 15:48:00 +0800 |
commit | 3695635d2f7d6e62ce555c684426aa36df2f6df6 (patch) | |
tree | d070726a2e9c428ea7032123cba50a847d2d9e81 /include | |
parent | c83fd326e810c2fff44b8b02e78406d5d04c977c (diff) | |
download | u-boot-imx-3695635d2f7d6e62ce555c684426aa36df2f6df6.zip u-boot-imx-3695635d2f7d6e62ce555c684426aa36df2f6df6.tar.gz u-boot-imx-3695635d2f7d6e62ce555c684426aa36df2f6df6.tar.bz2 |
ENGR00321137 mx6sx: arm2: Expand malloc pool to 32M
GIS module need about 3M+3M+1.5M+1.5M=9M memory.
When gis module enabled, malloc may failed to allocate memory
for other modules, that may cause system hang.
Expand malloc pool to 32M, system hang issue can not duplicate
on mx6sx arm2 board.
pass one night reset stress test.
Signed-off-by: Sandor Yu <R01008@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mx6sx_arm2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6sx_arm2.h b/include/configs/mx6sx_arm2.h index 71446e2..0e64cec 100644 --- a/include/configs/mx6sx_arm2.h +++ b/include/configs/mx6sx_arm2.h @@ -33,7 +33,7 @@ #define CONFIG_REVISION_TAG /* Size of malloc() pool */ -#define CONFIG_SYS_MALLOC_LEN (16 * SZ_1M) +#define CONFIG_SYS_MALLOC_LEN (32 * SZ_1M) #define CONFIG_BOARD_EARLY_INIT_F #define CONFIG_BOARD_LATE_INIT |