From fc4d65da26449765724098520d36ad51959e1d8a Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sat, 29 Nov 2008 16:51:02 +0000 Subject: [PATCH] Fix command len detection (esp_3_cmdlen.diff) When command is not DMA, TCMID and TCLO registers are not filled. Use command buffer len instead Signed-off-by: Herve Poussineau git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5813 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/esp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/esp.c b/hw/esp.c index 33f4432173..10c465f4d4 100644 --- a/hw/esp.c +++ b/hw/esp.c @@ -167,16 +167,16 @@ static uint32_t get_cmd(ESPState *s, uint8_t *buf) uint32_t dmalen; int target; - dmalen = s->rregs[ESP_TCLO] | (s->rregs[ESP_TCMID] << 8); target = s->wregs[ESP_WBUSID] & BUSID_DID; - DPRINTF("get_cmd: len %d target %d\n", dmalen, target); if (s->dma) { + dmalen = s->rregs[ESP_TCLO] | (s->rregs[ESP_TCMID] << 8); s->dma_memory_read(s->dma_opaque, buf, dmalen); } else { + dmalen = s->ti_size; + memcpy(buf, s->ti_buf, dmalen); buf[0] = 0; - memcpy(&buf[1], s->ti_buf, dmalen); - dmalen++; } + DPRINTF("get_cmd: len %d target %d\n", dmalen, target); s->ti_size = 0; s->ti_rptr = 0; -- 2.11.4.GIT