2 * Userland implementation of clock_gettime() for 32 bits processes in a
3 * s390 kernel for use in the vDSO
5 * Copyright IBM Corp. 2008
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License (version 2 only)
10 * as published by the Free Software Foundation.
13 #include <asm/asm-offsets.h>
14 #include <asm/unistd.h>
18 .globl __kernel_clock_gettime
19 .type __kernel_clock_gettime,@function
20 __kernel_clock_gettime:
24 0: al %r5,21f-0b(%r5) /* get &_vdso_data */
25 chi %r2,__CLOCK_REALTIME_COARSE
27 chi %r2,__CLOCK_REALTIME
29 chi %r2,__CLOCK_MONOTONIC_COARSE
31 chi %r2,__CLOCK_MONOTONIC
35 1: l %r4,__VDSO_UPD_COUNT+4(%r5) /* load update counter */
36 tml %r4,0x0001 /* pending update ? loop */
38 stcke 0(%r15) /* Store TOD clock */
40 s %r0,__VDSO_XTIME_STAMP(%r5) /* TOD - cycle_last */
41 sl %r1,__VDSO_XTIME_STAMP+4(%r5)
44 2: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */
46 l %r0,__VDSO_TK_MULT(%r5)
50 a %r0,__VDSO_TK_MULT(%r5)
52 al %r0,__VDSO_WTOM_NSEC(%r5)
53 al %r1,__VDSO_WTOM_NSEC+4(%r5)
56 5: l %r2,__VDSO_TK_SHIFT(%r5) /* Timekeeper shift */
57 srdl %r0,0(%r2) /* >> tk->shift */
58 l %r2,__VDSO_WTOM_SEC+4(%r5)
59 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
71 8: st %r2,0(%r3) /* store tp->tv_sec */
72 st %r1,4(%r3) /* store tp->tv_nsec */
77 /* CLOCK_MONOTONIC_COARSE */
78 9: l %r4,__VDSO_UPD_COUNT+4(%r5) /* load update counter */
79 tml %r4,0x0001 /* pending update ? loop */
81 l %r2,__VDSO_WTOM_CRS_SEC+4(%r5)
82 l %r1,__VDSO_WTOM_CRS_NSEC+4(%r5)
83 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
87 /* CLOCK_REALTIME_COARSE */
88 10: l %r4,__VDSO_UPD_COUNT+4(%r5) /* load update counter */
89 tml %r4,0x0001 /* pending update ? loop */
91 l %r2,__VDSO_XTIME_CRS_SEC+4(%r5)
92 l %r1,__VDSO_XTIME_CRS_NSEC+4(%r5)
93 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
98 11: l %r4,__VDSO_UPD_COUNT+4(%r5) /* load update counter */
99 tml %r4,0x0001 /* pending update ? loop */
101 stcke 0(%r15) /* Store TOD clock */
102 lm %r0,%r1,__VDSO_TS_END(%r5) /* TOD steering end time */
103 s %r0,1(%r15) /* no - ts_steering_end */
107 22: ltr %r0,%r0 /* past end of steering? */
109 srdl %r0,15 /* 1 per 2^16 */
110 tm __VDSO_TS_DIR+3(%r5),0x01 /* steering direction? */
112 lcr %r0,%r0 /* negative TOD offset */
116 23: a %r0,1(%r15) /* add TOD timestamp */
121 24: lm %r0,%r1,1(%r15) /* load TOD timestamp */
122 25: s %r0,__VDSO_XTIME_STAMP(%r5) /* TOD - cycle_last */
123 sl %r1,__VDSO_XTIME_STAMP+4(%r5)
126 12: ms %r0,__VDSO_TK_MULT(%r5) /* * tk->mult */
128 l %r0,__VDSO_TK_MULT(%r5)
132 a %r0,__VDSO_TK_MULT(%r5)
134 al %r0,__VDSO_XTIME_NSEC(%r5) /* + tk->xtime_nsec */
135 al %r1,__VDSO_XTIME_NSEC+4(%r5)
138 14: l %r2,__VDSO_TK_SHIFT(%r5) /* Timekeeper shift */
139 srdl %r0,0(%r2) /* >> tk->shift */
140 l %r2,__VDSO_XTIME_SEC+4(%r5)
141 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
153 17: st %r2,0(%r3) /* store tp->tv_sec */
154 st %r1,4(%r3) /* store tp->tv_nsec */
159 /* Fallback to system call */
160 19: lhi %r1,__NR_clock_gettime
166 21: .long _vdso_data - 0b
168 .size __kernel_clock_gettime,.-__kernel_clock_gettime