From 98793badc1c1d3e4bfd735fdecd3d2d731701ab3 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Tue, 1 Feb 2022 19:39:36 -0700 Subject: Syscall to get timer value --- include/cpu.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'include') diff --git a/include/cpu.h b/include/cpu.h index cccc12b..c15c086 100644 --- a/include/cpu.h +++ b/include/cpu.h @@ -82,6 +82,20 @@ static inline void* getirqstack(void) #define sys0(sys_n) asm volatile("svc #" syscall_h_expand_and_quote(sys_n) ::: "r0", "r1", "r2", "r3"); #define sys1(sys_n,arg0) asm volatile("svc #" syscall_h_expand_and_quote(sys_n) ::[r0]"r"(arg0): "r0", "r1", "r2", "r3"); +__attribute__((always_inline)) static inline unsigned long long get_sys_time(void) +{ + union { + struct { + unsigned long lo; + unsigned long hi; + }s; + unsigned long long llv; + }t; + asm volatile("svc #1\nmov %0, r0\nmov %0, r1" : "=r"(t.s.lo), "=r"(t.s.hi)); + return t.llv; +} + #define SYS_SCHED 2 +#define SYS_TIME 1 #endif -- cgit v1.2.1