ide: fix DMA register transitions
commit9da82227caa74fb6fbea224dad91fe5b7cc115a5
authorJohn Snow <jsnow@redhat.com>
Thu, 29 Sep 2016 18:46:15 +0000 (29 14:46 -0400)
committerJohn Snow <jsnow@redhat.com>
Thu, 29 Sep 2016 18:46:15 +0000 (29 14:46 -0400)
tree72e9cb4ad0492255431654354c434db8290dbaf8
parentc640f2849ee8775fe1bbd7a2772610aa77816f9f
ide: fix DMA register transitions

ATA8-APT defines the state transitions for both a host controller and
for the hardware device during the lifecycle of a DMA transfer, in
section 9.7 "DMA command protocol."

One of the interesting tidbits here is that when a device transitions
from DDMA0 ("Prepare state") to DDMA1 ("Data_Transfer State"), it can
choose to set either BSY or DRQ to signal this transition, but not both.

as ide_sector_dma_start is the last point in our preparation process
before we begin the real data transfer process (for either AHCI or BMDMA),
this is the correct transition point for DDMA0 to DDMA1.

I have chosen !BSY && DRQ for QEMU to make the transition from DDMA0 the
most obvious.

Reported-by: Benjamin David Lunt <fys@fysnet.net>
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Tested-by: Stefan Weil <sw@weilnetz.de>
Message-id: 1470175541-19344-1-git-send-email-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
hw/ide/core.c