📄 esp.c.svn-base
字号:
/* * QEMU ESP/NCR53C9x emulation * * Copyright (c) 2005-2006 Fabrice Bellard * * 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 "hw.h"#include "block.h"#include "scsi-disk.h"#include "sun4m.h"/* FIXME: Only needed for MAX_DISKS, which is probably wrong. */#include "sysemu.h"/* debug ESP card *///#define DEBUG_ESP/* * On Sparc32, this is the ESP (NCR53C90) part of chip STP2000 (Master I/O), * also produced as NCR89C100. See * 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 */#ifdef DEBUG_ESP#define DPRINTF(fmt, args...) \do { printf("ESP: " fmt , ##args); } while (0)#else#define DPRINTF(fmt, args...)#endif#define ESP_MASK 0x3f#define ESP_REGS 16#define ESP_SIZE (ESP_REGS * 4)#define TI_BUFSZ 32typedef struct ESPState ESPState;struct ESPState { qemu_irq irq; uint8_t rregs[ESP_REGS]; uint8_t wregs[ESP_REGS]; int32_t ti_size; uint32_t ti_rptr, ti_wptr; uint8_t ti_buf[TI_BUFSZ]; int sense; int dma; SCSIDevice *scsi_dev[ESP_MAX_DEVS]; SCSIDevice *current_dev; uint8_t cmdbuf[TI_BUFSZ]; int cmdlen; int do_cmd; /* The amount of data left in the current DMA transfer. */ uint32_t dma_left; /* The size of the current DMA transfer. Zero if no transfer is in progress. */ uint32_t dma_counter; uint8_t *async_buf; uint32_t async_len; void *dma_opaque;};#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#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_PIO_MASK 0x06#define STAT_TC 0x10#define STAT_PE 0x20#define STAT_GE 0x40#define STAT_IN 0x80#define INTR_FC 0x08#define INTR_BS 0x10#define INTR_DC 0x20#define INTR_RST 0x80#define SEQ_0 0x0#define SEQ_CD 0x4#define CFG1_RESREPT 0x40#define CFG2_MASK 0x15#define TCHI_FAS100A 0x4static int 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] & 7; DPRINTF("get_cmd: len %d target %d\n", dmalen, target); if (s->dma) { espdma_memory_read(s->dma_opaque, buf, dmalen); } else { buf[0] = 0; memcpy(&buf[1], s->ti_buf, dmalen); dmalen++; } s->ti_size = 0; s->ti_rptr = 0; s->ti_wptr = 0; if (s->current_dev) { /* Started a new command before the old one finished. Cancel it. */ s->current_dev->cancel_io(s->current_dev, 0); s->async_len = 0; } if (target >= ESP_MAX_DEVS || !s->scsi_dev[target]) { // No such drive s->rregs[ESP_RSTAT] = STAT_IN; s->rregs[ESP_RINTR] = INTR_DC; s->rregs[ESP_RSEQ] = SEQ_0; qemu_irq_raise(s->irq); return 0; } s->current_dev = s->scsi_dev[target]; 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; datalen = s->current_dev->send_command(s->current_dev, 0, &buf[1], lun); s->ti_size = datalen; if (datalen != 0) { s->rregs[ESP_RSTAT] = STAT_IN | STAT_TC; s->dma_left = 0; s->dma_counter = 0; if (datalen > 0) { s->rregs[ESP_RSTAT] |= STAT_DI; s->current_dev->read_data(s->current_dev, 0); } else { s->rregs[ESP_RSTAT] |= STAT_DO; s->current_dev->write_data(s->current_dev, 0); } } s->rregs[ESP_RINTR] = INTR_BS | INTR_FC; s->rregs[ESP_RSEQ] = SEQ_CD; qemu_irq_raise(s->irq);}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->rregs[ESP_RSTAT] = STAT_IN | STAT_TC | STAT_CD; s->rregs[ESP_RINTR] = INTR_BS | INTR_FC; s->rregs[ESP_RSEQ] = SEQ_CD; qemu_irq_raise(s->irq); }}static void write_response(ESPState *s){ DPRINTF("Transfer status (sense=%d)\n", s->sense); s->ti_buf[0] = s->sense; s->ti_buf[1] = 0; if (s->dma) { espdma_memory_write(s->dma_opaque, s->ti_buf, 2); s->rregs[ESP_RSTAT] = STAT_IN | STAT_TC | STAT_ST; s->rregs[ESP_RINTR] = INTR_BS | INTR_FC; s->rregs[ESP_RSEQ] = SEQ_CD; } else { s->ti_size = 2; s->ti_rptr = 0; s->ti_wptr = 0; s->rregs[ESP_RFLAGS] = 2; } qemu_irq_raise(s->irq);}static void esp_dma_done(ESPState *s){ s->rregs[ESP_RSTAT] |= STAT_IN | STAT_TC; 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; qemu_irq_raise(s->irq);}static void esp_do_dma(ESPState *s){ uint32_t len; int to_device; to_device = (s->ti_size < 0); len = s->dma_left; if (s->do_cmd) { DPRINTF("command len %d + %d\n", s->cmdlen, len); espdma_memory_read(s->dma_opaque, &s->cmdbuf[s->cmdlen], len); s->ti_size = 0; s->cmdlen = 0; s->do_cmd = 0; do_cmd(s, s->cmdbuf); return; } if (s->async_len == 0) { /* Defer until data is available. */ return; } if (len > s->async_len) { len = s->async_len; } if (to_device) { espdma_memory_read(s->dma_opaque, s->async_buf, len); } else { espdma_memory_write(s->dma_opaque, s->async_buf, len); } s->dma_left -= len; s->async_buf += len; s->async_len -= len; if (to_device) s->ti_size += len; else s->ti_size -= len; if (s->async_len == 0) { if (to_device) { // ti_size is negative s->current_dev->write_data(s->current_dev, 0); } else { s->current_dev->read_data(s->current_dev, 0); /* 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); } } } else { /* Partially filled a scsi buffer. Complete immediately. */ esp_dma_done(s); }}static void esp_command_complete(void *opaque, int reason, uint32_t tag, uint32_t arg){ ESPState *s = (ESPState *)opaque; if (reason == SCSI_REASON_DONE) { DPRINTF("SCSI Command complete\n"); if (s->ti_size != 0)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -