]> git.proxmox.com Git - qemu.git/commitdiff
Fix Linux task preemption on Versatile board
authorAurelien Jarno <aurelien@aurel32.net>
Mon, 14 Sep 2009 22:30:41 +0000 (00:30 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Mon, 14 Sep 2009 22:30:41 +0000 (00:30 +0200)
Backport from master:

  Recent versions of the Linux kernel will not preempt CPU-intensive
  tasks unless the clock used by sched_clock() works.  On -M versatilepb
  that's the 24MHz timer in the system controller.  It's a very simple
  timer, so implement it.

Signed-off-by: Daniel Jacobowitz <dan@codesourcery.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
hw/arm_sysctl.c

index bb005c80151a0b31eaac86af393e6a8ab66b6c8b..cf5d46e972403dd5fd7bbb10a4f9b96d2d001552 100644 (file)
@@ -7,6 +7,8 @@
  * This code is licenced under the GPL.
  */
 
+#include "hw.h"
+#include "qemu-timer.h"
 #include "sysbus.h"
 #include "primecell.h"
 #include "sysemu.h"
@@ -71,8 +73,7 @@ static uint32_t arm_sysctl_read(void *opaque, target_phys_addr_t offset)
     case 0x58: /* BOOTCS */
         return 0;
     case 0x5c: /* 24MHz */
-        /* ??? not implemented.  */
-        return 0;
+        return muldiv64(qemu_get_clock(vm_clock), 24000000, ticks_per_sec);
     case 0x60: /* MISC */
         return 0;
     case 0x84: /* PROCID0 */