vdso_datapage.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * Adapted from arm64 version.
  3. *
  4. * Copyright (C) 2012 ARM Limited
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __ASM_VDSO_DATAPAGE_H
  19. #define __ASM_VDSO_DATAPAGE_H
  20. #ifdef __KERNEL__
  21. #ifndef __ASSEMBLY__
  22. #include <asm/page.h>
  23. /* Try to be cache-friendly on systems that don't implement the
  24. * generic timer: fit the unconditionally updated fields in the first
  25. * 32 bytes.
  26. */
  27. struct vdso_data {
  28. u32 seq_count; /* sequence count - odd during updates */
  29. u16 tk_is_cntvct; /* fall back to syscall if false */
  30. u16 cs_shift; /* clocksource shift */
  31. u32 xtime_coarse_sec; /* coarse time */
  32. u32 xtime_coarse_nsec;
  33. u32 wtm_clock_sec; /* wall to monotonic offset */
  34. u32 wtm_clock_nsec;
  35. u32 xtime_clock_sec; /* CLOCK_REALTIME - seconds */
  36. u32 cs_mult; /* clocksource multiplier */
  37. u64 cs_cycle_last; /* last cycle value */
  38. u64 cs_mask; /* clocksource mask */
  39. u64 xtime_clock_snsec; /* CLOCK_REALTIME sub-ns base */
  40. u32 tz_minuteswest; /* timezone info for gettimeofday(2) */
  41. u32 tz_dsttime;
  42. };
  43. union vdso_data_store {
  44. struct vdso_data data;
  45. u8 page[PAGE_SIZE];
  46. };
  47. #endif /* !__ASSEMBLY__ */
  48. #endif /* __KERNEL__ */
  49. #endif /* __ASM_VDSO_DATAPAGE_H */