diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-12 09:17:48 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-12 09:17:48 -0400 |
| commit | 03d3602a833715f83ea53b9feb078b9c4c5f6c1a (patch) | |
| tree | 7b63ec6753dd65e61392017e1aba2ee1e6b4bcd1 /include/linux | |
| parent | 0588f1f934791b79d0a1e9b327be9b6eb361d2b8 (diff) | |
| parent | 5b3900cd409466c0070b234d941650685ad0c791 (diff) | |
Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull timer core update from Thomas Gleixner:
- Bug fixes (one for a longstanding dead loop issue)
- Rework of time related vsyscalls
- Alarm timer updates
- Jiffies updates to remove compile time dependencies
* 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
timekeeping: Cast raw_interval to u64 to avoid shift overflow
timers: Fix endless looping between cascade() and internal_add_timer()
time/jiffies: bring back unconditional LATCH definition
time: Convert x86_64 to using new update_vsyscall
time: Only do nanosecond rounding on GENERIC_TIME_VSYSCALL_OLD systems
time: Introduce new GENERIC_TIME_VSYSCALL
time: Convert CONFIG_GENERIC_TIME_VSYSCALL to CONFIG_GENERIC_TIME_VSYSCALL_OLD
time: Move update_vsyscall definitions to timekeeper_internal.h
time: Move timekeeper structure to timekeeper_internal.h for vsyscall changes
jiffies: Remove compile time assumptions about CLOCK_TICK_RATE
jiffies: Kill unused TICK_USEC_TO_NSEC
alarmtimer: Rename alarmtimer_remove to alarmtimer_dequeue
alarmtimer: Remove unused helpers & defines
alarmtimer: Use hrtimer per-alarm instead of per-base
alarmtimer: Implement minimum alarm interval for allowing suspend
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/alarmtimer.h | 31 | ||||
| -rw-r--r-- | include/linux/clocksource.h | 16 | ||||
| -rw-r--r-- | include/linux/jiffies.h | 20 | ||||
| -rw-r--r-- | include/linux/timekeeper_internal.h | 108 |
4 files changed, 113 insertions, 62 deletions
diff --git a/include/linux/alarmtimer.h b/include/linux/alarmtimer.h index 96c5c249b086..9069694e70eb 100644 --- a/include/linux/alarmtimer.h +++ b/include/linux/alarmtimer.h | |||
| @@ -21,7 +21,6 @@ enum alarmtimer_restart { | |||
| 21 | 21 | ||
| 22 | #define ALARMTIMER_STATE_INACTIVE 0x00 | 22 | #define ALARMTIMER_STATE_INACTIVE 0x00 |
| 23 | #define ALARMTIMER_STATE_ENQUEUED 0x01 | 23 | #define ALARMTIMER_STATE_ENQUEUED 0x01 |
| 24 | #define ALARMTIMER_STATE_CALLBACK 0x02 | ||
| 25 | 24 | ||
| 26 | /** | 25 | /** |
| 27 | * struct alarm - Alarm timer structure | 26 | * struct alarm - Alarm timer structure |
| @@ -35,6 +34,7 @@ enum alarmtimer_restart { | |||
| 35 | */ | 34 | */ |
| 36 | struct alarm { | 35 | struct alarm { |
| 37 | struct timerqueue_node node; | 36 | struct timerqueue_node node; |
| 37 | struct hrtimer timer; | ||
| 38 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t now); | 38 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t now); |
| 39 | enum alarmtimer_type type; | 39 | enum alarmtimer_type type; |
| 40 | int state; | 40 | int state; |
| @@ -43,39 +43,12 @@ struct alarm { | |||
| 43 | 43 | ||
| 44 | void alarm_init(struct alarm *alarm, enum alarmtimer_type type, | 44 | void alarm_init(struct alarm *alarm, enum alarmtimer_type type, |
| 45 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t)); | 45 | enum alarmtimer_restart (*function)(struct alarm *, ktime_t)); |
| 46 | void alarm_start(struct alarm *alarm, ktime_t start); | 46 | int alarm_start(struct alarm *alarm, ktime_t start); |
| 47 | int alarm_try_to_cancel(struct alarm *alarm); | 47 | int alarm_try_to_cancel(struct alarm *alarm); |
| 48 | int alarm_cancel(struct alarm *alarm); | 48 | int alarm_cancel(struct alarm *alarm); |
| 49 | 49 | ||
| 50 | u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval); | 50 | u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval); |
| 51 | 51 | ||
| 52 | /* | ||
| 53 | * A alarmtimer is active, when it is enqueued into timerqueue or the | ||
| 54 | * callback function is running. | ||
| 55 | */ | ||
| 56 | static inline int alarmtimer_active(const struct alarm *timer) | ||
| 57 | { | ||
| 58 | return timer->state != ALARMTIMER_STATE_INACTIVE; | ||
| 59 | } | ||
| 60 | |||
| 61 | /* | ||
| 62 | * Helper function to check, whether the timer is on one of the queues | ||
| 63 | */ | ||
| 64 | static inline int alarmtimer_is_queued(struct alarm *timer) | ||
| 65 | { | ||
| 66 | return timer->state & ALARMTIMER_STATE_ENQUEUED; | ||
| 67 | } | ||
| 68 | |||
| 69 | /* | ||
| 70 | * Helper function to check, whether the timer is running the callback | ||
| 71 | * function | ||
| 72 | */ | ||
| 73 | static inline int alarmtimer_callback_running(struct alarm *timer) | ||
| 74 | { | ||
| 75 | return timer->state & ALARMTIMER_STATE_CALLBACK; | ||
| 76 | } | ||
| 77 | |||
| 78 | |||
| 79 | /* Provide way to access the rtc device being used by alarmtimers */ | 52 | /* Provide way to access the rtc device being used by alarmtimers */ |
| 80 | struct rtc_device *alarmtimer_get_rtcdev(void); | 53 | struct rtc_device *alarmtimer_get_rtcdev(void); |
| 81 | 54 | ||
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index fbe89e17124e..4dceaf8ae152 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h | |||
| @@ -319,22 +319,6 @@ static inline void __clocksource_updatefreq_khz(struct clocksource *cs, u32 khz) | |||
| 319 | __clocksource_updatefreq_scale(cs, 1000, khz); | 319 | __clocksource_updatefreq_scale(cs, 1000, khz); |
| 320 | } | 320 | } |
| 321 | 321 | ||
| 322 | #ifdef CONFIG_GENERIC_TIME_VSYSCALL | ||
| 323 | extern void | ||
| 324 | update_vsyscall(struct timespec *ts, struct timespec *wtm, | ||
| 325 | struct clocksource *c, u32 mult); | ||
| 326 | extern void update_vsyscall_tz(void); | ||
| 327 | #else | ||
| 328 | static inline void | ||
| 329 | update_vsyscall(struct timespec *ts, struct timespec *wtm, | ||
| 330 | struct clocksource *c, u32 mult) | ||
| 331 | { | ||
| 332 | } | ||
| 333 | |||
| 334 | static inline void update_vsyscall_tz(void) | ||
| 335 | { | ||
| 336 | } | ||
| 337 | #endif | ||
| 338 | 322 | ||
| 339 | extern void timekeeping_notify(struct clocksource *clock); | 323 | extern void timekeeping_notify(struct clocksource *clock); |
| 340 | 324 | ||
diff --git a/include/linux/jiffies.h b/include/linux/jiffies.h index 05e3c2c7a8cf..6b87413da9d6 100644 --- a/include/linux/jiffies.h +++ b/include/linux/jiffies.h | |||
| @@ -51,31 +51,17 @@ | |||
| 51 | #define SH_DIV(NOM,DEN,LSH) ( (((NOM) / (DEN)) << (LSH)) \ | 51 | #define SH_DIV(NOM,DEN,LSH) ( (((NOM) / (DEN)) << (LSH)) \ |
| 52 | + ((((NOM) % (DEN)) << (LSH)) + (DEN) / 2) / (DEN)) | 52 | + ((((NOM) % (DEN)) << (LSH)) + (DEN) / 2) / (DEN)) |
| 53 | 53 | ||
| 54 | #ifdef CLOCK_TICK_RATE | ||
| 55 | /* LATCH is used in the interval timer and ftape setup. */ | 54 | /* LATCH is used in the interval timer and ftape setup. */ |
| 56 | # define LATCH ((CLOCK_TICK_RATE + HZ/2) / HZ) /* For divider */ | 55 | #define LATCH ((CLOCK_TICK_RATE + HZ/2) / HZ) /* For divider */ |
| 57 | 56 | ||
| 58 | /* | 57 | extern int register_refined_jiffies(long clock_tick_rate); |
| 59 | * HZ is the requested value. However the CLOCK_TICK_RATE may not allow | ||
| 60 | * for exactly HZ. So SHIFTED_HZ is high res HZ ("<< 8" is for accuracy) | ||
| 61 | */ | ||
| 62 | # define SHIFTED_HZ (SH_DIV(CLOCK_TICK_RATE, LATCH, 8)) | ||
| 63 | #else | ||
| 64 | # define SHIFTED_HZ (HZ << 8) | ||
| 65 | #endif | ||
| 66 | 58 | ||
| 67 | /* TICK_NSEC is the time between ticks in nsec assuming SHIFTED_HZ */ | 59 | /* TICK_NSEC is the time between ticks in nsec assuming SHIFTED_HZ */ |
| 68 | #define TICK_NSEC (SH_DIV(1000000UL * 1000, SHIFTED_HZ, 8)) | 60 | #define TICK_NSEC ((NSEC_PER_SEC+HZ/2)/HZ) |
| 69 | 61 | ||
| 70 | /* TICK_USEC is the time between ticks in usec assuming fake USER_HZ */ | 62 | /* TICK_USEC is the time between ticks in usec assuming fake USER_HZ */ |
| 71 | #define TICK_USEC ((1000000UL + USER_HZ/2) / USER_HZ) | 63 | #define TICK_USEC ((1000000UL + USER_HZ/2) / USER_HZ) |
| 72 | 64 | ||
| 73 | /* | ||
| 74 | * TICK_USEC_TO_NSEC is the time between ticks in nsec assuming SHIFTED_HZ and | ||
| 75 | * a value TUSEC for TICK_USEC (can be set bij adjtimex) | ||
| 76 | */ | ||
| 77 | #define TICK_USEC_TO_NSEC(TUSEC) (SH_DIV(TUSEC * USER_HZ * 1000, SHIFTED_HZ, 8)) | ||
| 78 | |||
| 79 | /* some arch's have a small-data section that can be accessed register-relative | 65 | /* some arch's have a small-data section that can be accessed register-relative |
| 80 | * but that can only take up to, say, 4-byte variables. jiffies being part of | 66 | * but that can only take up to, say, 4-byte variables. jiffies being part of |
| 81 | * an 8-byte variable may not be correctly accessed unless we force the issue | 67 | * an 8-byte variable may not be correctly accessed unless we force the issue |
diff --git a/include/linux/timekeeper_internal.h b/include/linux/timekeeper_internal.h new file mode 100644 index 000000000000..e1d558e237ec --- /dev/null +++ b/include/linux/timekeeper_internal.h | |||
| @@ -0,0 +1,108 @@ | |||
| 1 | /* | ||
| 2 | * You SHOULD NOT be including this unless you're vsyscall | ||
| 3 | * handling code or timekeeping internal code! | ||
| 4 | */ | ||
| 5 | |||
| 6 | #ifndef _LINUX_TIMEKEEPER_INTERNAL_H | ||
| 7 | #define _LINUX_TIMEKEEPER_INTERNAL_H | ||
| 8 | |||
| 9 | #include <linux/clocksource.h> | ||
| 10 | #include <linux/jiffies.h> | ||
| 11 | #include <linux/time.h> | ||
| 12 | |||
| 13 | /* Structure holding internal timekeeping values. */ | ||
| 14 | struct timekeeper { | ||
| 15 | /* Current clocksource used for timekeeping. */ | ||
| 16 | struct clocksource *clock; | ||
| 17 | /* NTP adjusted clock multiplier */ | ||
| 18 | u32 mult; | ||
| 19 | /* The shift value of the current clocksource. */ | ||
| 20 | u32 shift; | ||
| 21 | /* Number of clock cycles in one NTP interval. */ | ||
| 22 | cycle_t cycle_interval; | ||
| 23 | /* Number of clock shifted nano seconds in one NTP interval. */ | ||
| 24 | u64 xtime_interval; | ||
| 25 | /* shifted nano seconds left over when rounding cycle_interval */ | ||
| 26 | s64 xtime_remainder; | ||
| 27 | /* Raw nano seconds accumulated per NTP interval. */ | ||
| 28 | u32 raw_interval; | ||
| 29 | |||
| 30 | /* Current CLOCK_REALTIME time in seconds */ | ||
| 31 | u64 xtime_sec; | ||
| 32 | /* Clock shifted nano seconds */ | ||
| 33 | u64 xtime_nsec; | ||
| 34 | |||
| 35 | /* Difference between accumulated time and NTP time in ntp | ||
| 36 | * shifted nano seconds. */ | ||
| 37 | s64 ntp_error; | ||
| 38 | /* Shift conversion between clock shifted nano seconds and | ||
| 39 | * ntp shifted nano seconds. */ | ||
| 40 | u32 ntp_error_shift; | ||
| 41 | |||
| 42 | /* | ||
| 43 | * wall_to_monotonic is what we need to add to xtime (or xtime corrected | ||
| 44 | * for sub jiffie times) to get to monotonic time. Monotonic is pegged | ||
| 45 | * at zero at system boot time, so wall_to_monotonic will be negative, | ||
| 46 | * however, we will ALWAYS keep the tv_nsec part positive so we can use | ||
| 47 | * the usual normalization. | ||
| 48 | * | ||
| 49 | * wall_to_monotonic is moved after resume from suspend for the | ||
| 50 | * monotonic time not to jump. We need to add total_sleep_time to | ||
| 51 | * wall_to_monotonic to get the real boot based time offset. | ||
| 52 | * | ||
| 53 | * - wall_to_monotonic is no longer the boot time, getboottime must be | ||
| 54 | * used instead. | ||
| 55 | */ | ||
| 56 | struct timespec wall_to_monotonic; | ||
| 57 | /* Offset clock monotonic -> clock realtime */ | ||
| 58 | ktime_t offs_real; | ||
| 59 | /* time spent in suspend */ | ||
| 60 | struct timespec total_sleep_time; | ||
| 61 | /* Offset clock monotonic -> clock boottime */ | ||
| 62 | ktime_t offs_boot; | ||
| 63 | /* The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. */ | ||
| 64 | struct timespec raw_time; | ||
| 65 | /* Seqlock for all timekeeper values */ | ||
| 66 | seqlock_t lock; | ||
| 67 | }; | ||
| 68 | |||
| 69 | static inline struct timespec tk_xtime(struct timekeeper *tk) | ||
| 70 | { | ||
| 71 | struct timespec ts; | ||
| 72 | |||
| 73 | ts.tv_sec = tk->xtime_sec; | ||
| 74 | ts.tv_nsec = (long)(tk->xtime_nsec >> tk->shift); | ||
| 75 | return ts; | ||
| 76 | } | ||
| 77 | |||
| 78 | |||
| 79 | #ifdef CONFIG_GENERIC_TIME_VSYSCALL | ||
| 80 | |||
| 81 | extern void update_vsyscall(struct timekeeper *tk); | ||
| 82 | extern void update_vsyscall_tz(void); | ||
| 83 | |||
| 84 | #elif defined(CONFIG_GENERIC_TIME_VSYSCALL_OLD) | ||
| 85 | |||
| 86 | extern void update_vsyscall_old(struct timespec *ts, struct timespec *wtm, | ||
| 87 | struct clocksource *c, u32 mult); | ||
| 88 | extern void update_vsyscall_tz(void); | ||
| 89 | |||
| 90 | static inline void update_vsyscall(struct timekeeper *tk) | ||
| 91 | { | ||
| 92 | struct timespec xt; | ||
| 93 | |||
| 94 | xt = tk_xtime(tk); | ||
| 95 | update_vsyscall_old(&xt, &tk->wall_to_monotonic, tk->clock, tk->mult); | ||
| 96 | } | ||
| 97 | |||
| 98 | #else | ||
| 99 | |||
| 100 | static inline void update_vsyscall(struct timekeeper *tk) | ||
| 101 | { | ||
| 102 | } | ||
| 103 | static inline void update_vsyscall_tz(void) | ||
| 104 | { | ||
| 105 | } | ||
| 106 | #endif | ||
| 107 | |||
| 108 | #endif /* _LINUX_TIMEKEEPER_INTERNAL_H */ | ||
