vsyscall.h 935 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_VDSO_VSYSCALL_H
  3. #define __ASM_VDSO_VSYSCALL_H
  4. #ifndef __ASSEMBLY__
  5. #include <linux/timekeeper_internal.h>
  6. #include <vdso/datapage.h>
  7. #define VDSO_PRECISION_MASK ~(0xFF00ULL<<48)
  8. extern struct vdso_data *vdso_data;
  9. /*
  10. * Update the vDSO data page to keep in sync with kernel timekeeping.
  11. */
  12. static __always_inline
  13. struct vdso_data *__arm64_get_k_vdso_data(void)
  14. {
  15. return vdso_data;
  16. }
  17. #define __arch_get_k_vdso_data __arm64_get_k_vdso_data
  18. static __always_inline
  19. void __arm64_update_vsyscall(struct vdso_data *vdata, struct timekeeper *tk)
  20. {
  21. vdata[CS_HRES_COARSE].mask = VDSO_PRECISION_MASK;
  22. vdata[CS_RAW].mask = VDSO_PRECISION_MASK;
  23. }
  24. #define __arch_update_vsyscall __arm64_update_vsyscall
  25. /* The asm-generic header needs to be included after the definitions above */
  26. #include <asm-generic/vdso/vsyscall.h>
  27. #endif /* !__ASSEMBLY__ */
  28. #endif /* __ASM_VDSO_VSYSCALL_H */