1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/**
* @file timers.c
* Timer syscall implementations.
*/
#include <kmi/timer.h>
#include <kmi/uapi.h>
#include <arch/timer.h>
/**
* Convert arch-specific register values \p ticks and \p mult to \ref ticks_t.
*
* If we're on a 32bit system, one register can't contain a tick value,
* so we use two registers and combine them into one value and let the compiler
* handle the rest.
*
* @param ticks Register width tick value.
* @param mult Register width repeat value.
* @return Corresponding \ref ticks_t value.
*/
static ticks_t scaled_ticks(sys_arg_t ticks, sys_arg_t mult)
{
#if defined(_LP64)
UNUSED(mult);
return ticks;
#else
return (ticks_t)ticks * (ticks_t)mult;
#endif
}
/**
* Timebase syscall handler.
*
* @param t Current tcb.
* @return \ref OK and timebase in second argument if 64bit, otherwise high 32
* bits of timebase in second argument and low 32 bits in third argument.
*/
SYSCALL_DEFINE0(timebase)(struct tcb *t)
{
ticks_t tm = secs_to_ticks(1);
#if defined(_LP64)
return_args(t, SYS_RET2(OK, tm));
#else
return_args(t, SYS_RET3(OK, tm >> 32, tm));
#endif
}
/**
* Current ticks syscall handler.
*
* Note that most platforms allow user level read access to hardware timers, and
* should be preferred over this syscall on such platforms. Still, for
* completeness sake.
*
* @param t Current tcb.
* @return \ref OK and the current ticks when on 64bit systems, otherwise high
* 32 bits of ticks in second argument and low 32 bits in third.
*/
SYSCALL_DEFINE0(ticks)(struct tcb *t)
{
ticks_t tm = current_ticks();
#if defined(_LP64)
return_args(t, SYS_RET2(OK, tm));
#else
return_args(t, SYS_RET3(OK, tm >> 32, tm));
#endif
}
/**
* Relative timer request syscall handler.
*
* \note On 64bit systems, \p mult is ignored as \p ticks register is large
* enough to contain essentially any timepoint we want. A couple thousand years
* when the clock runs at 5GHz, if I'm not completely mistaken.
*
* @param t Current tcb.
* @param ticks Number of ticks from now.
* @param mult Multiply \c ticks by this value.
* @return \ref OK and \c cid of created timer.
*/
SYSCALL_DEFINE2(req_rel_timer)(struct tcb *t, sys_arg_t ticks, sys_arg_t mult)
{
return_args(t,
SYS_RET2(OK,
new_rel_timer(t->tid, scaled_ticks(ticks, mult))));
}
/**
* Absolute timer request syscall handler.
*
* @param t Current tcb.
* @param ticks Absolute timepoint relative to some start point defined at boot.
* @param mult Multiply \c ticks by this value.
* @return \ref OK and \c cid of created timer.
* \see req_rel_timer().
*/
SYSCALL_DEFINE2(req_abs_timer)(struct tcb *t, sys_arg_t ticks, sys_arg_t mult)
{
return_args(t,
SYS_RET2(OK,
new_abs_timer(t->tid, scaled_ticks(ticks, mult))));
}
/**
* Free timer request syscall handler.
*
* @param t Current tcb.
* @param cid \c cid of timer to free.
* @return \ref ERR_NF and \c 0if no timer could be found with \c cid, \ref OK
* and 0 otherwise.
*/
SYSCALL_DEFINE1(free_timer)(struct tcb *t, sys_arg_t cid)
{
struct timer *timer = find_timer(cid);
if (!timer)
return_args(t, SYS_RET1(ERR_NF));
remove_timer(timer);
return_args(t, SYS_RET1(OK));
}
|