aboutsummaryrefslogtreecommitdiff
path: root/hw/scsi
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2021-03-04 22:10:37 +0000
committerMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2021-03-07 10:39:05 +0000
commit6e3fafa8bb0c22b57db1f7e2c7edf41545ba5294 (patch)
treeae6f64ff40a41ae596bc7c91da76895952d3386f /hw/scsi
parent761bef75dd0bcad72e6041172f9bb573c9237ee4 (diff)
esp: use pdma_origin directly in esp_pdma_read()/esp_pdma_write()
This is the first step in removing get_pdma_buf() from esp.c. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20210304221103.6369-17-mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'hw/scsi')
-rw-r--r--hw/scsi/esp.c34
1 files changed, 28 insertions, 6 deletions
diff --git a/hw/scsi/esp.c b/hw/scsi/esp.c
index 0fafc866a4..58be98f047 100644
--- a/hw/scsi/esp.c
+++ b/hw/scsi/esp.c
@@ -153,16 +153,38 @@ static uint8_t *get_pdma_buf(ESPState *s)
static uint8_t esp_pdma_read(ESPState *s)
{
- uint8_t *buf = get_pdma_buf(s);
-
- return buf[s->pdma_cur++];
+ switch (s->pdma_origin) {
+ case PDMA:
+ return s->pdma_buf[s->pdma_cur++];
+ case TI:
+ return s->ti_buf[s->pdma_cur++];
+ case CMD:
+ return s->cmdbuf[s->pdma_cur++];
+ case ASYNC:
+ return s->async_buf[s->pdma_cur++];
+ default:
+ g_assert_not_reached();
+ }
}
static void esp_pdma_write(ESPState *s, uint8_t val)
{
- uint8_t *buf = get_pdma_buf(s);
-
- buf[s->pdma_cur++] = val;
+ switch (s->pdma_origin) {
+ case PDMA:
+ s->pdma_buf[s->pdma_cur++] = val;
+ break;
+ case TI:
+ s->ti_buf[s->pdma_cur++] = val;
+ break;
+ case CMD:
+ s->cmdbuf[s->pdma_cur++] = val;
+ break;
+ case ASYNC:
+ s->async_buf[s->pdma_cur++] = val;
+ break;
+ default:
+ g_assert_not_reached();
+ }
}
static int get_cmd_cb(ESPState *s)