ide: model HOB correctly
commitbe8c9423dec7bd0a0af7f57ecbbcb2718db72555
authorJohn Snow <jsnow@redhat.com>
Fri, 24 Jul 2020 05:22:56 +0000 (24 01:22 -0400)
committerJohn Snow <jsnow@redhat.com>
Thu, 1 Oct 2020 17:04:16 +0000 (1 13:04 -0400)
treef23794815c661ccc27ee8edd5de1afc7500c2bf5
parentf14bc040b073257f0eb8200042634c0d15f59ea7
ide: model HOB correctly

I have been staring at this FIXME for years and I never knew what it
meant. I finally stumbled across it!

When writing to the command registers, the old value is shifted into a
HOB copy of the register and the new value is written into the primary
register. When reading registers, the value retrieved is dependent on
the HOB bit in the CONTROL register.

By setting bit 7 (0x80) in CONTROL, any register read will, if it has
one, yield the HOB value for that register instead.

Our code has a problem: We were using bit 7 of the DEVICE register to
model this. We use bus->cmd roughly as the control register already, as
it stores the value from ide_ctrl_write.

Lastly, all command register writes reset the HOB, so fix that, too.

Signed-off-by: John Snow <jsnow@redhat.com>
hw/ide/core.c
include/hw/ide/internal.h