esp.c 15.0 KB
Newer Older
B
bellard 已提交
1 2 3
/*
 * QEMU ESP emulation
 * 
P
pbrook 已提交
4
 * Copyright (c) 2005-2006 Fabrice Bellard
B
bellard 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * 
 * 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.
 */
#include "vl.h"

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

#ifdef DEBUG_ESP
#define DPRINTF(fmt, args...) \
do { printf("ESP: " fmt , ##args); } while (0)
B
bellard 已提交
32 33
#define pic_set_irq(irq, level) \
do { printf("ESP: set_irq(%d): %d\n", (irq), (level)); pic_set_irq((irq),(level));} while (0)
B
bellard 已提交
34 35 36 37 38 39 40
#else
#define DPRINTF(fmt, args...)
#endif

#define ESPDMA_REGS 4
#define ESPDMA_MAXADDR (ESPDMA_REGS * 4 - 1)
#define ESP_MAXREG 0x3f
P
pbrook 已提交
41
#define TI_BUFSZ 32
42
#define DMA_VER 0xa0000000
B
bellard 已提交
43 44
#define DMA_INTR 1
#define DMA_INTREN 0x10
P
pbrook 已提交
45
#define DMA_WRITE_MEM 0x100
46
#define DMA_LOADED 0x04000000
P
pbrook 已提交
47
typedef struct ESPState ESPState;
B
bellard 已提交
48

P
pbrook 已提交
49
struct ESPState {
B
bellard 已提交
50
    BlockDriverState **bd;
B
bellard 已提交
51 52
    uint8_t rregs[ESP_MAXREG];
    uint8_t wregs[ESP_MAXREG];
B
bellard 已提交
53 54
    int irq;
    uint32_t espdmaregs[ESPDMA_REGS];
B
bellard 已提交
55
    uint32_t ti_size;
56 57
    uint32_t ti_rptr, ti_wptr;
    uint8_t ti_buf[TI_BUFSZ];
P
pbrook 已提交
58
    int sense;
59
    int dma;
P
pbrook 已提交
60 61
    SCSIDevice *scsi_dev[MAX_DISKS];
    SCSIDevice *current_dev;
P
pbrook 已提交
62 63 64
    uint8_t cmdbuf[TI_BUFSZ];
    int cmdlen;
    int do_cmd;
P
pbrook 已提交
65 66 67 68 69

    uint32_t dma_left;
    uint8_t async_buf[TARGET_PAGE_SIZE];
    uint32_t async_ptr;
    uint32_t async_len;
P
pbrook 已提交
70
};
B
bellard 已提交
71

B
bellard 已提交
72 73 74 75 76 77 78 79
#define STAT_DO 0x00
#define STAT_DI 0x01
#define STAT_CD 0x02
#define STAT_ST 0x03
#define STAT_MI 0x06
#define STAT_MO 0x07

#define STAT_TC 0x10
P
pbrook 已提交
80 81
#define STAT_PE 0x20
#define STAT_GE 0x40
B
bellard 已提交
82 83 84 85 86
#define STAT_IN 0x80

#define INTR_FC 0x08
#define INTR_BS 0x10
#define INTR_DC 0x20
B
bellard 已提交
87
#define INTR_RST 0x80
B
bellard 已提交
88 89 90 91

#define SEQ_0 0x0
#define SEQ_CD 0x4

P
pbrook 已提交
92
static int get_cmd(ESPState *s, uint8_t *buf)
B
bellard 已提交
93 94 95 96 97
{
    uint32_t dmaptr, dmalen;
    int target;

    dmalen = s->wregs[0] | (s->wregs[1] << 8);
98
    target = s->wregs[4] & 7;
P
pbrook 已提交
99
    DPRINTF("get_cmd: len %d target %d\n", dmalen, target);
100 101
    if (s->dma) {
	dmaptr = iommu_translate(s->espdmaregs[1]);
P
pbrook 已提交
102 103
	DPRINTF("DMA Direction: %c, addr 0x%8.8x\n",
                s->espdmaregs[0] & DMA_WRITE_MEM ? 'w': 'r', dmaptr);
104 105 106 107 108 109
	cpu_physical_memory_read(dmaptr, buf, dmalen);
    } else {
	buf[0] = 0;
	memcpy(&buf[1], s->ti_buf, dmalen);
	dmalen++;
    }
P
pbrook 已提交
110

B
bellard 已提交
111
    s->ti_size = 0;
112 113
    s->ti_rptr = 0;
    s->ti_wptr = 0;
B
bellard 已提交
114

P
pbrook 已提交
115 116
    if (target >= 4 || !s->scsi_dev[target]) {
        // No such drive
B
bellard 已提交
117 118 119
	s->rregs[4] = STAT_IN;
	s->rregs[5] = INTR_DC;
	s->rregs[6] = SEQ_0;
B
bellard 已提交
120
	s->espdmaregs[0] |= DMA_INTR;
B
bellard 已提交
121
	pic_set_irq(s->irq, 1);
P
pbrook 已提交
122
	return 0;
B
bellard 已提交
123
    }
P
pbrook 已提交
124
    s->current_dev = s->scsi_dev[target];
P
pbrook 已提交
125 126 127 128 129 130 131 132 133 134
    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;
P
pbrook 已提交
135
    datalen = scsi_send_command(s->current_dev, 0, &buf[1], lun);
P
pbrook 已提交
136 137 138 139 140 141 142 143 144 145
    if (datalen == 0) {
        s->ti_size = 0;
    } else {
        s->rregs[4] = STAT_IN | STAT_TC;
        if (datalen > 0) {
            s->rregs[4] |= STAT_DI;
            s->ti_size = datalen;
        } else {
            s->rregs[4] |= STAT_DO;
            s->ti_size = -datalen;
B
bellard 已提交
146
        }
B
bellard 已提交
147 148 149
    }
    s->rregs[5] = INTR_BS | INTR_FC;
    s->rregs[6] = SEQ_CD;
B
bellard 已提交
150
    s->espdmaregs[0] |= DMA_INTR;
B
bellard 已提交
151 152 153
    pic_set_irq(s->irq, 1);
}

P
pbrook 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
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;
        s->espdmaregs[1] += s->cmdlen;
        s->rregs[4] = STAT_IN | STAT_TC | STAT_CD;
        s->rregs[5] = INTR_BS | INTR_FC;
        s->rregs[6] = SEQ_CD;
        s->espdmaregs[0] |= DMA_INTR;
        pic_set_irq(s->irq, 1);
    }
}

P
pbrook 已提交
179
static void write_response(ESPState *s)
B
bellard 已提交
180
{
P
pbrook 已提交
181
    uint32_t dmaptr;
B
bellard 已提交
182

P
pbrook 已提交
183 184 185
    DPRINTF("Transfer status (sense=%d)\n", s->sense);
    s->ti_buf[0] = s->sense;
    s->ti_buf[1] = 0;
186 187
    if (s->dma) {
	dmaptr = iommu_translate(s->espdmaregs[1]);
P
pbrook 已提交
188 189
	DPRINTF("DMA Direction: %c\n",
                s->espdmaregs[0] & DMA_WRITE_MEM ? 'w': 'r');
P
pbrook 已提交
190
	cpu_physical_memory_write(dmaptr, s->ti_buf, 2);
191 192 193 194
	s->rregs[4] = STAT_IN | STAT_TC | STAT_ST;
	s->rregs[5] = INTR_BS | INTR_FC;
	s->rregs[6] = SEQ_CD;
    } else {
P
pbrook 已提交
195
	s->ti_size = 2;
196 197
	s->ti_rptr = 0;
	s->ti_wptr = 0;
P
pbrook 已提交
198
	s->rregs[7] = 2;
199
    }
B
bellard 已提交
200
    s->espdmaregs[0] |= DMA_INTR;
B
bellard 已提交
201 202 203
    pic_set_irq(s->irq, 1);

}
204

P
pbrook 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
static void esp_do_dma(ESPState *s)
{
    uint32_t dmaptr, minlen, len, from, to;
    int to_device;
    dmaptr = iommu_translate(s->espdmaregs[1]);
    to_device = (s->espdmaregs[0] & DMA_WRITE_MEM) == 0;
    from = s->espdmaregs[1];
    minlen = s->dma_left;
    to = from + minlen;
    dmaptr = iommu_translate(s->espdmaregs[1]);
    if ((from & TARGET_PAGE_MASK) != (to & TARGET_PAGE_MASK)) {
       len = TARGET_PAGE_SIZE - (from & ~TARGET_PAGE_MASK);
    } else {
       len = to - from;
    }
    DPRINTF("DMA address p %08x v %08x len %08x, from %08x, to %08x\n", dmaptr, s->espdmaregs[1], len, from, to);
    s->espdmaregs[1] += len;
    if (s->do_cmd) {
        s->ti_size -= len;
        DPRINTF("command len %d + %d\n", s->cmdlen, len);
        cpu_physical_memory_read(dmaptr, &s->cmdbuf[s->cmdlen], len);
        s->ti_size = 0;
        s->cmdlen = 0;
        s->do_cmd = 0;
        do_cmd(s, s->cmdbuf);
        return;
    } else {
        s->async_len = len;
        s->dma_left -= len;
        if (to_device) {
            s->async_ptr = -1;
            cpu_physical_memory_read(dmaptr, s->async_buf, len);
            scsi_write_data(s->current_dev, s->async_buf, len);
        } else {
            s->async_ptr = dmaptr;
            scsi_read_data(s->current_dev, s->async_buf, len);
        }
    }
}

static void esp_command_complete(void *opaque, uint32_t reason, int sense)
P
pbrook 已提交
246 247 248
{
    ESPState *s = (ESPState *)opaque;

P
pbrook 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
    s->ti_size -= s->async_len;
    s->espdmaregs[1] += s->async_len;
    if (s->async_ptr != (uint32_t)-1) {
        cpu_physical_memory_write(s->async_ptr, s->async_buf, s->async_len);
    }
    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;
        if (sense)
            DPRINTF("Command failed\n");
        s->sense = sense;
    } else {
        DPRINTF("transfer %d/%d\n", s->dma_left, s->ti_size);
    }
    if (s->dma_left) {
        esp_do_dma(s);
    } else {
        if (s->ti_size) {
            s->rregs[4] |= STAT_IN | STAT_TC;
        } else {
            s->rregs[4] = STAT_IN | STAT_TC | STAT_ST;
        }
        s->rregs[5] = INTR_BS;
	s->rregs[6] = 0;
	s->rregs[7] = 0;
	s->espdmaregs[0] |= DMA_INTR;
        pic_set_irq(s->irq, 1);
    }
P
pbrook 已提交
279 280
}

B
bellard 已提交
281 282
static void handle_ti(ESPState *s)
{
P
pbrook 已提交
283
    uint32_t dmalen, minlen;
B
bellard 已提交
284 285

    dmalen = s->wregs[0] | (s->wregs[1] << 8);
P
pbrook 已提交
286 287 288 289
    if (dmalen==0) {
      dmalen=0x10000;
    }

P
pbrook 已提交
290 291 292 293
    if (s->do_cmd)
        minlen = (dmalen < 32) ? dmalen : 32;
    else
        minlen = (dmalen < s->ti_size) ? dmalen : s->ti_size;
P
pbrook 已提交
294
    DPRINTF("Transfer Information len %d\n", minlen);
295
    if (s->dma) {
P
pbrook 已提交
296 297 298
        s->dma_left = minlen;
        s->rregs[4] &= ~STAT_TC;
        esp_do_dma(s);
P
pbrook 已提交
299 300 301 302 303 304 305 306
    } 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 已提交
307 308
}

B
bellard 已提交
309 310 311
static void esp_reset(void *opaque)
{
    ESPState *s = opaque;
B
bellard 已提交
312
    memset(s->rregs, 0, ESP_MAXREG);
P
pbrook 已提交
313
    memset(s->wregs, 0, ESP_MAXREG);
B
bellard 已提交
314
    s->rregs[0x0e] = 0x4; // Indicate fas100a
B
bellard 已提交
315
    memset(s->espdmaregs, 0, ESPDMA_REGS * 4);
P
pbrook 已提交
316 317 318 319
    s->ti_size = 0;
    s->ti_rptr = 0;
    s->ti_wptr = 0;
    s->dma = 0;
P
pbrook 已提交
320
    s->do_cmd = 0;
B
bellard 已提交
321 322 323 324 325 326 327 328
}

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

    saddr = (addr & ESP_MAXREG) >> 2;
B
bellard 已提交
329
    DPRINTF("read reg[%d]: 0x%2.2x\n", saddr, s->rregs[saddr]);
B
bellard 已提交
330
    switch (saddr) {
331 332 333 334
    case 2:
	// FIFO
	if (s->ti_size > 0) {
	    s->ti_size--;
P
pbrook 已提交
335 336 337 338 339 340
            if ((s->rregs[4] & 6) == 0) {
                /* Data in/out.  */
                scsi_read_data(s->current_dev, &s->rregs[2], 0);
            } else {
                s->rregs[2] = s->ti_buf[s->ti_rptr++];
            }
341 342 343 344 345 346 347
	    pic_set_irq(s->irq, 1);
	}
	if (s->ti_size == 0) {
            s->ti_rptr = 0;
            s->ti_wptr = 0;
        }
	break;
B
bellard 已提交
348 349
    case 5:
        // interrupt
P
pbrook 已提交
350 351
        // Clear interrupt/error status bits
        s->rregs[4] &= ~(STAT_IN | STAT_GE | STAT_PE);
B
bellard 已提交
352 353 354
        pic_set_irq(s->irq, 0);
	s->espdmaregs[0] &= ~DMA_INTR;
        break;
B
bellard 已提交
355 356 357
    default:
	break;
    }
B
bellard 已提交
358
    return s->rregs[saddr];
B
bellard 已提交
359 360 361 362 363 364 365 366
}

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

    saddr = (addr & ESP_MAXREG) >> 2;
B
bellard 已提交
367
    DPRINTF("write reg[%d]: 0x%2.2x -> 0x%2.2x\n", saddr, s->wregs[saddr], val);
B
bellard 已提交
368
    switch (saddr) {
369 370 371
    case 0:
    case 1:
        s->rregs[saddr] = val;
P
pbrook 已提交
372
        s->rregs[4] &= ~STAT_TC;
373 374 375
        break;
    case 2:
	// FIFO
P
pbrook 已提交
376 377 378
        if (s->do_cmd) {
            s->cmdbuf[s->cmdlen++] = val & 0xff;
        } else if ((s->rregs[4] & 6) == 0) {
P
pbrook 已提交
379 380 381 382 383 384 385 386
            uint8_t buf;
            buf = val & 0xff;
            s->ti_size--;
            scsi_write_data(s->current_dev, &buf, 0);
        } else {
            s->ti_size++;
            s->ti_buf[s->ti_wptr++] = val & 0xff;
        }
387
	break;
B
bellard 已提交
388
    case 3:
389
        s->rregs[saddr] = val;
B
bellard 已提交
390
	// Command
391 392 393 394 395
	if (val & 0x80) {
	    s->dma = 1;
	} else {
	    s->dma = 0;
	}
B
bellard 已提交
396 397
	switch(val & 0x7f) {
	case 0:
B
bellard 已提交
398 399 400 401
	    DPRINTF("NOP (%2.2x)\n", val);
	    break;
	case 1:
	    DPRINTF("Flush FIFO (%2.2x)\n", val);
B
bellard 已提交
402
            //s->ti_size = 0;
B
bellard 已提交
403
	    s->rregs[5] = INTR_FC;
B
bellard 已提交
404
	    s->rregs[6] = 0;
B
bellard 已提交
405 406
	    break;
	case 2:
B
bellard 已提交
407
	    DPRINTF("Chip reset (%2.2x)\n", val);
B
bellard 已提交
408 409 410
	    esp_reset(s);
	    break;
	case 3:
B
bellard 已提交
411
	    DPRINTF("Bus reset (%2.2x)\n", val);
B
bellard 已提交
412 413 414 415 416
	    s->rregs[5] = INTR_RST;
            if (!(s->wregs[8] & 0x40)) {
                s->espdmaregs[0] |= DMA_INTR;
                pic_set_irq(s->irq, 1);
            }
B
bellard 已提交
417 418 419 420 421 422
	    break;
	case 0x10:
	    handle_ti(s);
	    break;
	case 0x11:
	    DPRINTF("Initiator Command Complete Sequence (%2.2x)\n", val);
P
pbrook 已提交
423
	    write_response(s);
B
bellard 已提交
424 425 426
	    break;
	case 0x12:
	    DPRINTF("Message Accepted (%2.2x)\n", val);
P
pbrook 已提交
427
	    write_response(s);
B
bellard 已提交
428 429
	    s->rregs[5] = INTR_DC;
	    s->rregs[6] = 0;
B
bellard 已提交
430 431
	    break;
	case 0x1a:
B
bellard 已提交
432
	    DPRINTF("Set ATN (%2.2x)\n", val);
B
bellard 已提交
433 434
	    break;
	case 0x42:
P
pbrook 已提交
435
	    DPRINTF("Set ATN (%2.2x)\n", val);
B
bellard 已提交
436 437 438 439
	    handle_satn(s);
	    break;
	case 0x43:
	    DPRINTF("Set ATN & stop (%2.2x)\n", val);
P
pbrook 已提交
440
	    handle_satn_stop(s);
B
bellard 已提交
441 442
	    break;
	default:
443
	    DPRINTF("Unhandled ESP command (%2.2x)\n", val);
B
bellard 已提交
444 445 446 447 448
	    break;
	}
	break;
    case 4 ... 7:
	break;
449 450 451 452 453
    case 8:
        s->rregs[saddr] = val;
        break;
    case 9 ... 10:
        break;
B
bellard 已提交
454 455 456 457
    case 11:
        s->rregs[saddr] = val & 0x15;
        break;
    case 12 ... 15:
458 459
        s->rregs[saddr] = val;
        break;
B
bellard 已提交
460 461 462
    default:
	break;
    }
B
bellard 已提交
463
    s->wregs[saddr] = val;
B
bellard 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
}

static CPUReadMemoryFunc *esp_mem_read[3] = {
    esp_mem_readb,
    esp_mem_readb,
    esp_mem_readb,
};

static CPUWriteMemoryFunc *esp_mem_write[3] = {
    esp_mem_writeb,
    esp_mem_writeb,
    esp_mem_writeb,
};

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

    saddr = (addr & ESPDMA_MAXADDR) >> 2;
484 485
    DPRINTF("read dmareg[%d]: 0x%8.8x\n", saddr, s->espdmaregs[saddr]);

B
bellard 已提交
486 487 488 489 490 491 492 493 494
    return s->espdmaregs[saddr];
}

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

    saddr = (addr & ESPDMA_MAXADDR) >> 2;
495
    DPRINTF("write dmareg[%d]: 0x%8.8x -> 0x%8.8x\n", saddr, s->espdmaregs[saddr], val);
B
bellard 已提交
496 497
    switch (saddr) {
    case 0:
B
bellard 已提交
498
	if (!(val & DMA_INTREN))
B
bellard 已提交
499
	    pic_set_irq(s->irq, 0);
500 501 502 503 504 505 506 507
	if (val & 0x80) {
            esp_reset(s);
        } else if (val & 0x40) {
            val &= ~0x40;
        } else if (val == 0)
            val = 0x40;
        val &= 0x0fffffff;
        val |= DMA_VER;
B
bellard 已提交
508
	break;
509
    case 1:
510
        s->espdmaregs[0] |= DMA_LOADED;
511
        break;
B
bellard 已提交
512 513 514
    default:
	break;
    }
B
bellard 已提交
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
    s->espdmaregs[saddr] = val;
}

static CPUReadMemoryFunc *espdma_mem_read[3] = {
    espdma_mem_readl,
    espdma_mem_readl,
    espdma_mem_readl,
};

static CPUWriteMemoryFunc *espdma_mem_write[3] = {
    espdma_mem_writel,
    espdma_mem_writel,
    espdma_mem_writel,
};

static void esp_save(QEMUFile *f, void *opaque)
{
    ESPState *s = opaque;
B
bellard 已提交
533 534 535 536 537 538 539
    unsigned int i;

    qemu_put_buffer(f, s->rregs, ESP_MAXREG);
    qemu_put_buffer(f, s->wregs, ESP_MAXREG);
    qemu_put_be32s(f, &s->irq);
    for (i = 0; i < ESPDMA_REGS; i++)
	qemu_put_be32s(f, &s->espdmaregs[i]);
540 541 542 543 544
    qemu_put_be32s(f, &s->ti_size);
    qemu_put_be32s(f, &s->ti_rptr);
    qemu_put_be32s(f, &s->ti_wptr);
    qemu_put_buffer(f, s->ti_buf, TI_BUFSZ);
    qemu_put_be32s(f, &s->dma);
B
bellard 已提交
545 546 547 548 549
}

static int esp_load(QEMUFile *f, void *opaque, int version_id)
{
    ESPState *s = opaque;
B
bellard 已提交
550
    unsigned int i;
B
bellard 已提交
551 552 553 554
    
    if (version_id != 1)
        return -EINVAL;

B
bellard 已提交
555 556 557 558 559
    qemu_get_buffer(f, s->rregs, ESP_MAXREG);
    qemu_get_buffer(f, s->wregs, ESP_MAXREG);
    qemu_get_be32s(f, &s->irq);
    for (i = 0; i < ESPDMA_REGS; i++)
	qemu_get_be32s(f, &s->espdmaregs[i]);
560 561 562 563 564
    qemu_get_be32s(f, &s->ti_size);
    qemu_get_be32s(f, &s->ti_rptr);
    qemu_get_be32s(f, &s->ti_wptr);
    qemu_get_buffer(f, s->ti_buf, TI_BUFSZ);
    qemu_get_be32s(f, &s->dma);
B
bellard 已提交
565

B
bellard 已提交
566 567 568 569 570 571 572
    return 0;
}

void esp_init(BlockDriverState **bd, int irq, uint32_t espaddr, uint32_t espdaddr)
{
    ESPState *s;
    int esp_io_memory, espdma_io_memory;
P
pbrook 已提交
573
    int i;
B
bellard 已提交
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591

    s = qemu_mallocz(sizeof(ESPState));
    if (!s)
        return;

    s->bd = bd;
    s->irq = irq;

    esp_io_memory = cpu_register_io_memory(0, esp_mem_read, esp_mem_write, s);
    cpu_register_physical_memory(espaddr, ESP_MAXREG*4, esp_io_memory);

    espdma_io_memory = cpu_register_io_memory(0, espdma_mem_read, espdma_mem_write, s);
    cpu_register_physical_memory(espdaddr, 16, espdma_io_memory);

    esp_reset(s);

    register_savevm("esp", espaddr, 1, esp_save, esp_load, s);
    qemu_register_reset(esp_reset, s);
P
pbrook 已提交
592 593 594 595 596 597
    for (i = 0; i < MAX_DISKS; i++) {
        if (bs_table[i]) {
            s->scsi_dev[i] =
                scsi_disk_init(bs_table[i], esp_command_complete, s);
        }
    }
B
bellard 已提交
598 599
}