aboutsummaryrefslogtreecommitdiff
path: root/board/synopsys/axs10x/axs10x.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/synopsys/axs10x/axs10x.c')
-rw-r--r--board/synopsys/axs10x/axs10x.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/board/synopsys/axs10x/axs10x.c b/board/synopsys/axs10x/axs10x.c
index c95f7af7a7..ffa7c154b5 100644
--- a/board/synopsys/axs10x/axs10x.c
+++ b/board/synopsys/axs10x/axs10x.c
@@ -109,3 +109,11 @@ void smp_kick_all_cpus(void)
writel(cmd, (void __iomem *)AXC003_CREG_CPU_START);
}
#endif
+
+int checkboard(void)
+{
+ printf("Board: ARC Software Development Platform AXS%s\n",
+ is_isa_arcv2() ? "103" : "101");
+
+ return 0;
+};