2 * General purpose implementation of a simple periodic countdown timer.
4 * Copyright (c) 2007 CodeSourcery.
6 * This code is licensed under the GNU LGPL.
9 #include "qemu-timer.h"
10 #include "host-utils.h"
14 uint8_t enabled; /* 0 = disabled, 1 = periodic, 2 = oneshot. */
25 /* Use a bottom-half routine to avoid reentrancy issues. */
26 static void ptimer_trigger(ptimer_state *s)
29 qemu_bh_schedule(s->bh);
33 static void ptimer_reload(ptimer_state *s)
39 if (s->delta == 0 || s->period == 0) {
40 fprintf(stderr, "Timer with period zero, disabling\n");
45 s->last_event = s->next_event;
46 s->next_event = s->last_event + s->delta * s->period;
48 s->next_event += ((int64_t)s->period_frac * s->delta) >> 32;
50 qemu_mod_timer(s->timer, s->next_event);
53 static void ptimer_tick(void *opaque)
55 ptimer_state *s = (ptimer_state *)opaque;
58 if (s->enabled == 2) {
65 uint64_t ptimer_get_count(ptimer_state *s)
71 now = qemu_get_clock_ns(vm_clock);
72 /* Figure out the current counter value. */
73 if (now - s->next_event > 0
75 /* Prevent timer underflowing if it should already have
84 /* We need to divide time by period, where time is stored in
85 rem (64-bit integer) and period is stored in period/period_frac
88 Doing full precision division is hard, so scale values and
89 do a 64-bit division. The result should be rounded down,
90 so that the rounding error never causes the timer to go
94 rem = s->next_event - now;
99 shift = clz1 < clz2 ? clz1 : clz2;
104 div |= ((uint64_t)s->period_frac << (shift - 32));
107 div |= (s->period_frac >> (32 - shift));
108 /* Look at remaining bits of period_frac and round div up if
110 if ((uint32_t)(s->period_frac << shift))
121 void ptimer_set_count(ptimer_state *s, uint64_t count)
125 s->next_event = qemu_get_clock_ns(vm_clock);
130 void ptimer_run(ptimer_state *s, int oneshot)
135 if (s->period == 0) {
136 fprintf(stderr, "Timer with period zero, disabling\n");
139 s->enabled = oneshot ? 2 : 1;
140 s->next_event = qemu_get_clock_ns(vm_clock);
144 /* Pause a timer. Note that this may cause it to "lose" time, even if it
145 is immediately restarted. */
146 void ptimer_stop(ptimer_state *s)
151 s->delta = ptimer_get_count(s);
152 qemu_del_timer(s->timer);
156 /* Set counter increment interval in nanoseconds. */
157 void ptimer_set_period(ptimer_state *s, int64_t period)
162 s->next_event = qemu_get_clock_ns(vm_clock);
167 /* Set counter frequency in Hz. */
168 void ptimer_set_freq(ptimer_state *s, uint32_t freq)
170 s->period = 1000000000ll / freq;
171 s->period_frac = (1000000000ll << 32) / freq;
173 s->next_event = qemu_get_clock_ns(vm_clock);
178 /* Set the initial countdown value. If reload is nonzero then also set
180 void ptimer_set_limit(ptimer_state *s, uint64_t limit, int reload)
185 if (s->enabled && reload) {
186 s->next_event = qemu_get_clock_ns(vm_clock);
191 const VMStateDescription vmstate_ptimer = {
194 .minimum_version_id = 1,
195 .minimum_version_id_old = 1,
196 .fields = (VMStateField[]) {
197 VMSTATE_UINT8(enabled, ptimer_state),
198 VMSTATE_UINT64(limit, ptimer_state),
199 VMSTATE_UINT64(delta, ptimer_state),
200 VMSTATE_UINT32(period_frac, ptimer_state),
201 VMSTATE_INT64(period, ptimer_state),
202 VMSTATE_INT64(last_event, ptimer_state),
203 VMSTATE_INT64(next_event, ptimer_state),
204 VMSTATE_TIMER(timer, ptimer_state),
205 VMSTATE_END_OF_LIST()
209 ptimer_state *ptimer_init(QEMUBH *bh)
213 s = (ptimer_state *)g_malloc0(sizeof(ptimer_state));
215 s->timer = qemu_new_timer_ns(vm_clock, ptimer_tick, s);