arm64: zynqmp: Reduce malloc memory for mini QSPI configuration
authorAshok Reddy Soma <ashok.reddy.soma@xilinx.com>
Mon, 6 Apr 2020 13:58:32 +0000 (07:58 -0600)
committerMichal Simek <michal.simek@xilinx.com>
Thu, 20 Aug 2020 07:49:20 +0000 (09:49 +0200)
Mini U-boot runs on lower foot print of 256KB OCM. Hence 8K memory
for malloc may not be required. Reduce it by 1.5K.

Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
include/configs/xilinx_zynqmp_mini_qspi.h

index 129af6e..205ddb4 100644 (file)
@@ -13,6 +13,6 @@
 #include <configs/xilinx_zynqmp_mini.h>
 
 #define CONFIG_SYS_INIT_SP_ADDR        (CONFIG_SYS_TEXT_BASE + 0x20000)
-#define CONFIG_SYS_MALLOC_LEN  0x2000
+#define CONFIG_SYS_MALLOC_LEN  0x1a00
 
 #endif /* __CONFIG_ZYNQMP_MINI_QSPI_H */