esp.c 18.5 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
Paul Brook 已提交
25
#include "sysbus.h"
G
Gerd Hoffmann 已提交
26
#include "scsi.h"
G
Gerd Hoffmann 已提交
27
#include "esp.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
#ifdef DEBUG_ESP
41 42
#define DPRINTF(fmt, ...)                                       \
    do { printf("ESP: " fmt , ## __VA_ARGS__); } while (0)
B
bellard 已提交
43
#else
44
#define DPRINTF(fmt, ...) do {} while (0)
B
bellard 已提交
45 46
#endif

47 48
#define ESP_ERROR(fmt, ...)                                             \
    do { printf("ESP ERROR: %s: " fmt, __func__ , ## __VA_ARGS__); } while (0)
B
blueswir1 已提交
49

B
blueswir1 已提交
50
#define ESP_REGS 16
B
blueswir1 已提交
51
#define TI_BUFSZ 16
52

P
pbrook 已提交
53
typedef struct ESPState ESPState;
B
bellard 已提交
54

P
pbrook 已提交
55
struct ESPState {
P
Paul Brook 已提交
56
    SysBusDevice busdev;
57
    uint32_t it_shift;
58
    qemu_irq irq;
B
blueswir1 已提交
59 60
    uint8_t rregs[ESP_REGS];
    uint8_t wregs[ESP_REGS];
61
    int32_t ti_size;
62 63
    uint32_t ti_rptr, ti_wptr;
    uint8_t ti_buf[TI_BUFSZ];
B
blueswir1 已提交
64 65
    uint32_t sense;
    uint32_t dma;
66
    SCSIBus bus;
P
pbrook 已提交
67
    SCSIDevice *current_dev;
P
pbrook 已提交
68
    uint8_t cmdbuf[TI_BUFSZ];
B
blueswir1 已提交
69 70
    uint32_t cmdlen;
    uint32_t do_cmd;
P
pbrook 已提交
71

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

    espdma_memory_read_write dma_memory_read;
    espdma_memory_read_write dma_memory_write;
82
    void *dma_opaque;
P
pbrook 已提交
83
};
B
bellard 已提交
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
#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
B
Blue Swirl 已提交
118
#define CMD_PAD      0x18
119
#define CMD_SATN     0x1a
120
#define CMD_SEL      0x41
121 122 123 124
#define CMD_SELATN   0x42
#define CMD_SELATNS  0x43
#define CMD_ENSEL    0x44

B
bellard 已提交
125 126 127 128
#define STAT_DO 0x00
#define STAT_DI 0x01
#define STAT_CD 0x02
#define STAT_ST 0x03
B
blueswir1 已提交
129 130
#define STAT_MO 0x06
#define STAT_MI 0x07
131
#define STAT_PIO_MASK 0x06
B
bellard 已提交
132 133

#define STAT_TC 0x10
P
pbrook 已提交
134 135
#define STAT_PE 0x20
#define STAT_GE 0x40
B
blueswir1 已提交
136
#define STAT_INT 0x80
B
bellard 已提交
137

B
blueswir1 已提交
138 139
#define BUSID_DID 0x07

B
bellard 已提交
140 141 142
#define INTR_FC 0x08
#define INTR_BS 0x10
#define INTR_DC 0x20
B
bellard 已提交
143
#define INTR_RST 0x80
B
bellard 已提交
144 145 146 147

#define SEQ_0 0x0
#define SEQ_CD 0x4

148 149 150 151
#define CFG1_RESREPT 0x40

#define TCHI_FAS100A 0x4

B
blueswir1 已提交
152 153 154 155 156
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);
B
Blue Swirl 已提交
157
        DPRINTF("Raise IRQ\n");
B
blueswir1 已提交
158 159 160 161 162 163 164 165
    }
}

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
Blue Swirl 已提交
166
        DPRINTF("Lower IRQ\n");
B
blueswir1 已提交
167 168 169
    }
}

B
blueswir1 已提交
170
static uint32_t get_cmd(ESPState *s, uint8_t *buf)
B
bellard 已提交
171
{
P
pbrook 已提交
172
    uint32_t dmalen;
B
bellard 已提交
173 174
    int target;

B
blueswir1 已提交
175
    target = s->wregs[ESP_WBUSID] & BUSID_DID;
176
    if (s->dma) {
177
        dmalen = s->rregs[ESP_TCLO] | (s->rregs[ESP_TCMID] << 8);
178
        s->dma_memory_read(s->dma_opaque, buf, dmalen);
179
    } else {
180 181
        dmalen = s->ti_size;
        memcpy(buf, s->ti_buf, dmalen);
B
blueswir1 已提交
182
        buf[0] = 0;
183
    }
184
    DPRINTF("get_cmd: len %d target %d\n", dmalen, target);
P
pbrook 已提交
185

B
bellard 已提交
186
    s->ti_size = 0;
187 188
    s->ti_rptr = 0;
    s->ti_wptr = 0;
B
bellard 已提交
189

P
pbrook 已提交
190 191
    if (s->current_dev) {
        /* Started a new command before the old one finished.  Cancel it.  */
192
        s->current_dev->info->cancel_io(s->current_dev, 0);
P
pbrook 已提交
193 194 195
        s->async_len = 0;
    }

196
    if (target >= ESP_MAX_DEVS || !s->bus.devs[target]) {
P
pbrook 已提交
197
        // No such drive
B
blueswir1 已提交
198
        s->rregs[ESP_RSTAT] = 0;
199 200
        s->rregs[ESP_RINTR] = INTR_DC;
        s->rregs[ESP_RSEQ] = SEQ_0;
B
blueswir1 已提交
201
        esp_raise_irq(s);
B
blueswir1 已提交
202
        return 0;
B
bellard 已提交
203
    }
204
    s->current_dev = s->bus.devs[target];
P
pbrook 已提交
205 206 207
    return dmalen;
}

208
static void do_busid_cmd(ESPState *s, uint8_t *buf, uint8_t busid)
P
pbrook 已提交
209 210 211 212
{
    int32_t datalen;
    int lun;

213 214
    DPRINTF("do_busid_cmd: busid 0x%x\n", busid);
    lun = busid & 7;
215
    datalen = s->current_dev->info->send_command(s->current_dev, 0, buf, lun);
216 217
    s->ti_size = datalen;
    if (datalen != 0) {
B
blueswir1 已提交
218
        s->rregs[ESP_RSTAT] = STAT_TC;
P
pbrook 已提交
219
        s->dma_left = 0;
P
pbrook 已提交
220
        s->dma_counter = 0;
P
pbrook 已提交
221
        if (datalen > 0) {
222
            s->rregs[ESP_RSTAT] |= STAT_DI;
223
            s->current_dev->info->read_data(s->current_dev, 0);
P
pbrook 已提交
224
        } else {
225
            s->rregs[ESP_RSTAT] |= STAT_DO;
226
            s->current_dev->info->write_data(s->current_dev, 0);
B
bellard 已提交
227
        }
B
bellard 已提交
228
    }
229 230
    s->rregs[ESP_RINTR] = INTR_BS | INTR_FC;
    s->rregs[ESP_RSEQ] = SEQ_CD;
B
blueswir1 已提交
231
    esp_raise_irq(s);
B
bellard 已提交
232 233
}

234 235 236 237 238 239 240
static void do_cmd(ESPState *s, uint8_t *buf)
{
    uint8_t busid = buf[0];

    do_busid_cmd(s, &buf[1], busid);
}

P
pbrook 已提交
241 242 243 244 245 246 247 248 249 250
static void handle_satn(ESPState *s)
{
    uint8_t buf[32];
    int len;

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

251 252 253 254 255 256 257 258 259 260 261
static void handle_s_without_atn(ESPState *s)
{
    uint8_t buf[32];
    int len;

    len = get_cmd(s, buf);
    if (len) {
        do_busid_cmd(s, buf, 0);
    }
}

P
pbrook 已提交
262 263 264 265 266 267
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 已提交
268
        s->rregs[ESP_RSTAT] = STAT_TC | STAT_CD;
269 270
        s->rregs[ESP_RINTR] = INTR_BS | INTR_FC;
        s->rregs[ESP_RSEQ] = SEQ_CD;
B
blueswir1 已提交
271
        esp_raise_irq(s);
P
pbrook 已提交
272 273 274
    }
}

P
pbrook 已提交
275
static void write_response(ESPState *s)
B
bellard 已提交
276
{
P
pbrook 已提交
277 278 279
    DPRINTF("Transfer status (sense=%d)\n", s->sense);
    s->ti_buf[0] = s->sense;
    s->ti_buf[1] = 0;
280
    if (s->dma) {
281
        s->dma_memory_write(s->dma_opaque, s->ti_buf, 2);
B
blueswir1 已提交
282
        s->rregs[ESP_RSTAT] = STAT_TC | STAT_ST;
283 284
        s->rregs[ESP_RINTR] = INTR_BS | INTR_FC;
        s->rregs[ESP_RSEQ] = SEQ_CD;
285
    } else {
B
blueswir1 已提交
286 287 288
        s->ti_size = 2;
        s->ti_rptr = 0;
        s->ti_wptr = 0;
289
        s->rregs[ESP_RFLAGS] = 2;
290
    }
B
blueswir1 已提交
291
    esp_raise_irq(s);
B
bellard 已提交
292
}
293

P
pbrook 已提交
294 295
static void esp_dma_done(ESPState *s)
{
B
blueswir1 已提交
296
    s->rregs[ESP_RSTAT] |= STAT_TC;
297 298 299 300 301
    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 已提交
302
    esp_raise_irq(s);
P
pbrook 已提交
303 304
}

P
pbrook 已提交
305 306
static void esp_do_dma(ESPState *s)
{
307
    uint32_t len;
P
pbrook 已提交
308
    int to_device;
P
pbrook 已提交
309

310
    to_device = (s->ti_size < 0);
P
pbrook 已提交
311
    len = s->dma_left;
P
pbrook 已提交
312 313
    if (s->do_cmd) {
        DPRINTF("command len %d + %d\n", s->cmdlen, len);
314
        s->dma_memory_read(s->dma_opaque, &s->cmdbuf[s->cmdlen], len);
P
pbrook 已提交
315 316 317 318 319
        s->ti_size = 0;
        s->cmdlen = 0;
        s->do_cmd = 0;
        do_cmd(s, s->cmdbuf);
        return;
P
pbrook 已提交
320 321 322 323 324 325 326 327 328
    }
    if (s->async_len == 0) {
        /* Defer until data is available.  */
        return;
    }
    if (len > s->async_len) {
        len = s->async_len;
    }
    if (to_device) {
329
        s->dma_memory_read(s->dma_opaque, s->async_buf, len);
P
pbrook 已提交
330
    } else {
331
        s->dma_memory_write(s->dma_opaque, s->async_buf, len);
P
pbrook 已提交
332 333 334 335
    }
    s->dma_left -= len;
    s->async_buf += len;
    s->async_len -= len;
P
pbrook 已提交
336 337 338 339
    if (to_device)
        s->ti_size += len;
    else
        s->ti_size -= len;
P
pbrook 已提交
340
    if (s->async_len == 0) {
P
pbrook 已提交
341
        if (to_device) {
342
            // ti_size is negative
343
            s->current_dev->info->write_data(s->current_dev, 0);
P
pbrook 已提交
344
        } else {
345
            s->current_dev->info->read_data(s->current_dev, 0);
P
pbrook 已提交
346
            /* If there is still data to be read from the device then
B
blueswir1 已提交
347
               complete the DMA operation immediately.  Otherwise defer
P
pbrook 已提交
348 349 350 351
               until the scsi layer has completed.  */
            if (s->dma_left == 0 && s->ti_size > 0) {
                esp_dma_done(s);
            }
P
pbrook 已提交
352
        }
P
pbrook 已提交
353 354
    } else {
        /* Partially filled a scsi buffer. Complete immediately.  */
P
pbrook 已提交
355 356
        esp_dma_done(s);
    }
P
pbrook 已提交
357 358
}

359
static void esp_command_complete(SCSIBus *bus, int reason, uint32_t tag,
P
pbrook 已提交
360
                                 uint32_t arg)
P
pbrook 已提交
361
{
362
    ESPState *s = DO_UPCAST(ESPState, busdev.qdev, bus->qbus.parent);
P
pbrook 已提交
363

P
pbrook 已提交
364 365 366 367 368
    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 已提交
369 370 371
        s->dma_left = 0;
        s->async_len = 0;
        if (arg)
P
pbrook 已提交
372
            DPRINTF("Command failed\n");
P
pbrook 已提交
373
        s->sense = arg;
374
        s->rregs[ESP_RSTAT] = STAT_ST;
P
pbrook 已提交
375 376
        esp_dma_done(s);
        s->current_dev = NULL;
P
pbrook 已提交
377 378
    } else {
        DPRINTF("transfer %d/%d\n", s->dma_left, s->ti_size);
P
pbrook 已提交
379
        s->async_len = arg;
380
        s->async_buf = s->current_dev->info->get_buf(s->current_dev, 0);
P
pbrook 已提交
381
        if (s->dma_left) {
P
pbrook 已提交
382
            esp_do_dma(s);
P
pbrook 已提交
383 384 385 386 387
        } 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 已提交
388
    }
P
pbrook 已提交
389 390
}

B
bellard 已提交
391 392
static void handle_ti(ESPState *s)
{
P
pbrook 已提交
393
    uint32_t dmalen, minlen;
B
bellard 已提交
394

395
    dmalen = s->rregs[ESP_TCLO] | (s->rregs[ESP_TCMID] << 8);
P
pbrook 已提交
396 397 398
    if (dmalen==0) {
      dmalen=0x10000;
    }
P
pbrook 已提交
399
    s->dma_counter = dmalen;
P
pbrook 已提交
400

P
pbrook 已提交
401 402
    if (s->do_cmd)
        minlen = (dmalen < 32) ? dmalen : 32;
403 404
    else if (s->ti_size < 0)
        minlen = (dmalen < -s->ti_size) ? dmalen : -s->ti_size;
P
pbrook 已提交
405 406
    else
        minlen = (dmalen < s->ti_size) ? dmalen : s->ti_size;
P
pbrook 已提交
407
    DPRINTF("Transfer Information len %d\n", minlen);
408
    if (s->dma) {
P
pbrook 已提交
409
        s->dma_left = minlen;
410
        s->rregs[ESP_RSTAT] &= ~STAT_TC;
P
pbrook 已提交
411
        esp_do_dma(s);
P
pbrook 已提交
412 413 414 415 416 417 418 419
    } 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 已提交
420 421
}

B
Blue Swirl 已提交
422
static void esp_reset(DeviceState *d)
B
bellard 已提交
423
{
B
Blue Swirl 已提交
424
    ESPState *s = container_of(d, ESPState, busdev.qdev);
425

B
blueswir1 已提交
426 427
    memset(s->rregs, 0, ESP_REGS);
    memset(s->wregs, 0, ESP_REGS);
428
    s->rregs[ESP_TCHI] = TCHI_FAS100A; // Indicate fas100a
P
pbrook 已提交
429 430 431 432
    s->ti_size = 0;
    s->ti_rptr = 0;
    s->ti_wptr = 0;
    s->dma = 0;
P
pbrook 已提交
433
    s->do_cmd = 0;
B
blueswir1 已提交
434 435

    s->rregs[ESP_CFG1] = 7;
B
bellard 已提交
436 437
}

438 439 440 441 442 443
static void parent_esp_reset(void *opaque, int irq, int level)
{
    if (level)
        esp_reset(opaque);
}

A
Anthony Liguori 已提交
444
static uint32_t esp_mem_readb(void *opaque, target_phys_addr_t addr)
B
bellard 已提交
445 446
{
    ESPState *s = opaque;
B
Blue Swirl 已提交
447
    uint32_t saddr, old_val;
B
bellard 已提交
448

B
blueswir1 已提交
449
    saddr = addr >> s->it_shift;
B
bellard 已提交
450
    DPRINTF("read reg[%d]: 0x%2.2x\n", saddr, s->rregs[saddr]);
B
bellard 已提交
451
    switch (saddr) {
452
    case ESP_FIFO:
B
blueswir1 已提交
453 454
        if (s->ti_size > 0) {
            s->ti_size--;
455
            if ((s->rregs[ESP_RSTAT] & STAT_PIO_MASK) == 0) {
B
blueswir1 已提交
456 457
                /* Data out.  */
                ESP_ERROR("PIO data read not implemented\n");
458
                s->rregs[ESP_FIFO] = 0;
P
pbrook 已提交
459
            } else {
460
                s->rregs[ESP_FIFO] = s->ti_buf[s->ti_rptr++];
P
pbrook 已提交
461
            }
B
blueswir1 已提交
462
            esp_raise_irq(s);
B
blueswir1 已提交
463 464
        }
        if (s->ti_size == 0) {
465 466 467
            s->ti_rptr = 0;
            s->ti_wptr = 0;
        }
B
blueswir1 已提交
468
        break;
469
    case ESP_RINTR:
B
Blue Swirl 已提交
470 471 472 473 474 475
        /* Clear sequence step, interrupt register and all status bits
           except TC */
        old_val = s->rregs[ESP_RINTR];
        s->rregs[ESP_RINTR] = 0;
        s->rregs[ESP_RSTAT] &= ~STAT_TC;
        s->rregs[ESP_RSEQ] = SEQ_CD;
B
blueswir1 已提交
476
        esp_lower_irq(s);
B
Blue Swirl 已提交
477 478

        return old_val;
B
bellard 已提交
479
    default:
B
blueswir1 已提交
480
        break;
B
bellard 已提交
481
    }
B
bellard 已提交
482
    return s->rregs[saddr];
B
bellard 已提交
483 484
}

A
Anthony Liguori 已提交
485
static void esp_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val)
B
bellard 已提交
486 487 488 489
{
    ESPState *s = opaque;
    uint32_t saddr;

B
blueswir1 已提交
490
    saddr = addr >> s->it_shift;
491 492
    DPRINTF("write reg[%d]: 0x%2.2x -> 0x%2.2x\n", saddr, s->wregs[saddr],
            val);
B
bellard 已提交
493
    switch (saddr) {
494 495 496
    case ESP_TCLO:
    case ESP_TCMID:
        s->rregs[ESP_RSTAT] &= ~STAT_TC;
497
        break;
498
    case ESP_FIFO:
P
pbrook 已提交
499 500
        if (s->do_cmd) {
            s->cmdbuf[s->cmdlen++] = val & 0xff;
B
blueswir1 已提交
501 502
        } else if (s->ti_size == TI_BUFSZ - 1) {
            ESP_ERROR("fifo overrun\n");
P
pbrook 已提交
503 504 505 506
        } else {
            s->ti_size++;
            s->ti_buf[s->ti_wptr++] = val & 0xff;
        }
B
blueswir1 已提交
507
        break;
508
    case ESP_CMD:
509
        s->rregs[saddr] = val;
510
        if (val & CMD_DMA) {
B
blueswir1 已提交
511
            s->dma = 1;
P
pbrook 已提交
512
            /* Reload DMA counter.  */
513 514
            s->rregs[ESP_TCLO] = s->wregs[ESP_TCLO];
            s->rregs[ESP_TCMID] = s->wregs[ESP_TCMID];
B
blueswir1 已提交
515 516 517
        } else {
            s->dma = 0;
        }
518 519
        switch(val & CMD_CMD) {
        case CMD_NOP:
B
blueswir1 已提交
520 521
            DPRINTF("NOP (%2.2x)\n", val);
            break;
522
        case CMD_FLUSH:
B
blueswir1 已提交
523
            DPRINTF("Flush FIFO (%2.2x)\n", val);
B
bellard 已提交
524
            //s->ti_size = 0;
525 526
            s->rregs[ESP_RINTR] = INTR_FC;
            s->rregs[ESP_RSEQ] = 0;
527
            s->rregs[ESP_RFLAGS] = 0;
B
blueswir1 已提交
528
            break;
529
        case CMD_RESET:
B
blueswir1 已提交
530
            DPRINTF("Chip reset (%2.2x)\n", val);
B
Blue Swirl 已提交
531
            esp_reset(&s->busdev.qdev);
B
blueswir1 已提交
532
            break;
533
        case CMD_BUSRESET:
B
blueswir1 已提交
534
            DPRINTF("Bus reset (%2.2x)\n", val);
535 536
            s->rregs[ESP_RINTR] = INTR_RST;
            if (!(s->wregs[ESP_CFG1] & CFG1_RESREPT)) {
B
blueswir1 已提交
537
                esp_raise_irq(s);
B
bellard 已提交
538
            }
B
blueswir1 已提交
539
            break;
540
        case CMD_TI:
B
blueswir1 已提交
541 542
            handle_ti(s);
            break;
543
        case CMD_ICCS:
B
blueswir1 已提交
544 545
            DPRINTF("Initiator Command Complete Sequence (%2.2x)\n", val);
            write_response(s);
B
blueswir1 已提交
546 547
            s->rregs[ESP_RINTR] = INTR_FC;
            s->rregs[ESP_RSTAT] |= STAT_MI;
B
blueswir1 已提交
548
            break;
549
        case CMD_MSGACC:
B
blueswir1 已提交
550
            DPRINTF("Message Accepted (%2.2x)\n", val);
551 552
            s->rregs[ESP_RINTR] = INTR_DC;
            s->rregs[ESP_RSEQ] = 0;
553 554
            s->rregs[ESP_RFLAGS] = 0;
            esp_raise_irq(s);
B
blueswir1 已提交
555
            break;
B
Blue Swirl 已提交
556 557 558 559 560 561
        case CMD_PAD:
            DPRINTF("Transfer padding (%2.2x)\n", val);
            s->rregs[ESP_RSTAT] = STAT_TC;
            s->rregs[ESP_RINTR] = INTR_FC;
            s->rregs[ESP_RSEQ] = 0;
            break;
562
        case CMD_SATN:
B
blueswir1 已提交
563 564
            DPRINTF("Set ATN (%2.2x)\n", val);
            break;
565 566
        case CMD_SEL:
            DPRINTF("Select without ATN (%2.2x)\n", val);
567
            handle_s_without_atn(s);
568
            break;
569
        case CMD_SELATN:
570
            DPRINTF("Select with ATN (%2.2x)\n", val);
B
blueswir1 已提交
571 572
            handle_satn(s);
            break;
573
        case CMD_SELATNS:
574
            DPRINTF("Select with ATN & stop (%2.2x)\n", val);
B
blueswir1 已提交
575 576
            handle_satn_stop(s);
            break;
577
        case CMD_ENSEL:
B
blueswir1 已提交
578
            DPRINTF("Enable selection (%2.2x)\n", val);
579
            s->rregs[ESP_RINTR] = 0;
B
blueswir1 已提交
580
            break;
B
blueswir1 已提交
581
        default:
B
blueswir1 已提交
582
            ESP_ERROR("Unhandled ESP command (%2.2x)\n", val);
B
blueswir1 已提交
583 584 585
            break;
        }
        break;
586
    case ESP_WBUSID ... ESP_WSYNO:
B
blueswir1 已提交
587
        break;
588
    case ESP_CFG1:
589 590
        s->rregs[saddr] = val;
        break;
591
    case ESP_WCCF ... ESP_WTEST:
592
        break;
593
    case ESP_CFG2 ... ESP_RES4:
594 595
        s->rregs[saddr] = val;
        break;
B
bellard 已提交
596
    default:
B
blueswir1 已提交
597 598
        ESP_ERROR("invalid write of 0x%02x at [0x%x]\n", val, saddr);
        return;
B
bellard 已提交
599
    }
B
bellard 已提交
600
    s->wregs[saddr] = val;
B
bellard 已提交
601 602
}

603
static CPUReadMemoryFunc * const esp_mem_read[3] = {
B
bellard 已提交
604
    esp_mem_readb,
605 606
    NULL,
    NULL,
B
bellard 已提交
607 608
};

609
static CPUWriteMemoryFunc * const esp_mem_write[3] = {
B
bellard 已提交
610
    esp_mem_writeb,
611
    NULL,
612
    esp_mem_writeb,
B
bellard 已提交
613 614
};

B
Blue Swirl 已提交
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
static const VMStateDescription vmstate_esp = {
    .name ="esp",
    .version_id = 3,
    .minimum_version_id = 3,
    .minimum_version_id_old = 3,
    .fields      = (VMStateField []) {
        VMSTATE_BUFFER(rregs, ESPState),
        VMSTATE_BUFFER(wregs, ESPState),
        VMSTATE_INT32(ti_size, ESPState),
        VMSTATE_UINT32(ti_rptr, ESPState),
        VMSTATE_UINT32(ti_wptr, ESPState),
        VMSTATE_BUFFER(ti_buf, ESPState),
        VMSTATE_UINT32(sense, ESPState),
        VMSTATE_UINT32(dma, ESPState),
        VMSTATE_BUFFER(cmdbuf, ESPState),
        VMSTATE_UINT32(cmdlen, ESPState),
        VMSTATE_UINT32(do_cmd, ESPState),
        VMSTATE_UINT32(dma_left, ESPState),
        VMSTATE_END_OF_LIST()
    }
};
B
bellard 已提交
636

A
Anthony Liguori 已提交
637
void esp_init(target_phys_addr_t espaddr, int it_shift,
P
Paul Brook 已提交
638 639 640
              espdma_memory_read_write dma_memory_read,
              espdma_memory_read_write dma_memory_write,
              void *dma_opaque, qemu_irq irq, qemu_irq *reset)
B
bellard 已提交
641
{
P
Paul Brook 已提交
642 643
    DeviceState *dev;
    SysBusDevice *s;
G
Gerd Hoffmann 已提交
644
    ESPState *esp;
P
Paul Brook 已提交
645 646

    dev = qdev_create(NULL, "esp");
G
Gerd Hoffmann 已提交
647 648 649 650 651
    esp = DO_UPCAST(ESPState, busdev.qdev, dev);
    esp->dma_memory_read = dma_memory_read;
    esp->dma_memory_write = dma_memory_write;
    esp->dma_opaque = dma_opaque;
    esp->it_shift = it_shift;
M
Markus Armbruster 已提交
652
    qdev_init_nofail(dev);
P
Paul Brook 已提交
653 654 655
    s = sysbus_from_qdev(dev);
    sysbus_connect_irq(s, 0, irq);
    sysbus_mmio_map(s, 0, espaddr);
656
    *reset = qdev_get_gpio_in(dev, 0);
P
Paul Brook 已提交
657
}
B
bellard 已提交
658

659
static int esp_init1(SysBusDevice *dev)
P
Paul Brook 已提交
660 661 662
{
    ESPState *s = FROM_SYSBUS(ESPState, dev);
    int esp_io_memory;
B
bellard 已提交
663

P
Paul Brook 已提交
664 665
    sysbus_init_irq(dev, &s->irq);
    assert(s->it_shift != -1);
B
bellard 已提交
666

667
    esp_io_memory = cpu_register_io_memory(esp_mem_read, esp_mem_write, s);
P
Paul Brook 已提交
668
    sysbus_init_mmio(dev, ESP_REGS << s->it_shift, esp_io_memory);
B
bellard 已提交
669

P
Paul Brook 已提交
670
    qdev_init_gpio_in(&dev->qdev, parent_esp_reset, 1);
671

672 673
    scsi_bus_new(&s->bus, &dev->qdev, 0, ESP_MAX_DEVS, esp_command_complete);
    scsi_bus_legacy_handle_cmdline(&s->bus);
674
    return 0;
675
}
P
Paul Brook 已提交
676

B
Blue Swirl 已提交
677 678 679 680 681 682 683 684 685 686 687
static SysBusDeviceInfo esp_info = {
    .init = esp_init1,
    .qdev.name  = "esp",
    .qdev.size  = sizeof(ESPState),
    .qdev.vmsd  = &vmstate_esp,
    .qdev.reset = esp_reset,
    .qdev.props = (Property[]) {
        {.name = NULL}
    }
};

P
Paul Brook 已提交
688 689
static void esp_register_devices(void)
{
B
Blue Swirl 已提交
690
    sysbus_register_withprop(&esp_info);
P
Paul Brook 已提交
691 692 693
}

device_init(esp_register_devices)