]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm: Update jadecpu board
authorMatthias Weisser <weisserm@arcor.de>
Wed, 29 Jun 2011 02:08:07 +0000 (02:08 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Mon, 4 Jul 2011 08:55:26 +0000 (10:55 +0200)
Enable dcache and arch memset/memcpy for speed reasons
Remove of config.mk and some environment overwrites
Some generic cleanup

Signed-off-by: Matthias Weisser <weisserm@arcor.de>
board/syteco/jadecpu/config.mk [deleted file]
board/syteco/jadecpu/jadecpu.c
include/configs/jadecpu.h

diff --git a/board/syteco/jadecpu/config.mk b/board/syteco/jadecpu/config.mk
deleted file mode 100644 (file)
index 617603d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_SYS_TEXT_BASE = 0x10000000
index 69476f8fc302ae113f2038cf4a34ba945c60c557..a7b6e70f497648291c8b3c5d18e2221a9acafeff 100644 (file)
@@ -44,6 +44,7 @@ int board_init(void)
        gd->bd->bi_boot_params = PHYS_SDRAM + PHYS_SDRAM_SIZE - 0x10000;
 
        icache_enable();
+       dcache_enable();
 
        return 0;
 }
@@ -125,9 +126,6 @@ int board_late_init(void)
                setenv("preboot", "run gs_slow_boot");
        } else if ((in_word & 0xC0) != 0) {
                setenv("stdout", "vga");
-               setenv("gs_bootcmd", "mw.l 0x40000000 0 1024; usb start;"
-                       "fatls usb 0; fatload usb 0 0x40000000 mcq5resq.bin;"
-                       "bootelf 0x40000000; bootelf 0x10080000");
                setenv("preboot", "run gs_slow_boot");
        } else {
                setenv("stdin", "serial");
@@ -136,7 +134,6 @@ int board_late_init(void)
                if (getenv("gs_devel")) {
                        setenv("preboot", "run gs_slow_boot");
                } else {
-                       setenv("gs_bootcmd", "bootelf 0x10080000");
                        setenv("preboot", "run gs_fast_boot");
                }
        }
index c1193926bde8f22e6bc43d989848faaeeb90ed6f..03757320094910a9310b230ea2c111fd5f0f4cf1 100644 (file)
 #define CONFIG_MB86R0x
 #define CONFIG_MB86R0x_IOCLK   get_bus_freq(0)
 #define CONFIG_SYS_HZ          1000
+#define CONFIG_SYS_TEXT_BASE   0x10000000
 
 #define CONFIG_ARM926EJS       1       /* This is an ARM926EJS Core    */
 #undef CONFIG_USE_IRQ                  /* we don't need IRQ/FIQ stuff  */
 
+#define CONFIG_USE_ARCH_MEMCPY
+#define CONFIG_USE_ARCH_MEMSET
+
 /*
  * Environment settings
  */
 #define CONFIG_EXTRA_ENV_SETTINGS \
        "gs_fast_boot=setenv bootdelay 5\0" \
        "gs_slow_boot=setenv bootdelay 10\0" \
-       "bootcmd=mw.l 0x40000000 0 1024; usb start;" \
+       "bootcmd=dcache off; mw.l 0x40000000 0 1024; usb start;" \
                "fatls usb 0; fatload usb 0 0x40000000 jadecpu-init.bin;" \
                "bootelf 0x40000000\0" \
        ""
 #undef CONFIG_CMD_NFS
 #undef CONFIG_CMD_XIMG
 
-#define CONFIG_CMD_BMP         1
-#define CONFIG_CMD_CAN         1
-#define CONFIG_CMD_DHCP                1
-#define CONFIG_CMD_ELF         1
-#define CONFIG_CMD_FAT         1
-#define CONFIG_CMD_PING                1
-#define CONFIG_CMD_USB         1
+#define CONFIG_CMD_BMP
+#define CONFIG_CMD_CAN
+#define CONFIG_CMD_DHCP
+#define CONFIG_CMD_ELF
+#define CONFIG_CMD_FAT
+#define CONFIG_CMD_PING
+#define CONFIG_CMD_USB
+#define CONFIG_CMD_CACHE
 
 #define CONFIG_SYS_HUSH_PARSER
 #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
 /*
  * Size of malloc() pool
  */
-#define CONFIG_SYS_MALLOC_LEN  (0x400000 - 0x8000)
+#define CONFIG_SYS_MALLOC_LEN  (10 << 20)
+#define CONFIG_SYS_MEM_TOP_HIDE        (4 << 20)
 
 #define CONFIG_STACKSIZE       (32*1024)       /* regular stack */