]>
Commit | Line | Data |
---|---|---|
d76d1650 AJ |
1 | /* |
2 | * PowerPC KVM support | |
3 | * | |
4 | * Copyright IBM Corp. 2008 | |
5 | * | |
6 | * Authors: | |
7 | * Hollis Blanchard <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
10 | * See the COPYING file in the top-level directory. | |
11 | * | |
12 | */ | |
13 | ||
14 | #include "qemu-common.h" | |
1de7afc9 | 15 | #include "qemu/timer.h" |
d76d1650 | 16 | #include "kvm_ppc.h" |
9c17d615 | 17 | #include "sysemu/device_tree.h" |
7bb438b6 | 18 | #include "qemu/main-loop.h" |
d76d1650 AJ |
19 | |
20 | #define PROC_DEVTREE_PATH "/proc/device-tree" | |
21 | ||
22 | static QEMUTimer *kvmppc_timer; | |
23 | static unsigned int kvmppc_timer_rate; | |
24 | ||
d76d1650 AJ |
25 | static void kvmppc_timer_hack(void *opaque) |
26 | { | |
74e26c17 | 27 | qemu_notify_event(); |
bc72ad67 | 28 | timer_mod(kvmppc_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + kvmppc_timer_rate); |
d76d1650 AJ |
29 | } |
30 | ||
31 | void kvmppc_init(void) | |
32 | { | |
33 | /* XXX The only reason KVM yields control back to qemu is device IO. Since | |
34 | * an idle guest does no IO, qemu's device model will never get a chance to | |
5cbdb3a3 | 35 | * run. So, until QEMU gains IO threads, we create this timer to ensure |
d76d1650 | 36 | * that the device model gets a chance to run. */ |
6ee093c9 | 37 | kvmppc_timer_rate = get_ticks_per_sec() / 10; |
bc72ad67 AB |
38 | kvmppc_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, &kvmppc_timer_hack, NULL); |
39 | timer_mod(kvmppc_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + kvmppc_timer_rate); | |
d76d1650 AJ |
40 | } |
41 |