]> git.proxmox.com Git - qemu.git/commitdiff
Mov muldiv64 to qemu-common.h (Thus unbreaking gus)
authormalc <av1474@comtv.ru>
Fri, 29 Oct 2010 21:41:01 +0000 (01:41 +0400)
committermalc <av1474@comtv.ru>
Fri, 29 Oct 2010 21:41:01 +0000 (01:41 +0400)
Signed-off-by: malc <av1474@comtv.ru>
hw/omap_clk.c
qemu-common.h
qemu-timer.h

index 10c9c4308c2dde9b46ad68e8f815a17f048c8983..6bcabef8acb7112f6f44443820337a235e766ce4 100644 (file)
@@ -20,7 +20,6 @@
  */
 #include "hw.h"
 #include "omap.h"
-#include "qemu-timer.h" /* for muldiv64() */
 
 struct clk {
     const char *name;
index 2fbc27f9f0f5869d99ba2934a2c81db42aeb13db..d31f3661d249a243695fff34c3bfbf6d371c08ff 100644 (file)
@@ -309,6 +309,30 @@ static inline uint8_t from_bcd(uint8_t val)
     return ((val >> 4) * 10) + (val & 0x0f);
 }
 
+/* compute with 96 bit intermediate result: (a*b)/c */
+static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
+{
+    union {
+        uint64_t ll;
+        struct {
+#ifdef HOST_WORDS_BIGENDIAN
+            uint32_t high, low;
+#else
+            uint32_t low, high;
+#endif
+        } l;
+    } u, res;
+    uint64_t rl, rh;
+
+    u.ll = a;
+    rl = (uint64_t)u.l.low * (uint64_t)b;
+    rh = (uint64_t)u.l.high * (uint64_t)b;
+    rh += (rl >> 32);
+    res.l.high = rh / c;
+    res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
+    return res.ll;
+}
+
 #include "module.h"
 
 #endif
index 299e3877680130ab484391ced54d491eb84a55d2..8cd8f8368ad50c1802bf9b05a59f008370f54af3 100644 (file)
@@ -59,30 +59,6 @@ static inline int64_t get_ticks_per_sec(void)
     return 1000000000LL;
 }
 
-/* compute with 96 bit intermediate result: (a*b)/c */
-static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
-{
-    union {
-        uint64_t ll;
-        struct {
-#ifdef HOST_WORDS_BIGENDIAN
-            uint32_t high, low;
-#else
-            uint32_t low, high;
-#endif
-        } l;
-    } u, res;
-    uint64_t rl, rh;
-
-    u.ll = a;
-    rl = (uint64_t)u.l.low * (uint64_t)b;
-    rh = (uint64_t)u.l.high * (uint64_t)b;
-    rh += (rl >> 32);
-    res.l.high = rh / c;
-    res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
-    return res.ll;
-}
-
 /* real time host monotonic timer */
 static inline int64_t get_clock_realtime(void)
 {