mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
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>
This commit is contained in:
parent
f14bc040b0
commit
be8c9423de
2 changed files with 8 additions and 8 deletions
|
@ -58,6 +58,7 @@ OBJECT_DECLARE_SIMPLE_TYPE(IDEBus, IDE_BUS)
|
|||
#define TAG_MASK 0xf8
|
||||
|
||||
/* Bits of Device Control register */
|
||||
#define IDE_CTRL_HOB 0x80
|
||||
#define IDE_CTRL_RESET 0x04
|
||||
#define IDE_CTRL_DISABLE_IRQ 0x02
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue