vdso_datapage.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #ifndef _VDSO_DATAPAGE_H
  2. #define _VDSO_DATAPAGE_H
  3. #ifdef __KERNEL__
  4. /*
  5. * Copyright (C) 2002 Peter Bergner <bergner@vnet.ibm.com>, IBM
  6. * Copyright (C) 2005 Benjamin Herrenschmidy <benh@kernel.crashing.org>,
  7. * IBM Corp.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. */
  14. /*
  15. * Note about this structure:
  16. *
  17. * This structure was historically called systemcfg and exposed to
  18. * userland via /proc/ppc64/systemcfg. Unfortunately, this became an
  19. * ABI issue as some proprietary software started relying on being able
  20. * to mmap() it, thus we have to keep the base layout at least for a
  21. * few kernel versions.
  22. *
  23. * However, since ppc32 doesn't suffer from this backward handicap,
  24. * a simpler version of the data structure is used there with only the
  25. * fields actually used by the vDSO.
  26. *
  27. */
  28. /*
  29. * If the major version changes we are incompatible.
  30. * Minor version changes are a hint.
  31. */
  32. #define SYSTEMCFG_MAJOR 1
  33. #define SYSTEMCFG_MINOR 1
  34. #ifndef __ASSEMBLY__
  35. #include <linux/unistd.h>
  36. #include <linux/time.h>
  37. #define SYSCALL_MAP_SIZE ((NR_syscalls + 31) / 32)
  38. /*
  39. * So here is the ppc64 backward compatible version
  40. */
  41. #ifdef CONFIG_PPC64
  42. struct vdso_data {
  43. __u8 eye_catcher[16]; /* Eyecatcher: SYSTEMCFG:PPC64 0x00 */
  44. struct { /* Systemcfg version numbers */
  45. __u32 major; /* Major number 0x10 */
  46. __u32 minor; /* Minor number 0x14 */
  47. } version;
  48. /* Note about the platform flags: it now only contains the lpar
  49. * bit. The actual platform number is dead and buried
  50. */
  51. __u32 platform; /* Platform flags 0x18 */
  52. __u32 processor; /* Processor type 0x1C */
  53. __u64 processorCount; /* # of physical processors 0x20 */
  54. __u64 physicalMemorySize; /* Size of real memory(B) 0x28 */
  55. __u64 tb_orig_stamp; /* Timebase at boot 0x30 */
  56. __u64 tb_ticks_per_sec; /* Timebase tics / sec 0x38 */
  57. __u64 tb_to_xs; /* Inverse of TB to 2^20 0x40 */
  58. __u64 stamp_xsec; /* 0x48 */
  59. __u64 tb_update_count; /* Timebase atomicity ctr 0x50 */
  60. __u32 tz_minuteswest; /* Minutes west of Greenwich 0x58 */
  61. __u32 tz_dsttime; /* Type of dst correction 0x5C */
  62. __u32 dcache_size; /* L1 d-cache size 0x60 */
  63. __u32 dcache_line_size; /* L1 d-cache line size 0x64 */
  64. __u32 icache_size; /* L1 i-cache size 0x68 */
  65. __u32 icache_line_size; /* L1 i-cache line size 0x6C */
  66. /* those additional ones don't have to be located anywhere
  67. * special as they were not part of the original systemcfg
  68. */
  69. __u32 dcache_block_size; /* L1 d-cache block size */
  70. __u32 icache_block_size; /* L1 i-cache block size */
  71. __u32 dcache_log_block_size; /* L1 d-cache log block size */
  72. __u32 icache_log_block_size; /* L1 i-cache log block size */
  73. __s32 wtom_clock_sec; /* Wall to monotonic clock */
  74. __s32 wtom_clock_nsec;
  75. struct timespec stamp_xtime; /* xtime as at tb_orig_stamp */
  76. __u32 stamp_sec_fraction; /* fractional seconds of stamp_xtime */
  77. __u32 syscall_map_64[SYSCALL_MAP_SIZE]; /* map of syscalls */
  78. __u32 syscall_map_32[SYSCALL_MAP_SIZE]; /* map of syscalls */
  79. };
  80. #else /* CONFIG_PPC64 */
  81. /*
  82. * And here is the simpler 32 bits version
  83. */
  84. struct vdso_data {
  85. __u64 tb_orig_stamp; /* Timebase at boot 0x30 */
  86. __u64 tb_ticks_per_sec; /* Timebase tics / sec 0x38 */
  87. __u64 tb_to_xs; /* Inverse of TB to 2^20 0x40 */
  88. __u64 stamp_xsec; /* 0x48 */
  89. __u32 tb_update_count; /* Timebase atomicity ctr 0x50 */
  90. __u32 tz_minuteswest; /* Minutes west of Greenwich 0x58 */
  91. __u32 tz_dsttime; /* Type of dst correction 0x5C */
  92. __s32 wtom_clock_sec; /* Wall to monotonic clock */
  93. __s32 wtom_clock_nsec;
  94. struct timespec stamp_xtime; /* xtime as at tb_orig_stamp */
  95. __u32 stamp_sec_fraction; /* fractional seconds of stamp_xtime */
  96. __u32 syscall_map_32[SYSCALL_MAP_SIZE]; /* map of syscalls */
  97. __u32 dcache_block_size; /* L1 d-cache block size */
  98. __u32 icache_block_size; /* L1 i-cache block size */
  99. __u32 dcache_log_block_size; /* L1 d-cache log block size */
  100. __u32 icache_log_block_size; /* L1 i-cache log block size */
  101. };
  102. #endif /* CONFIG_PPC64 */
  103. extern struct vdso_data *vdso_data;
  104. #endif /* __ASSEMBLY__ */
  105. #endif /* __KERNEL__ */
  106. #endif /* _SYSTEMCFG_H */