2 * Disk Array driver for Compaq SA53xx Controllers, SCSI Tape module
3 * Copyright 2001 Compaq Computer Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 * Questions/Comments/Bugfixes to iss_storagedev@hp.com
21 * Author: Stephen M. Cameron
23 #ifdef CONFIG_CISS_SCSI_TAPE
25 /* Here we have code to present the driver as a scsi driver
26 as it is simultaneously presented as a block driver. The
27 reason for doing this is to allow access to SCSI tape drives
28 through the array controller. Note in particular, neither
29 physical nor logical disks are presented through the scsi layer. */
31 #include <linux/timer.h>
32 #include <linux/completion.h>
33 #include <linux/slab.h>
34 #include <linux/string.h>
36 #include <asm/atomic.h>
38 #include <scsi/scsi.h>
39 #include <scsi/scsi_cmnd.h>
40 #include <scsi/scsi_device.h>
41 #include <scsi/scsi_host.h>
43 #include "cciss_scsi.h"
45 #define CCISS_ABORT_MSG 0x00
46 #define CCISS_RESET_MSG 0x01
48 /* some prototypes... */
54 unsigned int use_unit_num
, /* 0: address the controller,
55 1: address logical volume log_unit,
56 2: address is in scsi3addr */
57 unsigned int log_unit
,
59 unsigned char *scsi3addr
,
63 static int cciss_scsi_proc_info(
65 char *buffer
, /* data buffer */
66 char **start
, /* where data in buffer starts */
67 off_t offset
, /* offset from start of imaginary file */
68 int length
, /* length of data in buffer */
69 int func
); /* 0 == read, 1 == write */
71 static int cciss_scsi_queue_command (struct scsi_cmnd
*cmd
,
72 void (* done
)(struct scsi_cmnd
*));
73 static int cciss_eh_device_reset_handler(struct scsi_cmnd
*);
74 static int cciss_eh_abort_handler(struct scsi_cmnd
*);
76 static struct cciss_scsi_hba_t ccissscsi
[MAX_CTLR
] = {
77 { .name
= "cciss0", .ndevices
= 0 },
78 { .name
= "cciss1", .ndevices
= 0 },
79 { .name
= "cciss2", .ndevices
= 0 },
80 { .name
= "cciss3", .ndevices
= 0 },
81 { .name
= "cciss4", .ndevices
= 0 },
82 { .name
= "cciss5", .ndevices
= 0 },
83 { .name
= "cciss6", .ndevices
= 0 },
84 { .name
= "cciss7", .ndevices
= 0 },
87 static struct scsi_host_template cciss_driver_template
= {
88 .module
= THIS_MODULE
,
91 .proc_info
= cciss_scsi_proc_info
,
92 .queuecommand
= cciss_scsi_queue_command
,
93 .can_queue
= SCSI_CCISS_CAN_QUEUE
,
95 .sg_tablesize
= MAXSGENTRIES
,
97 .use_clustering
= DISABLE_CLUSTERING
,
98 /* Can't have eh_bus_reset_handler or eh_host_reset_handler for cciss */
99 .eh_device_reset_handler
= cciss_eh_device_reset_handler
,
100 .eh_abort_handler
= cciss_eh_abort_handler
,
104 struct cciss_scsi_cmd_stack_elem_t
{
105 CommandList_struct cmd
;
106 ErrorInfo_struct Err
;
113 #define CMD_STACK_SIZE (SCSI_CCISS_CAN_QUEUE * \
114 CCISS_MAX_SCSI_DEVS_PER_HBA + 2)
115 // plus two for init time usage
118 struct cciss_scsi_cmd_stack_t
{
119 struct cciss_scsi_cmd_stack_elem_t
*pool
;
120 struct cciss_scsi_cmd_stack_elem_t
*elem
[CMD_STACK_SIZE
];
121 dma_addr_t cmd_pool_handle
;
126 struct cciss_scsi_adapter_data_t
{
127 struct Scsi_Host
*scsi_host
;
128 struct cciss_scsi_cmd_stack_t cmd_stack
;
130 spinlock_t lock
; // to protect ccissscsi[ctlr];
133 #define CPQ_TAPE_LOCK(ctlr, flags) spin_lock_irqsave( \
134 &(((struct cciss_scsi_adapter_data_t *) \
135 hba[ctlr]->scsi_ctlr)->lock), flags);
136 #define CPQ_TAPE_UNLOCK(ctlr, flags) spin_unlock_irqrestore( \
137 &(((struct cciss_scsi_adapter_data_t *) \
138 hba[ctlr]->scsi_ctlr)->lock), flags);
140 static CommandList_struct
*
141 scsi_cmd_alloc(ctlr_info_t
*h
)
143 /* assume only one process in here at a time, locking done by caller. */
144 /* use CCISS_LOCK(ctlr) */
145 /* might be better to rewrite how we allocate scsi commands in a way that */
146 /* needs no locking at all. */
148 /* take the top memory chunk off the stack and return it, if any. */
149 struct cciss_scsi_cmd_stack_elem_t
*c
;
150 struct cciss_scsi_adapter_data_t
*sa
;
151 struct cciss_scsi_cmd_stack_t
*stk
;
154 sa
= (struct cciss_scsi_adapter_data_t
*) h
->scsi_ctlr
;
155 stk
= &sa
->cmd_stack
;
159 c
= stk
->elem
[stk
->top
];
160 /* memset(c, 0, sizeof(*c)); */
161 memset(&c
->cmd
, 0, sizeof(c
->cmd
));
162 memset(&c
->Err
, 0, sizeof(c
->Err
));
163 /* set physical addr of cmd and addr of scsi parameters */
164 c
->cmd
.busaddr
= c
->busaddr
;
165 /* (__u32) (stk->cmd_pool_handle +
166 (sizeof(struct cciss_scsi_cmd_stack_elem_t)*stk->top)); */
168 temp64
.val
= (__u64
) (c
->busaddr
+ sizeof(CommandList_struct
));
169 /* (__u64) (stk->cmd_pool_handle +
170 (sizeof(struct cciss_scsi_cmd_stack_elem_t)*stk->top) +
171 sizeof(CommandList_struct)); */
173 c
->cmd
.ErrDesc
.Addr
.lower
= temp64
.val32
.lower
;
174 c
->cmd
.ErrDesc
.Addr
.upper
= temp64
.val32
.upper
;
175 c
->cmd
.ErrDesc
.Len
= sizeof(ErrorInfo_struct
);
177 c
->cmd
.ctlr
= h
->ctlr
;
178 c
->cmd
.err_info
= &c
->Err
;
180 return (CommandList_struct
*) c
;
184 scsi_cmd_free(ctlr_info_t
*h
, CommandList_struct
*cmd
)
186 /* assume only one process in here at a time, locking done by caller. */
187 /* use CCISS_LOCK(ctlr) */
188 /* drop the free memory chunk on top of the stack. */
190 struct cciss_scsi_adapter_data_t
*sa
;
191 struct cciss_scsi_cmd_stack_t
*stk
;
193 sa
= (struct cciss_scsi_adapter_data_t
*) h
->scsi_ctlr
;
194 stk
= &sa
->cmd_stack
;
195 if (stk
->top
>= CMD_STACK_SIZE
) {
196 printk("cciss: scsi_cmd_free called too many times.\n");
200 stk
->elem
[stk
->top
] = (struct cciss_scsi_cmd_stack_elem_t
*) cmd
;
204 scsi_cmd_stack_setup(int ctlr
, struct cciss_scsi_adapter_data_t
*sa
)
207 struct cciss_scsi_cmd_stack_t
*stk
;
210 stk
= &sa
->cmd_stack
;
211 size
= sizeof(struct cciss_scsi_cmd_stack_elem_t
) * CMD_STACK_SIZE
;
213 // pci_alloc_consistent guarantees 32-bit DMA address will
216 stk
->pool
= (struct cciss_scsi_cmd_stack_elem_t
*)
217 pci_alloc_consistent(hba
[ctlr
]->pdev
, size
, &stk
->cmd_pool_handle
);
219 if (stk
->pool
== NULL
) {
220 printk("stk->pool is null\n");
224 for (i
=0; i
<CMD_STACK_SIZE
; i
++) {
225 stk
->elem
[i
] = &stk
->pool
[i
];
226 stk
->elem
[i
]->busaddr
= (__u32
) (stk
->cmd_pool_handle
+
227 (sizeof(struct cciss_scsi_cmd_stack_elem_t
) * i
));
229 stk
->top
= CMD_STACK_SIZE
-1;
234 scsi_cmd_stack_free(int ctlr
)
236 struct cciss_scsi_adapter_data_t
*sa
;
237 struct cciss_scsi_cmd_stack_t
*stk
;
240 sa
= (struct cciss_scsi_adapter_data_t
*) hba
[ctlr
]->scsi_ctlr
;
241 stk
= &sa
->cmd_stack
;
242 if (stk
->top
!= CMD_STACK_SIZE
-1) {
243 printk( "cciss: %d scsi commands are still outstanding.\n",
244 CMD_STACK_SIZE
- stk
->top
);
246 printk("WE HAVE A BUG HERE!!! stk=0x%p\n", stk
);
248 size
= sizeof(struct cciss_scsi_cmd_stack_elem_t
) * CMD_STACK_SIZE
;
250 pci_free_consistent(hba
[ctlr
]->pdev
, size
, stk
->pool
, stk
->cmd_pool_handle
);
254 /* scsi_device_types comes from scsi.h */
255 #define DEVICETYPE(n) (n<0 || n>MAX_SCSI_DEVICE_CODE) ? \
256 "Unknown" : scsi_device_types[n]
259 static int xmargin
=8;
260 static int amargin
=60;
263 print_bytes (unsigned char *c
, int len
, int hex
, int ascii
)
274 if ((i
% xmargin
) == 0 && i
>0) printk("\n");
275 if ((i
% xmargin
) == 0) printk("0x%04x:", i
);
286 if ((i
% amargin
) == 0 && i
>0) printk("\n");
287 if ((i
% amargin
) == 0) printk("0x%04x:", i
);
288 if (*x
> 26 && *x
< 128) printk("%c", *x
);
297 print_cmd(CommandList_struct
*cp
)
299 printk("queue:%d\n", cp
->Header
.ReplyQueue
);
300 printk("sglist:%d\n", cp
->Header
.SGList
);
301 printk("sgtot:%d\n", cp
->Header
.SGTotal
);
302 printk("Tag:0x%08x/0x%08x\n", cp
->Header
.Tag
.upper
,
303 cp
->Header
.Tag
.lower
);
304 printk("LUN:0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
305 cp
->Header
.LUN
.LunAddrBytes
[0],
306 cp
->Header
.LUN
.LunAddrBytes
[1],
307 cp
->Header
.LUN
.LunAddrBytes
[2],
308 cp
->Header
.LUN
.LunAddrBytes
[3],
309 cp
->Header
.LUN
.LunAddrBytes
[4],
310 cp
->Header
.LUN
.LunAddrBytes
[5],
311 cp
->Header
.LUN
.LunAddrBytes
[6],
312 cp
->Header
.LUN
.LunAddrBytes
[7]);
313 printk("CDBLen:%d\n", cp
->Request
.CDBLen
);
314 printk("Type:%d\n",cp
->Request
.Type
.Type
);
315 printk("Attr:%d\n",cp
->Request
.Type
.Attribute
);
316 printk(" Dir:%d\n",cp
->Request
.Type
.Direction
);
317 printk("Timeout:%d\n",cp
->Request
.Timeout
);
318 printk( "CDB: %02x %02x %02x %02x %02x %02x %02x %02x"
319 " %02x %02x %02x %02x %02x %02x %02x %02x\n",
320 cp
->Request
.CDB
[0], cp
->Request
.CDB
[1],
321 cp
->Request
.CDB
[2], cp
->Request
.CDB
[3],
322 cp
->Request
.CDB
[4], cp
->Request
.CDB
[5],
323 cp
->Request
.CDB
[6], cp
->Request
.CDB
[7],
324 cp
->Request
.CDB
[8], cp
->Request
.CDB
[9],
325 cp
->Request
.CDB
[10], cp
->Request
.CDB
[11],
326 cp
->Request
.CDB
[12], cp
->Request
.CDB
[13],
327 cp
->Request
.CDB
[14], cp
->Request
.CDB
[15]),
328 printk("edesc.Addr: 0x%08x/0%08x, Len = %d\n",
329 cp
->ErrDesc
.Addr
.upper
, cp
->ErrDesc
.Addr
.lower
,
331 printk("sgs..........Errorinfo:\n");
332 printk("scsistatus:%d\n", cp
->err_info
->ScsiStatus
);
333 printk("senselen:%d\n", cp
->err_info
->SenseLen
);
334 printk("cmd status:%d\n", cp
->err_info
->CommandStatus
);
335 printk("resid cnt:%d\n", cp
->err_info
->ResidualCnt
);
336 printk("offense size:%d\n", cp
->err_info
->MoreErrInfo
.Invalid_Cmd
.offense_size
);
337 printk("offense byte:%d\n", cp
->err_info
->MoreErrInfo
.Invalid_Cmd
.offense_num
);
338 printk("offense value:%d\n", cp
->err_info
->MoreErrInfo
.Invalid_Cmd
.offense_value
);
345 find_bus_target_lun(int ctlr
, int *bus
, int *target
, int *lun
)
347 /* finds an unused bus, target, lun for a new device */
348 /* assumes hba[ctlr]->scsi_ctlr->lock is held */
350 unsigned char target_taken
[CCISS_MAX_SCSI_DEVS_PER_HBA
];
352 memset(&target_taken
[0], 0, CCISS_MAX_SCSI_DEVS_PER_HBA
);
354 target_taken
[SELF_SCSI_ID
] = 1;
355 for (i
=0;i
<ccissscsi
[ctlr
].ndevices
;i
++)
356 target_taken
[ccissscsi
[ctlr
].dev
[i
].target
] = 1;
358 for (i
=0;i
<CCISS_MAX_SCSI_DEVS_PER_HBA
;i
++) {
359 if (!target_taken
[i
]) {
360 *bus
= 0; *target
=i
; *lun
= 0; found
=1;
368 cciss_scsi_add_entry(int ctlr
, int hostno
,
369 unsigned char *scsi3addr
, int devtype
)
371 /* assumes hba[ctlr]->scsi_ctlr->lock is held */
372 int n
= ccissscsi
[ctlr
].ndevices
;
373 struct cciss_scsi_dev_t
*sd
;
375 if (n
>= CCISS_MAX_SCSI_DEVS_PER_HBA
) {
376 printk("cciss%d: Too many devices, "
377 "some will be inaccessible.\n", ctlr
);
380 sd
= &ccissscsi
[ctlr
].dev
[n
];
381 if (find_bus_target_lun(ctlr
, &sd
->bus
, &sd
->target
, &sd
->lun
) != 0)
383 memcpy(&sd
->scsi3addr
[0], scsi3addr
, 8);
384 sd
->devtype
= devtype
;
385 ccissscsi
[ctlr
].ndevices
++;
387 /* initially, (before registering with scsi layer) we don't
388 know our hostno and we don't want to print anything first
389 time anyway (the scsi layer's inquiries will show that info) */
391 printk("cciss%d: %s device c%db%dt%dl%d added.\n",
392 ctlr
, DEVICETYPE(sd
->devtype
), hostno
,
393 sd
->bus
, sd
->target
, sd
->lun
);
398 cciss_scsi_remove_entry(int ctlr
, int hostno
, int entry
)
400 /* assumes hba[ctlr]->scsi_ctlr->lock is held */
402 struct cciss_scsi_dev_t sd
;
404 if (entry
< 0 || entry
>= CCISS_MAX_SCSI_DEVS_PER_HBA
) return;
405 sd
= ccissscsi
[ctlr
].dev
[entry
];
406 for (i
=entry
;i
<ccissscsi
[ctlr
].ndevices
-1;i
++)
407 ccissscsi
[ctlr
].dev
[i
] = ccissscsi
[ctlr
].dev
[i
+1];
408 ccissscsi
[ctlr
].ndevices
--;
409 printk("cciss%d: %s device c%db%dt%dl%d removed.\n",
410 ctlr
, DEVICETYPE(sd
.devtype
), hostno
,
411 sd
.bus
, sd
.target
, sd
.lun
);
415 #define SCSI3ADDR_EQ(a,b) ( \
416 (a)[7] == (b)[7] && \
417 (a)[6] == (b)[6] && \
418 (a)[5] == (b)[5] && \
419 (a)[4] == (b)[4] && \
420 (a)[3] == (b)[3] && \
421 (a)[2] == (b)[2] && \
422 (a)[1] == (b)[1] && \
426 adjust_cciss_scsi_table(int ctlr
, int hostno
,
427 struct cciss_scsi_dev_t sd
[], int nsds
)
429 /* sd contains scsi3 addresses and devtypes, but
430 bus target and lun are not filled in. This funciton
431 takes what's in sd to be the current and adjusts
432 ccissscsi[] to be in line with what's in sd. */
434 int i
,j
, found
, changes
=0;
435 struct cciss_scsi_dev_t
*csd
;
438 CPQ_TAPE_LOCK(ctlr
, flags
);
440 /* find any devices in ccissscsi[] that are not in
441 sd[] and remove them from ccissscsi[] */
444 while(i
<ccissscsi
[ctlr
].ndevices
) {
445 csd
= &ccissscsi
[ctlr
].dev
[i
];
447 for (j
=0;j
<nsds
;j
++) {
448 if (SCSI3ADDR_EQ(sd
[j
].scsi3addr
,
450 if (sd
[j
].devtype
== csd
->devtype
)
458 if (found
== 0) { /* device no longer present. */
460 /* printk("cciss%d: %s device c%db%dt%dl%d removed.\n",
461 ctlr, DEVICETYPE(csd->devtype), hostno,
462 csd->bus, csd->target, csd->lun); */
463 cciss_scsi_remove_entry(ctlr
, hostno
, i
);
464 /* note, i not incremented */
466 else if (found
== 1) { /* device is different kind */
468 printk("cciss%d: device c%db%dt%dl%d type changed "
469 "(device type now %s).\n",
470 ctlr
, hostno
, csd
->bus
, csd
->target
, csd
->lun
,
471 DEVICETYPE(csd
->devtype
));
472 csd
->devtype
= sd
[j
].devtype
;
473 i
++; /* so just move along. */
474 } else /* device is same as it ever was, */
475 i
++; /* so just move along. */
478 /* Now, make sure every device listed in sd[] is also
479 listed in ccissscsi[], adding them if they aren't found */
481 for (i
=0;i
<nsds
;i
++) {
483 for (j
=0;j
<ccissscsi
[ctlr
].ndevices
;j
++) {
484 csd
= &ccissscsi
[ctlr
].dev
[j
];
485 if (SCSI3ADDR_EQ(sd
[i
].scsi3addr
,
487 if (sd
[i
].devtype
== csd
->devtype
)
488 found
=2; /* found device */
490 found
=1; /* found a bug. */
496 if (cciss_scsi_add_entry(ctlr
, hostno
,
497 &sd
[i
].scsi3addr
[0], sd
[i
].devtype
) != 0)
499 } else if (found
== 1) {
500 /* should never happen... */
502 printk("cciss%d: device unexpectedly changed type\n",
504 /* but if it does happen, we just ignore that device */
507 CPQ_TAPE_UNLOCK(ctlr
, flags
);
510 printk("cciss%d: No device changes detected.\n", ctlr
);
516 lookup_scsi3addr(int ctlr
, int bus
, int target
, int lun
, char *scsi3addr
)
519 struct cciss_scsi_dev_t
*sd
;
522 CPQ_TAPE_LOCK(ctlr
, flags
);
523 for (i
=0;i
<ccissscsi
[ctlr
].ndevices
;i
++) {
524 sd
= &ccissscsi
[ctlr
].dev
[i
];
525 if (sd
->bus
== bus
&&
526 sd
->target
== target
&&
528 memcpy(scsi3addr
, &sd
->scsi3addr
[0], 8);
529 CPQ_TAPE_UNLOCK(ctlr
, flags
);
533 CPQ_TAPE_UNLOCK(ctlr
, flags
);
538 cciss_scsi_setup(int cntl_num
)
540 struct cciss_scsi_adapter_data_t
* shba
;
542 ccissscsi
[cntl_num
].ndevices
= 0;
543 shba
= (struct cciss_scsi_adapter_data_t
*)
544 kmalloc(sizeof(*shba
), GFP_KERNEL
);
547 shba
->scsi_host
= NULL
;
548 spin_lock_init(&shba
->lock
);
549 shba
->registered
= 0;
550 if (scsi_cmd_stack_setup(cntl_num
, shba
) != 0) {
554 hba
[cntl_num
]->scsi_ctlr
= (void *) shba
;
559 complete_scsi_command( CommandList_struct
*cp
, int timeout
, __u32 tag
)
561 struct scsi_cmnd
*cmd
;
564 ErrorInfo_struct
*ei
;
568 /* First, see if it was a message rather than a command */
569 if (cp
->Request
.Type
.Type
== TYPE_MSG
) {
570 cp
->cmd_type
= CMD_MSG_DONE
;
574 cmd
= (struct scsi_cmnd
*) cp
->scsi_cmd
;
575 ctlr
= hba
[cp
->ctlr
];
577 /* undo the DMA mappings */
580 pci_unmap_sg(ctlr
->pdev
,
581 cmd
->buffer
, cmd
->use_sg
,
582 cmd
->sc_data_direction
);
584 else if (cmd
->request_bufflen
) {
585 addr64
.val32
.lower
= cp
->SG
[0].Addr
.lower
;
586 addr64
.val32
.upper
= cp
->SG
[0].Addr
.upper
;
587 pci_unmap_single(ctlr
->pdev
, (dma_addr_t
) addr64
.val
,
588 cmd
->request_bufflen
,
589 cmd
->sc_data_direction
);
592 cmd
->result
= (DID_OK
<< 16); /* host byte */
593 cmd
->result
|= (COMMAND_COMPLETE
<< 8); /* msg byte */
594 /* cmd->result |= (GOOD < 1); */ /* status byte */
596 cmd
->result
|= (ei
->ScsiStatus
);
597 /* printk("Scsistatus is 0x%02x\n", ei->ScsiStatus); */
599 /* copy the sense data whether we need to or not. */
601 memcpy(cmd
->sense_buffer
, ei
->SenseInfo
,
602 ei
->SenseLen
> SCSI_SENSE_BUFFERSIZE
?
603 SCSI_SENSE_BUFFERSIZE
:
605 cmd
->resid
= ei
->ResidualCnt
;
607 if(ei
->CommandStatus
!= 0)
608 { /* an error has occurred */
609 switch(ei
->CommandStatus
)
611 case CMD_TARGET_STATUS
:
612 /* Pass it up to the upper layers... */
616 printk(KERN_WARNING
"cciss: cmd %p "
617 "has SCSI Status = %x\n",
621 cmd
->result
|= (ei
->ScsiStatus
< 1);
623 else { /* scsi status is zero??? How??? */
625 /* Ordinarily, this case should never happen, but there is a bug
626 in some released firmware revisions that allows it to happen
627 if, for example, a 4100 backplane loses power and the tape
628 drive is in it. We assume that it's a fatal error of some
629 kind because we can't show that it wasn't. We will make it
630 look like selection timeout since that is the most common
631 reason for this to occur, and it's severe enough. */
633 cmd
->result
= DID_NO_CONNECT
<< 16;
636 case CMD_DATA_UNDERRUN
: /* let mid layer handle it. */
638 case CMD_DATA_OVERRUN
:
639 printk(KERN_WARNING
"cciss: cp %p has"
640 " completed with data overrun "
644 /* print_bytes(cp, sizeof(*cp), 1, 0);
646 /* We get CMD_INVALID if you address a non-existent tape drive instead
647 of a selection timeout (no response). You will see this if you yank
648 out a tape drive, then try to access it. This is kind of a shame
649 because it means that any other CMD_INVALID (e.g. driver bug) will
650 get interpreted as a missing target. */
651 cmd
->result
= DID_NO_CONNECT
<< 16;
654 case CMD_PROTOCOL_ERR
:
655 printk(KERN_WARNING
"cciss: cp %p has "
656 "protocol error \n", cp
);
658 case CMD_HARDWARE_ERR
:
659 cmd
->result
= DID_ERROR
<< 16;
660 printk(KERN_WARNING
"cciss: cp %p had "
661 " hardware error\n", cp
);
663 case CMD_CONNECTION_LOST
:
664 cmd
->result
= DID_ERROR
<< 16;
665 printk(KERN_WARNING
"cciss: cp %p had "
666 "connection lost\n", cp
);
669 cmd
->result
= DID_ABORT
<< 16;
670 printk(KERN_WARNING
"cciss: cp %p was "
673 case CMD_ABORT_FAILED
:
674 cmd
->result
= DID_ERROR
<< 16;
675 printk(KERN_WARNING
"cciss: cp %p reports "
676 "abort failed\n", cp
);
678 case CMD_UNSOLICITED_ABORT
:
679 cmd
->result
= DID_ABORT
<< 16;
680 printk(KERN_WARNING
"cciss: cp %p aborted "
681 "do to an unsolicited abort\n", cp
);
684 cmd
->result
= DID_TIME_OUT
<< 16;
685 printk(KERN_WARNING
"cciss: cp %p timedout\n",
689 cmd
->result
= DID_ERROR
<< 16;
690 printk(KERN_WARNING
"cciss: cp %p returned "
691 "unknown status %x\n", cp
,
695 // printk("c:%p:c%db%dt%dl%d ", cmd, ctlr->ctlr, cmd->channel,
696 // cmd->target, cmd->lun);
698 scsi_cmd_free(ctlr
, cp
);
702 cciss_scsi_detect(int ctlr
)
704 struct Scsi_Host
*sh
;
707 sh
= scsi_host_alloc(&cciss_driver_template
, sizeof(struct ctlr_info
*));
710 sh
->io_port
= 0; // good enough? FIXME,
711 sh
->n_io_port
= 0; // I don't think we use these two...
712 sh
->this_id
= SELF_SCSI_ID
;
714 ((struct cciss_scsi_adapter_data_t
*)
715 hba
[ctlr
]->scsi_ctlr
)->scsi_host
= (void *) sh
;
716 sh
->hostdata
[0] = (unsigned long) hba
[ctlr
];
717 sh
->irq
= hba
[ctlr
]->intr
[SIMPLE_MODE_INT
];
718 sh
->unique_id
= sh
->irq
;
719 error
= scsi_add_host(sh
, &hba
[ctlr
]->pdev
->dev
);
732 cciss_unmap_one(struct pci_dev
*pdev
,
733 CommandList_struct
*cp
,
739 addr64
.val32
.lower
= cp
->SG
[0].Addr
.lower
;
740 addr64
.val32
.upper
= cp
->SG
[0].Addr
.upper
;
741 pci_unmap_single(pdev
, (dma_addr_t
) addr64
.val
, buflen
, data_direction
);
745 cciss_map_one(struct pci_dev
*pdev
,
746 CommandList_struct
*cp
,
753 addr64
= (__u64
) pci_map_single(pdev
, buf
, buflen
, data_direction
);
754 cp
->SG
[0].Addr
.lower
=
755 (__u32
) (addr64
& (__u64
) 0x00000000FFFFFFFF);
756 cp
->SG
[0].Addr
.upper
=
757 (__u32
) ((addr64
>> 32) & (__u64
) 0x00000000FFFFFFFF);
758 cp
->SG
[0].Len
= buflen
;
759 cp
->Header
.SGList
= (__u8
) 1; /* no. SGs contig in this cmd */
760 cp
->Header
.SGTotal
= (__u16
) 1; /* total sgs in this cmd list */
764 cciss_scsi_do_simple_cmd(ctlr_info_t
*c
,
765 CommandList_struct
*cp
,
766 unsigned char *scsi3addr
,
768 unsigned char cdblen
,
769 unsigned char *buf
, int bufsize
,
773 DECLARE_COMPLETION(wait
);
775 cp
->cmd_type
= CMD_IOCTL_PEND
; // treat this like an ioctl
777 cp
->Header
.ReplyQueue
= 0; // unused in simple mode
778 memcpy(&cp
->Header
.LUN
, scsi3addr
, sizeof(cp
->Header
.LUN
));
779 cp
->Header
.Tag
.lower
= cp
->busaddr
; // Use k. address of cmd as tag
780 // Fill in the request block...
782 /* printk("Using scsi3addr 0x%02x%0x2%0x2%0x2%0x2%0x2%0x2%0x2\n",
783 scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
784 scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]); */
786 memset(cp
->Request
.CDB
, 0, sizeof(cp
->Request
.CDB
));
787 memcpy(cp
->Request
.CDB
, cdb
, cdblen
);
788 cp
->Request
.Timeout
= 0;
789 cp
->Request
.CDBLen
= cdblen
;
790 cp
->Request
.Type
.Type
= TYPE_CMD
;
791 cp
->Request
.Type
.Attribute
= ATTR_SIMPLE
;
792 cp
->Request
.Type
.Direction
= direction
;
794 /* Fill in the SG list and do dma mapping */
795 cciss_map_one(c
->pdev
, cp
, (unsigned char *) buf
,
796 bufsize
, DMA_FROM_DEVICE
);
800 /* Put the request on the tail of the request queue */
801 spin_lock_irqsave(CCISS_LOCK(c
->ctlr
), flags
);
805 spin_unlock_irqrestore(CCISS_LOCK(c
->ctlr
), flags
);
807 wait_for_completion(&wait
);
809 /* undo the dma mapping */
810 cciss_unmap_one(c
->pdev
, cp
, bufsize
, DMA_FROM_DEVICE
);
815 cciss_scsi_interpret_error(CommandList_struct
*cp
)
817 ErrorInfo_struct
*ei
;
820 switch(ei
->CommandStatus
)
822 case CMD_TARGET_STATUS
:
823 printk(KERN_WARNING
"cciss: cmd %p has "
824 "completed with errors\n", cp
);
825 printk(KERN_WARNING
"cciss: cmd %p "
826 "has SCSI Status = %x\n",
829 if (ei
->ScsiStatus
== 0)
831 "cciss:SCSI status is abnormally zero. "
832 "(probably indicates selection timeout "
833 "reported incorrectly due to a known "
834 "firmware bug, circa July, 2001.)\n");
836 case CMD_DATA_UNDERRUN
: /* let mid layer handle it. */
837 printk("UNDERRUN\n");
839 case CMD_DATA_OVERRUN
:
840 printk(KERN_WARNING
"cciss: cp %p has"
841 " completed with data overrun "
845 /* controller unfortunately reports SCSI passthru's */
846 /* to non-existent targets as invalid commands. */
847 printk(KERN_WARNING
"cciss: cp %p is "
848 "reported invalid (probably means "
849 "target device no longer present)\n",
851 /* print_bytes((unsigned char *) cp, sizeof(*cp), 1, 0);
855 case CMD_PROTOCOL_ERR
:
856 printk(KERN_WARNING
"cciss: cp %p has "
857 "protocol error \n", cp
);
859 case CMD_HARDWARE_ERR
:
860 /* cmd->result = DID_ERROR << 16; */
861 printk(KERN_WARNING
"cciss: cp %p had "
862 " hardware error\n", cp
);
864 case CMD_CONNECTION_LOST
:
865 printk(KERN_WARNING
"cciss: cp %p had "
866 "connection lost\n", cp
);
869 printk(KERN_WARNING
"cciss: cp %p was "
872 case CMD_ABORT_FAILED
:
873 printk(KERN_WARNING
"cciss: cp %p reports "
874 "abort failed\n", cp
);
876 case CMD_UNSOLICITED_ABORT
:
877 printk(KERN_WARNING
"cciss: cp %p aborted "
878 "do to an unsolicited abort\n", cp
);
881 printk(KERN_WARNING
"cciss: cp %p timedout\n",
885 printk(KERN_WARNING
"cciss: cp %p returned "
886 "unknown status %x\n", cp
,
892 cciss_scsi_do_inquiry(ctlr_info_t
*c
, unsigned char *scsi3addr
,
893 unsigned char *buf
, unsigned char bufsize
)
896 CommandList_struct
*cp
;
898 ErrorInfo_struct
*ei
;
901 spin_lock_irqsave(CCISS_LOCK(c
->ctlr
), flags
);
902 cp
= scsi_cmd_alloc(c
);
903 spin_unlock_irqrestore(CCISS_LOCK(c
->ctlr
), flags
);
905 if (cp
== NULL
) { /* trouble... */
906 printk("cmd_alloc returned NULL!\n");
912 cdb
[0] = CISS_INQUIRY
;
918 rc
= cciss_scsi_do_simple_cmd(c
, cp
, scsi3addr
, cdb
,
919 6, buf
, bufsize
, XFER_READ
);
921 if (rc
!= 0) return rc
; /* something went wrong */
923 if (ei
->CommandStatus
!= 0 &&
924 ei
->CommandStatus
!= CMD_DATA_UNDERRUN
) {
925 cciss_scsi_interpret_error(cp
);
928 spin_lock_irqsave(CCISS_LOCK(c
->ctlr
), flags
);
929 scsi_cmd_free(c
, cp
);
930 spin_unlock_irqrestore(CCISS_LOCK(c
->ctlr
), flags
);
935 cciss_scsi_do_report_phys_luns(ctlr_info_t
*c
,
936 ReportLunData_struct
*buf
, int bufsize
)
939 CommandList_struct
*cp
;
940 unsigned char cdb
[12];
941 unsigned char scsi3addr
[8];
942 ErrorInfo_struct
*ei
;
945 spin_lock_irqsave(CCISS_LOCK(c
->ctlr
), flags
);
946 cp
= scsi_cmd_alloc(c
);
947 spin_unlock_irqrestore(CCISS_LOCK(c
->ctlr
), flags
);
948 if (cp
== NULL
) { /* trouble... */
949 printk("cmd_alloc returned NULL!\n");
953 memset(&scsi3addr
[0], 0, 8); /* address the controller */
954 cdb
[0] = CISS_REPORT_PHYS
;
960 cdb
[6] = (bufsize
>> 24) & 0xFF; //MSB
961 cdb
[7] = (bufsize
>> 16) & 0xFF;
962 cdb
[8] = (bufsize
>> 8) & 0xFF;
963 cdb
[9] = bufsize
& 0xFF;
967 rc
= cciss_scsi_do_simple_cmd(c
, cp
, scsi3addr
,
969 (unsigned char *) buf
,
972 if (rc
!= 0) return rc
; /* something went wrong */
975 if (ei
->CommandStatus
!= 0 &&
976 ei
->CommandStatus
!= CMD_DATA_UNDERRUN
) {
977 cciss_scsi_interpret_error(cp
);
980 spin_lock_irqsave(CCISS_LOCK(c
->ctlr
), flags
);
981 scsi_cmd_free(c
, cp
);
982 spin_unlock_irqrestore(CCISS_LOCK(c
->ctlr
), flags
);
987 cciss_update_non_disk_devices(int cntl_num
, int hostno
)
989 /* the idea here is we could get notified from /proc
990 that some devices have changed, so we do a report
991 physical luns cmd, and adjust our list of devices
992 accordingly. (We can't rely on the scsi-mid layer just
993 doing inquiries, because the "busses" that the scsi
994 mid-layer probes are totally fabricated by this driver,
995 so new devices wouldn't show up.
997 the scsi3addr's of devices won't change so long as the
998 adapter is not reset. That means we can rescan and
999 tell which devices we already know about, vs. new
1000 devices, vs. disappearing devices.
1002 Also, if you yank out a tape drive, then put in a disk
1003 in it's place, (say, a configured volume from another
1004 array controller for instance) _don't_ poke this driver
1005 (so it thinks it's still a tape, but _do_ poke the scsi
1006 mid layer, so it does an inquiry... the scsi mid layer
1007 will see the physical disk. This would be bad. Need to
1008 think about how to prevent that. One idea would be to
1009 snoop all scsi responses and if an inquiry repsonse comes
1010 back that reports a disk, chuck it an return selection
1011 timeout instead and adjust our table... Not sure i like
1015 #define OBDR_TAPE_INQ_SIZE 49
1016 #define OBDR_TAPE_SIG "$DR-10"
1017 ReportLunData_struct
*ld_buff
;
1018 unsigned char *inq_buff
;
1019 unsigned char scsi3addr
[8];
1023 /* unsigned char found[CCISS_MAX_SCSI_DEVS_PER_HBA]; */
1024 struct cciss_scsi_dev_t currentsd
[CCISS_MAX_SCSI_DEVS_PER_HBA
];
1026 int reportlunsize
= sizeof(*ld_buff
) + CISS_MAX_PHYS_LUN
* 8;
1029 c
= (ctlr_info_t
*) hba
[cntl_num
];
1030 ld_buff
= kmalloc(reportlunsize
, GFP_KERNEL
);
1031 if (ld_buff
== NULL
) {
1032 printk(KERN_ERR
"cciss: out of memory\n");
1035 memset(ld_buff
, 0, reportlunsize
);
1036 inq_buff
= kmalloc(OBDR_TAPE_INQ_SIZE
, GFP_KERNEL
);
1037 if (inq_buff
== NULL
) {
1038 printk(KERN_ERR
"cciss: out of memory\n");
1043 if (cciss_scsi_do_report_phys_luns(c
, ld_buff
, reportlunsize
) == 0) {
1044 ch
= &ld_buff
->LUNListLength
[0];
1045 num_luns
= ((ch
[0]<<24) | (ch
[1]<<16) | (ch
[2]<<8) | ch
[3]) / 8;
1046 if (num_luns
> CISS_MAX_PHYS_LUN
) {
1048 "cciss: Maximum physical LUNs (%d) exceeded. "
1049 "%d LUNs ignored.\n", CISS_MAX_PHYS_LUN
,
1050 num_luns
- CISS_MAX_PHYS_LUN
);
1051 num_luns
= CISS_MAX_PHYS_LUN
;
1055 printk(KERN_ERR
"cciss: Report physical LUNs failed.\n");
1060 /* adjust our table of devices */
1061 for(i
=0; i
<num_luns
; i
++)
1065 /* for each physical lun, do an inquiry */
1066 if (ld_buff
->LUN
[i
][3] & 0xC0) continue;
1067 memset(inq_buff
, 0, OBDR_TAPE_INQ_SIZE
);
1068 memcpy(&scsi3addr
[0], &ld_buff
->LUN
[i
][0], 8);
1070 if (cciss_scsi_do_inquiry(hba
[cntl_num
], scsi3addr
, inq_buff
,
1071 (unsigned char) OBDR_TAPE_INQ_SIZE
) != 0) {
1072 /* Inquiry failed (msg printed already) */
1073 devtype
= 0; /* so we will skip this device. */
1074 } else /* what kind of device is this? */
1075 devtype
= (inq_buff
[0] & 0x1f);
1079 case 0x05: /* CD-ROM */ {
1081 /* We don't *really* support actual CD-ROM devices,
1082 * just this "One Button Disaster Recovery" tape drive
1083 * which temporarily pretends to be a CD-ROM drive.
1084 * So we check that the device is really an OBDR tape
1085 * device by checking for "$DR-10" in bytes 43-48 of
1090 strncpy(obdr_sig
, &inq_buff
[43], 6);
1092 if (strncmp(obdr_sig
, OBDR_TAPE_SIG
, 6) != 0)
1093 /* Not OBDR device, ignore it. */
1096 /* fall through . . . */
1097 case 0x01: /* sequential access, (tape) */
1098 case 0x08: /* medium changer */
1099 if (ncurrent
>= CCISS_MAX_SCSI_DEVS_PER_HBA
) {
1100 printk(KERN_INFO
"cciss%d: %s ignored, "
1101 "too many devices.\n", cntl_num
,
1102 DEVICETYPE(devtype
));
1105 memcpy(¤tsd
[ncurrent
].scsi3addr
[0],
1107 currentsd
[ncurrent
].devtype
= devtype
;
1108 currentsd
[ncurrent
].bus
= -1;
1109 currentsd
[ncurrent
].target
= -1;
1110 currentsd
[ncurrent
].lun
= -1;
1118 adjust_cciss_scsi_table(cntl_num
, hostno
, currentsd
, ncurrent
);
1126 is_keyword(char *ptr
, int len
, char *verb
) // Thanks to ncr53c8xx.c
1128 int verb_len
= strlen(verb
);
1129 if (len
>= verb_len
&& !memcmp(verb
,ptr
,verb_len
))
1136 cciss_scsi_user_command(int ctlr
, int hostno
, char *buffer
, int length
)
1140 if ((arg_len
= is_keyword(buffer
, length
, "rescan")) != 0)
1141 cciss_update_non_disk_devices(ctlr
, hostno
);
1149 cciss_scsi_proc_info(struct Scsi_Host
*sh
,
1150 char *buffer
, /* data buffer */
1151 char **start
, /* where data in buffer starts */
1152 off_t offset
, /* offset from start of imaginary file */
1153 int length
, /* length of data in buffer */
1154 int func
) /* 0 == read, 1 == write */
1157 int buflen
, datalen
;
1163 ci
= (ctlr_info_t
*) sh
->hostdata
[0];
1164 if (ci
== NULL
) /* This really shouldn't ever happen. */
1167 cntl_num
= ci
->ctlr
; /* Get our index into the hba[] array */
1169 if (func
== 0) { /* User is reading from /proc/scsi/ciss*?/?* */
1170 buflen
= sprintf(buffer
, "cciss%d: SCSI host: %d\n",
1171 cntl_num
, sh
->host_no
);
1173 /* this information is needed by apps to know which cciss
1174 device corresponds to which scsi host number without
1175 having to open a scsi target device node. The device
1176 information is not a duplicate of /proc/scsi/scsi because
1177 the two may be out of sync due to scsi hotplug, rather
1178 this info is for an app to be able to use to know how to
1179 get them back in sync. */
1181 for (i
=0;i
<ccissscsi
[cntl_num
].ndevices
;i
++) {
1182 struct cciss_scsi_dev_t
*sd
= &ccissscsi
[cntl_num
].dev
[i
];
1183 buflen
+= sprintf(&buffer
[buflen
], "c%db%dt%dl%d %02d "
1184 "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
1185 sh
->host_no
, sd
->bus
, sd
->target
, sd
->lun
,
1187 sd
->scsi3addr
[0], sd
->scsi3addr
[1],
1188 sd
->scsi3addr
[2], sd
->scsi3addr
[3],
1189 sd
->scsi3addr
[4], sd
->scsi3addr
[5],
1190 sd
->scsi3addr
[6], sd
->scsi3addr
[7]);
1192 datalen
= buflen
- offset
;
1193 if (datalen
< 0) { /* they're reading past EOF. */
1195 *start
= buffer
+buflen
;
1197 *start
= buffer
+ offset
;
1199 } else /* User is writing to /proc/scsi/cciss*?/?* ... */
1200 return cciss_scsi_user_command(cntl_num
, sh
->host_no
,
1204 /* cciss_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
1205 dma mapping and fills in the scatter gather entries of the
1206 cciss command, cp. */
1209 cciss_scatter_gather(struct pci_dev
*pdev
,
1210 CommandList_struct
*cp
,
1211 struct scsi_cmnd
*cmd
)
1213 unsigned int use_sg
, nsegs
=0, len
;
1214 struct scatterlist
*scatter
= (struct scatterlist
*) cmd
->buffer
;
1217 /* is it just one virtual address? */
1219 if (cmd
->request_bufflen
) { /* anything to xfer? */
1221 addr64
= (__u64
) pci_map_single(pdev
,
1222 cmd
->request_buffer
,
1223 cmd
->request_bufflen
,
1224 cmd
->sc_data_direction
);
1226 cp
->SG
[0].Addr
.lower
=
1227 (__u32
) (addr64
& (__u64
) 0x00000000FFFFFFFF);
1228 cp
->SG
[0].Addr
.upper
=
1229 (__u32
) ((addr64
>> 32) & (__u64
) 0x00000000FFFFFFFF);
1230 cp
->SG
[0].Len
= cmd
->request_bufflen
;
1233 } /* else, must be a list of virtual addresses.... */
1234 else if (cmd
->use_sg
<= MAXSGENTRIES
) { /* not too many addrs? */
1236 use_sg
= pci_map_sg(pdev
, cmd
->buffer
, cmd
->use_sg
,
1237 cmd
->sc_data_direction
);
1239 for (nsegs
=0; nsegs
< use_sg
; nsegs
++) {
1240 addr64
= (__u64
) sg_dma_address(&scatter
[nsegs
]);
1241 len
= sg_dma_len(&scatter
[nsegs
]);
1242 cp
->SG
[nsegs
].Addr
.lower
=
1243 (__u32
) (addr64
& (__u64
) 0x00000000FFFFFFFF);
1244 cp
->SG
[nsegs
].Addr
.upper
=
1245 (__u32
) ((addr64
>> 32) & (__u64
) 0x00000000FFFFFFFF);
1246 cp
->SG
[nsegs
].Len
= len
;
1247 cp
->SG
[nsegs
].Ext
= 0; // we are not chaining
1251 cp
->Header
.SGList
= (__u8
) nsegs
; /* no. SGs contig in this cmd */
1252 cp
->Header
.SGTotal
= (__u16
) nsegs
; /* total sgs in this cmd list */
1258 cciss_scsi_queue_command (struct scsi_cmnd
*cmd
, void (* done
)(struct scsi_cmnd
*))
1262 unsigned char scsi3addr
[8];
1263 CommandList_struct
*cp
;
1264 unsigned long flags
;
1266 // Get the ptr to our adapter structure (hba[i]) out of cmd->host.
1267 // We violate cmd->host privacy here. (Is there another way?)
1268 c
= (ctlr_info_t
**) &cmd
->device
->host
->hostdata
[0];
1271 rc
= lookup_scsi3addr(ctlr
, cmd
->device
->channel
, cmd
->device
->id
,
1272 cmd
->device
->lun
, scsi3addr
);
1274 /* the scsi nexus does not match any that we presented... */
1275 /* pretend to mid layer that we got selection timeout */
1276 cmd
->result
= DID_NO_CONNECT
<< 16;
1278 /* we might want to think about registering controller itself
1279 as a processor device on the bus so sg binds to it. */
1283 /* printk("cciss_queue_command, p=%p, cmd=0x%02x, c%db%dt%dl%d\n",
1284 cmd, cmd->cmnd[0], ctlr, cmd->channel, cmd->target, cmd->lun);*/
1285 // printk("q:%p:c%db%dt%dl%d ", cmd, ctlr, cmd->channel,
1286 // cmd->target, cmd->lun);
1288 /* Ok, we have a reasonable scsi nexus, so send the cmd down, and
1289 see what the device thinks of it. */
1291 spin_lock_irqsave(CCISS_LOCK(ctlr
), flags
);
1292 cp
= scsi_cmd_alloc(*c
);
1293 spin_unlock_irqrestore(CCISS_LOCK(ctlr
), flags
);
1294 if (cp
== NULL
) { /* trouble... */
1295 printk("scsi_cmd_alloc returned NULL!\n");
1296 /* FIXME: next 3 lines are -> BAD! <- */
1297 cmd
->result
= DID_NO_CONNECT
<< 16;
1302 // Fill in the command list header
1304 cmd
->scsi_done
= done
; // save this for use by completion code
1306 // save cp in case we have to abort it
1307 cmd
->host_scribble
= (unsigned char *) cp
;
1309 cp
->cmd_type
= CMD_SCSI
;
1311 cp
->Header
.ReplyQueue
= 0; // unused in simple mode
1312 memcpy(&cp
->Header
.LUN
.LunAddrBytes
[0], &scsi3addr
[0], 8);
1313 cp
->Header
.Tag
.lower
= cp
->busaddr
; // Use k. address of cmd as tag
1315 // Fill in the request block...
1317 cp
->Request
.Timeout
= 0;
1318 memset(cp
->Request
.CDB
, 0, sizeof(cp
->Request
.CDB
));
1319 if (cmd
->cmd_len
> sizeof(cp
->Request
.CDB
)) BUG();
1320 cp
->Request
.CDBLen
= cmd
->cmd_len
;
1321 memcpy(cp
->Request
.CDB
, cmd
->cmnd
, cmd
->cmd_len
);
1322 cp
->Request
.Type
.Type
= TYPE_CMD
;
1323 cp
->Request
.Type
.Attribute
= ATTR_SIMPLE
;
1324 switch(cmd
->sc_data_direction
)
1326 case DMA_TO_DEVICE
: cp
->Request
.Type
.Direction
= XFER_WRITE
; break;
1327 case DMA_FROM_DEVICE
: cp
->Request
.Type
.Direction
= XFER_READ
; break;
1328 case DMA_NONE
: cp
->Request
.Type
.Direction
= XFER_NONE
; break;
1329 case DMA_BIDIRECTIONAL
:
1330 // This can happen if a buggy application does a scsi passthru
1331 // and sets both inlen and outlen to non-zero. ( see
1332 // ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
1334 cp
->Request
.Type
.Direction
= XFER_RSVD
;
1335 // This is technically wrong, and cciss controllers should
1336 // reject it with CMD_INVALID, which is the most correct
1337 // response, but non-fibre backends appear to let it
1338 // slide by, and give the same results as if this field
1339 // were set correctly. Either way is acceptable for
1340 // our purposes here.
1345 printk("cciss: unknown data direction: %d\n",
1346 cmd
->sc_data_direction
);
1351 cciss_scatter_gather((*c
)->pdev
, cp
, cmd
); // Fill the SG list
1353 /* Put the request on the tail of the request queue */
1355 spin_lock_irqsave(CCISS_LOCK(ctlr
), flags
);
1356 addQ(&(*c
)->reqQ
, cp
);
1359 spin_unlock_irqrestore(CCISS_LOCK(ctlr
), flags
);
1361 /* the cmd'll come back via intr handler in complete_scsi_command() */
1366 cciss_unregister_scsi(int ctlr
)
1368 struct cciss_scsi_adapter_data_t
*sa
;
1369 struct cciss_scsi_cmd_stack_t
*stk
;
1370 unsigned long flags
;
1372 /* we are being forcibly unloaded, and may not refuse. */
1374 spin_lock_irqsave(CCISS_LOCK(ctlr
), flags
);
1375 sa
= (struct cciss_scsi_adapter_data_t
*) hba
[ctlr
]->scsi_ctlr
;
1376 stk
= &sa
->cmd_stack
;
1378 /* if we weren't ever actually registered, don't unregister */
1379 if (sa
->registered
) {
1380 spin_unlock_irqrestore(CCISS_LOCK(ctlr
), flags
);
1381 scsi_remove_host(sa
->scsi_host
);
1382 scsi_host_put(sa
->scsi_host
);
1383 spin_lock_irqsave(CCISS_LOCK(ctlr
), flags
);
1386 /* set scsi_host to NULL so our detect routine will
1387 find us on register */
1388 sa
->scsi_host
= NULL
;
1389 scsi_cmd_stack_free(ctlr
);
1391 spin_unlock_irqrestore(CCISS_LOCK(ctlr
), flags
);
1395 cciss_register_scsi(int ctlr
)
1397 unsigned long flags
;
1399 CPQ_TAPE_LOCK(ctlr
, flags
);
1401 /* Since this is really a block driver, the SCSI core may not be
1402 initialized at init time, in which case, calling scsi_register_host
1403 would hang. Instead, we do it later, via /proc filesystem
1404 and rc scripts, when we know SCSI core is good to go. */
1406 /* Only register if SCSI devices are detected. */
1407 if (ccissscsi
[ctlr
].ndevices
!= 0) {
1408 ((struct cciss_scsi_adapter_data_t
*)
1409 hba
[ctlr
]->scsi_ctlr
)->registered
= 1;
1410 CPQ_TAPE_UNLOCK(ctlr
, flags
);
1411 return cciss_scsi_detect(ctlr
);
1413 CPQ_TAPE_UNLOCK(ctlr
, flags
);
1415 "cciss%d: No appropriate SCSI device detected, "
1416 "SCSI subsystem not engaged.\n", ctlr
);
1421 cciss_engage_scsi(int ctlr
)
1423 struct cciss_scsi_adapter_data_t
*sa
;
1424 struct cciss_scsi_cmd_stack_t
*stk
;
1425 unsigned long flags
;
1427 spin_lock_irqsave(CCISS_LOCK(ctlr
), flags
);
1428 sa
= (struct cciss_scsi_adapter_data_t
*) hba
[ctlr
]->scsi_ctlr
;
1429 stk
= &sa
->cmd_stack
;
1431 if (((struct cciss_scsi_adapter_data_t
*)
1432 hba
[ctlr
]->scsi_ctlr
)->registered
) {
1433 printk("cciss%d: SCSI subsystem already engaged.\n", ctlr
);
1434 spin_unlock_irqrestore(CCISS_LOCK(ctlr
), flags
);
1437 spin_unlock_irqrestore(CCISS_LOCK(ctlr
), flags
);
1438 cciss_update_non_disk_devices(ctlr
, -1);
1439 cciss_register_scsi(ctlr
);
1444 cciss_proc_tape_report(int ctlr
, unsigned char *buffer
, off_t
*pos
, off_t
*len
)
1446 unsigned long flags
;
1449 *pos
= *pos
-1; *len
= *len
- 1; // cut off the last trailing newline
1451 CPQ_TAPE_LOCK(ctlr
, flags
);
1452 size
= sprintf(buffer
+ *len
,
1453 "Sequential access devices: %d\n\n",
1454 ccissscsi
[ctlr
].ndevices
);
1455 CPQ_TAPE_UNLOCK(ctlr
, flags
);
1456 *pos
+= size
; *len
+= size
;
1459 /* Need at least one of these error handlers to keep ../scsi/hosts.c from
1460 * complaining. Doing a host- or bus-reset can't do anything good here.
1461 * Despite what it might say in scsi_error.c, there may well be commands
1462 * on the controller, as the cciss driver registers twice, once as a block
1463 * device for the logical drives, and once as a scsi device, for any tape
1464 * drives. So we know there are no commands out on the tape drives, but we
1465 * don't know there are no commands on the controller, and it is likely
1466 * that there probably are, as the cciss block device is most commonly used
1467 * as a boot device (embedded controller on HP/Compaq systems.)
1470 static int cciss_eh_device_reset_handler(struct scsi_cmnd
*scsicmd
)
1473 CommandList_struct
*cmd_in_trouble
;
1477 /* find the controller to which the command to be aborted was sent */
1478 c
= (ctlr_info_t
**) &scsicmd
->device
->host
->hostdata
[0];
1479 if (c
== NULL
) /* paranoia */
1482 printk(KERN_WARNING
"cciss%d: resetting tape drive or medium changer.\n", ctlr
);
1484 /* find the command that's giving us trouble */
1485 cmd_in_trouble
= (CommandList_struct
*) scsicmd
->host_scribble
;
1486 if (cmd_in_trouble
== NULL
) { /* paranoia */
1489 /* send a reset to the SCSI LUN which the command was sent to */
1490 rc
= sendcmd(CCISS_RESET_MSG
, ctlr
, NULL
, 0, 2, 0, 0,
1491 (unsigned char *) &cmd_in_trouble
->Header
.LUN
.LunAddrBytes
[0],
1493 /* sendcmd turned off interrputs on the board, turn 'em back on. */
1494 (*c
)->access
.set_intr_mask(*c
, CCISS_INTR_ON
);
1497 printk(KERN_WARNING
"cciss%d: resetting device failed.\n", ctlr
);
1501 static int cciss_eh_abort_handler(struct scsi_cmnd
*scsicmd
)
1504 CommandList_struct
*cmd_to_abort
;
1508 /* find the controller to which the command to be aborted was sent */
1509 c
= (ctlr_info_t
**) &scsicmd
->device
->host
->hostdata
[0];
1510 if (c
== NULL
) /* paranoia */
1513 printk(KERN_WARNING
"cciss%d: aborting tardy SCSI cmd\n", ctlr
);
1515 /* find the command to be aborted */
1516 cmd_to_abort
= (CommandList_struct
*) scsicmd
->host_scribble
;
1517 if (cmd_to_abort
== NULL
) /* paranoia */
1519 rc
= sendcmd(CCISS_ABORT_MSG
, ctlr
, &cmd_to_abort
->Header
.Tag
,
1521 (unsigned char *) &cmd_to_abort
->Header
.LUN
.LunAddrBytes
[0],
1523 /* sendcmd turned off interrputs on the board, turn 'em back on. */
1524 (*c
)->access
.set_intr_mask(*c
, CCISS_INTR_ON
);
1531 #else /* no CONFIG_CISS_SCSI_TAPE */
1533 /* If no tape support, then these become defined out of existence */
1535 #define cciss_scsi_setup(cntl_num)
1536 #define cciss_unregister_scsi(ctlr)
1537 #define cciss_register_scsi(ctlr)
1538 #define cciss_proc_tape_report(ctlr, buffer, pos, len)
1540 #endif /* CONFIG_CISS_SCSI_TAPE */