1 #ifndef _ASM_X86_VGTOD_H
2 #define _ASM_X86_VGTOD_H
4 #include <linux/compiler.h>
5 #include <linux/clocksource.h>
8 typedef u64 gtod_long_t
;
10 typedef unsigned long gtod_long_t
;
13 * vsyscall_gtod_data will be accessed by 32 and 64 bit code at the same time
14 * so be carefull by modifying this structure.
16 struct vsyscall_gtod_data
{
25 /* open coded 'struct timespec' */
27 gtod_long_t wall_time_sec
;
28 gtod_long_t monotonic_time_sec
;
29 u64 monotonic_time_snsec
;
30 gtod_long_t wall_time_coarse_sec
;
31 gtod_long_t wall_time_coarse_nsec
;
32 gtod_long_t monotonic_time_coarse_sec
;
33 gtod_long_t monotonic_time_coarse_nsec
;
38 extern struct vsyscall_gtod_data vsyscall_gtod_data
;
40 extern int vclocks_used
;
41 static inline bool vclock_was_used(int vclock
)
43 return READ_ONCE(vclocks_used
) & (1 << vclock
);
46 static inline unsigned gtod_read_begin(const struct vsyscall_gtod_data
*s
)
51 ret
= ACCESS_ONCE(s
->seq
);
52 if (unlikely(ret
& 1)) {
60 static inline int gtod_read_retry(const struct vsyscall_gtod_data
*s
,
64 return unlikely(s
->seq
!= start
);
67 static inline void gtod_write_begin(struct vsyscall_gtod_data
*s
)
73 static inline void gtod_write_end(struct vsyscall_gtod_data
*s
)
81 #define VGETCPU_CPU_MASK 0xfff
83 static inline unsigned int __getcpu(void)
88 * Load per CPU data from GDT. LSL is faster than RDTSCP and
89 * works on all CPUs. This is volatile so that it orders
90 * correctly wrt barrier() and to keep gcc from cleverly
91 * hoisting it out of the calling function.
93 * If RDPID is available, use it.
95 alternative_io ("lsl %[p],%[seg]",
96 ".byte 0xf3,0x0f,0xc7,0xf8", /* RDPID %eax/rax */
98 [p
] "=a" (p
), [seg
] "r" (__PER_CPU_SEG
));
103 #endif /* CONFIG_X86_64 */
105 #endif /* _ASM_X86_VGTOD_H */