Skip to content

Commit

Permalink
ide: prepare to move restart to common code
Browse files Browse the repository at this point in the history
This patch adds the restart_dma callback and adjusts
the ide_restart_dma function to utilize this callback
to call the BMDMA-specific restart code instead of statically
executing BMDMA-specific code.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 1424708286-16483-3-git-send-email-jsnow@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
bonzini authored and kevmw committed Mar 10, 2015
1 parent 06b95b1 commit bd8892c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions hw/ide/internal.h
Expand Up @@ -437,6 +437,7 @@ struct IDEDMAOps {
DMAu32Func *commit_buf;
DMAIntFunc *rw_buf;
DMAIntFunc *set_unit;
DMAVoidFunc *restart_dma;
DMAStopFunc *set_inactive;
DMAVoidFunc *cmd_done;
DMARestartFunc *restart_cb;
Expand Down
12 changes: 7 additions & 5 deletions hw/ide/pci.c
Expand Up @@ -184,8 +184,9 @@ static void bmdma_set_inactive(IDEDMA *dma, bool more)
}
}

static void bmdma_restart_dma(BMDMAState *bm)
static void bmdma_restart_dma(IDEDMA *dma)
{
BMDMAState *bm = DO_UPCAST(BMDMAState, dma, dma);
IDEState *s = bmdma_active_if(bm);

ide_set_sector(s, bm->sector_num);
Expand All @@ -195,13 +196,13 @@ static void bmdma_restart_dma(BMDMAState *bm)

static void ide_restart_dma(IDEState *s, enum ide_dma_cmd dma_cmd)
{
BMDMAState *bm = DO_UPCAST(BMDMAState, dma, s->bus->dma);

bmdma_restart_dma(bm);
if (s->bus->dma->ops->restart_dma) {
s->bus->dma->ops->restart_dma(s->bus->dma);
}
s->io_buffer_index = 0;
s->io_buffer_size = 0;
s->dma_cmd = dma_cmd;
bmdma_start_dma(&bm->dma, s, ide_dma_cb);
ide_start_dma(s, ide_dma_cb);
}

/* TODO This should be common IDE code */
Expand Down Expand Up @@ -532,6 +533,7 @@ static const struct IDEDMAOps bmdma_ops = {
.prepare_buf = bmdma_prepare_buf,
.rw_buf = bmdma_rw_buf,
.set_unit = bmdma_set_unit,
.restart_dma = bmdma_restart_dma,
.set_inactive = bmdma_set_inactive,
.restart_cb = bmdma_restart_cb,
.reset = bmdma_reset,
Expand Down

0 comments on commit bd8892c

Please sign in to comment.