kvm: i8254: Fix conversion of in-kernel to userspace state
commit0cdd3d14447da1a04e778c219c77db8b96f9cf33
authorJan Kiszka <jan.kiszka@siemens.com>
Wed, 6 Jun 2012 14:28:42 +0000 (6 16:28 +0200)
committerAvi Kivity <avi@redhat.com>
Mon, 11 Jun 2012 11:18:23 +0000 (11 14:18 +0300)
treea59e85a1e9a7ed208704f811e978b7342a63e185
parent0614cb82ca27bdffb83864e693fc29e29182667b
kvm: i8254: Fix conversion of in-kernel to userspace state

Due to a offset between the clock used to generate the in-kernel
count_load_time (CLOCK_MONOTONIC) and the clock used for processing this
in userspace (vm_clock), reading back the output of PIT channel 2 via
port 0x61 was broken. One use cases that suffered from it was the CPU
frequency calibration of SeaBIOS, which also affected IDE/AHCI timeouts.

This fixes it by calibrating the offset between both clocks on
kvm_pit_get and adjusting the kernel value before saving it in the
userspace state. As the calibration only works while the vm_clock is
running, we cache the in-kernel state across stopped phases.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
hw/kvm/i8254.c