1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Userland implementation of clock_getres() for 64 bits processes in a
4 * s390 kernel for use in the vDSO
6 * Copyright IBM Corp. 2008
7 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
10 #include <asm/asm-offsets.h>
11 #include <asm/unistd.h>
12 #include <asm/dwarf.h>
16 .globl __kernel_clock_getres
17 .type __kernel_clock_getres,@function
18 __kernel_clock_getres:
21 cghi %r2,__CLOCK_REALTIME_COARSE
23 cghi %r2,__CLOCK_MONOTONIC_COARSE
26 cghi %r2,__CLOCK_REALTIME
28 cghi %r2,__CLOCK_MONOTONIC
30 cghi %r2,__CLOCK_THREAD_CPUTIME_ID
32 cghi %r2,-2 /* Per-thread CPUCLOCK with PID=0, VIRT=1 */
35 icm %r0,15,__LC_ECTG_OK(%r5)
38 jz 1f /* res == NULL */
40 xc 0(8,%r3),0(%r3) /* set tp->tv_sec to zero */
41 stg %r0,8(%r3) /* store tp->tv_usec */
44 2: lghi %r1,__NR_clock_getres /* fallback to svc */
48 3: .quad __CLOCK_REALTIME_RES
49 4: .quad __CLOCK_COARSE_RES
50 .size __kernel_clock_getres,.-__kernel_clock_getres