From: Wolfgang Denk <wd@pollux.(none)>
Date: Wed, 30 Nov 2005 23:55:19 +0000 (+0100)
Subject: Increase malloc arena on TQM5200 board to 256 kB.
X-Git-Tag: v2025.01-rc5-pxa1908~23135
X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=d00de23b15531b9f60bc99567f5c44a65a41487b;p=u-boot.git

Increase malloc arena on TQM5200 board to 256 kB.
With 64 kb uniform flash sector size the old value of 128 kB was
too small.
---

diff --git a/CHANGELOG b/CHANGELOG
index 826f8633a0..bb510b10a5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,9 +2,13 @@
 Changes for U-Boot 1.1.4:
 ======================================================================
 
-* Fix miiphy global data initialization (problem on 4xx boards when no 
-  ethaddr is assigned). Initialization moved from miiphy_register() to
-  eth_initialize().
+* Increase malloc arena on TQM5200 board to 256 kB.
+  With 64 kb uniform flash sector size the old value of 128 kB was
+  too small.
+  
+* Fix miiphy global data initialization (problem on 4xx boards when
+  no ethaddr is assigned). Initialization moved from
+  miiphy_register() to eth_initialize().
 
   Based on initial patch for 4xx platform by Matthias Fuchs.
 
diff --git a/include/configs/TQM5200.h b/include/configs/TQM5200.h
index e23fd77861..5ad1939481 100644
--- a/include/configs/TQM5200.h
+++ b/include/configs/TQM5200.h
@@ -369,7 +369,7 @@
 #endif
 
 #define CFG_MONITOR_LEN		(384 << 10)	/* Reserve 384 kB for Monitor	*/
-#define CFG_MALLOC_LEN		(128 << 10)	/* Reserve 128 kB for malloc()	*/
+#define CFG_MALLOC_LEN		(256 << 10)	/* Reserve 256 kB for malloc()	*/
 #define CFG_BOOTMAPSZ		(8 << 20)	/* Initial Memory map for Linux */
 
 /*