xref: /qemu/include/qemu/timer.h (revision dc293f60)
1 #ifndef QEMU_TIMER_H
2 #define QEMU_TIMER_H
3 
4 #include "qemu/bitops.h"
5 #include "qemu/notify.h"
6 #include "qemu/host-utils.h"
7 
8 #define NANOSECONDS_PER_SECOND 1000000000LL
9 
10 /* timers */
11 
12 #define SCALE_MS 1000000
13 #define SCALE_US 1000
14 #define SCALE_NS 1
15 
16 /**
17  * QEMUClockType:
18  *
19  * The following clock types are available:
20  *
21  * @QEMU_CLOCK_REALTIME: Real time clock
22  *
23  * The real time clock should be used only for stuff which does not
24  * change the virtual machine state, as it runs even if the virtual
25  * machine is stopped.
26  *
27  * @QEMU_CLOCK_VIRTUAL: virtual clock
28  *
29  * The virtual clock only runs during the emulation. It stops
30  * when the virtual machine is stopped.
31  *
32  * @QEMU_CLOCK_HOST: host clock
33  *
34  * The host clock should be used for device models that emulate accurate
35  * real time sources. It will continue to run when the virtual machine
36  * is suspended, and it will reflect system time changes the host may
37  * undergo (e.g. due to NTP).
38  *
39  * @QEMU_CLOCK_VIRTUAL_RT: realtime clock used for icount warp
40  *
41  * Outside icount mode, this clock is the same as @QEMU_CLOCK_VIRTUAL.
42  * In icount mode, this clock counts nanoseconds while the virtual
43  * machine is running.  It is used to increase @QEMU_CLOCK_VIRTUAL
44  * while the CPUs are sleeping and thus not executing instructions.
45  */
46 
47 typedef enum {
48     QEMU_CLOCK_REALTIME = 0,
49     QEMU_CLOCK_VIRTUAL = 1,
50     QEMU_CLOCK_HOST = 2,
51     QEMU_CLOCK_VIRTUAL_RT = 3,
52     QEMU_CLOCK_MAX
53 } QEMUClockType;
54 
55 /**
56  * QEMU Timer attributes:
57  *
58  * An individual timer may be given one or multiple attributes when initialized.
59  * Each attribute corresponds to one bit. Attributes modify the processing
60  * of timers when they fire.
61  *
62  * The following attributes are available:
63  *
64  * QEMU_TIMER_ATTR_EXTERNAL: drives external subsystem
65  * QEMU_TIMER_ATTR_ALL: mask for all existing attributes
66  *
67  * Timers with this attribute do not recorded in rr mode, therefore it could be
68  * used for the subsystems that operate outside the guest core. Applicable only
69  * with virtual clock type.
70  */
71 
72 #define QEMU_TIMER_ATTR_EXTERNAL ((int)BIT(0))
73 #define QEMU_TIMER_ATTR_ALL      0xffffffff
74 
75 typedef struct QEMUTimerList QEMUTimerList;
76 
77 struct QEMUTimerListGroup {
78     QEMUTimerList *tl[QEMU_CLOCK_MAX];
79 };
80 
81 typedef void QEMUTimerCB(void *opaque);
82 typedef void QEMUTimerListNotifyCB(void *opaque, QEMUClockType type);
83 
84 struct QEMUTimer {
85     int64_t expire_time;        /* in nanoseconds */
86     QEMUTimerList *timer_list;
87     QEMUTimerCB *cb;
88     void *opaque;
89     QEMUTimer *next;
90     int attributes;
91     int scale;
92 };
93 
94 extern QEMUTimerListGroup main_loop_tlg;
95 
96 /*
97  * qemu_clock_get_ns;
98  * @type: the clock type
99  *
100  * Get the nanosecond value of a clock with
101  * type @type
102  *
103  * Returns: the clock value in nanoseconds
104  */
105 int64_t qemu_clock_get_ns(QEMUClockType type);
106 
107 /**
108  * qemu_clock_get_ms;
109  * @type: the clock type
110  *
111  * Get the millisecond value of a clock with
112  * type @type
113  *
114  * Returns: the clock value in milliseconds
115  */
116 static inline int64_t qemu_clock_get_ms(QEMUClockType type)
117 {
118     return qemu_clock_get_ns(type) / SCALE_MS;
119 }
120 
121 /**
122  * qemu_clock_get_us;
123  * @type: the clock type
124  *
125  * Get the microsecond value of a clock with
126  * type @type
127  *
128  * Returns: the clock value in microseconds
129  */
130 static inline int64_t qemu_clock_get_us(QEMUClockType type)
131 {
132     return qemu_clock_get_ns(type) / SCALE_US;
133 }
134 
135 /**
136  * qemu_clock_has_timers:
137  * @type: the clock type
138  *
139  * Determines whether a clock's default timer list
140  * has timers attached
141  *
142  * Note that this function should not be used when other threads also access
143  * the timer list.  The return value may be outdated by the time it is acted
144  * upon.
145  *
146  * Returns: true if the clock's default timer list
147  * has timers attached
148  */
149 bool qemu_clock_has_timers(QEMUClockType type);
150 
151 /**
152  * qemu_clock_expired:
153  * @type: the clock type
154  *
155  * Determines whether a clock's default timer list
156  * has an expired timer.
157  *
158  * Returns: true if the clock's default timer list has
159  * an expired timer
160  */
161 bool qemu_clock_expired(QEMUClockType type);
162 
163 /**
164  * qemu_clock_use_for_deadline:
165  * @type: the clock type
166  *
167  * Determine whether a clock should be used for deadline
168  * calculations. Some clocks, for instance vm_clock with
169  * icount_enabled() set, do not count in nanoseconds.
170  * Such clocks are not used for deadline calculations, and are presumed
171  * to interrupt any poll using qemu_notify/aio_notify
172  * etc.
173  *
174  * Returns: true if the clock runs in nanoseconds and
175  * should be used for a deadline.
176  */
177 bool qemu_clock_use_for_deadline(QEMUClockType type);
178 
179 /**
180  * qemu_clock_deadline_ns_all:
181  * @type: the clock type
182  * @attr_mask: mask for the timer attributes that are included
183  *             in deadline calculation
184  *
185  * Calculate the deadline across all timer lists associated
186  * with a clock (as opposed to just the default one)
187  * in nanoseconds, or -1 if no timer is set to expire.
188  *
189  * Returns: time until expiry in nanoseconds or -1
190  */
191 int64_t qemu_clock_deadline_ns_all(QEMUClockType type, int attr_mask);
192 
193 /**
194  * qemu_clock_get_main_loop_timerlist:
195  * @type: the clock type
196  *
197  * Return the default timer list associated with a clock.
198  *
199  * Returns: the default timer list
200  */
201 QEMUTimerList *qemu_clock_get_main_loop_timerlist(QEMUClockType type);
202 
203 /**
204  * qemu_clock_nofify:
205  * @type: the clock type
206  *
207  * Call the notifier callback connected with the default timer
208  * list linked to the clock, or qemu_notify() if none.
209  */
210 void qemu_clock_notify(QEMUClockType type);
211 
212 /**
213  * qemu_clock_enable:
214  * @type: the clock type
215  * @enabled: true to enable, false to disable
216  *
217  * Enable or disable a clock
218  * Disabling the clock will wait for related timerlists to stop
219  * executing qemu_run_timers.  Thus, this functions should not
220  * be used from the callback of a timer that is based on @clock.
221  * Doing so would cause a deadlock.
222  *
223  * Caller should hold BQL.
224  */
225 void qemu_clock_enable(QEMUClockType type, bool enabled);
226 
227 /**
228  * qemu_clock_run_timers:
229  * @type: clock on which to operate
230  *
231  * Run all the timers associated with the default timer list
232  * of a clock.
233  *
234  * Returns: true if any timer ran.
235  */
236 bool qemu_clock_run_timers(QEMUClockType type);
237 
238 /**
239  * qemu_clock_run_all_timers:
240  *
241  * Run all the timers associated with the default timer list
242  * of every clock.
243  *
244  * Returns: true if any timer ran.
245  */
246 bool qemu_clock_run_all_timers(void);
247 
248 
249 /*
250  * QEMUTimerList
251  */
252 
253 /**
254  * timerlist_new:
255  * @type: the clock type to associate with the timerlist
256  * @cb: the callback to call on notification
257  * @opaque: the opaque pointer to pass to the callback
258  *
259  * Create a new timerlist associated with the clock of
260  * type @type.
261  *
262  * Returns: a pointer to the QEMUTimerList created
263  */
264 QEMUTimerList *timerlist_new(QEMUClockType type,
265                              QEMUTimerListNotifyCB *cb, void *opaque);
266 
267 /**
268  * timerlist_free:
269  * @timer_list: the timer list to free
270  *
271  * Frees a timer_list. It must have no active timers.
272  */
273 void timerlist_free(QEMUTimerList *timer_list);
274 
275 /**
276  * timerlist_has_timers:
277  * @timer_list: the timer list to operate on
278  *
279  * Determine whether a timer list has active timers
280  *
281  * Note that this function should not be used when other threads also access
282  * the timer list.  The return value may be outdated by the time it is acted
283  * upon.
284  *
285  * Returns: true if the timer list has timers.
286  */
287 bool timerlist_has_timers(QEMUTimerList *timer_list);
288 
289 /**
290  * timerlist_expired:
291  * @timer_list: the timer list to operate on
292  *
293  * Determine whether a timer list has any timers which
294  * are expired.
295  *
296  * Returns: true if the timer list has timers which
297  * have expired.
298  */
299 bool timerlist_expired(QEMUTimerList *timer_list);
300 
301 /**
302  * timerlist_deadline_ns:
303  * @timer_list: the timer list to operate on
304  *
305  * Determine the deadline for a timer_list, i.e.
306  * the number of nanoseconds until the first timer
307  * expires. Return -1 if there are no timers.
308  *
309  * Returns: the number of nanoseconds until the earliest
310  * timer expires -1 if none
311  */
312 int64_t timerlist_deadline_ns(QEMUTimerList *timer_list);
313 
314 /**
315  * timerlist_get_clock:
316  * @timer_list: the timer list to operate on
317  *
318  * Determine the clock type associated with a timer list.
319  *
320  * Returns: the clock type associated with the
321  * timer list.
322  */
323 QEMUClockType timerlist_get_clock(QEMUTimerList *timer_list);
324 
325 /**
326  * timerlist_run_timers:
327  * @timer_list: the timer list to use
328  *
329  * Call all expired timers associated with the timer list.
330  *
331  * Returns: true if any timer expired
332  */
333 bool timerlist_run_timers(QEMUTimerList *timer_list);
334 
335 /**
336  * timerlist_notify:
337  * @timer_list: the timer list to use
338  *
339  * call the notifier callback associated with the timer list.
340  */
341 void timerlist_notify(QEMUTimerList *timer_list);
342 
343 /*
344  * QEMUTimerListGroup
345  */
346 
347 /**
348  * timerlistgroup_init:
349  * @tlg: the timer list group
350  * @cb: the callback to call when a notify is required
351  * @opaque: the opaque pointer to be passed to the callback.
352  *
353  * Initialise a timer list group. This must already be
354  * allocated in memory and zeroed. The notifier callback is
355  * called whenever a clock in the timer list group is
356  * reenabled or whenever a timer associated with any timer
357  * list is modified. If @cb is specified as null, qemu_notify()
358  * is used instead.
359  */
360 void timerlistgroup_init(QEMUTimerListGroup *tlg,
361                          QEMUTimerListNotifyCB *cb, void *opaque);
362 
363 /**
364  * timerlistgroup_deinit:
365  * @tlg: the timer list group
366  *
367  * Deinitialise a timer list group. This must already be
368  * initialised. Note the memory is not freed.
369  */
370 void timerlistgroup_deinit(QEMUTimerListGroup *tlg);
371 
372 /**
373  * timerlistgroup_run_timers:
374  * @tlg: the timer list group
375  *
376  * Run the timers associated with a timer list group.
377  * This will run timers on multiple clocks.
378  *
379  * Returns: true if any timer callback ran
380  */
381 bool timerlistgroup_run_timers(QEMUTimerListGroup *tlg);
382 
383 /**
384  * timerlistgroup_deadline_ns:
385  * @tlg: the timer list group
386  *
387  * Determine the deadline of the soonest timer to
388  * expire associated with any timer list linked to
389  * the timer list group. Only clocks suitable for
390  * deadline calculation are included.
391  *
392  * Returns: the deadline in nanoseconds or -1 if no
393  * timers are to expire.
394  */
395 int64_t timerlistgroup_deadline_ns(QEMUTimerListGroup *tlg);
396 
397 /*
398  * QEMUTimer
399  */
400 
401 /**
402  * timer_init_full:
403  * @ts: the timer to be initialised
404  * @timer_list_group: (optional) the timer list group to attach the timer to
405  * @type: the clock type to use
406  * @scale: the scale value for the timer
407  * @attributes: 0, or one or more OR'ed QEMU_TIMER_ATTR_<id> values
408  * @cb: the callback to be called when the timer expires
409  * @opaque: the opaque pointer to be passed to the callback
410  *
411  * Initialise a timer with the given scale and attributes,
412  * and associate it with timer list for given clock @type in @timer_list_group
413  * (or default timer list group, if NULL).
414  * The caller is responsible for allocating the memory.
415  *
416  * You need not call an explicit deinit call. Simply make
417  * sure it is not on a list with timer_del.
418  */
419 void timer_init_full(QEMUTimer *ts,
420                      QEMUTimerListGroup *timer_list_group, QEMUClockType type,
421                      int scale, int attributes,
422                      QEMUTimerCB *cb, void *opaque);
423 
424 /**
425  * timer_init:
426  * @ts: the timer to be initialised
427  * @type: the clock to associate with the timer
428  * @scale: the scale value for the timer
429  * @cb: the callback to call when the timer expires
430  * @opaque: the opaque pointer to pass to the callback
431  *
432  * Initialize a timer with the given scale on the default timer list
433  * associated with the clock.
434  * See timer_init_full for details.
435  */
436 static inline void timer_init(QEMUTimer *ts, QEMUClockType type, int scale,
437                               QEMUTimerCB *cb, void *opaque)
438 {
439     timer_init_full(ts, NULL, type, scale, 0, cb, opaque);
440 }
441 
442 /**
443  * timer_init_ns:
444  * @ts: the timer to be initialised
445  * @type: the clock to associate with the timer
446  * @cb: the callback to call when the timer expires
447  * @opaque: the opaque pointer to pass to the callback
448  *
449  * Initialize a timer with nanosecond scale on the default timer list
450  * associated with the clock.
451  * See timer_init_full for details.
452  */
453 static inline void timer_init_ns(QEMUTimer *ts, QEMUClockType type,
454                                  QEMUTimerCB *cb, void *opaque)
455 {
456     timer_init(ts, type, SCALE_NS, cb, opaque);
457 }
458 
459 /**
460  * timer_init_us:
461  * @ts: the timer to be initialised
462  * @type: the clock to associate with the timer
463  * @cb: the callback to call when the timer expires
464  * @opaque: the opaque pointer to pass to the callback
465  *
466  * Initialize a timer with microsecond scale on the default timer list
467  * associated with the clock.
468  * See timer_init_full for details.
469  */
470 static inline void timer_init_us(QEMUTimer *ts, QEMUClockType type,
471                                  QEMUTimerCB *cb, void *opaque)
472 {
473     timer_init(ts, type, SCALE_US, cb, opaque);
474 }
475 
476 /**
477  * timer_init_ms:
478  * @ts: the timer to be initialised
479  * @type: the clock to associate with the timer
480  * @cb: the callback to call when the timer expires
481  * @opaque: the opaque pointer to pass to the callback
482  *
483  * Initialize a timer with millisecond scale on the default timer list
484  * associated with the clock.
485  * See timer_init_full for details.
486  */
487 static inline void timer_init_ms(QEMUTimer *ts, QEMUClockType type,
488                                  QEMUTimerCB *cb, void *opaque)
489 {
490     timer_init(ts, type, SCALE_MS, cb, opaque);
491 }
492 
493 /**
494  * timer_new_full:
495  * @timer_list_group: (optional) the timer list group to attach the timer to
496  * @type: the clock type to use
497  * @scale: the scale value for the timer
498  * @attributes: 0, or one or more OR'ed QEMU_TIMER_ATTR_<id> values
499  * @cb: the callback to be called when the timer expires
500  * @opaque: the opaque pointer to be passed to the callback
501  *
502  * Create a new timer with the given scale and attributes,
503  * and associate it with timer list for given clock @type in @timer_list_group
504  * (or default timer list group, if NULL).
505  * The memory is allocated by the function.
506  *
507  * This is not the preferred interface unless you know you
508  * are going to call timer_free. Use timer_init or timer_init_full instead.
509  *
510  * The default timer list has one special feature: in icount mode,
511  * %QEMU_CLOCK_VIRTUAL timers are run in the vCPU thread.  This is
512  * not true of other timer lists, which are typically associated
513  * with an AioContext---each of them runs its timer callbacks in its own
514  * AioContext thread.
515  *
516  * Returns: a pointer to the timer
517  */
518 static inline QEMUTimer *timer_new_full(QEMUTimerListGroup *timer_list_group,
519                                         QEMUClockType type,
520                                         int scale, int attributes,
521                                         QEMUTimerCB *cb, void *opaque)
522 {
523     QEMUTimer *ts = g_malloc0(sizeof(QEMUTimer));
524     timer_init_full(ts, timer_list_group, type, scale, attributes, cb, opaque);
525     return ts;
526 }
527 
528 /**
529  * timer_new:
530  * @type: the clock type to use
531  * @scale: the scale value for the timer
532  * @cb: the callback to be called when the timer expires
533  * @opaque: the opaque pointer to be passed to the callback
534  *
535  * Create a new timer with the given scale,
536  * and associate it with the default timer list for the clock type @type.
537  * See timer_new_full for details.
538  *
539  * Returns: a pointer to the timer
540  */
541 static inline QEMUTimer *timer_new(QEMUClockType type, int scale,
542                                    QEMUTimerCB *cb, void *opaque)
543 {
544     return timer_new_full(NULL, type, scale, 0, cb, opaque);
545 }
546 
547 /**
548  * timer_new_ns:
549  * @type: the clock type to associate with the timer
550  * @cb: the callback to call when the timer expires
551  * @opaque: the opaque pointer to pass to the callback
552  *
553  * Create a new timer with nanosecond scale on the default timer list
554  * associated with the clock.
555  * See timer_new_full for details.
556  *
557  * Returns: a pointer to the newly created timer
558  */
559 static inline QEMUTimer *timer_new_ns(QEMUClockType type, QEMUTimerCB *cb,
560                                       void *opaque)
561 {
562     return timer_new(type, SCALE_NS, cb, opaque);
563 }
564 
565 /**
566  * timer_new_us:
567  * @type: the clock type to associate with the timer
568  * @cb: the callback to call when the timer expires
569  * @opaque: the opaque pointer to pass to the callback
570  *
571  * Create a new timer with microsecond scale on the default timer list
572  * associated with the clock.
573  * See timer_new_full for details.
574  *
575  * Returns: a pointer to the newly created timer
576  */
577 static inline QEMUTimer *timer_new_us(QEMUClockType type, QEMUTimerCB *cb,
578                                       void *opaque)
579 {
580     return timer_new(type, SCALE_US, cb, opaque);
581 }
582 
583 /**
584  * timer_new_ms:
585  * @type: the clock type to associate with the timer
586  * @cb: the callback to call when the timer expires
587  * @opaque: the opaque pointer to pass to the callback
588  *
589  * Create a new timer with millisecond scale on the default timer list
590  * associated with the clock.
591  * See timer_new_full for details.
592  *
593  * Returns: a pointer to the newly created timer
594  */
595 static inline QEMUTimer *timer_new_ms(QEMUClockType type, QEMUTimerCB *cb,
596                                       void *opaque)
597 {
598     return timer_new(type, SCALE_MS, cb, opaque);
599 }
600 
601 /**
602  * timer_deinit:
603  * @ts: the timer to be de-initialised
604  *
605  * Deassociate the timer from any timerlist.  You should
606  * call timer_del before.  After this call, any further
607  * timer_del call cannot cause dangling pointer accesses
608  * even if the previously used timerlist is freed.
609  */
610 void timer_deinit(QEMUTimer *ts);
611 
612 /**
613  * timer_del:
614  * @ts: the timer
615  *
616  * Delete a timer from the active list.
617  *
618  * This function is thread-safe but the timer and its timer list must not be
619  * freed while this function is running.
620  */
621 void timer_del(QEMUTimer *ts);
622 
623 /**
624  * timer_free:
625  * @ts: the timer
626  *
627  * Free a timer. This will call timer_del() for you to remove
628  * the timer from the active list if it was still active.
629  */
630 static inline void timer_free(QEMUTimer *ts)
631 {
632     timer_del(ts);
633     g_free(ts);
634 }
635 
636 /**
637  * timer_mod_ns:
638  * @ts: the timer
639  * @expire_time: the expiry time in nanoseconds
640  *
641  * Modify a timer to expire at @expire_time
642  *
643  * This function is thread-safe but the timer and its timer list must not be
644  * freed while this function is running.
645  */
646 void timer_mod_ns(QEMUTimer *ts, int64_t expire_time);
647 
648 /**
649  * timer_mod_anticipate_ns:
650  * @ts: the timer
651  * @expire_time: the expiry time in nanoseconds
652  *
653  * Modify a timer to expire at @expire_time or the current time,
654  * whichever comes earlier.
655  *
656  * This function is thread-safe but the timer and its timer list must not be
657  * freed while this function is running.
658  */
659 void timer_mod_anticipate_ns(QEMUTimer *ts, int64_t expire_time);
660 
661 /**
662  * timer_mod:
663  * @ts: the timer
664  * @expire_time: the expire time in the units associated with the timer
665  *
666  * Modify a timer to expiry at @expire_time, taking into
667  * account the scale associated with the timer.
668  *
669  * This function is thread-safe but the timer and its timer list must not be
670  * freed while this function is running.
671  */
672 void timer_mod(QEMUTimer *ts, int64_t expire_timer);
673 
674 /**
675  * timer_mod_anticipate:
676  * @ts: the timer
677  * @expire_time: the expire time in the units associated with the timer
678  *
679  * Modify a timer to expire at @expire_time or the current time, whichever
680  * comes earlier, taking into account the scale associated with the timer.
681  *
682  * This function is thread-safe but the timer and its timer list must not be
683  * freed while this function is running.
684  */
685 void timer_mod_anticipate(QEMUTimer *ts, int64_t expire_time);
686 
687 /**
688  * timer_pending:
689  * @ts: the timer
690  *
691  * Determines whether a timer is pending (i.e. is on the
692  * active list of timers, whether or not it has not yet expired).
693  *
694  * Returns: true if the timer is pending
695  */
696 bool timer_pending(QEMUTimer *ts);
697 
698 /**
699  * timer_expired:
700  * @ts: the timer
701  * @current_time: the current time
702  *
703  * Determines whether a timer has expired.
704  *
705  * Returns: true if the timer has expired
706  */
707 bool timer_expired(QEMUTimer *timer_head, int64_t current_time);
708 
709 /**
710  * timer_expire_time_ns:
711  * @ts: the timer
712  *
713  * Determine the expiry time of a timer
714  *
715  * Returns: the expiry time in nanoseconds
716  */
717 uint64_t timer_expire_time_ns(QEMUTimer *ts);
718 
719 /**
720  * timer_get:
721  * @f: the file
722  * @ts: the timer
723  *
724  * Read a timer @ts from a file @f
725  */
726 void timer_get(QEMUFile *f, QEMUTimer *ts);
727 
728 /**
729  * timer_put:
730  * @f: the file
731  * @ts: the timer
732  */
733 void timer_put(QEMUFile *f, QEMUTimer *ts);
734 
735 /*
736  * General utility functions
737  */
738 
739 /**
740  * qemu_timeout_ns_to_ms:
741  * @ns: nanosecond timeout value
742  *
743  * Convert a nanosecond timeout value (or -1) to
744  * a millisecond value (or -1), always rounding up.
745  *
746  * Returns: millisecond timeout value
747  */
748 int qemu_timeout_ns_to_ms(int64_t ns);
749 
750 /**
751  * qemu_poll_ns:
752  * @fds: Array of file descriptors
753  * @nfds: number of file descriptors
754  * @timeout: timeout in nanoseconds
755  *
756  * Perform a poll like g_poll but with a timeout in nanoseconds.
757  * See g_poll documentation for further details.
758  *
759  * Returns: number of fds ready
760  */
761 int qemu_poll_ns(GPollFD *fds, guint nfds, int64_t timeout);
762 
763 /**
764  * qemu_soonest_timeout:
765  * @timeout1: first timeout in nanoseconds (or -1 for infinite)
766  * @timeout2: second timeout in nanoseconds (or -1 for infinite)
767  *
768  * Calculates the soonest of two timeout values. -1 means infinite, which
769  * is later than any other value.
770  *
771  * Returns: soonest timeout value in nanoseconds (or -1 for infinite)
772  */
773 static inline int64_t qemu_soonest_timeout(int64_t timeout1, int64_t timeout2)
774 {
775     /* we can abuse the fact that -1 (which means infinite) is a maximal
776      * value when cast to unsigned. As this is disgusting, it's kept in
777      * one inline function.
778      */
779     return ((uint64_t) timeout1 < (uint64_t) timeout2) ? timeout1 : timeout2;
780 }
781 
782 /**
783  * initclocks:
784  *
785  * Initialise the clock & timer infrastructure
786  */
787 void init_clocks(QEMUTimerListNotifyCB *notify_cb);
788 
789 static inline int64_t get_max_clock_jump(void)
790 {
791     /* This should be small enough to prevent excessive interrupts from being
792      * generated by the RTC on clock jumps, but large enough to avoid frequent
793      * unnecessary resets in idle VMs.
794      */
795     return 60 * NANOSECONDS_PER_SECOND;
796 }
797 
798 /**
799  * timer_deadline_ms:
800  *
801  * Returns the remaining miliseconds for @timer to expire, or zero
802  * if the timer is no longer pending.
803  */
804 int64_t timer_deadline_ms(QEMUTimer *timer);
805 
806 /*
807  * Low level clock functions
808  */
809 
810 /* get host real time in nanosecond */
811 static inline int64_t get_clock_realtime(void)
812 {
813     struct timeval tv;
814 
815     gettimeofday(&tv, NULL);
816     return tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000);
817 }
818 
819 extern int64_t clock_start;
820 
821 /* Warning: don't insert tracepoints into these functions, they are
822    also used by simpletrace backend and tracepoints would cause
823    an infinite recursion! */
824 #ifdef _WIN32
825 extern int64_t clock_freq;
826 
827 static inline int64_t get_clock(void)
828 {
829     LARGE_INTEGER ti;
830     QueryPerformanceCounter(&ti);
831     return muldiv64(ti.QuadPart, NANOSECONDS_PER_SECOND, clock_freq);
832 }
833 
834 #else
835 
836 extern int use_rt_clock;
837 
838 static inline int64_t get_clock(void)
839 {
840     if (use_rt_clock) {
841         struct timespec ts;
842         clock_gettime(CLOCK_MONOTONIC, &ts);
843         return ts.tv_sec * 1000000000LL + ts.tv_nsec;
844     } else {
845         /* XXX: using gettimeofday leads to problems if the date
846            changes, so it should be avoided. */
847         return get_clock_realtime();
848     }
849 }
850 #endif
851 
852 /*******************************************/
853 /* host CPU ticks (if available) */
854 
855 #if defined(_ARCH_PPC)
856 
857 static inline int64_t cpu_get_host_ticks(void)
858 {
859     int64_t retval;
860 #ifdef _ARCH_PPC64
861     /* This reads timebase in one 64bit go and includes Cell workaround from:
862        http://ozlabs.org/pipermail/linuxppc-dev/2006-October/027052.html
863     */
864     __asm__ __volatile__ ("mftb    %0\n\t"
865                           "cmpwi   %0,0\n\t"
866                           "beq-    $-8"
867                           : "=r" (retval));
868 #else
869     /* http://ozlabs.org/pipermail/linuxppc-dev/1999-October/003889.html */
870     unsigned long junk;
871     __asm__ __volatile__ ("mfspr   %1,269\n\t"  /* mftbu */
872                           "mfspr   %L0,268\n\t" /* mftb */
873                           "mfspr   %0,269\n\t"  /* mftbu */
874                           "cmpw    %0,%1\n\t"
875                           "bne     $-16"
876                           : "=r" (retval), "=r" (junk));
877 #endif
878     return retval;
879 }
880 
881 #elif defined(__i386__)
882 
883 static inline int64_t cpu_get_host_ticks(void)
884 {
885     int64_t val;
886     asm volatile ("rdtsc" : "=A" (val));
887     return val;
888 }
889 
890 #elif defined(__x86_64__)
891 
892 static inline int64_t cpu_get_host_ticks(void)
893 {
894     uint32_t low,high;
895     int64_t val;
896     asm volatile("rdtsc" : "=a" (low), "=d" (high));
897     val = high;
898     val <<= 32;
899     val |= low;
900     return val;
901 }
902 
903 #elif defined(__hppa__)
904 
905 static inline int64_t cpu_get_host_ticks(void)
906 {
907     int val;
908     asm volatile ("mfctl %%cr16, %0" : "=r"(val));
909     return val;
910 }
911 
912 #elif defined(__s390__)
913 
914 static inline int64_t cpu_get_host_ticks(void)
915 {
916     int64_t val;
917     asm volatile("stck 0(%1)" : "=m" (val) : "a" (&val) : "cc");
918     return val;
919 }
920 
921 #elif defined(__sparc__)
922 
923 static inline int64_t cpu_get_host_ticks (void)
924 {
925 #if defined(_LP64)
926     uint64_t        rval;
927     asm volatile("rd %%tick,%0" : "=r"(rval));
928     return rval;
929 #else
930     /* We need an %o or %g register for this.  For recent enough gcc
931        there is an "h" constraint for that.  Don't bother with that.  */
932     union {
933         uint64_t i64;
934         struct {
935             uint32_t high;
936             uint32_t low;
937         }       i32;
938     } rval;
939     asm volatile("rd %%tick,%%g1; srlx %%g1,32,%0; mov %%g1,%1"
940                  : "=r"(rval.i32.high), "=r"(rval.i32.low) : : "g1");
941     return rval.i64;
942 #endif
943 }
944 
945 #elif defined(__mips__) && \
946     ((defined(__mips_isa_rev) && __mips_isa_rev >= 2) || defined(__linux__))
947 /*
948  * binutils wants to use rdhwr only on mips32r2
949  * but as linux kernel emulate it, it's fine
950  * to use it.
951  *
952  */
953 #define MIPS_RDHWR(rd, value) {                         \
954         __asm__ __volatile__ (".set   push\n\t"         \
955                               ".set mips32r2\n\t"       \
956                               "rdhwr  %0, "rd"\n\t"     \
957                               ".set   pop"              \
958                               : "=r" (value));          \
959     }
960 
961 static inline int64_t cpu_get_host_ticks(void)
962 {
963     /* On kernels >= 2.6.25 rdhwr <reg>, $2 and $3 are emulated */
964     uint32_t count;
965     static uint32_t cyc_per_count = 0;
966 
967     if (!cyc_per_count) {
968         MIPS_RDHWR("$3", cyc_per_count);
969     }
970 
971     MIPS_RDHWR("$2", count);
972     return (int64_t)(count * cyc_per_count);
973 }
974 
975 #elif defined(__alpha__)
976 
977 static inline int64_t cpu_get_host_ticks(void)
978 {
979     uint64_t cc;
980     uint32_t cur, ofs;
981 
982     asm volatile("rpcc %0" : "=r"(cc));
983     cur = cc;
984     ofs = cc >> 32;
985     return cur - ofs;
986 }
987 
988 #else
989 /* The host CPU doesn't have an easily accessible cycle counter.
990    Just return a monotonically increasing value.  This will be
991    totally wrong, but hopefully better than nothing.  */
992 static inline int64_t cpu_get_host_ticks(void)
993 {
994     return get_clock();
995 }
996 #endif
997 
998 #ifdef CONFIG_PROFILER
999 static inline int64_t profile_getclock(void)
1000 {
1001     return get_clock();
1002 }
1003 
1004 extern int64_t dev_time;
1005 #endif
1006 
1007 #endif
1008