qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] timer.h: Provide monotonic time for ARM guests
@ 2017-04-15 19:29 Pranith Kumar
  2017-04-17 18:42 ` Peter Maydell
  0 siblings, 1 reply; 6+ messages in thread
From: Pranith Kumar @ 2017-04-15 19:29 UTC (permalink / raw)
  To: Paolo Bonzini, Cao jin, Michael Tokarev, Alex Bennée,
	Edgar E. Iglesias, open list:All patches CC here

Tested and confirmed that the stretch i386 debian qcow2 image on a
raspberry pi 2 works.

Fixes: LP#: 893208 <https://bugs.launchpad.net/qemu/+bug/893208/>
Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
---
 include/qemu/timer.h | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/include/qemu/timer.h b/include/qemu/timer.h
index e1742f2f3d..14c9558da4 100644
--- a/include/qemu/timer.h
+++ b/include/qemu/timer.h
@@ -1015,6 +1015,16 @@ static inline int64_t cpu_get_host_ticks(void)
     return cur - ofs;
 }
 
+#elif defined(__arm__) || defined(__aarch64__)
+
+/* ARM does not have a user-space readble cycle counter available.
+ * This is a compromise to get monotonically increasing time.
+ */
+static inline int64_t cpu_get_host_ticks(void)
+{
+    return get_clock();
+}
+
 #else
 /* The host CPU doesn't have an easily accessible cycle counter.
    Just return a monotonically increasing value.  This will be
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-04-20 13:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-15 19:29 [Qemu-devel] [PATCH] timer.h: Provide monotonic time for ARM guests Pranith Kumar
2017-04-17 18:42 ` Peter Maydell
2017-04-17 18:55   ` Pranith Kumar
2017-04-18  9:56     ` Paolo Bonzini
2017-04-18 19:19       ` Pranith Kumar
2017-04-20 13:58         ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).