summaryrefslogtreecommitdiffstats
path: root/board/sbc8560
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-10-10 22:44:24 +0000
committerwdenk <wdenk>2004-10-10 22:44:24 +0000
commitc15f3120eca5359ed7ec1a359085312bbafca169 (patch)
tree46ca2ff3275513348b742298ec715677112f1737 /board/sbc8560
parent656658dd1577b62d5192ba2db4d9b8a3be1dbee3 (diff)
downloadblackbird-obmc-uboot-c15f3120eca5359ed7ec1a359085312bbafca169.tar.gz
blackbird-obmc-uboot-c15f3120eca5359ed7ec1a359085312bbafca169.zip
* Patch by Michael Bendzick, 30 Aug 2004:
- Improve platform.S code for omap1510inn that detects whether code is running from SDRAM or not. Patch allows SDRAM to be configured if code is running out of SRAM at 0x20000000. * Patch by Frederick Klatt, 30 Aug 2004: Add support for the Wind River SBC8540/SBC8560 boards
Diffstat (limited to 'board/sbc8560')
-rw-r--r--board/sbc8560/config.mk1
-rw-r--r--board/sbc8560/sbc8560.c4
2 files changed, 4 insertions, 1 deletions
diff --git a/board/sbc8560/config.mk b/board/sbc8560/config.mk
index c025a0eb9d..3c8cfbe6f5 100644
--- a/board/sbc8560/config.mk
+++ b/board/sbc8560/config.mk
@@ -22,7 +22,6 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
# MA 02111-1307 USA
#
-
#
# based on mpc8560ads board
# default CCARBAR is at 0xff700000
diff --git a/board/sbc8560/sbc8560.c b/board/sbc8560/sbc8560.c
index 1aed61b6dd..7f7272da1f 100644
--- a/board/sbc8560/sbc8560.c
+++ b/board/sbc8560/sbc8560.c
@@ -235,7 +235,11 @@ int checkboard (void)
get_sys_info (&sysinfo);
+#ifdef CONFIG_SBC8560
printf ("Board: Wind River SBC8560 Board\n");
+#else
+ printf ("Board: Wind River SBC8540 Board\n");
+#endif
printf ("\tCPU: %lu MHz\n", sysinfo.freqProcessor / 1000000);
printf ("\tCCB: %lu MHz\n", sysinfo.freqSystemBus / 1000000);
printf ("\tDDR: %lu MHz\n", sysinfo.freqSystemBus / 2000000);
OpenPOWER on IntegriCloud