Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000 Jeff Dike (jdike@karaya.com) |
| 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #include "linux/kernel.h" |
| 7 | #include "linux/module.h" |
| 8 | #include "linux/unistd.h" |
| 9 | #include "linux/stddef.h" |
| 10 | #include "linux/spinlock.h" |
| 11 | #include "linux/time.h" |
| 12 | #include "linux/sched.h" |
| 13 | #include "linux/interrupt.h" |
| 14 | #include "linux/init.h" |
| 15 | #include "linux/delay.h" |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 16 | #include "linux/hrtimer.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "asm/irq.h" |
| 18 | #include "asm/param.h" |
| 19 | #include "asm/current.h" |
| 20 | #include "kern_util.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "mode.h" |
| 22 | #include "os.h" |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | int hz(void) |
| 25 | { |
| 26 | return(HZ); |
| 27 | } |
| 28 | |
| 29 | /* |
| 30 | * Scheduler clock - returns current time in nanosec units. |
| 31 | */ |
| 32 | unsigned long long sched_clock(void) |
| 33 | { |
| 34 | return (unsigned long long)jiffies_64 * (1000000000 / HZ); |
| 35 | } |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #ifdef CONFIG_UML_REAL_TIME_CLOCK |
Jeff Dike | b7ec15b | 2007-05-06 14:51:51 -0700 | [diff] [blame] | 38 | static unsigned long long prev_nsecs[NR_CPUS]; |
Jeff Dike | 490ba17 | 2007-02-10 01:44:12 -0800 | [diff] [blame] | 39 | static long long delta[NR_CPUS]; /* Deviation per interval */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #endif |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | void timer_irq(union uml_pt_regs *regs) |
| 43 | { |
| 44 | unsigned long long ticks = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #ifdef CONFIG_UML_REAL_TIME_CLOCK |
Jeff Dike | 490ba17 | 2007-02-10 01:44:12 -0800 | [diff] [blame] | 46 | int c = cpu(); |
| 47 | if(prev_nsecs[c]){ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* We've had 1 tick */ |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 49 | unsigned long long nsecs = os_nsecs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Jeff Dike | 490ba17 | 2007-02-10 01:44:12 -0800 | [diff] [blame] | 51 | delta[c] += nsecs - prev_nsecs[c]; |
| 52 | prev_nsecs[c] = nsecs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | /* Protect against the host clock being set backwards */ |
Jeff Dike | 490ba17 | 2007-02-10 01:44:12 -0800 | [diff] [blame] | 55 | if(delta[c] < 0) |
| 56 | delta[c] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Jeff Dike | 490ba17 | 2007-02-10 01:44:12 -0800 | [diff] [blame] | 58 | ticks += (delta[c] * HZ) / BILLION; |
| 59 | delta[c] -= (ticks * BILLION) / HZ; |
Jeff Dike | 872aaa6 | 2006-07-10 04:45:08 -0700 | [diff] [blame] | 60 | } |
Jeff Dike | 490ba17 | 2007-02-10 01:44:12 -0800 | [diff] [blame] | 61 | else prev_nsecs[c] = os_nsecs(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #else |
Jeff Dike | 872aaa6 | 2006-07-10 04:45:08 -0700 | [diff] [blame] | 63 | ticks = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | while(ticks > 0){ |
| 66 | do_IRQ(TIMER_IRQ, regs); |
| 67 | ticks--; |
| 68 | } |
| 69 | } |
| 70 | |
Jeff Dike | 490ba17 | 2007-02-10 01:44:12 -0800 | [diff] [blame] | 71 | /* Protects local_offset */ |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 72 | static DEFINE_SPINLOCK(timer_spinlock); |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 73 | static unsigned long long local_offset = 0; |
| 74 | |
| 75 | static inline unsigned long long get_time(void) |
| 76 | { |
| 77 | unsigned long long nsecs; |
| 78 | unsigned long flags; |
| 79 | |
| 80 | spin_lock_irqsave(&timer_spinlock, flags); |
| 81 | nsecs = os_nsecs(); |
| 82 | nsecs += local_offset; |
| 83 | spin_unlock_irqrestore(&timer_spinlock, flags); |
| 84 | |
| 85 | return nsecs; |
| 86 | } |
| 87 | |
Al Viro | 7bea96f | 2006-10-08 22:49:34 +0100 | [diff] [blame] | 88 | irqreturn_t um_timer(int irq, void *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | { |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 90 | unsigned long long nsecs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | unsigned long flags; |
| 92 | |
Jeff Dike | 572e614 | 2006-06-30 01:55:56 -0700 | [diff] [blame] | 93 | write_seqlock_irqsave(&xtime_lock, flags); |
| 94 | |
Atsushi Nemoto | 3171a03 | 2006-09-29 02:00:32 -0700 | [diff] [blame] | 95 | do_timer(1); |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 96 | |
Jeff Dike | b7ec15b | 2007-05-06 14:51:51 -0700 | [diff] [blame] | 97 | #ifdef CONFIG_UML_REAL_TIME_CLOCK |
Jeff Dike | c1b4098 | 2006-09-27 01:50:42 -0700 | [diff] [blame] | 98 | nsecs = get_time(); |
Jeff Dike | b7ec15b | 2007-05-06 14:51:51 -0700 | [diff] [blame] | 99 | #else |
| 100 | nsecs = (unsigned long long) xtime.tv_sec * BILLION + xtime.tv_nsec + |
| 101 | BILLION / HZ; |
| 102 | #endif |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 103 | xtime.tv_sec = nsecs / NSEC_PER_SEC; |
| 104 | xtime.tv_nsec = nsecs - xtime.tv_sec * NSEC_PER_SEC; |
Jeff Dike | 572e614 | 2006-06-30 01:55:56 -0700 | [diff] [blame] | 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | write_sequnlock_irqrestore(&xtime_lock, flags); |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 107 | |
Jeff Dike | 572e614 | 2006-06-30 01:55:56 -0700 | [diff] [blame] | 108 | return IRQ_HANDLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Jeff Dike | aceb343 | 2006-07-10 04:45:05 -0700 | [diff] [blame] | 111 | static void register_timer(void) |
| 112 | { |
| 113 | int err; |
| 114 | |
| 115 | err = request_irq(TIMER_IRQ, um_timer, IRQF_DISABLED, "timer", NULL); |
| 116 | if(err != 0) |
Jeff Dike | 537ae94 | 2006-09-25 23:33:05 -0700 | [diff] [blame] | 117 | printk(KERN_ERR "register_timer : request_irq failed - " |
Jeff Dike | aceb343 | 2006-07-10 04:45:05 -0700 | [diff] [blame] | 118 | "errno = %d\n", -err); |
| 119 | |
Jeff Dike | 537ae94 | 2006-09-25 23:33:05 -0700 | [diff] [blame] | 120 | err = set_interval(1); |
| 121 | if(err != 0) |
| 122 | printk(KERN_ERR "register_timer : set_interval failed - " |
| 123 | "errno = %d\n", -err); |
Jeff Dike | aceb343 | 2006-07-10 04:45:05 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | extern void (*late_time_init)(void); |
| 127 | |
| 128 | void time_init(void) |
| 129 | { |
| 130 | long long nsecs; |
| 131 | |
| 132 | nsecs = os_nsecs(); |
| 133 | set_normalized_timespec(&wall_to_monotonic, -nsecs / BILLION, |
| 134 | -nsecs % BILLION); |
Jeff Dike | b7ec15b | 2007-05-06 14:51:51 -0700 | [diff] [blame] | 135 | set_normalized_timespec(&xtime, nsecs / BILLION, nsecs % BILLION); |
Jeff Dike | aceb343 | 2006-07-10 04:45:05 -0700 | [diff] [blame] | 136 | late_time_init = register_timer; |
| 137 | } |
| 138 | |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 139 | void do_gettimeofday(struct timeval *tv) |
| 140 | { |
Jeff Dike | b7ec15b | 2007-05-06 14:51:51 -0700 | [diff] [blame] | 141 | #ifdef CONFIG_UML_REAL_TIME_CLOCK |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 142 | unsigned long long nsecs = get_time(); |
Jeff Dike | b7ec15b | 2007-05-06 14:51:51 -0700 | [diff] [blame] | 143 | #else |
| 144 | unsigned long long nsecs = (unsigned long long) xtime.tv_sec * BILLION + |
| 145 | xtime.tv_nsec; |
| 146 | #endif |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 147 | tv->tv_sec = nsecs / NSEC_PER_SEC; |
| 148 | /* Careful about calculations here - this was originally done as |
| 149 | * (nsecs - tv->tv_sec * NSEC_PER_SEC) / NSEC_PER_USEC |
| 150 | * which gave bogus (> 1000000) values. Dunno why, suspect gcc |
| 151 | * (4.0.0) miscompiled it, or there's a subtle 64/32-bit conversion |
| 152 | * problem that I missed. |
| 153 | */ |
| 154 | nsecs -= tv->tv_sec * NSEC_PER_SEC; |
| 155 | tv->tv_usec = (unsigned long) nsecs / NSEC_PER_USEC; |
| 156 | } |
| 157 | |
| 158 | static inline void set_time(unsigned long long nsecs) |
| 159 | { |
| 160 | unsigned long long now; |
| 161 | unsigned long flags; |
| 162 | |
| 163 | spin_lock_irqsave(&timer_spinlock, flags); |
| 164 | now = os_nsecs(); |
| 165 | local_offset = nsecs - now; |
| 166 | spin_unlock_irqrestore(&timer_spinlock, flags); |
| 167 | |
| 168 | clock_was_set(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Gennady Sharapov | cff65c4 | 2006-01-18 17:42:42 -0800 | [diff] [blame] | 171 | int do_settimeofday(struct timespec *tv) |
| 172 | { |
| 173 | set_time((unsigned long long) tv->tv_sec * NSEC_PER_SEC + tv->tv_nsec); |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | return 0; |
| 176 | } |
| 177 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | void timer_handler(int sig, union uml_pt_regs *regs) |
| 179 | { |
Jeff Dike | c83e448 | 2007-05-08 00:23:22 -0700 | [diff] [blame^] | 180 | if(current_thread->cpu == 0) |
| 181 | timer_irq(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | local_irq_disable(); |
Jeff Dike | 7e1f49d | 2005-07-28 21:16:09 -0700 | [diff] [blame] | 183 | irq_enter(); |
Bodo Stroesser | 097fdf0 | 2006-01-18 17:42:51 -0800 | [diff] [blame] | 184 | update_process_times(CHOOSE_MODE( |
| 185 | (UPT_SC(regs) && user_context(UPT_SP(regs))), |
| 186 | (regs)->skas.is_user)); |
Jeff Dike | 7e1f49d | 2005-07-28 21:16:09 -0700 | [diff] [blame] | 187 | irq_exit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | } |