4 #include "qemu-common.h"
16 #define SCALE_MS 1000000
20 typedef struct QEMUClock QEMUClock
;
21 typedef void QEMUTimerCB(void *opaque
);
23 /* The real time clock should be used only for stuff which does not
24 change the virtual machine state, as it is run even if the virtual
25 machine is stopped. The real time clock has a frequency of 1000
27 extern QEMUClock
*rt_clock
;
29 /* The virtual clock is only run during the emulation. It is stopped
30 when the virtual machine is stopped. Virtual timers use a high
31 precision clock, usually cpu cycles (use ticks_per_sec). */
32 extern QEMUClock
*vm_clock
;
34 /* The host clock should be use for device models that emulate accurate
35 real time sources. It will continue to run when the virtual machine
36 is suspended, and it will reflect system time changes the host may
37 undergo (e.g. due to NTP). The host clock has the same precision as
39 extern QEMUClock
*host_clock
;
41 int64_t qemu_get_clock_ns(QEMUClock
*clock
);
42 int64_t qemu_clock_has_timers(QEMUClock
*clock
);
43 int64_t qemu_clock_expired(QEMUClock
*clock
);
44 int64_t qemu_clock_deadline(QEMUClock
*clock
);
45 void qemu_clock_enable(QEMUClock
*clock
, int enabled
);
46 void qemu_clock_warp(QEMUClock
*clock
);
48 void qemu_register_clock_reset_notifier(QEMUClock
*clock
, Notifier
*notifier
);
49 void qemu_unregister_clock_reset_notifier(QEMUClock
*clock
,
52 QEMUTimer
*qemu_new_timer(QEMUClock
*clock
, int scale
,
53 QEMUTimerCB
*cb
, void *opaque
);
54 void qemu_free_timer(QEMUTimer
*ts
);
55 void qemu_del_timer(QEMUTimer
*ts
);
56 void qemu_mod_timer_ns(QEMUTimer
*ts
, int64_t expire_time
);
57 void qemu_mod_timer(QEMUTimer
*ts
, int64_t expire_time
);
58 int qemu_timer_pending(QEMUTimer
*ts
);
59 int qemu_timer_expired(QEMUTimer
*timer_head
, int64_t current_time
);
60 uint64_t qemu_timer_expire_time_ns(QEMUTimer
*ts
);
62 void qemu_run_timers(QEMUClock
*clock
);
63 void qemu_run_all_timers(void);
64 int qemu_alarm_pending(void);
65 void configure_alarms(char const *opt
);
66 int qemu_calculate_timeout(void);
67 void init_clocks(void);
68 int init_timer_alarm(void);
70 int64_t cpu_get_ticks(void);
71 void cpu_enable_ticks(void);
72 void cpu_disable_ticks(void);
74 static inline QEMUTimer
*qemu_new_timer_ns(QEMUClock
*clock
, QEMUTimerCB
*cb
,
77 return qemu_new_timer(clock
, SCALE_NS
, cb
, opaque
);
80 static inline QEMUTimer
*qemu_new_timer_ms(QEMUClock
*clock
, QEMUTimerCB
*cb
,
83 return qemu_new_timer(clock
, SCALE_MS
, cb
, opaque
);
86 static inline int64_t qemu_get_clock_ms(QEMUClock
*clock
)
88 return qemu_get_clock_ns(clock
) / SCALE_MS
;
91 static inline int64_t get_ticks_per_sec(void)
96 /* real time host monotonic timer */
97 static inline int64_t get_clock_realtime(void)
101 gettimeofday(&tv
, NULL
);
102 return tv
.tv_sec
* 1000000000LL + (tv
.tv_usec
* 1000);
105 /* Warning: don't insert tracepoints into these functions, they are
106 also used by simpletrace backend and tracepoints would cause
107 an infinite recursion! */
109 extern int64_t clock_freq
;
111 static inline int64_t get_clock(void)
114 QueryPerformanceCounter(&ti
);
115 return muldiv64(ti
.QuadPart
, get_ticks_per_sec(), clock_freq
);
120 extern int use_rt_clock
;
122 static inline int64_t get_clock(void)
124 #if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
125 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
128 clock_gettime(CLOCK_MONOTONIC
, &ts
);
129 return ts
.tv_sec
* 1000000000LL + ts
.tv_nsec
;
133 /* XXX: using gettimeofday leads to problems if the date
134 changes, so it should be avoided. */
135 return get_clock_realtime();
140 void qemu_get_timer(QEMUFile
*f
, QEMUTimer
*ts
);
141 void qemu_put_timer(QEMUFile
*f
, QEMUTimer
*ts
);
144 int64_t cpu_get_icount(void);
145 int64_t cpu_get_clock(void);
147 /*******************************************/
148 /* host CPU ticks (if available) */
150 #if defined(_ARCH_PPC)
152 static inline int64_t cpu_get_real_ticks(void)
156 /* This reads timebase in one 64bit go and includes Cell workaround from:
157 http://ozlabs.org/pipermail/linuxppc-dev/2006-October/027052.html
159 __asm__
__volatile__ ("mftb %0\n\t"
164 /* http://ozlabs.org/pipermail/linuxppc-dev/1999-October/003889.html */
166 __asm__
__volatile__ ("mfspr %1,269\n\t" /* mftbu */
167 "mfspr %L0,268\n\t" /* mftb */
168 "mfspr %0,269\n\t" /* mftbu */
171 : "=r" (retval
), "=r" (junk
));
176 #elif defined(__i386__)
178 static inline int64_t cpu_get_real_ticks(void)
181 asm volatile ("rdtsc" : "=A" (val
));
185 #elif defined(__x86_64__)
187 static inline int64_t cpu_get_real_ticks(void)
191 asm volatile("rdtsc" : "=a" (low
), "=d" (high
));
198 #elif defined(__hppa__)
200 static inline int64_t cpu_get_real_ticks(void)
203 asm volatile ("mfctl %%cr16, %0" : "=r"(val
));
207 #elif defined(__ia64)
209 static inline int64_t cpu_get_real_ticks(void)
212 asm volatile ("mov %0 = ar.itc" : "=r"(val
) :: "memory");
216 #elif defined(__s390__)
218 static inline int64_t cpu_get_real_ticks(void)
221 asm volatile("stck 0(%1)" : "=m" (val
) : "a" (&val
) : "cc");
225 #elif defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
227 static inline int64_t cpu_get_real_ticks (void)
231 asm volatile("rd %%tick,%0" : "=r"(rval
));
241 asm volatile("rd %%tick,%1; srlx %1,32,%0"
242 : "=r"(rval
.i32
.high
), "=r"(rval
.i32
.low
));
247 #elif defined(__mips__) && \
248 ((defined(__mips_isa_rev) && __mips_isa_rev >= 2) || defined(__linux__))
250 * binutils wants to use rdhwr only on mips32r2
251 * but as linux kernel emulate it, it's fine
255 #define MIPS_RDHWR(rd, value) { \
256 __asm__ __volatile__ (".set push\n\t" \
257 ".set mips32r2\n\t" \
258 "rdhwr %0, "rd"\n\t" \
263 static inline int64_t cpu_get_real_ticks(void)
265 /* On kernels >= 2.6.25 rdhwr <reg>, $2 and $3 are emulated */
267 static uint32_t cyc_per_count
= 0;
269 if (!cyc_per_count
) {
270 MIPS_RDHWR("$3", cyc_per_count
);
273 MIPS_RDHWR("$2", count
);
274 return (int64_t)(count
* cyc_per_count
);
277 #elif defined(__alpha__)
279 static inline int64_t cpu_get_real_ticks(void)
284 asm volatile("rpcc %0" : "=r"(cc
));
291 /* The host CPU doesn't have an easily accessible cycle counter.
292 Just return a monotonically increasing value. This will be
293 totally wrong, but hopefully better than nothing. */
294 static inline int64_t cpu_get_real_ticks (void)
296 static int64_t ticks
= 0;
301 #ifdef CONFIG_PROFILER
302 static inline int64_t profile_getclock(void)
304 return cpu_get_real_ticks();
307 extern int64_t qemu_time
, qemu_time_start
;
308 extern int64_t tlb_flush_time
;
309 extern int64_t dev_time
;