blob: 7998f37a518369be13867a5b584784a3278869d1 [file] [log] [blame]
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25#include "sysemu.h"
26#include "net.h"
27#include "monitor.h"
28#include "console.h"
29
30#include "hw/hw.h"
31
32#include <unistd.h>
33#include <fcntl.h>
34#include <time.h>
35#include <errno.h>
36#include <sys/time.h>
37#include <signal.h>
Juergen Lock44459342010-03-25 22:35:03 +010038#ifdef __FreeBSD__
39#include <sys/param.h>
40#endif
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010041
42#ifdef __linux__
43#include <sys/ioctl.h>
44#include <linux/rtc.h>
45/* For the benefit of older linux systems which don't supply it,
46 we use a local copy of hpet.h. */
47/* #include <linux/hpet.h> */
48#include "hpet.h"
49#endif
50
51#ifdef _WIN32
52#include <windows.h>
53#include <mmsystem.h>
54#endif
55
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010056#include "qemu-timer.h"
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010057
58/* Conversion factor from emulated instructions to virtual clock ticks. */
Blue Swirl29e922b2010-03-29 19:24:00 +000059int icount_time_shift;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010060/* Arbitrarily pick 1MIPS as the minimum allowable speed. */
61#define MAX_ICOUNT_SHIFT 10
62/* Compensate for varying guest execution speed. */
Blue Swirl29e922b2010-03-29 19:24:00 +000063int64_t qemu_icount_bias;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010064static QEMUTimer *icount_rt_timer;
65static QEMUTimer *icount_vm_timer;
66
Paolo Bonzinidb1a4972010-03-10 11:38:55 +010067/***********************************************************/
68/* guest cycle counter */
69
70typedef struct TimersState {
71 int64_t cpu_ticks_prev;
72 int64_t cpu_ticks_offset;
73 int64_t cpu_clock_offset;
74 int32_t cpu_ticks_enabled;
75 int64_t dummy;
76} TimersState;
77
78TimersState timers_state;
79
80/* return the host CPU cycle counter and handle stop/restart */
81int64_t cpu_get_ticks(void)
82{
83 if (use_icount) {
84 return cpu_get_icount();
85 }
86 if (!timers_state.cpu_ticks_enabled) {
87 return timers_state.cpu_ticks_offset;
88 } else {
89 int64_t ticks;
90 ticks = cpu_get_real_ticks();
91 if (timers_state.cpu_ticks_prev > ticks) {
92 /* Note: non increasing ticks may happen if the host uses
93 software suspend */
94 timers_state.cpu_ticks_offset += timers_state.cpu_ticks_prev - ticks;
95 }
96 timers_state.cpu_ticks_prev = ticks;
97 return ticks + timers_state.cpu_ticks_offset;
98 }
99}
100
101/* return the host CPU monotonic timer and handle stop/restart */
102static int64_t cpu_get_clock(void)
103{
104 int64_t ti;
105 if (!timers_state.cpu_ticks_enabled) {
106 return timers_state.cpu_clock_offset;
107 } else {
108 ti = get_clock();
109 return ti + timers_state.cpu_clock_offset;
110 }
111}
112
Paolo Bonzini1ece93a2011-04-13 10:03:45 +0200113#ifndef CONFIG_IOTHREAD
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100114static int64_t qemu_icount_delta(void)
115{
Paolo Bonzini1ece93a2011-04-13 10:03:45 +0200116 if (!use_icount) {
117 return 5000 * (int64_t) 1000000;
118 } else if (use_icount == 1) {
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100119 /* When not using an adaptive execution frequency
120 we tend to get badly out of sync with real time,
121 so just delay for a reasonable amount of time. */
122 return 0;
123 } else {
124 return cpu_get_icount() - cpu_get_clock();
125 }
126}
Paolo Bonzini1ece93a2011-04-13 10:03:45 +0200127#endif
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100128
129/* enable cpu_get_ticks() */
130void cpu_enable_ticks(void)
131{
132 if (!timers_state.cpu_ticks_enabled) {
133 timers_state.cpu_ticks_offset -= cpu_get_real_ticks();
134 timers_state.cpu_clock_offset -= get_clock();
135 timers_state.cpu_ticks_enabled = 1;
136 }
137}
138
139/* disable cpu_get_ticks() : the clock is stopped. You must not call
140 cpu_get_ticks() after that. */
141void cpu_disable_ticks(void)
142{
143 if (timers_state.cpu_ticks_enabled) {
144 timers_state.cpu_ticks_offset = cpu_get_ticks();
145 timers_state.cpu_clock_offset = cpu_get_clock();
146 timers_state.cpu_ticks_enabled = 0;
147 }
148}
149
150/***********************************************************/
151/* timers */
152
153#define QEMU_CLOCK_REALTIME 0
154#define QEMU_CLOCK_VIRTUAL 1
155#define QEMU_CLOCK_HOST 2
156
157struct QEMUClock {
158 int type;
159 int enabled;
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200160
161 QEMUTimer *warp_timer;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100162};
163
164struct QEMUTimer {
165 QEMUClock *clock;
Paolo Bonzini4a998742011-03-11 16:33:58 +0100166 int64_t expire_time; /* in nanoseconds */
167 int scale;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100168 QEMUTimerCB *cb;
169 void *opaque;
170 struct QEMUTimer *next;
171};
172
173struct qemu_alarm_timer {
174 char const *name;
175 int (*start)(struct qemu_alarm_timer *t);
176 void (*stop)(struct qemu_alarm_timer *t);
177 void (*rearm)(struct qemu_alarm_timer *t);
178 void *priv;
179
180 char expired;
181 char pending;
182};
183
184static struct qemu_alarm_timer *alarm_timer;
185
186int qemu_alarm_pending(void)
187{
188 return alarm_timer->pending;
189}
190
191static inline int alarm_has_dynticks(struct qemu_alarm_timer *t)
192{
193 return !!t->rearm;
194}
195
196static void qemu_rearm_alarm_timer(struct qemu_alarm_timer *t)
197{
198 if (!alarm_has_dynticks(t))
199 return;
200
201 t->rearm(t);
202}
203
Paolo Bonzini9c132462011-02-03 14:48:59 +0100204/* TODO: MIN_TIMER_REARM_NS should be optimized */
205#define MIN_TIMER_REARM_NS 250000
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100206
207#ifdef _WIN32
208
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100209static int win32_start_timer(struct qemu_alarm_timer *t);
210static void win32_stop_timer(struct qemu_alarm_timer *t);
211static void win32_rearm_timer(struct qemu_alarm_timer *t);
212
213#else
214
215static int unix_start_timer(struct qemu_alarm_timer *t);
216static void unix_stop_timer(struct qemu_alarm_timer *t);
217
218#ifdef __linux__
219
220static int dynticks_start_timer(struct qemu_alarm_timer *t);
221static void dynticks_stop_timer(struct qemu_alarm_timer *t);
222static void dynticks_rearm_timer(struct qemu_alarm_timer *t);
223
224static int hpet_start_timer(struct qemu_alarm_timer *t);
225static void hpet_stop_timer(struct qemu_alarm_timer *t);
226
227static int rtc_start_timer(struct qemu_alarm_timer *t);
228static void rtc_stop_timer(struct qemu_alarm_timer *t);
229
230#endif /* __linux__ */
231
232#endif /* _WIN32 */
233
234/* Correlation between real and virtual time is always going to be
235 fairly approximate, so ignore small variation.
236 When the guest is idle real and virtual time will be aligned in
237 the IO wait loop. */
238#define ICOUNT_WOBBLE (get_ticks_per_sec() / 10)
239
240static void icount_adjust(void)
241{
242 int64_t cur_time;
243 int64_t cur_icount;
244 int64_t delta;
245 static int64_t last_delta;
246 /* If the VM is not running, then do nothing. */
247 if (!vm_running)
248 return;
249
250 cur_time = cpu_get_clock();
Paolo Bonzini74475452011-03-11 16:47:48 +0100251 cur_icount = qemu_get_clock_ns(vm_clock);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100252 delta = cur_icount - cur_time;
253 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
254 if (delta > 0
255 && last_delta + ICOUNT_WOBBLE < delta * 2
256 && icount_time_shift > 0) {
257 /* The guest is getting too far ahead. Slow time down. */
258 icount_time_shift--;
259 }
260 if (delta < 0
261 && last_delta - ICOUNT_WOBBLE > delta * 2
262 && icount_time_shift < MAX_ICOUNT_SHIFT) {
263 /* The guest is getting too far behind. Speed time up. */
264 icount_time_shift++;
265 }
266 last_delta = delta;
267 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
268}
269
270static void icount_adjust_rt(void * opaque)
271{
272 qemu_mod_timer(icount_rt_timer,
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100273 qemu_get_clock_ms(rt_clock) + 1000);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100274 icount_adjust();
275}
276
277static void icount_adjust_vm(void * opaque)
278{
279 qemu_mod_timer(icount_vm_timer,
Paolo Bonzini74475452011-03-11 16:47:48 +0100280 qemu_get_clock_ns(vm_clock) + get_ticks_per_sec() / 10);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100281 icount_adjust();
282}
283
284int64_t qemu_icount_round(int64_t count)
285{
286 return (count + (1 << icount_time_shift) - 1) >> icount_time_shift;
287}
288
289static struct qemu_alarm_timer alarm_timers[] = {
290#ifndef _WIN32
291#ifdef __linux__
292 {"dynticks", dynticks_start_timer,
293 dynticks_stop_timer, dynticks_rearm_timer, NULL},
294 /* HPET - if available - is preferred */
295 {"hpet", hpet_start_timer, hpet_stop_timer, NULL, NULL},
296 /* ...otherwise try RTC */
297 {"rtc", rtc_start_timer, rtc_stop_timer, NULL, NULL},
298#endif
299 {"unix", unix_start_timer, unix_stop_timer, NULL, NULL},
300#else
301 {"dynticks", win32_start_timer,
Paolo Bonzini68c23e52011-03-12 17:43:50 +0100302 win32_stop_timer, win32_rearm_timer, NULL},
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100303 {"win32", win32_start_timer,
Paolo Bonzini68c23e52011-03-12 17:43:50 +0100304 win32_stop_timer, NULL, NULL},
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100305#endif
306 {NULL, }
307};
308
309static void show_available_alarms(void)
310{
311 int i;
312
313 printf("Available alarm timers, in order of precedence:\n");
314 for (i = 0; alarm_timers[i].name; i++)
315 printf("%s\n", alarm_timers[i].name);
316}
317
318void configure_alarms(char const *opt)
319{
320 int i;
321 int cur = 0;
322 int count = ARRAY_SIZE(alarm_timers) - 1;
323 char *arg;
324 char *name;
325 struct qemu_alarm_timer tmp;
326
327 if (!strcmp(opt, "?")) {
328 show_available_alarms();
329 exit(0);
330 }
331
332 arg = qemu_strdup(opt);
333
334 /* Reorder the array */
335 name = strtok(arg, ",");
336 while (name) {
337 for (i = 0; i < count && alarm_timers[i].name; i++) {
338 if (!strcmp(alarm_timers[i].name, name))
339 break;
340 }
341
342 if (i == count) {
343 fprintf(stderr, "Unknown clock %s\n", name);
344 goto next;
345 }
346
347 if (i < cur)
348 /* Ignore */
349 goto next;
350
351 /* Swap */
352 tmp = alarm_timers[i];
353 alarm_timers[i] = alarm_timers[cur];
354 alarm_timers[cur] = tmp;
355
356 cur++;
357next:
358 name = strtok(NULL, ",");
359 }
360
361 qemu_free(arg);
362
363 if (cur) {
364 /* Disable remaining timers */
365 for (i = cur; i < count; i++)
366 alarm_timers[i].name = NULL;
367 } else {
368 show_available_alarms();
369 exit(1);
370 }
371}
372
373#define QEMU_NUM_CLOCKS 3
374
375QEMUClock *rt_clock;
376QEMUClock *vm_clock;
377QEMUClock *host_clock;
378
379static QEMUTimer *active_timers[QEMU_NUM_CLOCKS];
380
381static QEMUClock *qemu_new_clock(int type)
382{
383 QEMUClock *clock;
384 clock = qemu_mallocz(sizeof(QEMUClock));
385 clock->type = type;
386 clock->enabled = 1;
387 return clock;
388}
389
390void qemu_clock_enable(QEMUClock *clock, int enabled)
391{
392 clock->enabled = enabled;
393}
394
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200395static int64_t vm_clock_warp_start;
396
397static void icount_warp_rt(void *opaque)
398{
399 if (vm_clock_warp_start == -1) {
400 return;
401 }
402
403 if (vm_running) {
404 int64_t clock = qemu_get_clock_ns(rt_clock);
405 int64_t warp_delta = clock - vm_clock_warp_start;
406 if (use_icount == 1) {
407 qemu_icount_bias += warp_delta;
408 } else {
409 /*
410 * In adaptive mode, do not let the vm_clock run too
411 * far ahead of real time.
412 */
413 int64_t cur_time = cpu_get_clock();
414 int64_t cur_icount = qemu_get_clock_ns(vm_clock);
415 int64_t delta = cur_time - cur_icount;
416 qemu_icount_bias += MIN(warp_delta, delta);
417 }
418 if (qemu_timer_expired(active_timers[QEMU_CLOCK_VIRTUAL],
419 qemu_get_clock_ns(vm_clock))) {
420 qemu_notify_event();
421 }
422 }
423 vm_clock_warp_start = -1;
424}
425
426void qemu_clock_warp(QEMUClock *clock)
427{
428 int64_t deadline;
429
430 if (!clock->warp_timer) {
431 return;
432 }
433
434 /*
435 * There are too many global variables to make the "warp" behavior
436 * applicable to other clocks. But a clock argument removes the
437 * need for if statements all over the place.
438 */
439 assert(clock == vm_clock);
440
441 /*
442 * If the CPUs have been sleeping, advance the vm_clock timer now. This
443 * ensures that the deadline for the timer is computed correctly below.
444 * This also makes sure that the insn counter is synchronized before the
445 * CPU starts running, in case the CPU is woken by an event other than
446 * the earliest vm_clock timer.
447 */
448 icount_warp_rt(NULL);
449 if (!all_cpu_threads_idle() || !active_timers[clock->type]) {
450 qemu_del_timer(clock->warp_timer);
451 return;
452 }
453
454 vm_clock_warp_start = qemu_get_clock_ns(rt_clock);
455 deadline = qemu_next_deadline();
456 if (deadline > 0) {
457 /*
458 * Ensure the vm_clock proceeds even when the virtual CPU goes to
459 * sleep. Otherwise, the CPU might be waiting for a future timer
460 * interrupt to wake it up, but the interrupt never comes because
461 * the vCPU isn't running any insns and thus doesn't advance the
462 * vm_clock.
463 *
464 * An extreme solution for this problem would be to never let VCPUs
465 * sleep in icount mode if there is a pending vm_clock timer; rather
466 * time could just advance to the next vm_clock event. Instead, we
467 * do stop VCPUs and only advance vm_clock after some "real" time,
468 * (related to the time left until the next event) has passed. This
469 * rt_clock timer will do this. This avoids that the warps are too
470 * visible externally---for example, you will not be sending network
471 * packets continously instead of every 100ms.
472 */
473 qemu_mod_timer(clock->warp_timer, vm_clock_warp_start + deadline);
474 } else {
475 qemu_notify_event();
476 }
477}
478
Paolo Bonzini4a998742011-03-11 16:33:58 +0100479QEMUTimer *qemu_new_timer(QEMUClock *clock, int scale,
480 QEMUTimerCB *cb, void *opaque)
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100481{
482 QEMUTimer *ts;
483
484 ts = qemu_mallocz(sizeof(QEMUTimer));
485 ts->clock = clock;
486 ts->cb = cb;
487 ts->opaque = opaque;
Paolo Bonzini4a998742011-03-11 16:33:58 +0100488 ts->scale = scale;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100489 return ts;
490}
491
492void qemu_free_timer(QEMUTimer *ts)
493{
494 qemu_free(ts);
495}
496
497/* stop a timer, but do not dealloc it */
498void qemu_del_timer(QEMUTimer *ts)
499{
500 QEMUTimer **pt, *t;
501
502 /* NOTE: this code must be signal safe because
503 qemu_timer_expired() can be called from a signal. */
504 pt = &active_timers[ts->clock->type];
505 for(;;) {
506 t = *pt;
507 if (!t)
508 break;
509 if (t == ts) {
510 *pt = t->next;
511 break;
512 }
513 pt = &t->next;
514 }
515}
516
517/* modify the current timer so that it will be fired when current_time
518 >= expire_time. The corresponding callback will be called. */
Paolo Bonzini4a998742011-03-11 16:33:58 +0100519static void qemu_mod_timer_ns(QEMUTimer *ts, int64_t expire_time)
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100520{
521 QEMUTimer **pt, *t;
522
523 qemu_del_timer(ts);
524
525 /* add the timer in the sorted list */
526 /* NOTE: this code must be signal safe because
527 qemu_timer_expired() can be called from a signal. */
528 pt = &active_timers[ts->clock->type];
529 for(;;) {
530 t = *pt;
531 if (!t)
532 break;
533 if (t->expire_time > expire_time)
534 break;
535 pt = &t->next;
536 }
537 ts->expire_time = expire_time;
538 ts->next = *pt;
539 *pt = ts;
540
541 /* Rearm if necessary */
542 if (pt == &active_timers[ts->clock->type]) {
543 if (!alarm_timer->pending) {
544 qemu_rearm_alarm_timer(alarm_timer);
545 }
546 /* Interrupt execution to force deadline recalculation. */
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200547 qemu_clock_warp(ts->clock);
548 if (use_icount) {
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100549 qemu_notify_event();
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200550 }
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100551 }
552}
553
Paolo Bonzini4a998742011-03-11 16:33:58 +0100554/* modify the current timer so that it will be fired when current_time
555 >= expire_time. The corresponding callback will be called. */
556void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time)
557{
558 qemu_mod_timer_ns(ts, expire_time * ts->scale);
559}
560
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100561int qemu_timer_pending(QEMUTimer *ts)
562{
563 QEMUTimer *t;
564 for(t = active_timers[ts->clock->type]; t != NULL; t = t->next) {
565 if (t == ts)
566 return 1;
567 }
568 return 0;
569}
570
571int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time)
572{
573 if (!timer_head)
574 return 0;
Paolo Bonzini4a998742011-03-11 16:33:58 +0100575 return (timer_head->expire_time <= current_time * timer_head->scale);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100576}
577
578static void qemu_run_timers(QEMUClock *clock)
579{
580 QEMUTimer **ptimer_head, *ts;
581 int64_t current_time;
582
583 if (!clock->enabled)
584 return;
585
Paolo Bonzini4a998742011-03-11 16:33:58 +0100586 current_time = qemu_get_clock_ns(clock);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100587 ptimer_head = &active_timers[clock->type];
588 for(;;) {
589 ts = *ptimer_head;
590 if (!ts || ts->expire_time > current_time)
591 break;
592 /* remove timer from the list before calling the callback */
593 *ptimer_head = ts->next;
594 ts->next = NULL;
595
596 /* run the callback (the timer list can be modified) */
597 ts->cb(ts->opaque);
598 }
599}
600
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100601int64_t qemu_get_clock_ns(QEMUClock *clock)
602{
603 switch(clock->type) {
604 case QEMU_CLOCK_REALTIME:
605 return get_clock();
606 default:
607 case QEMU_CLOCK_VIRTUAL:
608 if (use_icount) {
609 return cpu_get_icount();
610 } else {
611 return cpu_get_clock();
612 }
613 case QEMU_CLOCK_HOST:
614 return get_clock_realtime();
615 }
616}
617
618void init_clocks(void)
619{
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100620 rt_clock = qemu_new_clock(QEMU_CLOCK_REALTIME);
621 vm_clock = qemu_new_clock(QEMU_CLOCK_VIRTUAL);
622 host_clock = qemu_new_clock(QEMU_CLOCK_HOST);
623
624 rtc_clock = host_clock;
625}
626
627/* save a timer */
628void qemu_put_timer(QEMUFile *f, QEMUTimer *ts)
629{
630 uint64_t expire_time;
631
632 if (qemu_timer_pending(ts)) {
633 expire_time = ts->expire_time;
634 } else {
635 expire_time = -1;
636 }
637 qemu_put_be64(f, expire_time);
638}
639
640void qemu_get_timer(QEMUFile *f, QEMUTimer *ts)
641{
642 uint64_t expire_time;
643
644 expire_time = qemu_get_be64(f);
645 if (expire_time != -1) {
Paolo Bonzini4a998742011-03-11 16:33:58 +0100646 qemu_mod_timer_ns(ts, expire_time);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100647 } else {
648 qemu_del_timer(ts);
649 }
650}
651
652static const VMStateDescription vmstate_timers = {
653 .name = "timer",
654 .version_id = 2,
655 .minimum_version_id = 1,
656 .minimum_version_id_old = 1,
657 .fields = (VMStateField []) {
658 VMSTATE_INT64(cpu_ticks_offset, TimersState),
659 VMSTATE_INT64(dummy, TimersState),
660 VMSTATE_INT64_V(cpu_clock_offset, TimersState, 2),
661 VMSTATE_END_OF_LIST()
662 }
663};
664
665void configure_icount(const char *option)
666{
Alex Williamson0be71e32010-06-25 11:09:07 -0600667 vmstate_register(NULL, 0, &vmstate_timers, &timers_state);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100668 if (!option)
669 return;
670
Paolo Bonziniab33fcd2011-04-13 10:03:44 +0200671#ifdef CONFIG_IOTHREAD
672 vm_clock->warp_timer = qemu_new_timer_ns(rt_clock, icount_warp_rt, NULL);
673#endif
674
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100675 if (strcmp(option, "auto") != 0) {
676 icount_time_shift = strtol(option, NULL, 0);
677 use_icount = 1;
678 return;
679 }
680
681 use_icount = 2;
682
683 /* 125MIPS seems a reasonable initial guess at the guest speed.
684 It will be corrected fairly quickly anyway. */
685 icount_time_shift = 3;
686
687 /* Have both realtime and virtual time triggers for speed adjustment.
688 The realtime trigger catches emulated time passing too slowly,
689 the virtual time trigger catches emulated time passing too fast.
690 Realtime triggers occur even when idle, so use them less frequently
691 than VM triggers. */
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100692 icount_rt_timer = qemu_new_timer_ms(rt_clock, icount_adjust_rt, NULL);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100693 qemu_mod_timer(icount_rt_timer,
Paolo Bonzini7bd427d2011-03-11 16:47:48 +0100694 qemu_get_clock_ms(rt_clock) + 1000);
Paolo Bonzini74475452011-03-11 16:47:48 +0100695 icount_vm_timer = qemu_new_timer_ns(vm_clock, icount_adjust_vm, NULL);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100696 qemu_mod_timer(icount_vm_timer,
Paolo Bonzini74475452011-03-11 16:47:48 +0100697 qemu_get_clock_ns(vm_clock) + get_ticks_per_sec() / 10);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100698}
699
700void qemu_run_all_timers(void)
701{
Paolo Bonzinica5a2a42010-03-19 11:30:35 +0100702 alarm_timer->pending = 0;
703
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100704 /* rearm timer, if not periodic */
705 if (alarm_timer->expired) {
706 alarm_timer->expired = 0;
707 qemu_rearm_alarm_timer(alarm_timer);
708 }
709
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100710 /* vm time timers */
711 if (vm_running) {
712 qemu_run_timers(vm_clock);
713 }
714
715 qemu_run_timers(rt_clock);
716 qemu_run_timers(host_clock);
717}
718
Paolo Bonzini4c3d45e2011-02-03 14:49:01 +0100719static int64_t qemu_next_alarm_deadline(void);
720
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100721#ifdef _WIN32
Paolo Bonzini68c23e52011-03-12 17:43:50 +0100722static void CALLBACK host_alarm_handler(PVOID lpParam, BOOLEAN unused)
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100723#else
724static void host_alarm_handler(int host_signum)
725#endif
726{
727 struct qemu_alarm_timer *t = alarm_timer;
728 if (!t)
729 return;
730
731#if 0
732#define DISP_FREQ 1000
733 {
734 static int64_t delta_min = INT64_MAX;
735 static int64_t delta_max, delta_cum, last_clock, delta, ti;
736 static int count;
Paolo Bonzini74475452011-03-11 16:47:48 +0100737 ti = qemu_get_clock_ns(vm_clock);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100738 if (last_clock != 0) {
739 delta = ti - last_clock;
740 if (delta < delta_min)
741 delta_min = delta;
742 if (delta > delta_max)
743 delta_max = delta;
744 delta_cum += delta;
745 if (++count == DISP_FREQ) {
746 printf("timer: min=%" PRId64 " us max=%" PRId64 " us avg=%" PRId64 " us avg_freq=%0.3f Hz\n",
747 muldiv64(delta_min, 1000000, get_ticks_per_sec()),
748 muldiv64(delta_max, 1000000, get_ticks_per_sec()),
749 muldiv64(delta_cum, 1000000 / DISP_FREQ, get_ticks_per_sec()),
750 (double)get_ticks_per_sec() / ((double)delta_cum / DISP_FREQ));
751 count = 0;
752 delta_min = INT64_MAX;
753 delta_max = 0;
754 delta_cum = 0;
755 }
756 }
757 last_clock = ti;
758 }
759#endif
760 if (alarm_has_dynticks(t) ||
Paolo Bonzini4c3d45e2011-02-03 14:49:01 +0100761 qemu_next_alarm_deadline () <= 0) {
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100762 t->expired = alarm_has_dynticks(t);
763 t->pending = 1;
764 qemu_notify_event();
765 }
766}
767
768int64_t qemu_next_deadline(void)
769{
770 /* To avoid problems with overflow limit this to 2^32. */
771 int64_t delta = INT32_MAX;
772
773 if (active_timers[QEMU_CLOCK_VIRTUAL]) {
774 delta = active_timers[QEMU_CLOCK_VIRTUAL]->expire_time -
Paolo Bonzini9c132462011-02-03 14:48:59 +0100775 qemu_get_clock_ns(vm_clock);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100776 }
777 if (active_timers[QEMU_CLOCK_HOST]) {
778 int64_t hdelta = active_timers[QEMU_CLOCK_HOST]->expire_time -
Paolo Bonzini9c132462011-02-03 14:48:59 +0100779 qemu_get_clock_ns(host_clock);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100780 if (hdelta < delta)
781 delta = hdelta;
782 }
783
784 if (delta < 0)
785 delta = 0;
786
787 return delta;
788}
789
Paolo Bonzini4c3d45e2011-02-03 14:49:01 +0100790static int64_t qemu_next_alarm_deadline(void)
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100791{
792 int64_t delta;
793 int64_t rtdelta;
794
Paolo Bonzini6ad0a1e2011-02-03 14:49:00 +0100795 if (!use_icount && active_timers[QEMU_CLOCK_VIRTUAL]) {
796 delta = active_timers[QEMU_CLOCK_VIRTUAL]->expire_time -
Paolo Bonzini74475452011-03-11 16:47:48 +0100797 qemu_get_clock_ns(vm_clock);
Paolo Bonzini6ad0a1e2011-02-03 14:49:00 +0100798 } else {
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100799 delta = INT32_MAX;
Paolo Bonzini6ad0a1e2011-02-03 14:49:00 +0100800 }
801 if (active_timers[QEMU_CLOCK_HOST]) {
802 int64_t hdelta = active_timers[QEMU_CLOCK_HOST]->expire_time -
803 qemu_get_clock_ns(host_clock);
804 if (hdelta < delta)
805 delta = hdelta;
806 }
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100807 if (active_timers[QEMU_CLOCK_REALTIME]) {
Paolo Bonzini4a998742011-03-11 16:33:58 +0100808 rtdelta = (active_timers[QEMU_CLOCK_REALTIME]->expire_time -
Paolo Bonzini9c132462011-02-03 14:48:59 +0100809 qemu_get_clock_ns(rt_clock));
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100810 if (rtdelta < delta)
811 delta = rtdelta;
812 }
813
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100814 return delta;
815}
816
Paolo Bonzini4c3d45e2011-02-03 14:49:01 +0100817#if defined(__linux__)
818
819#define RTC_FREQ 1024
820
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100821static void enable_sigio_timer(int fd)
822{
823 struct sigaction act;
824
825 /* timer signal */
826 sigfillset(&act.sa_mask);
827 act.sa_flags = 0;
828 act.sa_handler = host_alarm_handler;
829
830 sigaction(SIGIO, &act, NULL);
831 fcntl_setfl(fd, O_ASYNC);
832 fcntl(fd, F_SETOWN, getpid());
833}
834
835static int hpet_start_timer(struct qemu_alarm_timer *t)
836{
837 struct hpet_info info;
838 int r, fd;
839
840 fd = qemu_open("/dev/hpet", O_RDONLY);
841 if (fd < 0)
842 return -1;
843
844 /* Set frequency */
845 r = ioctl(fd, HPET_IRQFREQ, RTC_FREQ);
846 if (r < 0) {
847 fprintf(stderr, "Could not configure '/dev/hpet' to have a 1024Hz timer. This is not a fatal\n"
848 "error, but for better emulation accuracy type:\n"
849 "'echo 1024 > /proc/sys/dev/hpet/max-user-freq' as root.\n");
850 goto fail;
851 }
852
853 /* Check capabilities */
854 r = ioctl(fd, HPET_INFO, &info);
855 if (r < 0)
856 goto fail;
857
858 /* Enable periodic mode */
859 r = ioctl(fd, HPET_EPI, 0);
860 if (info.hi_flags && (r < 0))
861 goto fail;
862
863 /* Enable interrupt */
864 r = ioctl(fd, HPET_IE_ON, 0);
865 if (r < 0)
866 goto fail;
867
868 enable_sigio_timer(fd);
869 t->priv = (void *)(long)fd;
870
871 return 0;
872fail:
873 close(fd);
874 return -1;
875}
876
877static void hpet_stop_timer(struct qemu_alarm_timer *t)
878{
879 int fd = (long)t->priv;
880
881 close(fd);
882}
883
884static int rtc_start_timer(struct qemu_alarm_timer *t)
885{
886 int rtc_fd;
887 unsigned long current_rtc_freq = 0;
888
889 TFR(rtc_fd = qemu_open("/dev/rtc", O_RDONLY));
890 if (rtc_fd < 0)
891 return -1;
892 ioctl(rtc_fd, RTC_IRQP_READ, &current_rtc_freq);
893 if (current_rtc_freq != RTC_FREQ &&
894 ioctl(rtc_fd, RTC_IRQP_SET, RTC_FREQ) < 0) {
895 fprintf(stderr, "Could not configure '/dev/rtc' to have a 1024 Hz timer. This is not a fatal\n"
896 "error, but for better emulation accuracy either use a 2.6 host Linux kernel or\n"
897 "type 'echo 1024 > /proc/sys/dev/rtc/max-user-freq' as root.\n");
898 goto fail;
899 }
900 if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) {
901 fail:
902 close(rtc_fd);
903 return -1;
904 }
905
906 enable_sigio_timer(rtc_fd);
907
908 t->priv = (void *)(long)rtc_fd;
909
910 return 0;
911}
912
913static void rtc_stop_timer(struct qemu_alarm_timer *t)
914{
915 int rtc_fd = (long)t->priv;
916
917 close(rtc_fd);
918}
919
920static int dynticks_start_timer(struct qemu_alarm_timer *t)
921{
922 struct sigevent ev;
923 timer_t host_timer;
924 struct sigaction act;
925
926 sigfillset(&act.sa_mask);
927 act.sa_flags = 0;
928 act.sa_handler = host_alarm_handler;
929
930 sigaction(SIGALRM, &act, NULL);
931
932 /*
933 * Initialize ev struct to 0 to avoid valgrind complaining
934 * about uninitialized data in timer_create call
935 */
936 memset(&ev, 0, sizeof(ev));
937 ev.sigev_value.sival_int = 0;
938 ev.sigev_notify = SIGEV_SIGNAL;
939 ev.sigev_signo = SIGALRM;
940
941 if (timer_create(CLOCK_REALTIME, &ev, &host_timer)) {
942 perror("timer_create");
943
944 /* disable dynticks */
945 fprintf(stderr, "Dynamic Ticks disabled\n");
946
947 return -1;
948 }
949
950 t->priv = (void *)(long)host_timer;
951
952 return 0;
953}
954
955static void dynticks_stop_timer(struct qemu_alarm_timer *t)
956{
957 timer_t host_timer = (timer_t)(long)t->priv;
958
959 timer_delete(host_timer);
960}
961
962static void dynticks_rearm_timer(struct qemu_alarm_timer *t)
963{
964 timer_t host_timer = (timer_t)(long)t->priv;
965 struct itimerspec timeout;
Paolo Bonzini9c132462011-02-03 14:48:59 +0100966 int64_t nearest_delta_ns = INT64_MAX;
967 int64_t current_ns;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100968
969 assert(alarm_has_dynticks(t));
970 if (!active_timers[QEMU_CLOCK_REALTIME] &&
971 !active_timers[QEMU_CLOCK_VIRTUAL] &&
972 !active_timers[QEMU_CLOCK_HOST])
973 return;
974
Paolo Bonzini4c3d45e2011-02-03 14:49:01 +0100975 nearest_delta_ns = qemu_next_alarm_deadline();
976 if (nearest_delta_ns < MIN_TIMER_REARM_NS)
977 nearest_delta_ns = MIN_TIMER_REARM_NS;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100978
979 /* check whether a timer is already running */
980 if (timer_gettime(host_timer, &timeout)) {
981 perror("gettime");
982 fprintf(stderr, "Internal timer error: aborting\n");
983 exit(1);
984 }
Paolo Bonzini9c132462011-02-03 14:48:59 +0100985 current_ns = timeout.it_value.tv_sec * 1000000000LL + timeout.it_value.tv_nsec;
986 if (current_ns && current_ns <= nearest_delta_ns)
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100987 return;
988
989 timeout.it_interval.tv_sec = 0;
990 timeout.it_interval.tv_nsec = 0; /* 0 for one-shot timer */
Paolo Bonzini9c132462011-02-03 14:48:59 +0100991 timeout.it_value.tv_sec = nearest_delta_ns / 1000000000;
992 timeout.it_value.tv_nsec = nearest_delta_ns % 1000000000;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100993 if (timer_settime(host_timer, 0 /* RELATIVE */, &timeout, NULL)) {
994 perror("settime");
995 fprintf(stderr, "Internal timer error: aborting\n");
996 exit(1);
997 }
998}
999
1000#endif /* defined(__linux__) */
1001
Stefan Weilf26e5a52011-02-04 22:01:32 +01001002#if !defined(_WIN32)
1003
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001004static int unix_start_timer(struct qemu_alarm_timer *t)
1005{
1006 struct sigaction act;
1007 struct itimerval itv;
1008 int err;
1009
1010 /* timer signal */
1011 sigfillset(&act.sa_mask);
1012 act.sa_flags = 0;
1013 act.sa_handler = host_alarm_handler;
1014
1015 sigaction(SIGALRM, &act, NULL);
1016
1017 itv.it_interval.tv_sec = 0;
1018 /* for i386 kernel 2.6 to get 1 ms */
1019 itv.it_interval.tv_usec = 999;
1020 itv.it_value.tv_sec = 0;
1021 itv.it_value.tv_usec = 10 * 1000;
1022
1023 err = setitimer(ITIMER_REAL, &itv, NULL);
1024 if (err)
1025 return -1;
1026
1027 return 0;
1028}
1029
1030static void unix_stop_timer(struct qemu_alarm_timer *t)
1031{
1032 struct itimerval itv;
1033
1034 memset(&itv, 0, sizeof(itv));
1035 setitimer(ITIMER_REAL, &itv, NULL);
1036}
1037
1038#endif /* !defined(_WIN32) */
1039
1040
1041#ifdef _WIN32
1042
1043static int win32_start_timer(struct qemu_alarm_timer *t)
1044{
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001045 HANDLE hTimer;
1046 BOOLEAN success;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001047
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001048 /* If you call ChangeTimerQueueTimer on a one-shot timer (its period
1049 is zero) that has already expired, the timer is not updated. Since
1050 creating a new timer is relatively expensive, set a bogus one-hour
1051 interval in the dynticks case. */
1052 success = CreateTimerQueueTimer(&hTimer,
1053 NULL,
1054 host_alarm_handler,
1055 t,
1056 1,
1057 alarm_has_dynticks(t) ? 3600000 : 1,
1058 WT_EXECUTEINTIMERTHREAD);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001059
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001060 if (!success) {
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001061 fprintf(stderr, "Failed to initialize win32 alarm timer: %ld\n",
1062 GetLastError());
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001063 return -1;
1064 }
1065
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001066 t->priv = (PVOID) hTimer;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001067 return 0;
1068}
1069
1070static void win32_stop_timer(struct qemu_alarm_timer *t)
1071{
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001072 HANDLE hTimer = t->priv;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001073
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001074 if (hTimer) {
1075 DeleteTimerQueueTimer(NULL, hTimer, NULL);
1076 }
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001077}
1078
1079static void win32_rearm_timer(struct qemu_alarm_timer *t)
1080{
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001081 HANDLE hTimer = t->priv;
Paolo Bonzinicfced5b2011-03-12 17:43:49 +01001082 int nearest_delta_ms;
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001083 BOOLEAN success;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001084
1085 assert(alarm_has_dynticks(t));
1086 if (!active_timers[QEMU_CLOCK_REALTIME] &&
1087 !active_timers[QEMU_CLOCK_VIRTUAL] &&
1088 !active_timers[QEMU_CLOCK_HOST])
1089 return;
1090
Paolo Bonzinicfced5b2011-03-12 17:43:49 +01001091 nearest_delta_ms = (qemu_next_alarm_deadline() + 999999) / 1000000;
1092 if (nearest_delta_ms < 1) {
1093 nearest_delta_ms = 1;
1094 }
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001095 success = ChangeTimerQueueTimer(NULL,
1096 hTimer,
1097 nearest_delta_ms,
1098 3600000);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001099
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001100 if (!success) {
1101 fprintf(stderr, "Failed to rearm win32 alarm timer: %ld\n",
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001102 GetLastError());
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001103 exit(-1);
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001104 }
Paolo Bonzini68c23e52011-03-12 17:43:50 +01001105
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001106}
1107
1108#endif /* _WIN32 */
1109
1110static void alarm_timer_on_change_state_rearm(void *opaque, int running, int reason)
1111{
1112 if (running)
1113 qemu_rearm_alarm_timer((struct qemu_alarm_timer *) opaque);
1114}
1115
1116int init_timer_alarm(void)
1117{
1118 struct qemu_alarm_timer *t = NULL;
1119 int i, err = -1;
1120
1121 for (i = 0; alarm_timers[i].name; i++) {
1122 t = &alarm_timers[i];
1123
1124 err = t->start(t);
1125 if (!err)
1126 break;
1127 }
1128
1129 if (err) {
1130 err = -ENOENT;
1131 goto fail;
1132 }
1133
1134 /* first event is at time 0 */
1135 t->pending = 1;
1136 alarm_timer = t;
1137 qemu_add_vm_change_state_handler(alarm_timer_on_change_state_rearm, t);
1138
1139 return 0;
1140
1141fail:
1142 return err;
1143}
1144
1145void quit_timers(void)
1146{
1147 struct qemu_alarm_timer *t = alarm_timer;
1148 alarm_timer = NULL;
1149 t->stop(t);
1150}
1151
1152int qemu_calculate_timeout(void)
1153{
Paolo Bonzini1ece93a2011-04-13 10:03:45 +02001154#ifndef CONFIG_IOTHREAD
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001155 int timeout;
1156
Paolo Bonzini1ece93a2011-04-13 10:03:45 +02001157 if (!vm_running)
1158 timeout = 5000;
1159 else {
1160 /* XXX: use timeout computed from timers */
1161 int64_t add;
1162 int64_t delta;
1163 /* Advance virtual time to the next event. */
1164 delta = qemu_icount_delta();
1165 if (delta > 0) {
1166 /* If virtual time is ahead of real time then just
1167 wait for IO. */
1168 timeout = (delta + 999999) / 1000000;
1169 } else {
1170 /* Wait for either IO to occur or the next
1171 timer event. */
1172 add = qemu_next_deadline();
1173 /* We advance the timer before checking for IO.
1174 Limit the amount we advance so that early IO
1175 activity won't get the guest too far ahead. */
1176 if (add > 10000000)
1177 add = 10000000;
1178 delta += add;
1179 qemu_icount += qemu_icount_round (add);
1180 timeout = delta / 1000000;
1181 if (timeout < 0)
1182 timeout = 0;
1183 }
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001184 }
1185
1186 return timeout;
Paolo Bonzini1ece93a2011-04-13 10:03:45 +02001187#else /* CONFIG_IOTHREAD */
1188 return 1000;
1189#endif
Paolo Bonzinidb1a4972010-03-10 11:38:55 +01001190}
1191