esp.c 17.8 KB
Newer Older
B
bellard 已提交
1
/*
2
 * QEMU ESP/NCR53C9x emulation
3
 *
P
pbrook 已提交
4
 * Copyright (c) 2005-2006 Fabrice Bellard
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24

P
pbrook 已提交
25 26
#include "hw.h"
#include "scsi-disk.h"
27
#include "scsi.h"
B
bellard 已提交
28 29

/* debug ESP card */
B
bellard 已提交
30
//#define DEBUG_ESP
B
bellard 已提交
31

32
/*
33 34
 * On Sparc32, this is the ESP (NCR53C90) part of chip STP2000 (Master I/O),
 * also produced as NCR89C100. See
35 36 37 38 39
 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR89C100.txt
 * and
 * http://www.ibiblio.org/pub/historic-linux/early-ports/Sparc/NCR/NCR53C9X.txt
 */

B
bellard 已提交
40 41 42 43
#ifdef DEBUG_ESP
#define DPRINTF(fmt, args...) \
do { printf("ESP: " fmt , ##args); } while (0)
#else
B
blueswir1 已提交
44
#define DPRINTF(fmt, args...) do {} while (0)
B
bellard 已提交
45 46
#endif

B
blueswir1 已提交
47
#define ESP_REGS 16
P
pbrook 已提交
48
#define TI_BUFSZ 32
49

P
pbrook 已提交
50
typedef struct ESPState ESPState;
B
bellard 已提交
51

P
pbrook 已提交
52
struct ESPState {
53
    uint32_t it_shift;
54
    qemu_irq irq;
B
blueswir1 已提交
55 56
    uint8_t rregs[ESP_REGS];
    uint8_t wregs[ESP_REGS];
57
    int32_t ti_size;
58 59
    uint32_t ti_rptr, ti_wptr;
    uint8_t ti_buf[TI_BUFSZ];
B
blueswir1 已提交
60 61
    uint32_t sense;
    uint32_t dma;
T
ths 已提交
62
    SCSIDevice *scsi_dev[ESP_MAX_DEVS];
P
pbrook 已提交
63
    SCSIDevice *current_dev;
P
pbrook 已提交
64
    uint8_t cmdbuf[TI_BUFSZ];
B
blueswir1 已提交
65 66
    uint32_t cmdlen;
    uint32_t do_cmd;
P
pbrook 已提交
67

P
pbrook 已提交
68
    /* The amount of data left in the current DMA transfer.  */
P
pbrook 已提交
69
    uint32_t dma_left;
P
pbrook 已提交
70 71 72
    /* The size of the current DMA transfer.  Zero if no transfer is in
       progress.  */
    uint32_t dma_counter;
P
pbrook 已提交
73
    uint8_t *async_buf;
P
pbrook 已提交
74
    uint32_t async_len;
75 76 77

    espdma_memory_read_write dma_memory_read;
    espdma_memory_read_write dma_memory_write;
78
    void *dma_opaque;
P
pbrook 已提交
79
};
B
bellard 已提交
80

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
#define ESP_TCLO   0x0
#define ESP_TCMID  0x1
#define ESP_FIFO   0x2
#define ESP_CMD    0x3
#define ESP_RSTAT  0x4
#define ESP_WBUSID 0x4
#define ESP_RINTR  0x5
#define ESP_WSEL   0x5
#define ESP_RSEQ   0x6
#define ESP_WSYNTP 0x6
#define ESP_RFLAGS 0x7
#define ESP_WSYNO  0x7
#define ESP_CFG1   0x8
#define ESP_RRES1  0x9
#define ESP_WCCF   0x9
#define ESP_RRES2  0xa
#define ESP_WTEST  0xa
#define ESP_CFG2   0xb
#define ESP_CFG3   0xc
#define ESP_RES3   0xd
#define ESP_TCHI   0xe
#define ESP_RES4   0xf

#define CMD_DMA 0x80
#define CMD_CMD 0x7f

#define CMD_NOP      0x00
#define CMD_FLUSH    0x01
#define CMD_RESET    0x02
#define CMD_BUSRESET 0x03
#define CMD_TI       0x10
#define CMD_ICCS     0x11
#define CMD_MSGACC   0x12
#define CMD_SATN     0x1a
#define CMD_SELATN   0x42
#define CMD_SELATNS  0x43
#define CMD_ENSEL    0x44

B
bellard 已提交
119 120 121 122 123 124
#define STAT_DO 0x00
#define STAT_DI 0x01
#define STAT_CD 0x02
#define STAT_ST 0x03
#define STAT_MI 0x06
#define STAT_MO 0x07
125
#define STAT_PIO_MASK 0x06
B
bellard 已提交
126 127

#define STAT_TC 0x10
P
pbrook 已提交
128 129
#define STAT_PE 0x20
#define STAT_GE 0x40
B
blueswir1 已提交
130
#define STAT_INT 0x80
B
bellard 已提交
131 132 133 134

#define INTR_FC 0x08
#define INTR_BS 0x10
#define INTR_DC 0x20
B
bellard 已提交
135
#define INTR_RST 0x80
B
bellard 已提交
136 137 138 139

#define SEQ_0 0x0
#define SEQ_CD 0x4

140 141 142 143 144 145
#define CFG1_RESREPT 0x40

#define CFG2_MASK 0x15

#define TCHI_FAS100A 0x4

B
blueswir1 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
static void esp_raise_irq(ESPState *s)
{
    if (!(s->rregs[ESP_RSTAT] & STAT_INT)) {
        s->rregs[ESP_RSTAT] |= STAT_INT;
        qemu_irq_raise(s->irq);
    }
}

static void esp_lower_irq(ESPState *s)
{
    if (s->rregs[ESP_RSTAT] & STAT_INT) {
        s->rregs[ESP_RSTAT] &= ~STAT_INT;
        qemu_irq_lower(s->irq);
    }
}

B
blueswir1 已提交
162
static uint32_t get_cmd(ESPState *s, uint8_t *buf)
B
bellard 已提交
163
{
P
pbrook 已提交
164
    uint32_t dmalen;
B
bellard 已提交
165 166
    int target;

167 168
    dmalen = s->rregs[ESP_TCLO] | (s->rregs[ESP_TCMID] << 8);
    target = s->wregs[ESP_WBUSID] & 7;
P
pbrook 已提交
169
    DPRINTF("get_cmd: len %d target %d\n", dmalen, target);
170
    if (s->dma) {
171
        s->dma_memory_read(s->dma_opaque, buf, dmalen);
172
    } else {
B
blueswir1 已提交
173 174 175
        buf[0] = 0;
        memcpy(&buf[1], s->ti_buf, dmalen);
        dmalen++;
176
    }
P
pbrook 已提交
177

B
bellard 已提交
178
    s->ti_size = 0;
179 180
    s->ti_rptr = 0;
    s->ti_wptr = 0;
B
bellard 已提交
181

P
pbrook 已提交
182 183
    if (s->current_dev) {
        /* Started a new command before the old one finished.  Cancel it.  */
T
ths 已提交
184
        s->current_dev->cancel_io(s->current_dev, 0);
P
pbrook 已提交
185 186 187
        s->async_len = 0;
    }

T
ths 已提交
188
    if (target >= ESP_MAX_DEVS || !s->scsi_dev[target]) {
P
pbrook 已提交
189
        // No such drive
B
blueswir1 已提交
190
        s->rregs[ESP_RSTAT] = 0;
191 192
        s->rregs[ESP_RINTR] = INTR_DC;
        s->rregs[ESP_RSEQ] = SEQ_0;
B
blueswir1 已提交
193
        esp_raise_irq(s);
B
blueswir1 已提交
194
        return 0;
B
bellard 已提交
195
    }
P
pbrook 已提交
196
    s->current_dev = s->scsi_dev[target];
P
pbrook 已提交
197 198 199 200 201 202 203 204 205 206
    return dmalen;
}

static void do_cmd(ESPState *s, uint8_t *buf)
{
    int32_t datalen;
    int lun;

    DPRINTF("do_cmd: busid 0x%x\n", buf[0]);
    lun = buf[0] & 7;
T
ths 已提交
207
    datalen = s->current_dev->send_command(s->current_dev, 0, &buf[1], lun);
208 209
    s->ti_size = datalen;
    if (datalen != 0) {
B
blueswir1 已提交
210
        s->rregs[ESP_RSTAT] = STAT_TC;
P
pbrook 已提交
211
        s->dma_left = 0;
P
pbrook 已提交
212
        s->dma_counter = 0;
P
pbrook 已提交
213
        if (datalen > 0) {
214
            s->rregs[ESP_RSTAT] |= STAT_DI;
T
ths 已提交
215
            s->current_dev->read_data(s->current_dev, 0);
P
pbrook 已提交
216
        } else {
217
            s->rregs[ESP_RSTAT] |= STAT_DO;
T
ths 已提交
218
            s->current_dev->write_data(s->current_dev, 0);
B
bellard 已提交
219
        }
B
bellard 已提交
220
    }
221 222
    s->rregs[ESP_RINTR] = INTR_BS | INTR_FC;
    s->rregs[ESP_RSEQ] = SEQ_CD;
B
blueswir1 已提交
223
    esp_raise_irq(s);
B
bellard 已提交
224 225
}

P
pbrook 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
static void handle_satn(ESPState *s)
{
    uint8_t buf[32];
    int len;

    len = get_cmd(s, buf);
    if (len)
        do_cmd(s, buf);
}

static void handle_satn_stop(ESPState *s)
{
    s->cmdlen = get_cmd(s, s->cmdbuf);
    if (s->cmdlen) {
        DPRINTF("Set ATN & Stop: cmdlen %d\n", s->cmdlen);
        s->do_cmd = 1;
B
blueswir1 已提交
242
        s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
243 244
        s->rregs[ESP_RINTR] = INTR_BS | INTR_FC;
        s->rregs[ESP_RSEQ] = SEQ_CD;
B
blueswir1 已提交
245
        esp_raise_irq(s);
P
pbrook 已提交
246 247 248
    }
}

P
pbrook 已提交
249
static void write_response(ESPState *s)
B
bellard 已提交
250
{
P
pbrook 已提交
251 252 253
    DPRINTF("Transfer status (sense=%d)\n", s->sense);
    s->ti_buf[0] = s->sense;
    s->ti_buf[1] = 0;
254
    if (s->dma) {
255
        s->dma_memory_write(s->dma_opaque, s->ti_buf, 2);
B
blueswir1 已提交
256
        s->rregs[ESP_RSTAT] = STAT_TC | STAT_ST;
257 258
        s->rregs[ESP_RINTR] = INTR_BS | INTR_FC;
        s->rregs[ESP_RSEQ] = SEQ_CD;
259
    } else {
B
blueswir1 已提交
260 261 262
        s->ti_size = 2;
        s->ti_rptr = 0;
        s->ti_wptr = 0;
263
        s->rregs[ESP_RFLAGS] = 2;
264
    }
B
blueswir1 已提交
265
    esp_raise_irq(s);
B
bellard 已提交
266
}
267

P
pbrook 已提交
268 269
static void esp_dma_done(ESPState *s)
{
B
blueswir1 已提交
270
    s->rregs[ESP_RSTAT] |= STAT_TC;
271 272 273 274 275
    s->rregs[ESP_RINTR] = INTR_BS;
    s->rregs[ESP_RSEQ] = 0;
    s->rregs[ESP_RFLAGS] = 0;
    s->rregs[ESP_TCLO] = 0;
    s->rregs[ESP_TCMID] = 0;
B
blueswir1 已提交
276
    esp_raise_irq(s);
P
pbrook 已提交
277 278
}

P
pbrook 已提交
279 280
static void esp_do_dma(ESPState *s)
{
281
    uint32_t len;
P
pbrook 已提交
282
    int to_device;
P
pbrook 已提交
283

284
    to_device = (s->ti_size < 0);
P
pbrook 已提交
285
    len = s->dma_left;
P
pbrook 已提交
286 287
    if (s->do_cmd) {
        DPRINTF("command len %d + %d\n", s->cmdlen, len);
288
        s->dma_memory_read(s->dma_opaque, &s->cmdbuf[s->cmdlen], len);
P
pbrook 已提交
289 290 291 292 293
        s->ti_size = 0;
        s->cmdlen = 0;
        s->do_cmd = 0;
        do_cmd(s, s->cmdbuf);
        return;
P
pbrook 已提交
294 295 296 297 298 299 300 301 302
    }
    if (s->async_len == 0) {
        /* Defer until data is available.  */
        return;
    }
    if (len > s->async_len) {
        len = s->async_len;
    }
    if (to_device) {
303
        s->dma_memory_read(s->dma_opaque, s->async_buf, len);
P
pbrook 已提交
304
    } else {
305
        s->dma_memory_write(s->dma_opaque, s->async_buf, len);
P
pbrook 已提交
306 307 308 309
    }
    s->dma_left -= len;
    s->async_buf += len;
    s->async_len -= len;
P
pbrook 已提交
310 311 312 313
    if (to_device)
        s->ti_size += len;
    else
        s->ti_size -= len;
P
pbrook 已提交
314
    if (s->async_len == 0) {
P
pbrook 已提交
315
        if (to_device) {
316
            // ti_size is negative
T
ths 已提交
317
            s->current_dev->write_data(s->current_dev, 0);
P
pbrook 已提交
318
        } else {
T
ths 已提交
319
            s->current_dev->read_data(s->current_dev, 0);
P
pbrook 已提交
320 321 322 323 324 325
            /* If there is still data to be read from the device then
               complete the DMA operation immeriately.  Otherwise defer
               until the scsi layer has completed.  */
            if (s->dma_left == 0 && s->ti_size > 0) {
                esp_dma_done(s);
            }
P
pbrook 已提交
326
        }
P
pbrook 已提交
327 328
    } else {
        /* Partially filled a scsi buffer. Complete immediately.  */
P
pbrook 已提交
329 330
        esp_dma_done(s);
    }
P
pbrook 已提交
331 332
}

P
pbrook 已提交
333 334
static void esp_command_complete(void *opaque, int reason, uint32_t tag,
                                 uint32_t arg)
P
pbrook 已提交
335 336 337
{
    ESPState *s = (ESPState *)opaque;

P
pbrook 已提交
338 339 340 341 342
    if (reason == SCSI_REASON_DONE) {
        DPRINTF("SCSI Command complete\n");
        if (s->ti_size != 0)
            DPRINTF("SCSI command completed unexpectedly\n");
        s->ti_size = 0;
P
pbrook 已提交
343 344 345
        s->dma_left = 0;
        s->async_len = 0;
        if (arg)
P
pbrook 已提交
346
            DPRINTF("Command failed\n");
P
pbrook 已提交
347
        s->sense = arg;
348
        s->rregs[ESP_RSTAT] = STAT_ST;
P
pbrook 已提交
349 350
        esp_dma_done(s);
        s->current_dev = NULL;
P
pbrook 已提交
351 352
    } else {
        DPRINTF("transfer %d/%d\n", s->dma_left, s->ti_size);
P
pbrook 已提交
353
        s->async_len = arg;
T
ths 已提交
354
        s->async_buf = s->current_dev->get_buf(s->current_dev, 0);
P
pbrook 已提交
355
        if (s->dma_left) {
P
pbrook 已提交
356
            esp_do_dma(s);
P
pbrook 已提交
357 358 359 360 361
        } else if (s->dma_counter != 0 && s->ti_size <= 0) {
            /* If this was the last part of a DMA transfer then the
               completion interrupt is deferred to here.  */
            esp_dma_done(s);
        }
P
pbrook 已提交
362
    }
P
pbrook 已提交
363 364
}

B
bellard 已提交
365 366
static void handle_ti(ESPState *s)
{
P
pbrook 已提交
367
    uint32_t dmalen, minlen;
B
bellard 已提交
368

369
    dmalen = s->rregs[ESP_TCLO] | (s->rregs[ESP_TCMID] << 8);
P
pbrook 已提交
370 371 372
    if (dmalen==0) {
      dmalen=0x10000;
    }
P
pbrook 已提交
373
    s->dma_counter = dmalen;
P
pbrook 已提交
374

P
pbrook 已提交
375 376
    if (s->do_cmd)
        minlen = (dmalen < 32) ? dmalen : 32;
377 378
    else if (s->ti_size < 0)
        minlen = (dmalen < -s->ti_size) ? dmalen : -s->ti_size;
P
pbrook 已提交
379 380
    else
        minlen = (dmalen < s->ti_size) ? dmalen : s->ti_size;
P
pbrook 已提交
381
    DPRINTF("Transfer Information len %d\n", minlen);
382
    if (s->dma) {
P
pbrook 已提交
383
        s->dma_left = minlen;
384
        s->rregs[ESP_RSTAT] &= ~STAT_TC;
P
pbrook 已提交
385
        esp_do_dma(s);
P
pbrook 已提交
386 387 388 389 390 391 392 393
    } else if (s->do_cmd) {
        DPRINTF("command len %d\n", s->cmdlen);
        s->ti_size = 0;
        s->cmdlen = 0;
        s->do_cmd = 0;
        do_cmd(s, s->cmdbuf);
        return;
    }
B
bellard 已提交
394 395
}

B
blueswir1 已提交
396
static void esp_reset(void *opaque)
B
bellard 已提交
397 398
{
    ESPState *s = opaque;
399

B
blueswir1 已提交
400 401
    esp_lower_irq(s);

B
blueswir1 已提交
402 403
    memset(s->rregs, 0, ESP_REGS);
    memset(s->wregs, 0, ESP_REGS);
404
    s->rregs[ESP_TCHI] = TCHI_FAS100A; // Indicate fas100a
P
pbrook 已提交
405 406 407 408
    s->ti_size = 0;
    s->ti_rptr = 0;
    s->ti_wptr = 0;
    s->dma = 0;
P
pbrook 已提交
409
    s->do_cmd = 0;
B
bellard 已提交
410 411
}

412 413 414 415 416 417
static void parent_esp_reset(void *opaque, int irq, int level)
{
    if (level)
        esp_reset(opaque);
}

B
bellard 已提交
418 419 420 421 422
static uint32_t esp_mem_readb(void *opaque, target_phys_addr_t addr)
{
    ESPState *s = opaque;
    uint32_t saddr;

423
    saddr = (addr >> s->it_shift) & (ESP_REGS - 1);
B
bellard 已提交
424
    DPRINTF("read reg[%d]: 0x%2.2x\n", saddr, s->rregs[saddr]);
B
bellard 已提交
425
    switch (saddr) {
426
    case ESP_FIFO:
B
blueswir1 已提交
427 428
        if (s->ti_size > 0) {
            s->ti_size--;
429
            if ((s->rregs[ESP_RSTAT] & STAT_PIO_MASK) == 0) {
P
pbrook 已提交
430
                /* Data in/out.  */
P
pbrook 已提交
431
                fprintf(stderr, "esp: PIO data read not implemented\n");
432
                s->rregs[ESP_FIFO] = 0;
P
pbrook 已提交
433
            } else {
434
                s->rregs[ESP_FIFO] = s->ti_buf[s->ti_rptr++];
P
pbrook 已提交
435
            }
B
blueswir1 已提交
436
            esp_raise_irq(s);
B
blueswir1 已提交
437 438
        }
        if (s->ti_size == 0) {
439 440 441
            s->ti_rptr = 0;
            s->ti_wptr = 0;
        }
B
blueswir1 已提交
442
        break;
443
    case ESP_RINTR:
P
pbrook 已提交
444
        // Clear interrupt/error status bits
B
blueswir1 已提交
445 446
        s->rregs[ESP_RSTAT] &= ~(STAT_GE | STAT_PE);
        esp_lower_irq(s);
B
bellard 已提交
447
        break;
B
bellard 已提交
448
    default:
B
blueswir1 已提交
449
        break;
B
bellard 已提交
450
    }
B
bellard 已提交
451
    return s->rregs[saddr];
B
bellard 已提交
452 453 454 455 456 457 458
}

static void esp_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
{
    ESPState *s = opaque;
    uint32_t saddr;

459
    saddr = (addr >> s->it_shift) & (ESP_REGS - 1);
460 461
    DPRINTF("write reg[%d]: 0x%2.2x -> 0x%2.2x\n", saddr, s->wregs[saddr],
            val);
B
bellard 已提交
462
    switch (saddr) {
463 464 465
    case ESP_TCLO:
    case ESP_TCMID:
        s->rregs[ESP_RSTAT] &= ~STAT_TC;
466
        break;
467
    case ESP_FIFO:
P
pbrook 已提交
468 469
        if (s->do_cmd) {
            s->cmdbuf[s->cmdlen++] = val & 0xff;
470
        } else if ((s->rregs[ESP_RSTAT] & STAT_PIO_MASK) == 0) {
P
pbrook 已提交
471 472 473
            uint8_t buf;
            buf = val & 0xff;
            s->ti_size--;
P
pbrook 已提交
474
            fprintf(stderr, "esp: PIO data write not implemented\n");
P
pbrook 已提交
475 476 477 478
        } else {
            s->ti_size++;
            s->ti_buf[s->ti_wptr++] = val & 0xff;
        }
B
blueswir1 已提交
479
        break;
480
    case ESP_CMD:
481
        s->rregs[saddr] = val;
482
        if (val & CMD_DMA) {
B
blueswir1 已提交
483
            s->dma = 1;
P
pbrook 已提交
484
            /* Reload DMA counter.  */
485 486
            s->rregs[ESP_TCLO] = s->wregs[ESP_TCLO];
            s->rregs[ESP_TCMID] = s->wregs[ESP_TCMID];
B
blueswir1 已提交
487 488 489
        } else {
            s->dma = 0;
        }
490 491
        switch(val & CMD_CMD) {
        case CMD_NOP:
B
blueswir1 已提交
492 493
            DPRINTF("NOP (%2.2x)\n", val);
            break;
494
        case CMD_FLUSH:
B
blueswir1 已提交
495
            DPRINTF("Flush FIFO (%2.2x)\n", val);
B
bellard 已提交
496
            //s->ti_size = 0;
497 498
            s->rregs[ESP_RINTR] = INTR_FC;
            s->rregs[ESP_RSEQ] = 0;
499
            s->rregs[ESP_RFLAGS] = 0;
B
blueswir1 已提交
500
            break;
501
        case CMD_RESET:
B
blueswir1 已提交
502 503 504
            DPRINTF("Chip reset (%2.2x)\n", val);
            esp_reset(s);
            break;
505
        case CMD_BUSRESET:
B
blueswir1 已提交
506
            DPRINTF("Bus reset (%2.2x)\n", val);
507 508
            s->rregs[ESP_RINTR] = INTR_RST;
            if (!(s->wregs[ESP_CFG1] & CFG1_RESREPT)) {
B
blueswir1 已提交
509
                esp_raise_irq(s);
B
bellard 已提交
510
            }
B
blueswir1 已提交
511
            break;
512
        case CMD_TI:
B
blueswir1 已提交
513 514
            handle_ti(s);
            break;
515
        case CMD_ICCS:
B
blueswir1 已提交
516 517 518
            DPRINTF("Initiator Command Complete Sequence (%2.2x)\n", val);
            write_response(s);
            break;
519
        case CMD_MSGACC:
B
blueswir1 已提交
520 521
            DPRINTF("Message Accepted (%2.2x)\n", val);
            write_response(s);
522 523
            s->rregs[ESP_RINTR] = INTR_DC;
            s->rregs[ESP_RSEQ] = 0;
B
blueswir1 已提交
524
            break;
525
        case CMD_SATN:
B
blueswir1 已提交
526 527
            DPRINTF("Set ATN (%2.2x)\n", val);
            break;
528
        case CMD_SELATN:
B
blueswir1 已提交
529 530 531
            DPRINTF("Set ATN (%2.2x)\n", val);
            handle_satn(s);
            break;
532
        case CMD_SELATNS:
B
blueswir1 已提交
533 534 535
            DPRINTF("Set ATN & stop (%2.2x)\n", val);
            handle_satn_stop(s);
            break;
536
        case CMD_ENSEL:
B
blueswir1 已提交
537 538
            DPRINTF("Enable selection (%2.2x)\n", val);
            break;
B
blueswir1 已提交
539 540 541 542 543
        default:
            DPRINTF("Unhandled ESP command (%2.2x)\n", val);
            break;
        }
        break;
544
    case ESP_WBUSID ... ESP_WSYNO:
B
blueswir1 已提交
545
        break;
546
    case ESP_CFG1:
547 548
        s->rregs[saddr] = val;
        break;
549
    case ESP_WCCF ... ESP_WTEST:
550
        break;
551 552
    case ESP_CFG2:
        s->rregs[saddr] = val & CFG2_MASK;
B
bellard 已提交
553
        break;
554
    case ESP_CFG3 ... ESP_RES4:
555 556
        s->rregs[saddr] = val;
        break;
B
bellard 已提交
557
    default:
B
blueswir1 已提交
558
        break;
B
bellard 已提交
559
    }
B
bellard 已提交
560
    s->wregs[saddr] = val;
B
bellard 已提交
561 562 563 564
}

static CPUReadMemoryFunc *esp_mem_read[3] = {
    esp_mem_readb,
565 566
    NULL,
    NULL,
B
bellard 已提交
567 568 569 570
};

static CPUWriteMemoryFunc *esp_mem_write[3] = {
    esp_mem_writeb,
571
    NULL,
572
    esp_mem_writeb,
B
bellard 已提交
573 574 575 576 577
};

static void esp_save(QEMUFile *f, void *opaque)
{
    ESPState *s = opaque;
B
bellard 已提交
578

B
blueswir1 已提交
579 580
    qemu_put_buffer(f, s->rregs, ESP_REGS);
    qemu_put_buffer(f, s->wregs, ESP_REGS);
581
    qemu_put_be32s(f, (uint32_t *)&s->ti_size);
582 583 584
    qemu_put_be32s(f, &s->ti_rptr);
    qemu_put_be32s(f, &s->ti_wptr);
    qemu_put_buffer(f, s->ti_buf, TI_BUFSZ);
B
blueswir1 已提交
585
    qemu_put_be32s(f, &s->sense);
586
    qemu_put_be32s(f, &s->dma);
B
blueswir1 已提交
587 588 589 590 591
    qemu_put_buffer(f, s->cmdbuf, TI_BUFSZ);
    qemu_put_be32s(f, &s->cmdlen);
    qemu_put_be32s(f, &s->do_cmd);
    qemu_put_be32s(f, &s->dma_left);
    // There should be no transfers in progress, so dma_counter is not saved
B
bellard 已提交
592 593 594 595 596
}

static int esp_load(QEMUFile *f, void *opaque, int version_id)
{
    ESPState *s = opaque;
597

B
blueswir1 已提交
598 599
    if (version_id != 3)
        return -EINVAL; // Cannot emulate 2
B
bellard 已提交
600

B
blueswir1 已提交
601 602
    qemu_get_buffer(f, s->rregs, ESP_REGS);
    qemu_get_buffer(f, s->wregs, ESP_REGS);
603
    qemu_get_be32s(f, (uint32_t *)&s->ti_size);
604 605 606
    qemu_get_be32s(f, &s->ti_rptr);
    qemu_get_be32s(f, &s->ti_wptr);
    qemu_get_buffer(f, s->ti_buf, TI_BUFSZ);
B
blueswir1 已提交
607
    qemu_get_be32s(f, &s->sense);
608
    qemu_get_be32s(f, &s->dma);
B
blueswir1 已提交
609 610 611 612
    qemu_get_buffer(f, s->cmdbuf, TI_BUFSZ);
    qemu_get_be32s(f, &s->cmdlen);
    qemu_get_be32s(f, &s->do_cmd);
    qemu_get_be32s(f, &s->dma_left);
B
bellard 已提交
613

B
bellard 已提交
614 615 616
    return 0;
}

T
ths 已提交
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
void esp_scsi_attach(void *opaque, BlockDriverState *bd, int id)
{
    ESPState *s = (ESPState *)opaque;

    if (id < 0) {
        for (id = 0; id < ESP_MAX_DEVS; id++) {
            if (s->scsi_dev[id] == NULL)
                break;
        }
    }
    if (id >= ESP_MAX_DEVS) {
        DPRINTF("Bad Device ID %d\n", id);
        return;
    }
    if (s->scsi_dev[id]) {
        DPRINTF("Destroying device %d\n", id);
T
ths 已提交
633
        s->scsi_dev[id]->destroy(s->scsi_dev[id]);
T
ths 已提交
634 635 636
    }
    DPRINTF("Attaching block device %d\n", id);
    /* Command queueing is not implemented.  */
637 638 639
    s->scsi_dev[id] = scsi_generic_init(bd, 0, esp_command_complete, s);
    if (s->scsi_dev[id] == NULL)
        s->scsi_dev[id] = scsi_disk_init(bd, 0, esp_command_complete, s);
T
ths 已提交
640 641
}

642
void *esp_init(target_phys_addr_t espaddr, int it_shift,
643 644
               espdma_memory_read_write dma_memory_read,
               espdma_memory_read_write dma_memory_write,
645
               void *dma_opaque, qemu_irq irq, qemu_irq *reset)
B
bellard 已提交
646 647
{
    ESPState *s;
648
    int esp_io_memory;
B
bellard 已提交
649 650 651

    s = qemu_mallocz(sizeof(ESPState));
    if (!s)
652
        return NULL;
B
bellard 已提交
653

654
    s->irq = irq;
655
    s->it_shift = it_shift;
656 657
    s->dma_memory_read = dma_memory_read;
    s->dma_memory_write = dma_memory_write;
658
    s->dma_opaque = dma_opaque;
B
bellard 已提交
659 660

    esp_io_memory = cpu_register_io_memory(0, esp_mem_read, esp_mem_write, s);
661
    cpu_register_physical_memory(espaddr, ESP_REGS << it_shift, esp_io_memory);
B
bellard 已提交
662 663 664

    esp_reset(s);

B
blueswir1 已提交
665
    register_savevm("esp", espaddr, 3, esp_save, esp_load, s);
B
bellard 已提交
666 667
    qemu_register_reset(esp_reset, s);

668 669
    *reset = *qemu_allocate_irqs(parent_esp_reset, s, 1);

670 671
    return s;
}