summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartlomiej Sieka <tur@semihalf.com>2007-05-27 16:55:23 +0200
committerBartlomiej Sieka <tur@semihalf.com>2007-05-27 16:55:23 +0200
commitc75e639630cc132dc19cd1ecda5922c0db0bfbba (patch)
tree89696385a45b2ed9f908f51ecf03b94b683a2098
parentc99512d6bd3973f01ca2fc4896d829b46e68f150 (diff)
downloadblackbird-obmc-uboot-c75e639630cc132dc19cd1ecda5922c0db0bfbba.tar.gz
blackbird-obmc-uboot-c75e639630cc132dc19cd1ecda5922c0db0bfbba.zip
Motion-PRO: Add displaying of CPLD revision information during boot.
Signed-off-by: Jan Wrobel <wrr@semihalf.com> Acked-by: Bartlomiej Sieka <tur@semihalf.com>
-rw-r--r--board/motionpro/motionpro.c3
-rw-r--r--include/configs/motionpro.h6
2 files changed, 8 insertions, 1 deletions
diff --git a/board/motionpro/motionpro.c b/board/motionpro/motionpro.c
index 98357c7f42..1729ae7416 100644
--- a/board/motionpro/motionpro.c
+++ b/board/motionpro/motionpro.c
@@ -173,7 +173,8 @@ long int initdram (int board_type)
int checkboard (void)
{
- puts("Board: Promess Motion-PRO board\n");
+ uchar rev = *(vu_char *)CPLD_REV_REGISTER;
+ printf("Board: Promess Motion-PRO board (CPLD rev. 0x%02x)\n", rev);
return 0;
}
diff --git a/include/configs/motionpro.h b/include/configs/motionpro.h
index 358c380d44..8ffcc4c9c1 100644
--- a/include/configs/motionpro.h
+++ b/include/configs/motionpro.h
@@ -357,6 +357,12 @@ extern void __led_set(led_id_t id, int state);
/*
+ * Motion-PRO's CPLD revision control register
+ */
+#define CPLD_REV_REGISTER (CFG_CS2_START + 0x06)
+
+
+/*
* Miscellaneous configurable options
*/
#define CFG_LONGHELP /* undef to save memory */
OpenPOWER on IntegriCloud