aboutsummaryrefslogtreecommitdiff
path: root/libgloss/arc/hl-setup.c
diff options
context:
space:
mode:
authorVladimir Isaev <vvisaev@gmail.com>2024-05-21 10:56:49 +0100
committerJeff Johnston <jjohnstn@redhat.com>2024-05-22 14:25:44 -0400
commit6d5331054ee3c957a4d3c8df05321f670c962020 (patch)
tree5c60c2803923a50dba14b1b6fa230889a8d839a9 /libgloss/arc/hl-setup.c
parent25d110dcbdb3a1a02b11f8c53504a27efcda9e82 (diff)
downloadnewlib-6d5331054ee3c957a4d3c8df05321f670c962020.zip
newlib-6d5331054ee3c957a4d3c8df05321f670c962020.tar.gz
newlib-6d5331054ee3c957a4d3c8df05321f670c962020.tar.bz2
arc: libgloss: Introduce hostlink interface
There is a special interface built in ARC simulators (such as nSIM) called MetaWare hostlink IO which can be used to implement system calls. This commit adds support for this interface to the ARC port of libgloss. Here is an example of using this interface: $ arc-elf32-gcc -mcpu=hs -specs=hl.specs main.c -o main $ nsimdrv -tcf $NSIM_HOME/etc/tcf/templates/hs48_full.tcf main Hello, World! Signed-off-by: Vladimir Isaev <vvisaev@gmail.com>
Diffstat (limited to 'libgloss/arc/hl-setup.c')
-rw-r--r--libgloss/arc/hl-setup.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/libgloss/arc/hl-setup.c b/libgloss/arc/hl-setup.c
new file mode 100644
index 0000000..a8affbc
--- /dev/null
+++ b/libgloss/arc/hl-setup.c
@@ -0,0 +1,27 @@
+/*
+ * hl-setup.c -- provide _setup_low_level() to initialize timer.
+ *
+ * Copyright (c) 2024 Synopsys Inc.
+ *
+ * The authors hereby grant permission to use, copy, modify, distribute,
+ * and license this software and its documentation for any purpose, provided
+ * that existing copyright notices are retained in all copies and that this
+ * notice is included verbatim in any distributions. No written agreement,
+ * license, or royalty fee is required for any of the authorized uses.
+ * Modifications to this software may be copyrighted by their authors
+ * and need not follow the licensing terms described here, provided that
+ * the new terms are clearly indicated on the first page of each file where
+ * they apply.
+ *
+ */
+
+#include "arc-timer.h"
+
+/* Configure and reset the default timer. */
+int
+_setup_low_level (void)
+{
+ _arc_timer_default_reset ();
+
+ return 0;
+}