📄 simscsi.c
字号:
/* * Simulated SCSI driver. * * Copyright (C) 1999, 2001-2002 Hewlett-Packard Co * David Mosberger-Tang <davidm@hpl.hp.com> * Stephane Eranian <eranian@hpl.hp.com> * * 02/01/15 David Mosberger Updated for v2.5.1 * 99/12/18 David Mosberger Added support for READ10/WRITE10 needed by linux v2.3.33 */#include <linux/config.h>#include <linux/blk.h>#include <linux/init.h>#include <linux/interrupt.h>#include <linux/kernel.h>#include <linux/timer.h>#include <scsi/scsi.h>#include <asm/irq.h>#include "../drivers/scsi/scsi.h"#include "../drivers/scsi/sd.h"#include "../drivers/scsi/hosts.h"#include "simscsi.h"#define DEBUG_SIMSCSI 1/* Simulator system calls: */#define SSC_OPEN 50#define SSC_CLOSE 51#define SSC_READ 52#define SSC_WRITE 53#define SSC_GET_COMPLETION 54#define SSC_WAIT_COMPLETION 55#define SSC_WRITE_ACCESS 2#define SSC_READ_ACCESS 1#if DEBUG_SIMSCSI int simscsi_debug;# define DBG simscsi_debug#else# define DBG 0#endifstatic struct Scsi_Host *host;static void simscsi_interrupt (unsigned long val);DECLARE_TASKLET(simscsi_tasklet, simscsi_interrupt, 0);struct disk_req { unsigned long addr; unsigned len;};struct disk_stat { int fd; unsigned count;};extern long ia64_ssc (long arg0, long arg1, long arg2, long arg3, int nr);static int desc[8] = { -1, -1, -1, -1, -1, -1, -1, -1 };static struct queue_entry { Scsi_Cmnd *sc;} queue[SIMSCSI_REQ_QUEUE_LEN];static int rd, wr;static atomic_t num_reqs = ATOMIC_INIT(0);/* base name for default disks */static char *simscsi_root = DEFAULT_SIMSCSI_ROOT;#define MAX_ROOT_LEN 128/* * used to setup a new base for disk images * to use /foo/bar/disk[a-z] as disk images * you have to specify simscsi=/foo/bar/disk on the command line */static int __initsimscsi_setup (char *s){ /* XXX Fix me we may need to strcpy() ? */ if (strlen(s) > MAX_ROOT_LEN) { printk("simscsi_setup: prefix too long---using default %s\n", simscsi_root); } simscsi_root = s; return 1;}__setup("simscsi=", simscsi_setup);static voidsimscsi_interrupt (unsigned long val){ Scsi_Cmnd *sc; while ((sc = queue[rd].sc) != 0) { atomic_dec(&num_reqs); queue[rd].sc = 0; if (DBG) printk("simscsi_interrupt: done with %ld\n", sc->serial_number); (*sc->scsi_done)(sc); rd = (rd + 1) % SIMSCSI_REQ_QUEUE_LEN; }}intsimscsi_detect (Scsi_Host_Template *templ){ templ->proc_name = "simscsi"; host = scsi_register(templ, 0); return 1; /* fake one SCSI host adapter */}intsimscsi_release (struct Scsi_Host *host){ return 0; /* this is easy... */}const char *simscsi_info (struct Scsi_Host *host){ return "simulated SCSI host adapter";}intsimscsi_abort (Scsi_Cmnd *cmd){ printk ("simscsi_abort: unimplemented\n"); return SCSI_ABORT_SUCCESS;}intsimscsi_reset (Scsi_Cmnd *cmd, unsigned int reset_flags){ printk ("simscsi_reset: unimplemented\n"); return SCSI_RESET_SUCCESS;}intsimscsi_biosparam (Disk *disk, kdev_t n, int ip[]){ int size = disk->capacity; ip[0] = 64; ip[1] = 32; ip[2] = size >> 11; return 0;}static voidsimscsi_readwrite (Scsi_Cmnd *sc, int mode, unsigned long offset, unsigned long len){ struct disk_stat stat; struct disk_req req; req.addr = __pa(sc->request_buffer); req.len = len; /* # of bytes to transfer */ if (sc->request_bufflen < req.len) return; stat.fd = desc[sc->target]; if (DBG) printk("simscsi_%s @ %lx (off %lx)\n", mode == SSC_READ ? "read":"write", req.addr, offset); ia64_ssc(stat.fd, 1, __pa(&req), offset, mode); ia64_ssc(__pa(&stat), 0, 0, 0, SSC_WAIT_COMPLETION); if (stat.count == req.len) { sc->result = GOOD; } else { sc->result = DID_ERROR << 16; }}static voidsimscsi_sg_readwrite (Scsi_Cmnd *sc, int mode, unsigned long offset){ int list_len = sc->use_sg; struct scatterlist *sl = (struct scatterlist *)sc->buffer; struct disk_stat stat; struct disk_req req; stat.fd = desc[sc->target]; while (list_len) { req.addr = __pa(page_address(sl->page) + sl->offset); req.len = sl->length; if (DBG) printk("simscsi_sg_%s @ %lx (off %lx) use_sg=%d len=%d\n", mode == SSC_READ ? "read":"write", req.addr, offset, list_len, sl->length); ia64_ssc(stat.fd, 1, __pa(&req), offset, mode); ia64_ssc(__pa(&stat), 0, 0, 0, SSC_WAIT_COMPLETION); /* should not happen in our case */ if (stat.count != req.len) { sc->result = DID_ERROR << 16; return; } offset += sl->length; sl++; list_len--; } sc->result = GOOD;}/* * function handling both READ_6/WRITE_6 (non-scatter/gather mode) * commands. * Added 02/26/99 S.Eranian */static voidsimscsi_readwrite6 (Scsi_Cmnd *sc, int mode){ unsigned long offset; offset = (((sc->cmnd[1] & 0x1f) << 16) | (sc->cmnd[2] << 8) | sc->cmnd[3])*512; if (sc->use_sg > 0) simscsi_sg_readwrite(sc, mode, offset); else simscsi_readwrite(sc, mode, offset, sc->cmnd[4]*512);}static voidsimscsi_readwrite10 (Scsi_Cmnd *sc, int mode){ unsigned long offset; offset = ( (sc->cmnd[2] << 24) | (sc->cmnd[3] << 16) | (sc->cmnd[4] << 8) | (sc->cmnd[5] << 0))*512; if (sc->use_sg > 0) simscsi_sg_readwrite(sc, mode, offset); else simscsi_readwrite(sc, mode, offset, ((sc->cmnd[7] << 8) | sc->cmnd[8])*512);}intsimscsi_queuecommand (Scsi_Cmnd *sc, void (*done)(Scsi_Cmnd *)){ char fname[MAX_ROOT_LEN+16]; char *buf;#if DEBUG_SIMSCSI register long sp asm ("sp"); if (DBG) printk("simscsi_queuecommand: target=%d,cmnd=%u,sc=%lu,sp=%lx,done=%p\n", sc->target, sc->cmnd[0], sc->serial_number, sp, done);#endif sc->result = DID_BAD_TARGET << 16; sc->scsi_done = done; if (sc->target <= 7 && sc->lun == 0) { switch (sc->cmnd[0]) { case INQUIRY: if (sc->request_bufflen < 35) { break; } sprintf (fname, "%s%c", simscsi_root, 'a' + sc->target); desc[sc->target] = ia64_ssc (__pa(fname), SSC_READ_ACCESS|SSC_WRITE_ACCESS, 0, 0, SSC_OPEN); if (desc[sc->target] < 0) { /* disk doesn't exist... */ break; } buf = sc->request_buffer; buf[0] = 0; /* magnetic disk */ buf[1] = 0; /* not a removable medium */ buf[2] = 2; /* SCSI-2 compliant device */ buf[3] = 2; /* SCSI-2 response data format */ buf[4] = 31; /* additional length (bytes) */ buf[5] = 0; /* reserved */ buf[6] = 0; /* reserved */ buf[7] = 0; /* various flags */ memcpy(buf + 8, "HP SIMULATED DISK 0.00", 28); sc->result = GOOD; break; case TEST_UNIT_READY: sc->result = GOOD; break; case READ_6: if (desc[sc->target] < 0 ) break; simscsi_readwrite6(sc, SSC_READ); break; case READ_10: if (desc[sc->target] < 0 ) break; simscsi_readwrite10(sc, SSC_READ); break; case WRITE_6: if (desc[sc->target] < 0) break; simscsi_readwrite6(sc, SSC_WRITE); break; case WRITE_10: if (desc[sc->target] < 0) break; simscsi_readwrite10(sc, SSC_WRITE); break; case READ_CAPACITY: if (desc[sc->target] < 0 || sc->request_bufflen < 8) { break; } buf = sc->request_buffer; /* pretend to be a 1GB disk (partition table contains real stuff): */ buf[0] = 0x00; buf[1] = 0x1f; buf[2] = 0xff; buf[3] = 0xff; /* set block size of 512 bytes: */ buf[4] = 0; buf[5] = 0; buf[6] = 2; buf[7] = 0; sc->result = GOOD; break; case MODE_SENSE: printk("MODE_SENSE\n"); break; case START_STOP: printk("START_STOP\n"); break; default: panic("simscsi: unknown SCSI command %u\n", sc->cmnd[0]); } } if (sc->result == DID_BAD_TARGET) { sc->result |= DRIVER_SENSE << 24; sc->sense_buffer[0] = 0x70; sc->sense_buffer[2] = 0x00; } if (atomic_read(&num_reqs) >= SIMSCSI_REQ_QUEUE_LEN) { panic("Attempt to queue command while command is pending!!"); } atomic_inc(&num_reqs); queue[wr].sc = sc; wr = (wr + 1) % SIMSCSI_REQ_QUEUE_LEN; tasklet_schedule(&simscsi_tasklet); return 0;}static Scsi_Host_Template driver_template = SIMSCSI;#define __initcall(fn) late_initcall(fn)#include "../drivers/scsi/scsi_module.c"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -