blob: ce576b90a47d5f4be7c00ab1a1e674903ba166a6 [file] [log] [blame]
pbrook87ecb682007-11-17 17:14:51 +00001#ifndef QEMU_TIMER_H
2#define QEMU_TIMER_H
3
Blue Swirl29e922b2010-03-29 19:24:00 +00004#include "qemu-common.h"
Jan Kiszka691a0c92011-06-20 14:06:27 +02005#include "notify.h"
Blue Swirlc57c8462010-10-23 15:24:07 +00006#include <time.h>
7#include <sys/time.h>
8
9#ifdef _WIN32
10#include <windows.h>
Blue Swirlc57c8462010-10-23 15:24:07 +000011#endif
Blue Swirl29e922b2010-03-29 19:24:00 +000012
pbrook87ecb682007-11-17 17:14:51 +000013/* timers */
14
Paolo Bonzini0ce1b942011-03-11 16:46:02 +010015#define SCALE_MS 1000000
16#define SCALE_US 1000
17#define SCALE_NS 1
18
pbrook87ecb682007-11-17 17:14:51 +000019typedef struct QEMUClock QEMUClock;
20typedef void QEMUTimerCB(void *opaque);
21
22/* The real time clock should be used only for stuff which does not
23 change the virtual machine state, as it is run even if the virtual
24 machine is stopped. The real time clock has a frequency of 1000
25 Hz. */
26extern QEMUClock *rt_clock;
27
28/* The virtual clock is only run during the emulation. It is stopped
29 when the virtual machine is stopped. Virtual timers use a high
30 precision clock, usually cpu cycles (use ticks_per_sec). */
31extern QEMUClock *vm_clock;
32
Jan Kiszka21d5d122009-09-15 13:36:04 +020033/* The host clock should be use for device models that emulate accurate
34 real time sources. It will continue to run when the virtual machine
35 is suspended, and it will reflect system time changes the host may
36 undergo (e.g. due to NTP). The host clock has the same precision as
37 the virtual clock. */
38extern QEMUClock *host_clock;
39
Paolo Bonzini41c872b2010-01-26 10:31:46 +020040int64_t qemu_get_clock_ns(QEMUClock *clock);
Paolo Bonzinidc2dfcf2011-09-12 15:50:16 +020041int64_t qemu_clock_has_timers(QEMUClock *clock);
42int64_t qemu_clock_expired(QEMUClock *clock);
43int64_t qemu_clock_deadline(QEMUClock *clock);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010044void qemu_clock_enable(QEMUClock *clock, int enabled);
Paolo Bonziniab33fcd2011-04-13 10:03:44 +020045void qemu_clock_warp(QEMUClock *clock);
pbrook87ecb682007-11-17 17:14:51 +000046
Jan Kiszka691a0c92011-06-20 14:06:27 +020047void qemu_register_clock_reset_notifier(QEMUClock *clock, Notifier *notifier);
48void qemu_unregister_clock_reset_notifier(QEMUClock *clock,
49 Notifier *notifier);
50
Paolo Bonzini4a998742011-03-11 16:33:58 +010051QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
52 QEMUTimerCB *cb, void *opaque);
pbrook87ecb682007-11-17 17:14:51 +000053void qemu_free_timer(QEMUTimer *ts);
54void qemu_del_timer(QEMUTimer *ts);
55void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time);
56int qemu_timer_pending(QEMUTimer *ts);
Stefano Stabellini2430ffe2009-08-03 10:56:01 +010057int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time);
pbrook87ecb682007-11-17 17:14:51 +000058
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010059void qemu_run_all_timers(void);
60int qemu_alarm_pending(void);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010061void configure_alarms(char const *opt);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010062int qemu_calculate_timeout(void);
63void init_clocks(void);
64int init_timer_alarm(void);
65void quit_timers(void);
66
Blue Swirl70c3b552011-03-27 15:45:39 +000067int64_t cpu_get_ticks(void);
68void cpu_enable_ticks(void);
69void cpu_disable_ticks(void);
70
Paolo Bonzini0ce1b942011-03-11 16:46:02 +010071static inline QEMUTimer *qemu_new_timer_ns(QEMUClock *clock, QEMUTimerCB *cb,
72 void *opaque)
73{
Paolo Bonzini4a998742011-03-11 16:33:58 +010074 return qemu_new_timer(clock, SCALE_NS, cb, opaque);
Paolo Bonzini0ce1b942011-03-11 16:46:02 +010075}
76
77static inline QEMUTimer *qemu_new_timer_ms(QEMUClock *clock, QEMUTimerCB *cb,
78 void *opaque)
79{
Paolo Bonzini4a998742011-03-11 16:33:58 +010080 return qemu_new_timer(clock, SCALE_MS, cb, opaque);
Paolo Bonzini0ce1b942011-03-11 16:46:02 +010081}
82
83static inline int64_t qemu_get_clock_ms(QEMUClock *clock)
84{
85 return qemu_get_clock_ns(clock) / SCALE_MS;
86}
87
Anthony Liguori274dfed2009-09-11 10:28:26 -050088static inline int64_t get_ticks_per_sec(void)
89{
90 return 1000000000LL;
91}
pbrook87ecb682007-11-17 17:14:51 +000092
Blue Swirlc57c8462010-10-23 15:24:07 +000093/* real time host monotonic timer */
94static inline int64_t get_clock_realtime(void)
95{
96 struct timeval tv;
97
98 gettimeofday(&tv, NULL);
99 return tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000);
100}
101
102/* Warning: don't insert tracepoints into these functions, they are
103 also used by simpletrace backend and tracepoints would cause
104 an infinite recursion! */
105#ifdef _WIN32
106extern int64_t clock_freq;
107
108static inline int64_t get_clock(void)
109{
110 LARGE_INTEGER ti;
111 QueryPerformanceCounter(&ti);
112 return muldiv64(ti.QuadPart, get_ticks_per_sec(), clock_freq);
113}
114
115#else
116
117extern int use_rt_clock;
118
119static inline int64_t get_clock(void)
120{
121#if defined(__linux__) || (defined(__FreeBSD__) && __FreeBSD_version >= 500000) \
122 || defined(__DragonFly__) || defined(__FreeBSD_kernel__)
123 if (use_rt_clock) {
124 struct timespec ts;
125 clock_gettime(CLOCK_MONOTONIC, &ts);
126 return ts.tv_sec * 1000000000LL + ts.tv_nsec;
127 } else
128#endif
129 {
130 /* XXX: using gettimeofday leads to problems if the date
131 changes, so it should be avoided. */
132 return get_clock_realtime();
133 }
134}
135#endif
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100136
pbrook87ecb682007-11-17 17:14:51 +0000137void qemu_get_timer(QEMUFile *f, QEMUTimer *ts);
138void qemu_put_timer(QEMUFile *f, QEMUTimer *ts);
139
140/* ptimer.c */
141typedef struct ptimer_state ptimer_state;
142typedef void (*ptimer_cb)(void *opaque);
143
144ptimer_state *ptimer_init(QEMUBH *bh);
145void ptimer_set_period(ptimer_state *s, int64_t period);
146void ptimer_set_freq(ptimer_state *s, uint32_t freq);
147void ptimer_set_limit(ptimer_state *s, uint64_t limit, int reload);
148uint64_t ptimer_get_count(ptimer_state *s);
149void ptimer_set_count(ptimer_state *s, uint64_t count);
150void ptimer_run(ptimer_state *s, int oneshot);
151void ptimer_stop(ptimer_state *s);
pbrook87ecb682007-11-17 17:14:51 +0000152
Blue Swirl29e922b2010-03-29 19:24:00 +0000153/* icount */
Blue Swirl29e922b2010-03-29 19:24:00 +0000154int64_t cpu_get_icount(void);
Paolo Bonzini946fb272011-09-12 13:57:37 +0200155int64_t cpu_get_clock(void);
Blue Swirl29e922b2010-03-29 19:24:00 +0000156
157/*******************************************/
158/* host CPU ticks (if available) */
159
160#if defined(_ARCH_PPC)
161
162static inline int64_t cpu_get_real_ticks(void)
163{
164 int64_t retval;
165#ifdef _ARCH_PPC64
166 /* This reads timebase in one 64bit go and includes Cell workaround from:
167 http://ozlabs.org/pipermail/linuxppc-dev/2006-October/027052.html
168 */
169 __asm__ __volatile__ ("mftb %0\n\t"
170 "cmpwi %0,0\n\t"
171 "beq- $-8"
172 : "=r" (retval));
173#else
174 /* http://ozlabs.org/pipermail/linuxppc-dev/1999-October/003889.html */
175 unsigned long junk;
Alexander Graf4a9590f2010-04-03 11:37:26 +0200176 __asm__ __volatile__ ("mfspr %1,269\n\t" /* mftbu */
177 "mfspr %L0,268\n\t" /* mftb */
178 "mfspr %0,269\n\t" /* mftbu */
Blue Swirl29e922b2010-03-29 19:24:00 +0000179 "cmpw %0,%1\n\t"
180 "bne $-16"
181 : "=r" (retval), "=r" (junk));
182#endif
183 return retval;
184}
185
186#elif defined(__i386__)
187
188static inline int64_t cpu_get_real_ticks(void)
189{
190 int64_t val;
191 asm volatile ("rdtsc" : "=A" (val));
192 return val;
193}
194
195#elif defined(__x86_64__)
196
197static inline int64_t cpu_get_real_ticks(void)
198{
199 uint32_t low,high;
200 int64_t val;
201 asm volatile("rdtsc" : "=a" (low), "=d" (high));
202 val = high;
203 val <<= 32;
204 val |= low;
205 return val;
206}
207
208#elif defined(__hppa__)
209
210static inline int64_t cpu_get_real_ticks(void)
211{
212 int val;
213 asm volatile ("mfctl %%cr16, %0" : "=r"(val));
214 return val;
215}
216
217#elif defined(__ia64)
218
219static inline int64_t cpu_get_real_ticks(void)
220{
221 int64_t val;
222 asm volatile ("mov %0 = ar.itc" : "=r"(val) :: "memory");
223 return val;
224}
225
226#elif defined(__s390__)
227
228static inline int64_t cpu_get_real_ticks(void)
229{
230 int64_t val;
231 asm volatile("stck 0(%1)" : "=m" (val) : "a" (&val) : "cc");
232 return val;
233}
234
235#elif defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
236
237static inline int64_t cpu_get_real_ticks (void)
238{
239#if defined(_LP64)
240 uint64_t rval;
241 asm volatile("rd %%tick,%0" : "=r"(rval));
242 return rval;
243#else
244 union {
245 uint64_t i64;
246 struct {
247 uint32_t high;
248 uint32_t low;
249 } i32;
250 } rval;
251 asm volatile("rd %%tick,%1; srlx %1,32,%0"
252 : "=r"(rval.i32.high), "=r"(rval.i32.low));
253 return rval.i64;
254#endif
255}
256
257#elif defined(__mips__) && \
258 ((defined(__mips_isa_rev) && __mips_isa_rev >= 2) || defined(__linux__))
259/*
260 * binutils wants to use rdhwr only on mips32r2
261 * but as linux kernel emulate it, it's fine
262 * to use it.
263 *
264 */
265#define MIPS_RDHWR(rd, value) { \
266 __asm__ __volatile__ (".set push\n\t" \
267 ".set mips32r2\n\t" \
268 "rdhwr %0, "rd"\n\t" \
269 ".set pop" \
270 : "=r" (value)); \
271 }
272
273static inline int64_t cpu_get_real_ticks(void)
274{
275 /* On kernels >= 2.6.25 rdhwr <reg>, $2 and $3 are emulated */
276 uint32_t count;
277 static uint32_t cyc_per_count = 0;
278
279 if (!cyc_per_count) {
280 MIPS_RDHWR("$3", cyc_per_count);
281 }
282
283 MIPS_RDHWR("$2", count);
284 return (int64_t)(count * cyc_per_count);
285}
286
Richard Henderson14a60632010-04-12 16:19:26 -0700287#elif defined(__alpha__)
288
289static inline int64_t cpu_get_real_ticks(void)
290{
291 uint64_t cc;
292 uint32_t cur, ofs;
293
294 asm volatile("rpcc %0" : "=r"(cc));
295 cur = cc;
296 ofs = cc >> 32;
297 return cur - ofs;
298}
299
Blue Swirl29e922b2010-03-29 19:24:00 +0000300#else
301/* The host CPU doesn't have an easily accessible cycle counter.
302 Just return a monotonically increasing value. This will be
303 totally wrong, but hopefully better than nothing. */
304static inline int64_t cpu_get_real_ticks (void)
305{
306 static int64_t ticks = 0;
307 return ticks++;
308}
309#endif
310
Richard Henderson2d8ebcf2010-04-17 16:25:10 +0000311#ifdef CONFIG_PROFILER
312static inline int64_t profile_getclock(void)
313{
314 return cpu_get_real_ticks();
315}
316
317extern int64_t qemu_time, qemu_time_start;
318extern int64_t tlb_flush_time;
319extern int64_t dev_time;
320#endif
321
pbrook87ecb682007-11-17 17:14:51 +0000322#endif