timex.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* Copyright (C) 1995-2016 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <http://www.gnu.org/licenses/>. */
  14. #ifndef _BITS_TIMEX_H
  15. #define _BITS_TIMEX_H 1
  16. #include <bits/types.h>
  17. /* These definitions from linux/timex.h as of 3.18. */
  18. struct timex
  19. {
  20. unsigned int modes; /* mode selector */
  21. __syscall_slong_t offset; /* time offset (usec) */
  22. __syscall_slong_t freq; /* frequency offset (scaled ppm) */
  23. __syscall_slong_t maxerror; /* maximum error (usec) */
  24. __syscall_slong_t esterror; /* estimated error (usec) */
  25. int status; /* clock command/status */
  26. __syscall_slong_t constant; /* pll time constant */
  27. __syscall_slong_t precision; /* clock precision (usec) (ro) */
  28. __syscall_slong_t tolerance; /* clock frequency tolerance (ppm) (ro) */
  29. struct timeval time; /* (read only, except for ADJ_SETOFFSET) */
  30. __syscall_slong_t tick; /* (modified) usecs between clock ticks */
  31. __syscall_slong_t ppsfreq; /* pps frequency (scaled ppm) (ro) */
  32. __syscall_slong_t jitter; /* pps jitter (us) (ro) */
  33. int shift; /* interval duration (s) (shift) (ro) */
  34. __syscall_slong_t stabil; /* pps stability (scaled ppm) (ro) */
  35. __syscall_slong_t jitcnt; /* jitter limit exceeded (ro) */
  36. __syscall_slong_t calcnt; /* calibration intervals (ro) */
  37. __syscall_slong_t errcnt; /* calibration errors (ro) */
  38. __syscall_slong_t stbcnt; /* stability limit exceeded (ro) */
  39. int tai; /* TAI offset (ro) */
  40. /* ??? */
  41. int :32; int :32; int :32; int :32;
  42. int :32; int :32; int :32; int :32;
  43. int :32; int :32; int :32;
  44. };
  45. /* Mode codes (timex.mode) */
  46. #define ADJ_OFFSET 0x0001 /* time offset */
  47. #define ADJ_FREQUENCY 0x0002 /* frequency offset */
  48. #define ADJ_MAXERROR 0x0004 /* maximum time error */
  49. #define ADJ_ESTERROR 0x0008 /* estimated time error */
  50. #define ADJ_STATUS 0x0010 /* clock status */
  51. #define ADJ_TIMECONST 0x0020 /* pll time constant */
  52. #define ADJ_TAI 0x0080 /* set TAI offset */
  53. #define ADJ_SETOFFSET 0x0100 /* add 'time' to current time */
  54. #define ADJ_MICRO 0x1000 /* select microsecond resolution */
  55. #define ADJ_NANO 0x2000 /* select nanosecond resolution */
  56. #define ADJ_TICK 0x4000 /* tick value */
  57. #define ADJ_OFFSET_SINGLESHOT 0x8001 /* old-fashioned adjtime */
  58. #define ADJ_OFFSET_SS_READ 0xa001 /* read-only adjtime */
  59. /* xntp 3.4 compatibility names */
  60. #define MOD_OFFSET ADJ_OFFSET
  61. #define MOD_FREQUENCY ADJ_FREQUENCY
  62. #define MOD_MAXERROR ADJ_MAXERROR
  63. #define MOD_ESTERROR ADJ_ESTERROR
  64. #define MOD_STATUS ADJ_STATUS
  65. #define MOD_TIMECONST ADJ_TIMECONST
  66. #define MOD_CLKB ADJ_TICK
  67. #define MOD_CLKA ADJ_OFFSET_SINGLESHOT /* 0x8000 in original */
  68. #define MOD_TAI ADJ_TAI
  69. #define MOD_MICRO ADJ_MICRO
  70. #define MOD_NANO ADJ_NANO
  71. /* Status codes (timex.status) */
  72. #define STA_PLL 0x0001 /* enable PLL updates (rw) */
  73. #define STA_PPSFREQ 0x0002 /* enable PPS freq discipline (rw) */
  74. #define STA_PPSTIME 0x0004 /* enable PPS time discipline (rw) */
  75. #define STA_FLL 0x0008 /* select frequency-lock mode (rw) */
  76. #define STA_INS 0x0010 /* insert leap (rw) */
  77. #define STA_DEL 0x0020 /* delete leap (rw) */
  78. #define STA_UNSYNC 0x0040 /* clock unsynchronized (rw) */
  79. #define STA_FREQHOLD 0x0080 /* hold frequency (rw) */
  80. #define STA_PPSSIGNAL 0x0100 /* PPS signal present (ro) */
  81. #define STA_PPSJITTER 0x0200 /* PPS signal jitter exceeded (ro) */
  82. #define STA_PPSWANDER 0x0400 /* PPS signal wander exceeded (ro) */
  83. #define STA_PPSERROR 0x0800 /* PPS signal calibration error (ro) */
  84. #define STA_CLOCKERR 0x1000 /* clock hardware fault (ro) */
  85. #define STA_NANO 0x2000 /* resolution (0 = us, 1 = ns) (ro) */
  86. #define STA_MODE 0x4000 /* mode (0 = PLL, 1 = FLL) (ro) */
  87. #define STA_CLK 0x8000 /* clock source (0 = A, 1 = B) (ro) */
  88. /* Read-only bits */
  89. #define STA_RONLY (STA_PPSSIGNAL | STA_PPSJITTER | STA_PPSWANDER | \
  90. STA_PPSERROR | STA_CLOCKERR | STA_NANO | STA_MODE | STA_CLK)
  91. #endif /* bits/timex.h */