]> git.proxmox.com Git - qemu.git/blame - qemu-timer.h
usb-uhci: symbolic names for pci registers
[qemu.git] / qemu-timer.h
CommitLineData
87ecb68b
PB
1#ifndef QEMU_TIMER_H
2#define QEMU_TIMER_H
3
4/* timers */
5
6typedef struct QEMUClock QEMUClock;
7typedef void QEMUTimerCB(void *opaque);
8
9/* The real time clock should be used only for stuff which does not
10 change the virtual machine state, as it is run even if the virtual
11 machine is stopped. The real time clock has a frequency of 1000
12 Hz. */
13extern QEMUClock *rt_clock;
14
15/* The virtual clock is only run during the emulation. It is stopped
16 when the virtual machine is stopped. Virtual timers use a high
17 precision clock, usually cpu cycles (use ticks_per_sec). */
18extern QEMUClock *vm_clock;
19
21d5d12b
JK
20/* The host clock should be use for device models that emulate accurate
21 real time sources. It will continue to run when the virtual machine
22 is suspended, and it will reflect system time changes the host may
23 undergo (e.g. due to NTP). The host clock has the same precision as
24 the virtual clock. */
25extern QEMUClock *host_clock;
26
87ecb68b
PB
27int64_t qemu_get_clock(QEMUClock *clock);
28
29QEMUTimer *qemu_new_timer(QEMUClock *clock, QEMUTimerCB *cb, void *opaque);
30void qemu_free_timer(QEMUTimer *ts);
31void qemu_del_timer(QEMUTimer *ts);
32void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time);
33int qemu_timer_pending(QEMUTimer *ts);
2430ffe4 34int qemu_timer_expired(QEMUTimer *timer_head, int64_t current_time);
87ecb68b 35
274dfed8
AL
36static inline int64_t get_ticks_per_sec(void)
37{
38 return 1000000000LL;
39}
87ecb68b
PB
40
41void qemu_get_timer(QEMUFile *f, QEMUTimer *ts);
42void qemu_put_timer(QEMUFile *f, QEMUTimer *ts);
43
44/* ptimer.c */
45typedef struct ptimer_state ptimer_state;
46typedef void (*ptimer_cb)(void *opaque);
47
48ptimer_state *ptimer_init(QEMUBH *bh);
49void ptimer_set_period(ptimer_state *s, int64_t period);
50void ptimer_set_freq(ptimer_state *s, uint32_t freq);
51void ptimer_set_limit(ptimer_state *s, uint64_t limit, int reload);
52uint64_t ptimer_get_count(ptimer_state *s);
53void ptimer_set_count(ptimer_state *s, uint64_t count);
54void ptimer_run(ptimer_state *s, int oneshot);
55void ptimer_stop(ptimer_state *s);
56void qemu_put_ptimer(QEMUFile *f, ptimer_state *s);
57void qemu_get_ptimer(QEMUFile *f, ptimer_state *s);
58
59#endif