aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c')
-rw-r--r--roms/u-boot/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/roms/u-boot/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c b/roms/u-boot/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c
new file mode 100644
index 00000000..32fbbe2d
--- /dev/null
+++ b/roms/u-boot/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c
@@ -0,0 +1,26 @@
+/*
+ * (C) Copyright 2007
+ * Daniel Hellstrom, daniel@gaisler.com.
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <common.h>
+#include <config.h>
+#include <asm/leon.h>
+
+phys_size_t initdram(int board_type)
+{
+ return 1;
+}
+
+int checkboard(void)
+{
+ puts("Board: GR-XC3S-1500\n");
+ return 0;
+}
+
+int misc_init_r(void)
+{
+ return 0;
+}