blob: 8f0a16a79a677c8830b5f5385eb0559fc08fe934 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Simulated SCSI driver.
3 *
4 * Copyright (C) 1999, 2001-2003 Hewlett-Packard Co
5 * David Mosberger-Tang <davidm@hpl.hp.com>
6 * Stephane Eranian <eranian@hpl.hp.com>
7 *
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
10 */
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>
16#include <asm/irq.h>
17
18#include <scsi/scsi.h>
19#include <scsi/scsi_cmnd.h>
20#include <scsi/scsi_device.h>
21#include <scsi/scsi_host.h>
22
23#define DEBUG_SIMSCSI 0
24
25#define SIMSCSI_REQ_QUEUE_LEN 64
26#define DEFAULT_SIMSCSI_ROOT "/var/ski-disks/sd"
27
28/* Simulator system calls: */
29
30#define SSC_OPEN 50
31#define SSC_CLOSE 51
32#define SSC_READ 52
33#define SSC_WRITE 53
34#define SSC_GET_COMPLETION 54
35#define SSC_WAIT_COMPLETION 55
36
37#define SSC_WRITE_ACCESS 2
38#define SSC_READ_ACCESS 1
39
40#if DEBUG_SIMSCSI
41 int simscsi_debug;
42# define DBG simscsi_debug
43#else
44# define DBG 0
45#endif
46
47static struct Scsi_Host *host;
48
49static void simscsi_interrupt (unsigned long val);
50static DECLARE_TASKLET(simscsi_tasklet, simscsi_interrupt, 0);
51
52struct disk_req {
53 unsigned long addr;
54 unsigned len;
55};
56
57struct disk_stat {
58 int fd;
59 unsigned count;
60};
61
62extern long ia64_ssc (long arg0, long arg1, long arg2, long arg3, int nr);
63
64static int desc[16] = {
65 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
66};
67
68static struct queue_entry {
69 struct scsi_cmnd *sc;
70} queue[SIMSCSI_REQ_QUEUE_LEN];
71
72static int rd, wr;
73static atomic_t num_reqs = ATOMIC_INIT(0);
74
75/* base name for default disks */
76static char *simscsi_root = DEFAULT_SIMSCSI_ROOT;
77
78#define MAX_ROOT_LEN 128
79
80/*
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
84 */
85static int __init
86simscsi_setup (char *s)
87{
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",
91 simscsi_root);
92 }
93 simscsi_root = s;
94 return 1;
95}
96
97__setup("simscsi=", simscsi_setup);
98
99static void
100simscsi_interrupt (unsigned long val)
101{
102 struct scsi_cmnd *sc;
103
104 while ((sc = queue[rd].sc) != 0) {
105 atomic_dec(&num_reqs);
106 queue[rd].sc = 0;
107 if (DBG)
108 printk("simscsi_interrupt: done with %ld\n", sc->serial_number);
109 (*sc->scsi_done)(sc);
110 rd = (rd + 1) % SIMSCSI_REQ_QUEUE_LEN;
111 }
112}
113
114static int
115simscsi_biosparam (struct scsi_device *sdev, struct block_device *n,
116 sector_t capacity, int ip[])
117{
118 ip[0] = 64; /* heads */
119 ip[1] = 32; /* sectors */
120 ip[2] = capacity >> 11; /* cylinders */
121 return 0;
122}
123
124static void
125simscsi_readwrite (struct scsi_cmnd *sc, int mode, unsigned long offset, unsigned long len)
126{
127 struct disk_stat stat;
128 struct disk_req req;
129
130 req.addr = __pa(sc->request_buffer);
131 req.len = len; /* # of bytes to transfer */
132
133 if (sc->request_bufflen < req.len)
134 return;
135
136 stat.fd = desc[sc->device->id];
137 if (DBG)
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);
142
143 if (stat.count == req.len) {
144 sc->result = GOOD;
145 } else {
146 sc->result = DID_ERROR << 16;
147 }
148}
149
150static void
151simscsi_sg_readwrite (struct scsi_cmnd *sc, int mode, unsigned long offset)
152{
153 int list_len = sc->use_sg;
Christoph Hellwig0dfda772006-07-28 09:01:36 +0200154 struct scatterlist *sl = (struct scatterlist *)sc->request_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct disk_stat stat;
156 struct disk_req req;
157
158 stat.fd = desc[sc->device->id];
159
160 while (list_len) {
161 req.addr = __pa(page_address(sl->page) + sl->offset);
162 req.len = sl->length;
163 if (DBG)
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);
169
170 /* should not happen in our case */
171 if (stat.count != req.len) {
172 sc->result = DID_ERROR << 16;
173 return;
174 }
175 offset += sl->length;
176 sl++;
177 list_len--;
178 }
179 sc->result = GOOD;
180}
181
182/*
183 * function handling both READ_6/WRITE_6 (non-scatter/gather mode)
184 * commands.
185 * Added 02/26/99 S.Eranian
186 */
187static void
188simscsi_readwrite6 (struct scsi_cmnd *sc, int mode)
189{
190 unsigned long offset;
191
192 offset = (((sc->cmnd[1] & 0x1f) << 16) | (sc->cmnd[2] << 8) | sc->cmnd[3])*512;
193 if (sc->use_sg > 0)
194 simscsi_sg_readwrite(sc, mode, offset);
195 else
196 simscsi_readwrite(sc, mode, offset, sc->cmnd[4]*512);
197}
198
199static size_t
200simscsi_get_disk_size (int fd)
201{
202 struct disk_stat stat;
203 size_t bit, sectors = 0;
204 struct disk_req req;
205 char buf[512];
206
207 /*
Peter Chubbb6a7e1e2005-10-20 12:31:19 +1000208 * This is a bit kludgey: the simulator doesn't provide a
209 * direct way of determining the disk size, so we do a binary
210 * search, assuming a maximum disk size of 128GB.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
Peter Chubbb6a7e1e2005-10-20 12:31:19 +1000212 for (bit = (128UL << 30)/512; bit != 0; bit >>= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 req.addr = __pa(&buf);
214 req.len = sizeof(buf);
215 ia64_ssc(fd, 1, __pa(&req), ((sectors | bit) - 1)*512, SSC_READ);
216 stat.fd = fd;
217 ia64_ssc(__pa(&stat), 0, 0, 0, SSC_WAIT_COMPLETION);
218 if (stat.count == sizeof(buf))
219 sectors |= bit;
220 }
221 return sectors - 1; /* return last valid sector number */
222}
223
224static void
225simscsi_readwrite10 (struct scsi_cmnd *sc, int mode)
226{
227 unsigned long offset;
228
Peter Chubbb6a7e1e2005-10-20 12:31:19 +1000229 offset = (((unsigned long)sc->cmnd[2] << 24)
230 | ((unsigned long)sc->cmnd[3] << 16)
231 | ((unsigned long)sc->cmnd[4] << 8)
232 | ((unsigned long)sc->cmnd[5] << 0))*512UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (sc->use_sg > 0)
234 simscsi_sg_readwrite(sc, mode, offset);
235 else
236 simscsi_readwrite(sc, mode, offset, ((sc->cmnd[7] << 8) | sc->cmnd[8])*512);
237}
238
Peter Chubb83a78d92005-09-19 09:36:12 +1000239static void simscsi_fillresult(struct scsi_cmnd *sc, char *buf, unsigned len)
240{
241
242 int scatterlen = sc->use_sg;
243 struct scatterlist *slp;
244
245 if (scatterlen == 0)
246 memcpy(sc->request_buffer, buf, len);
Christoph Hellwig0dfda772006-07-28 09:01:36 +0200247 else for (slp = (struct scatterlist *)sc->request_buffer;
248 scatterlen-- > 0 && len > 0; slp++) {
Peter Chubb83a78d92005-09-19 09:36:12 +1000249 unsigned thislen = min(len, slp->length);
250
251 memcpy(page_address(slp->page) + slp->offset, buf, thislen);
252 slp++;
253 len -= thislen;
254 }
255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257static int
258simscsi_queuecommand (struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))
259{
260 unsigned int target_id = sc->device->id;
261 char fname[MAX_ROOT_LEN+16];
262 size_t disk_size;
263 char *buf;
Peter Chubb83a78d92005-09-19 09:36:12 +1000264 char localbuf[36];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#if DEBUG_SIMSCSI
266 register long sp asm ("sp");
267
268 if (DBG)
269 printk("simscsi_queuecommand: target=%d,cmnd=%u,sc=%lu,sp=%lx,done=%p\n",
270 target_id, sc->cmnd[0], sc->serial_number, sp, done);
271#endif
272
273 sc->result = DID_BAD_TARGET << 16;
274 sc->scsi_done = done;
275 if (target_id <= 15 && sc->device->lun == 0) {
276 switch (sc->cmnd[0]) {
277 case INQUIRY:
278 if (sc->request_bufflen < 35) {
279 break;
280 }
281 sprintf (fname, "%s%c", simscsi_root, 'a' + target_id);
282 desc[target_id] = ia64_ssc(__pa(fname), SSC_READ_ACCESS|SSC_WRITE_ACCESS,
283 0, 0, SSC_OPEN);
284 if (desc[target_id] < 0) {
285 /* disk doesn't exist... */
286 break;
287 }
Peter Chubb83a78d92005-09-19 09:36:12 +1000288 buf = localbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 buf[0] = 0; /* magnetic disk */
290 buf[1] = 0; /* not a removable medium */
291 buf[2] = 2; /* SCSI-2 compliant device */
292 buf[3] = 2; /* SCSI-2 response data format */
293 buf[4] = 31; /* additional length (bytes) */
294 buf[5] = 0; /* reserved */
295 buf[6] = 0; /* reserved */
296 buf[7] = 0; /* various flags */
297 memcpy(buf + 8, "HP SIMULATED DISK 0.00", 28);
Peter Chubb83a78d92005-09-19 09:36:12 +1000298 simscsi_fillresult(sc, buf, 36);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 sc->result = GOOD;
300 break;
301
302 case TEST_UNIT_READY:
303 sc->result = GOOD;
304 break;
305
306 case READ_6:
307 if (desc[target_id] < 0 )
308 break;
309 simscsi_readwrite6(sc, SSC_READ);
310 break;
311
312 case READ_10:
313 if (desc[target_id] < 0 )
314 break;
315 simscsi_readwrite10(sc, SSC_READ);
316 break;
317
318 case WRITE_6:
319 if (desc[target_id] < 0)
320 break;
321 simscsi_readwrite6(sc, SSC_WRITE);
322 break;
323
324 case WRITE_10:
325 if (desc[target_id] < 0)
326 break;
327 simscsi_readwrite10(sc, SSC_WRITE);
328 break;
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 case READ_CAPACITY:
331 if (desc[target_id] < 0 || sc->request_bufflen < 8) {
332 break;
333 }
Peter Chubb83a78d92005-09-19 09:36:12 +1000334 buf = localbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 disk_size = simscsi_get_disk_size(desc[target_id]);
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 buf[0] = (disk_size >> 24) & 0xff;
338 buf[1] = (disk_size >> 16) & 0xff;
339 buf[2] = (disk_size >> 8) & 0xff;
340 buf[3] = (disk_size >> 0) & 0xff;
341 /* set block size of 512 bytes: */
342 buf[4] = 0;
343 buf[5] = 0;
344 buf[6] = 2;
345 buf[7] = 0;
Peter Chubb83a78d92005-09-19 09:36:12 +1000346 simscsi_fillresult(sc, buf, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 sc->result = GOOD;
348 break;
349
350 case MODE_SENSE:
351 case MODE_SENSE_10:
352 /* sd.c uses this to determine whether disk does write-caching. */
Peter Chubb83a78d92005-09-19 09:36:12 +1000353 simscsi_fillresult(sc, (char *)empty_zero_page, sc->request_bufflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 sc->result = GOOD;
355 break;
356
357 case START_STOP:
358 printk(KERN_ERR "START_STOP\n");
359 break;
360
361 default:
362 panic("simscsi: unknown SCSI command %u\n", sc->cmnd[0]);
363 }
364 }
365 if (sc->result == DID_BAD_TARGET) {
366 sc->result |= DRIVER_SENSE << 24;
367 sc->sense_buffer[0] = 0x70;
368 sc->sense_buffer[2] = 0x00;
369 }
370 if (atomic_read(&num_reqs) >= SIMSCSI_REQ_QUEUE_LEN) {
371 panic("Attempt to queue command while command is pending!!");
372 }
373 atomic_inc(&num_reqs);
374 queue[wr].sc = sc;
375 wr = (wr + 1) % SIMSCSI_REQ_QUEUE_LEN;
376
377 tasklet_schedule(&simscsi_tasklet);
378 return 0;
379}
380
381static int
382simscsi_host_reset (struct scsi_cmnd *sc)
383{
384 printk(KERN_ERR "simscsi_host_reset: not implemented\n");
385 return 0;
386}
387
388static struct scsi_host_template driver_template = {
389 .name = "simulated SCSI host adapter",
390 .proc_name = "simscsi",
391 .queuecommand = simscsi_queuecommand,
392 .eh_host_reset_handler = simscsi_host_reset,
393 .bios_param = simscsi_biosparam,
394 .can_queue = SIMSCSI_REQ_QUEUE_LEN,
395 .this_id = -1,
396 .sg_tablesize = SG_ALL,
397 .max_sectors = 1024,
398 .cmd_per_lun = SIMSCSI_REQ_QUEUE_LEN,
399 .use_clustering = DISABLE_CLUSTERING,
400};
401
402static int __init
403simscsi_init(void)
404{
405 int error;
406
407 host = scsi_host_alloc(&driver_template, 0);
408 if (!host)
409 return -ENOMEM;
410
411 error = scsi_add_host(host, NULL);
412 if (!error)
413 scsi_scan_host(host);
414 return error;
415}
416
417static void __exit
418simscsi_exit(void)
419{
420 scsi_remove_host(host);
421 scsi_host_put(host);
422}
423
424module_init(simscsi_init);
425module_exit(simscsi_exit);