aboutsummaryrefslogtreecommitdiff
path: root/platform/sifive-vc707-devkit.c
diff options
context:
space:
mode:
Diffstat (limited to 'platform/sifive-vc707-devkit.c')
-rw-r--r--platform/sifive-vc707-devkit.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/platform/sifive-vc707-devkit.c b/platform/sifive-vc707-devkit.c
new file mode 100644
index 0000000..cc0e0f1
--- /dev/null
+++ b/platform/sifive-vc707-devkit.c
@@ -0,0 +1,41 @@
+#include "platform_interface.h"
+
+static const char logo[] =
+"\r\n"
+" SIFIVE, INC.\r\n"
+"\r\n"
+" 5555555555555555555555555\r\n"
+" 5555 5555\r\n"
+" 5555 5555\r\n"
+" 5555 5555\r\n"
+" 5555 5555555555555555555555\r\n"
+" 5555 555555555555555555555555\r\n"
+" 5555 5555\r\n"
+" 5555 5555\r\n"
+" 5555 5555\r\n"
+"5555555555555555555555555555 55555\r\n"
+" 55555 555555555 55555\r\n"
+" 55555 55555 55555\r\n"
+" 55555 5 55555\r\n"
+" 55555 55555\r\n"
+" 55555 55555\r\n"
+" 55555 55555\r\n"
+" 55555 55555\r\n"
+" 55555 55555\r\n"
+" 555555555\r\n"
+" 55555\r\n"
+" 5\r\n"
+"\r\n"
+" SiFive RISC-V Coreplex\r\n";
+
+long platform__disabled_hart_mask = 0x1;
+
+const char *platform__get_logo(void)
+{
+ return logo;
+}
+
+int platform__use_htif(void)
+{
+ return 0;
+}