summaryrefslogtreecommitdiff
path: root/board/scalys/simc-t10xx/simc-t10xx.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/scalys/simc-t10xx/simc-t10xx.c')
-rw-r--r--board/scalys/simc-t10xx/simc-t10xx.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/board/scalys/simc-t10xx/simc-t10xx.c b/board/scalys/simc-t10xx/simc-t10xx.c
index 46c5677..2f9b8d3 100644
--- a/board/scalys/simc-t10xx/simc-t10xx.c
+++ b/board/scalys/simc-t10xx/simc-t10xx.c
@@ -1,10 +1,11 @@
/*
- * Copyright 2016 Scalys B.V.
+ * Copyright 2017 Scalys B.V.
* opensource@scalys.com
*
* SPDX-License-Identifier: GPL-2.0+
*/
+
#include <common.h>
#include <command.h>
#include <netdev.h>
@@ -31,7 +32,11 @@ DECLARE_GLOBAL_DATA_PTR;
int checkboard(void)
{
+#ifdef CONFIG_TARGET_QT1040_1GB
+ printf("Board: QT1040-1GB\n" );
+#else
printf("Board: simc-t10xx\n" );
+#endif
return 0;
}
@@ -110,8 +115,8 @@ int ft_board_setup(void *blob, bd_t *bd)
fdt_fixup_liodn(blob);
#ifdef CONFIG_HAS_FSL_DR_USB
- debug( "fdt_fixup_dr_usb\n" );
- fdt_fixup_dr_usb(blob, bd);
+ debug( "fsl_fdt_fixup_dr_usb\n" );
+ fsl_fdt_fixup_dr_usb(blob, bd);
#endif
#ifdef CONFIG_SYS_DPAA_FMAN
@@ -141,3 +146,8 @@ void board_detail(void)
do_bcdinfo();
}
#endif
+
+void board_reset(void)
+{
+ printf("U-boot reset command not implemented.\n");
+}