2 * Simulated SCSI driver.
4 * Copyright (C) 1999, 2001-2003 Hewlett-Packard Co
5 * David Mosberger-Tang <davidm@hpl.hp.com>
6 * Stephane Eranian <eranian@hpl.hp.com>
8 * 02/01/15 David Mosberger Updated for v2.5.1
9 * 99/12/18 David Mosberger Added support for READ10/WRITE10 needed by linux v2.3.33
11 #include <linux/blkdev.h>
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/timer.h>
18 #include <scsi/scsi.h>
19 #include <scsi/scsi_cmnd.h>
20 #include <scsi/scsi_device.h>
21 #include <scsi/scsi_host.h>
23 #define DEBUG_SIMSCSI 0
25 #define SIMSCSI_REQ_QUEUE_LEN 64
26 #define DEFAULT_SIMSCSI_ROOT "/var/ski-disks/sd"
28 /* Simulator system calls: */
34 #define SSC_GET_COMPLETION 54
35 #define SSC_WAIT_COMPLETION 55
37 #define SSC_WRITE_ACCESS 2
38 #define SSC_READ_ACCESS 1
42 # define DBG simscsi_debug
47 static struct Scsi_Host
*host
;
49 static void simscsi_interrupt (unsigned long val
);
50 static DECLARE_TASKLET(simscsi_tasklet
, simscsi_interrupt
, 0);
62 extern long ia64_ssc (long arg0
, long arg1
, long arg2
, long arg3
, int nr
);
64 static int desc
[16] = {
65 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
68 static struct queue_entry
{
70 } queue
[SIMSCSI_REQ_QUEUE_LEN
];
73 static atomic_t num_reqs
= ATOMIC_INIT(0);
75 /* base name for default disks */
76 static char *simscsi_root
= DEFAULT_SIMSCSI_ROOT
;
78 #define MAX_ROOT_LEN 128
81 * used to setup a new base for disk images
82 * to use /foo/bar/disk[a-z] as disk images
83 * you have to specify simscsi=/foo/bar/disk on the command line
86 simscsi_setup (char *s
)
88 /* XXX Fix me we may need to strcpy() ? */
89 if (strlen(s
) > MAX_ROOT_LEN
) {
90 printk(KERN_ERR
"simscsi_setup: prefix too long---using default %s\n",
97 __setup("simscsi=", simscsi_setup
);
100 simscsi_interrupt (unsigned long val
)
102 struct scsi_cmnd
*sc
;
104 while ((sc
= queue
[rd
].sc
) != 0) {
105 atomic_dec(&num_reqs
);
108 printk("simscsi_interrupt: done with %ld\n", sc
->serial_number
);
109 (*sc
->scsi_done
)(sc
);
110 rd
= (rd
+ 1) % SIMSCSI_REQ_QUEUE_LEN
;
115 simscsi_biosparam (struct scsi_device
*sdev
, struct block_device
*n
,
116 sector_t capacity
, int ip
[])
118 ip
[0] = 64; /* heads */
119 ip
[1] = 32; /* sectors */
120 ip
[2] = capacity
>> 11; /* cylinders */
125 simscsi_readwrite (struct scsi_cmnd
*sc
, int mode
, unsigned long offset
, unsigned long len
)
127 struct disk_stat stat
;
130 req
.addr
= __pa(sc
->request_buffer
);
131 req
.len
= len
; /* # of bytes to transfer */
133 if (sc
->request_bufflen
< req
.len
)
136 stat
.fd
= desc
[sc
->device
->id
];
138 printk("simscsi_%s @ %lx (off %lx)\n",
139 mode
== SSC_READ
? "read":"write", req
.addr
, offset
);
140 ia64_ssc(stat
.fd
, 1, __pa(&req
), offset
, mode
);
141 ia64_ssc(__pa(&stat
), 0, 0, 0, SSC_WAIT_COMPLETION
);
143 if (stat
.count
== req
.len
) {
146 sc
->result
= DID_ERROR
<< 16;
151 simscsi_sg_readwrite (struct scsi_cmnd
*sc
, int mode
, unsigned long offset
)
153 int list_len
= sc
->use_sg
;
154 struct scatterlist
*sl
= (struct scatterlist
*)sc
->buffer
;
155 struct disk_stat stat
;
158 stat
.fd
= desc
[sc
->device
->id
];
161 req
.addr
= __pa(page_address(sl
->page
) + sl
->offset
);
162 req
.len
= sl
->length
;
164 printk("simscsi_sg_%s @ %lx (off %lx) use_sg=%d len=%d\n",
165 mode
== SSC_READ
? "read":"write", req
.addr
, offset
,
166 list_len
, sl
->length
);
167 ia64_ssc(stat
.fd
, 1, __pa(&req
), offset
, mode
);
168 ia64_ssc(__pa(&stat
), 0, 0, 0, SSC_WAIT_COMPLETION
);
170 /* should not happen in our case */
171 if (stat
.count
!= req
.len
) {
172 sc
->result
= DID_ERROR
<< 16;
175 offset
+= sl
->length
;
183 * function handling both READ_6/WRITE_6 (non-scatter/gather mode)
185 * Added 02/26/99 S.Eranian
188 simscsi_readwrite6 (struct scsi_cmnd
*sc
, int mode
)
190 unsigned long offset
;
192 offset
= (((sc
->cmnd
[1] & 0x1f) << 16) | (sc
->cmnd
[2] << 8) | sc
->cmnd
[3])*512;
194 simscsi_sg_readwrite(sc
, mode
, offset
);
196 simscsi_readwrite(sc
, mode
, offset
, sc
->cmnd
[4]*512);
200 simscsi_get_disk_size (int fd
)
202 struct disk_stat stat
;
203 size_t bit
, sectors
= 0;
208 * This is a bit kludgey: the simulator doesn't provide a direct way of determining
209 * the disk size, so we do a binary search, assuming a maximum disk size of 4GB.
211 for (bit
= (4UL << 30)/512; bit
!= 0; bit
>>= 1) {
212 req
.addr
= __pa(&buf
);
213 req
.len
= sizeof(buf
);
214 ia64_ssc(fd
, 1, __pa(&req
), ((sectors
| bit
) - 1)*512, SSC_READ
);
216 ia64_ssc(__pa(&stat
), 0, 0, 0, SSC_WAIT_COMPLETION
);
217 if (stat
.count
== sizeof(buf
))
220 return sectors
- 1; /* return last valid sector number */
224 simscsi_readwrite10 (struct scsi_cmnd
*sc
, int mode
)
226 unsigned long offset
;
228 offset
= ( (sc
->cmnd
[2] << 24) | (sc
->cmnd
[3] << 16)
229 | (sc
->cmnd
[4] << 8) | (sc
->cmnd
[5] << 0))*512;
231 simscsi_sg_readwrite(sc
, mode
, offset
);
233 simscsi_readwrite(sc
, mode
, offset
, ((sc
->cmnd
[7] << 8) | sc
->cmnd
[8])*512);
237 simscsi_queuecommand (struct scsi_cmnd
*sc
, void (*done
)(struct scsi_cmnd
*))
239 unsigned int target_id
= sc
->device
->id
;
240 char fname
[MAX_ROOT_LEN
+16];
244 register long sp
asm ("sp");
247 printk("simscsi_queuecommand: target=%d,cmnd=%u,sc=%lu,sp=%lx,done=%p\n",
248 target_id
, sc
->cmnd
[0], sc
->serial_number
, sp
, done
);
251 sc
->result
= DID_BAD_TARGET
<< 16;
252 sc
->scsi_done
= done
;
253 if (target_id
<= 15 && sc
->device
->lun
== 0) {
254 switch (sc
->cmnd
[0]) {
256 if (sc
->request_bufflen
< 35) {
259 sprintf (fname
, "%s%c", simscsi_root
, 'a' + target_id
);
260 desc
[target_id
] = ia64_ssc(__pa(fname
), SSC_READ_ACCESS
|SSC_WRITE_ACCESS
,
262 if (desc
[target_id
] < 0) {
263 /* disk doesn't exist... */
266 buf
= sc
->request_buffer
;
267 buf
[0] = 0; /* magnetic disk */
268 buf
[1] = 0; /* not a removable medium */
269 buf
[2] = 2; /* SCSI-2 compliant device */
270 buf
[3] = 2; /* SCSI-2 response data format */
271 buf
[4] = 31; /* additional length (bytes) */
272 buf
[5] = 0; /* reserved */
273 buf
[6] = 0; /* reserved */
274 buf
[7] = 0; /* various flags */
275 memcpy(buf
+ 8, "HP SIMULATED DISK 0.00", 28);
279 case TEST_UNIT_READY
:
284 if (desc
[target_id
] < 0 )
286 simscsi_readwrite6(sc
, SSC_READ
);
290 if (desc
[target_id
] < 0 )
292 simscsi_readwrite10(sc
, SSC_READ
);
296 if (desc
[target_id
] < 0)
298 simscsi_readwrite6(sc
, SSC_WRITE
);
302 if (desc
[target_id
] < 0)
304 simscsi_readwrite10(sc
, SSC_WRITE
);
309 if (desc
[target_id
] < 0 || sc
->request_bufflen
< 8) {
312 buf
= sc
->request_buffer
;
314 disk_size
= simscsi_get_disk_size(desc
[target_id
]);
316 /* pretend to be a 1GB disk (partition table contains real stuff): */
317 buf
[0] = (disk_size
>> 24) & 0xff;
318 buf
[1] = (disk_size
>> 16) & 0xff;
319 buf
[2] = (disk_size
>> 8) & 0xff;
320 buf
[3] = (disk_size
>> 0) & 0xff;
321 /* set block size of 512 bytes: */
331 /* sd.c uses this to determine whether disk does write-caching. */
332 memset(sc
->request_buffer
, 0, 128);
337 printk(KERN_ERR
"START_STOP\n");
341 panic("simscsi: unknown SCSI command %u\n", sc
->cmnd
[0]);
344 if (sc
->result
== DID_BAD_TARGET
) {
345 sc
->result
|= DRIVER_SENSE
<< 24;
346 sc
->sense_buffer
[0] = 0x70;
347 sc
->sense_buffer
[2] = 0x00;
349 if (atomic_read(&num_reqs
) >= SIMSCSI_REQ_QUEUE_LEN
) {
350 panic("Attempt to queue command while command is pending!!");
352 atomic_inc(&num_reqs
);
354 wr
= (wr
+ 1) % SIMSCSI_REQ_QUEUE_LEN
;
356 tasklet_schedule(&simscsi_tasklet
);
361 simscsi_host_reset (struct scsi_cmnd
*sc
)
363 printk(KERN_ERR
"simscsi_host_reset: not implemented\n");
367 static struct scsi_host_template driver_template
= {
368 .name
= "simulated SCSI host adapter",
369 .proc_name
= "simscsi",
370 .queuecommand
= simscsi_queuecommand
,
371 .eh_host_reset_handler
= simscsi_host_reset
,
372 .bios_param
= simscsi_biosparam
,
373 .can_queue
= SIMSCSI_REQ_QUEUE_LEN
,
375 .sg_tablesize
= SG_ALL
,
377 .cmd_per_lun
= SIMSCSI_REQ_QUEUE_LEN
,
378 .use_clustering
= DISABLE_CLUSTERING
,
386 host
= scsi_host_alloc(&driver_template
, 0);
390 error
= scsi_add_host(host
, NULL
);
392 scsi_scan_host(host
);
399 scsi_remove_host(host
);
403 module_init(simscsi_init
);
404 module_exit(simscsi_exit
);