summaryrefslogtreecommitdiffhomepage
path: root/vdso/syscalls.h
diff options
context:
space:
mode:
authorHaibo Xu <haibo.xu@arm.com>2019-04-18 16:20:45 -0700
committerShentubot <shentubot@google.com>2019-04-18 16:22:08 -0700
commitf4d434c18002c96511decf8ff1ebdbede46ca6a1 (patch)
treecc781d877ef0ea64ce33c46d6a30b76eefa4753a /vdso/syscalls.h
parentc931c8e0829914718a729e20d7db0c2bf4e73f0b (diff)
Enable vDSO support on arm64.
Signed-off-by: Haibo Xu <haibo.xu@arm.com> Change-Id: I20103cd6d193431ab7e8120005da1f567b9bc2eb PiperOrigin-RevId: 244280119
Diffstat (limited to 'vdso/syscalls.h')
-rw-r--r--vdso/syscalls.h49
1 files changed, 47 insertions, 2 deletions
diff --git a/vdso/syscalls.h b/vdso/syscalls.h
index 0be8a7f9b..90fb424ce 100644
--- a/vdso/syscalls.h
+++ b/vdso/syscalls.h
@@ -26,10 +26,12 @@
#include <stddef.h>
#include <sys/types.h>
-struct getcpu_cache;
-
namespace vdso {
+#if __x86_64__
+
+struct getcpu_cache;
+
static inline int sys_clock_gettime(clockid_t clock, struct timespec* ts) {
int num = __NR_clock_gettime;
asm volatile("syscall\n"
@@ -49,6 +51,49 @@ static inline int sys_getcpu(unsigned* cpu, unsigned* node,
return num;
}
+#elif __aarch64__
+
+static inline int sys_rt_sigreturn(void) {
+ int num = __NR_rt_sigreturn;
+
+ asm volatile(
+ "mov x8, %0\n"
+ "svc #0 \n"
+ : "+r"(num)
+ :
+ :);
+ return num;
+}
+
+static inline int sys_clock_gettime(clockid_t _clkid, struct timespec *_ts) {
+ register struct timespec *ts asm("x1") = _ts;
+ register clockid_t clkid asm("x0") = _clkid;
+ register long ret asm("x0");
+ register long nr asm("x8") = __NR_clock_gettime;
+
+ asm volatile("svc #0\n"
+ : "=r"(ret)
+ : "r"(clkid), "r"(ts), "r"(nr)
+ : "memory");
+ return ret;
+}
+
+static inline int sys_clock_getres(clockid_t _clkid, struct timespec *_ts) {
+ register struct timespec *ts asm("x1") = _ts;
+ register clockid_t clkid asm("x0") = _clkid;
+ register long ret asm("x0");
+ register long nr asm("x8") = __NR_clock_getres;
+
+ asm volatile("svc #0\n"
+ : "=r"(ret)
+ : "r"(clkid), "r"(ts), "r"(nr)
+ : "memory");
+ return ret;
+}
+
+#else
+#error "unsupported architecture"
+#endif
} // namespace vdso
#endif // VDSO_SYSCALLS_H_