summaryrefslogtreecommitdiffstats
path: root/board/syteco
diff options
context:
space:
mode:
authorMatthias Weisser <weisserm@arcor.de>2011-06-29 02:08:07 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2011-07-04 10:55:26 +0200
commita91916ff8e938a7299512e5e510f2a73ad1b676f (patch)
tree5d54aa215d392d7a17cc2bf5c578e07a6483185e /board/syteco
parent0aeb01d512772a88e0cbe2fa8654daf1b0136189 (diff)
downloadblackbird-obmc-uboot-a91916ff8e938a7299512e5e510f2a73ad1b676f.tar.gz
blackbird-obmc-uboot-a91916ff8e938a7299512e5e510f2a73ad1b676f.zip
arm: Update jadecpu board
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>
Diffstat (limited to 'board/syteco')
-rw-r--r--board/syteco/jadecpu/config.mk1
-rw-r--r--board/syteco/jadecpu/jadecpu.c5
2 files changed, 1 insertions, 5 deletions
diff --git a/board/syteco/jadecpu/config.mk b/board/syteco/jadecpu/config.mk
deleted file mode 100644
index 617603d52c..0000000000
--- a/board/syteco/jadecpu/config.mk
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_SYS_TEXT_BASE = 0x10000000
diff --git a/board/syteco/jadecpu/jadecpu.c b/board/syteco/jadecpu/jadecpu.c
index 69476f8fc3..a7b6e70f49 100644
--- a/board/syteco/jadecpu/jadecpu.c
+++ b/board/syteco/jadecpu/jadecpu.c
@@ -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");
}
}
OpenPOWER on IntegriCloud