summaryrefslogtreecommitdiffstats
path: root/hw/ide/core.c
diff options
context:
space:
mode:
authorPaolo Bonzini2018-06-06 21:09:51 +0200
committerJohn Snow2018-06-08 19:36:25 +0200
commitbed9bcfa3275a9cfee82846a9f521c4858a9739a (patch)
tree2a240e83cbbbf0438045e526abee224d0c9a1d9e /hw/ide/core.c
parentahci: move PIO Setup FIS before transfer, fix it for ATAPI commands (diff)
downloadqemu-bed9bcfa3275a9cfee82846a9f521c4858a9739a.tar.gz
qemu-bed9bcfa3275a9cfee82846a9f521c4858a9739a.tar.xz
qemu-bed9bcfa3275a9cfee82846a9f521c4858a9739a.zip
ide: push end_transfer_func out of start_transfer callback, rename callback
Now that end_transfer_func is a tail call in ahci_start_transfer, formalize the fact that the callback (of which ahci_start_transfer is the sole implementation) takes care of the transfer too: rename it to pio_transfer and, if it is present, call the end_transfer_func as soon as it returns. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20180606190955.20845-4-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'hw/ide/core.c')
-rw-r--r--hw/ide/core.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/hw/ide/core.c b/hw/ide/core.c
index cc9ca28c33..1a6cb337bf 100644
--- a/hw/ide/core.c
+++ b/hw/ide/core.c
@@ -526,16 +526,18 @@ static void ide_clear_retry(IDEState *s)
void ide_transfer_start(IDEState *s, uint8_t *buf, int size,
EndTransferFunc *end_transfer_func)
{
- s->end_transfer_func = end_transfer_func;
s->data_ptr = buf;
s->data_end = buf + size;
ide_set_retry(s);
if (!(s->status & ERR_STAT)) {
s->status |= DRQ_STAT;
}
- if (s->bus->dma->ops->start_transfer) {
- s->bus->dma->ops->start_transfer(s->bus->dma);
+ if (!s->bus->dma->ops->pio_transfer) {
+ s->end_transfer_func = end_transfer_func;
+ return;
}
+ s->bus->dma->ops->pio_transfer(s->bus->dma);
+ end_transfer_func(s);
}
static void ide_cmd_done(IDEState *s)