2 * General purpose implementation of a simple periodic countdown timer.
4 * Copyright (c) 2007 CodeSourcery.
6 * This code is licensed under the GNU LGPL.
8 #include "qemu/osdep.h"
10 #include "qemu/timer.h"
11 #include "hw/ptimer.h"
12 #include "qemu/host-utils.h"
13 #include "sysemu/replay.h"
17 uint8_t enabled
; /* 0 = disabled, 1 = periodic, 2 = oneshot. */
28 /* Use a bottom-half routine to avoid reentrancy issues. */
29 static void ptimer_trigger(ptimer_state
*s
)
32 replay_bh_schedule_event(s
->bh
);
36 static void ptimer_reload(ptimer_state
*s
)
38 uint32_t period_frac
= s
->period_frac
;
39 uint64_t period
= s
->period
;
45 if (s
->delta
== 0 || s
->period
== 0) {
46 fprintf(stderr
, "Timer with period zero, disabling\n");
52 * Artificially limit timeout rate to something
53 * achievable under QEMU. Otherwise, QEMU spends all
54 * its time generating timer interrupts, and there
55 * is no forward progress.
56 * About ten microseconds is the fastest that really works
57 * on the current generation of host machines.
60 if (s
->enabled
== 1 && (s
->delta
* period
< 10000) && !use_icount
) {
61 period
= 10000 / s
->delta
;
65 s
->last_event
= s
->next_event
;
66 s
->next_event
= s
->last_event
+ s
->delta
* period
;
68 s
->next_event
+= ((int64_t)period_frac
* s
->delta
) >> 32;
70 timer_mod(s
->timer
, s
->next_event
);
73 static void ptimer_tick(void *opaque
)
75 ptimer_state
*s
= (ptimer_state
*)opaque
;
78 if (s
->enabled
== 2) {
85 uint64_t ptimer_get_count(ptimer_state
*s
)
90 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
91 int64_t next
= s
->next_event
;
92 bool expired
= (now
- next
>= 0);
93 bool oneshot
= (s
->enabled
== 2);
95 /* Figure out the current counter value. */
97 /* Prevent timer underflowing if it should already have
105 uint32_t period_frac
= s
->period_frac
;
106 uint64_t period
= s
->period
;
108 if (!oneshot
&& (s
->delta
* period
< 10000) && !use_icount
) {
109 period
= 10000 / s
->delta
;
113 /* We need to divide time by period, where time is stored in
114 rem (64-bit integer) and period is stored in period/period_frac
117 Doing full precision division is hard, so scale values and
118 do a 64-bit division. The result should be rounded down,
119 so that the rounding error never causes the timer to go
128 shift
= clz1
< clz2
? clz1
: clz2
;
133 div
|= ((uint64_t)period_frac
<< (shift
- 32));
136 div
|= (period_frac
>> (32 - shift
));
137 /* Look at remaining bits of period_frac and round div up if
139 if ((uint32_t)(period_frac
<< shift
))
150 void ptimer_set_count(ptimer_state
*s
, uint64_t count
)
154 s
->next_event
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
159 void ptimer_run(ptimer_state
*s
, int oneshot
)
161 bool was_disabled
= !s
->enabled
;
163 if (was_disabled
&& s
->period
== 0) {
164 fprintf(stderr
, "Timer with period zero, disabling\n");
167 s
->enabled
= oneshot
? 2 : 1;
169 s
->next_event
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
174 /* Pause a timer. Note that this may cause it to "lose" time, even if it
175 is immediately restarted. */
176 void ptimer_stop(ptimer_state
*s
)
181 s
->delta
= ptimer_get_count(s
);
186 /* Set counter increment interval in nanoseconds. */
187 void ptimer_set_period(ptimer_state
*s
, int64_t period
)
189 s
->delta
= ptimer_get_count(s
);
193 s
->next_event
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
198 /* Set counter frequency in Hz. */
199 void ptimer_set_freq(ptimer_state
*s
, uint32_t freq
)
201 s
->delta
= ptimer_get_count(s
);
202 s
->period
= 1000000000ll / freq
;
203 s
->period_frac
= (1000000000ll << 32) / freq
;
205 s
->next_event
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
210 /* Set the initial countdown value. If reload is nonzero then also set
212 void ptimer_set_limit(ptimer_state
*s
, uint64_t limit
, int reload
)
217 if (s
->enabled
&& reload
) {
218 s
->next_event
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
223 uint64_t ptimer_get_limit(ptimer_state
*s
)
228 const VMStateDescription vmstate_ptimer
= {
231 .minimum_version_id
= 1,
232 .fields
= (VMStateField
[]) {
233 VMSTATE_UINT8(enabled
, ptimer_state
),
234 VMSTATE_UINT64(limit
, ptimer_state
),
235 VMSTATE_UINT64(delta
, ptimer_state
),
236 VMSTATE_UINT32(period_frac
, ptimer_state
),
237 VMSTATE_INT64(period
, ptimer_state
),
238 VMSTATE_INT64(last_event
, ptimer_state
),
239 VMSTATE_INT64(next_event
, ptimer_state
),
240 VMSTATE_TIMER_PTR(timer
, ptimer_state
),
241 VMSTATE_END_OF_LIST()
245 ptimer_state
*ptimer_init(QEMUBH
*bh
)
249 s
= (ptimer_state
*)g_malloc0(sizeof(ptimer_state
));
251 s
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, ptimer_tick
, s
);