i8254: Rework & fix interaction with HPET in legacy mode
commitce967e2f33861b0e17753f97fa4527b5943c94b6
authorJan Kiszka <jan.kiszka@siemens.com>
Wed, 1 Feb 2012 19:31:41 +0000 (1 20:31 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 17 Feb 2012 15:58:22 +0000 (17 09:58 -0600)
tree3f5c160e2b43162aa2dfda85eeb4813f20ebade4
parent319ba9f52737fc79de5c2c6abd059933398b72d5
i8254: Rework & fix interaction with HPET in legacy mode

When the HPET enters legacy mode, the IRQ output of the PIT is
suppressed and replaced by the HPET timer 0. But the current code to
emulate this was broken in many ways. It reset the PIT state after
re-enabling, it worked against a stale static PIT structure, and it did
not properly saved/restored the IRQ output mask in the PIT vmstate.

This patch solves the PIT IRQ control in a different way. On x86, it
both redirects the PIT IRQ to the HPET, just like the RTC. But it also
keeps the control line from the HPET to the PIT. This allows to disable
the PIT QEMU timer when it is not needed. The PIT's view on the control
line state is now saved in the same format that qemu-kvm is already
using.

Note that, in contrast to the suppressed RTC IRQ line, we do not need to
save/restore the PIT line state in the HPET. As we trigger a PIT IRQ
update via the control line, the line state is reconstructed on mode
switch.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
hw/hpet.c
hw/hpet_emul.h
hw/i8254.c
hw/i8254.h
hw/pc.c