2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
8 * Copyright (c) 2000-2007 Adaptec, Inc. (aacraid@adaptec.com)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; see the file COPYING. If not, write to
22 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/types.h>
29 #include <linux/pci.h>
30 #include <linux/spinlock.h>
31 #include <linux/slab.h>
32 #include <linux/completion.h>
33 #include <linux/blkdev.h>
34 #include <asm/semaphore.h>
35 #include <asm/uaccess.h>
36 #include <linux/highmem.h> /* For flush_kernel_dcache_page */
38 #include <scsi/scsi.h>
39 #include <scsi/scsi_cmnd.h>
40 #include <scsi/scsi_device.h>
41 #include <scsi/scsi_host.h>
45 /* values for inqd_pdt: Peripheral device type in plain English */
46 #define INQD_PDT_DA 0x00 /* Direct-access (DISK) device */
47 #define INQD_PDT_PROC 0x03 /* Processor device */
48 #define INQD_PDT_CHNGR 0x08 /* Changer (jukebox, scsi2) */
49 #define INQD_PDT_COMM 0x09 /* Communication device (scsi2) */
50 #define INQD_PDT_NOLUN2 0x1f /* Unknown Device (scsi2) */
51 #define INQD_PDT_NOLUN 0x7f /* Logical Unit Not Present */
53 #define INQD_PDT_DMASK 0x1F /* Peripheral Device Type Mask */
54 #define INQD_PDT_QMASK 0xE0 /* Peripheral Device Qualifer Mask */
60 #define SENCODE_NO_SENSE 0x00
61 #define SENCODE_END_OF_DATA 0x00
62 #define SENCODE_BECOMING_READY 0x04
63 #define SENCODE_INIT_CMD_REQUIRED 0x04
64 #define SENCODE_PARAM_LIST_LENGTH_ERROR 0x1A
65 #define SENCODE_INVALID_COMMAND 0x20
66 #define SENCODE_LBA_OUT_OF_RANGE 0x21
67 #define SENCODE_INVALID_CDB_FIELD 0x24
68 #define SENCODE_LUN_NOT_SUPPORTED 0x25
69 #define SENCODE_INVALID_PARAM_FIELD 0x26
70 #define SENCODE_PARAM_NOT_SUPPORTED 0x26
71 #define SENCODE_PARAM_VALUE_INVALID 0x26
72 #define SENCODE_RESET_OCCURRED 0x29
73 #define SENCODE_LUN_NOT_SELF_CONFIGURED_YET 0x3E
74 #define SENCODE_INQUIRY_DATA_CHANGED 0x3F
75 #define SENCODE_SAVING_PARAMS_NOT_SUPPORTED 0x39
76 #define SENCODE_DIAGNOSTIC_FAILURE 0x40
77 #define SENCODE_INTERNAL_TARGET_FAILURE 0x44
78 #define SENCODE_INVALID_MESSAGE_ERROR 0x49
79 #define SENCODE_LUN_FAILED_SELF_CONFIG 0x4c
80 #define SENCODE_OVERLAPPED_COMMAND 0x4E
83 * Additional sense codes
86 #define ASENCODE_NO_SENSE 0x00
87 #define ASENCODE_END_OF_DATA 0x05
88 #define ASENCODE_BECOMING_READY 0x01
89 #define ASENCODE_INIT_CMD_REQUIRED 0x02
90 #define ASENCODE_PARAM_LIST_LENGTH_ERROR 0x00
91 #define ASENCODE_INVALID_COMMAND 0x00
92 #define ASENCODE_LBA_OUT_OF_RANGE 0x00
93 #define ASENCODE_INVALID_CDB_FIELD 0x00
94 #define ASENCODE_LUN_NOT_SUPPORTED 0x00
95 #define ASENCODE_INVALID_PARAM_FIELD 0x00
96 #define ASENCODE_PARAM_NOT_SUPPORTED 0x01
97 #define ASENCODE_PARAM_VALUE_INVALID 0x02
98 #define ASENCODE_RESET_OCCURRED 0x00
99 #define ASENCODE_LUN_NOT_SELF_CONFIGURED_YET 0x00
100 #define ASENCODE_INQUIRY_DATA_CHANGED 0x03
101 #define ASENCODE_SAVING_PARAMS_NOT_SUPPORTED 0x00
102 #define ASENCODE_DIAGNOSTIC_FAILURE 0x80
103 #define ASENCODE_INTERNAL_TARGET_FAILURE 0x00
104 #define ASENCODE_INVALID_MESSAGE_ERROR 0x00
105 #define ASENCODE_LUN_FAILED_SELF_CONFIG 0x00
106 #define ASENCODE_OVERLAPPED_COMMAND 0x00
108 #define BYTE0(x) (unsigned char)(x)
109 #define BYTE1(x) (unsigned char)((x) >> 8)
110 #define BYTE2(x) (unsigned char)((x) >> 16)
111 #define BYTE3(x) (unsigned char)((x) >> 24)
113 /*------------------------------------------------------------------------------
114 * S T R U C T S / T Y P E D E F S
115 *----------------------------------------------------------------------------*/
116 /* SCSI inquiry data */
117 struct inquiry_data {
118 u8 inqd_pdt; /* Peripheral qualifier | Peripheral Device Type */
119 u8 inqd_dtq; /* RMB | Device Type Qualifier */
120 u8 inqd_ver; /* ISO version | ECMA version | ANSI-approved version */
121 u8 inqd_rdf; /* AENC | TrmIOP | Response data format */
122 u8 inqd_len; /* Additional length (n-4) */
123 u8 inqd_pad1[2];/* Reserved - must be zero */
124 u8 inqd_pad2; /* RelAdr | WBus32 | WBus16 | Sync | Linked |Reserved| CmdQue | SftRe */
125 u8 inqd_vid[8]; /* Vendor ID */
126 u8 inqd_pid[16];/* Product ID */
127 u8 inqd_prl[4]; /* Product Revision Level */
131 * M O D U L E G L O B A L S
134 static unsigned long aac_build_sg(struct scsi_cmnd* scsicmd, struct sgmap* sgmap);
135 static unsigned long aac_build_sg64(struct scsi_cmnd* scsicmd, struct sgmap64* psg);
136 static unsigned long aac_build_sgraw(struct scsi_cmnd* scsicmd, struct sgmapraw* psg);
137 static int aac_send_srb_fib(struct scsi_cmnd* scsicmd);
138 #ifdef AAC_DETAILED_STATUS_INFO
139 static char *aac_get_status_string(u32 status);
143 * Non dasd selection is handled entirely in aachba now
146 static int nondasd = -1;
147 static int aac_cache;
148 static int dacmode = -1;
151 int startup_timeout = 180;
152 int aif_timeout = 120;
154 module_param(nondasd, int, S_IRUGO|S_IWUSR);
155 MODULE_PARM_DESC(nondasd, "Control scanning of hba for nondasd devices."
157 module_param_named(cache, aac_cache, int, S_IRUGO|S_IWUSR);
158 MODULE_PARM_DESC(cache, "Disable Queue Flush commands:\n"
159 "\tbit 0 - Disable FUA in WRITE SCSI commands\n"
160 "\tbit 1 - Disable SYNCHRONIZE_CACHE SCSI command\n"
161 "\tbit 2 - Disable only if Battery not protecting Cache");
162 module_param(dacmode, int, S_IRUGO|S_IWUSR);
163 MODULE_PARM_DESC(dacmode, "Control whether dma addressing is using 64 bit DAC."
165 module_param_named(commit, aac_commit, int, S_IRUGO|S_IWUSR);
166 MODULE_PARM_DESC(commit, "Control whether a COMMIT_CONFIG is issued to the"
167 " adapter for foreign arrays.\n"
168 "This is typically needed in systems that do not have a BIOS."
170 module_param_named(msi, aac_msi, int, S_IRUGO|S_IWUSR);
171 MODULE_PARM_DESC(msi, "IRQ handling."
172 " 0=PIC(default), 1=MSI, 2=MSI-X(unsupported, uses MSI)");
173 module_param(startup_timeout, int, S_IRUGO|S_IWUSR);
174 MODULE_PARM_DESC(startup_timeout, "The duration of time in seconds to wait for"
175 " adapter to have it's kernel up and\n"
176 "running. This is typically adjusted for large systems that do not"
178 module_param(aif_timeout, int, S_IRUGO|S_IWUSR);
179 MODULE_PARM_DESC(aif_timeout, "The duration of time in seconds to wait for"
180 " applications to pick up AIFs before\n"
181 "deregistering them. This is typically adjusted for heavily burdened"
185 module_param(numacb, int, S_IRUGO|S_IWUSR);
186 MODULE_PARM_DESC(numacb, "Request a limit to the number of adapter control"
187 " blocks (FIB) allocated. Valid values are 512 and down. Default is"
188 " to use suggestion from Firmware.");
191 module_param(acbsize, int, S_IRUGO|S_IWUSR);
192 MODULE_PARM_DESC(acbsize, "Request a specific adapter control block (FIB)"
193 " size. Valid values are 512, 2048, 4096 and 8192. Default is to use"
194 " suggestion from Firmware.");
196 int update_interval = 30 * 60;
197 module_param(update_interval, int, S_IRUGO|S_IWUSR);
198 MODULE_PARM_DESC(update_interval, "Interval in seconds between time sync"
199 " updates issued to adapter.");
201 int check_interval = 24 * 60 * 60;
202 module_param(check_interval, int, S_IRUGO|S_IWUSR);
203 MODULE_PARM_DESC(check_interval, "Interval in seconds between adapter health"
206 int aac_check_reset = 1;
207 module_param_named(check_reset, aac_check_reset, int, S_IRUGO|S_IWUSR);
208 MODULE_PARM_DESC(aac_check_reset, "If adapter fails health check, reset the"
209 " adapter. a value of -1 forces the reset to adapters programmed to"
212 int expose_physicals = -1;
213 module_param(expose_physicals, int, S_IRUGO|S_IWUSR);
214 MODULE_PARM_DESC(expose_physicals, "Expose physical components of the arrays."
215 " -1=protect 0=off, 1=on");
217 int aac_reset_devices;
218 module_param_named(reset_devices, aac_reset_devices, int, S_IRUGO|S_IWUSR);
219 MODULE_PARM_DESC(reset_devices, "Force an adapter reset at initialization.");
221 static inline int aac_valid_context(struct scsi_cmnd *scsicmd,
222 struct fib *fibptr) {
223 struct scsi_device *device;
225 if (unlikely(!scsicmd || !scsicmd->scsi_done)) {
226 dprintk((KERN_WARNING "aac_valid_context: scsi command corrupt\n"));
227 aac_fib_complete(fibptr);
228 aac_fib_free(fibptr);
231 scsicmd->SCp.phase = AAC_OWNER_MIDLEVEL;
232 device = scsicmd->device;
233 if (unlikely(!device || !scsi_device_online(device))) {
234 dprintk((KERN_WARNING "aac_valid_context: scsi device corrupt\n"));
235 aac_fib_complete(fibptr);
236 aac_fib_free(fibptr);
243 * aac_get_config_status - check the adapter configuration
244 * @common: adapter to query
246 * Query config status, and commit the configuration if needed.
248 int aac_get_config_status(struct aac_dev *dev, int commit_flag)
253 if (!(fibptr = aac_fib_alloc(dev)))
256 aac_fib_init(fibptr);
258 struct aac_get_config_status *dinfo;
259 dinfo = (struct aac_get_config_status *) fib_data(fibptr);
261 dinfo->command = cpu_to_le32(VM_ContainerConfig);
262 dinfo->type = cpu_to_le32(CT_GET_CONFIG_STATUS);
263 dinfo->count = cpu_to_le32(sizeof(((struct aac_get_config_status_resp *)NULL)->data));
266 status = aac_fib_send(ContainerCommand,
268 sizeof (struct aac_get_config_status),
273 printk(KERN_WARNING "aac_get_config_status: SendFIB failed.\n");
275 struct aac_get_config_status_resp *reply
276 = (struct aac_get_config_status_resp *) fib_data(fibptr);
277 dprintk((KERN_WARNING
278 "aac_get_config_status: response=%d status=%d action=%d\n",
279 le32_to_cpu(reply->response),
280 le32_to_cpu(reply->status),
281 le32_to_cpu(reply->data.action)));
282 if ((le32_to_cpu(reply->response) != ST_OK) ||
283 (le32_to_cpu(reply->status) != CT_OK) ||
284 (le32_to_cpu(reply->data.action) > CFACT_PAUSE)) {
285 printk(KERN_WARNING "aac_get_config_status: Will not issue the Commit Configuration\n");
289 aac_fib_complete(fibptr);
290 /* Send a CT_COMMIT_CONFIG to enable discovery of devices */
292 if ((aac_commit == 1) || commit_flag) {
293 struct aac_commit_config * dinfo;
294 aac_fib_init(fibptr);
295 dinfo = (struct aac_commit_config *) fib_data(fibptr);
297 dinfo->command = cpu_to_le32(VM_ContainerConfig);
298 dinfo->type = cpu_to_le32(CT_COMMIT_CONFIG);
300 status = aac_fib_send(ContainerCommand,
302 sizeof (struct aac_commit_config),
306 aac_fib_complete(fibptr);
307 } else if (aac_commit == 0) {
309 "aac_get_config_status: Foreign device configurations are being ignored\n");
312 aac_fib_free(fibptr);
317 * aac_get_containers - list containers
318 * @common: adapter to probe
320 * Make a list of all containers on this controller
322 int aac_get_containers(struct aac_dev *dev)
324 struct fsa_dev_info *fsa_dev_ptr;
328 struct aac_get_container_count *dinfo;
329 struct aac_get_container_count_resp *dresp;
330 int maximum_num_containers = MAXIMUM_NUM_CONTAINERS;
332 if (!(fibptr = aac_fib_alloc(dev)))
335 aac_fib_init(fibptr);
336 dinfo = (struct aac_get_container_count *) fib_data(fibptr);
337 dinfo->command = cpu_to_le32(VM_ContainerConfig);
338 dinfo->type = cpu_to_le32(CT_GET_CONTAINER_COUNT);
340 status = aac_fib_send(ContainerCommand,
342 sizeof (struct aac_get_container_count),
347 dresp = (struct aac_get_container_count_resp *)fib_data(fibptr);
348 maximum_num_containers = le32_to_cpu(dresp->ContainerSwitchEntries);
349 aac_fib_complete(fibptr);
351 aac_fib_free(fibptr);
353 if (maximum_num_containers < MAXIMUM_NUM_CONTAINERS)
354 maximum_num_containers = MAXIMUM_NUM_CONTAINERS;
355 fsa_dev_ptr = kzalloc(sizeof(*fsa_dev_ptr) * maximum_num_containers,
360 dev->fsa_dev = fsa_dev_ptr;
361 dev->maximum_num_containers = maximum_num_containers;
363 for (index = 0; index < dev->maximum_num_containers; ) {
364 fsa_dev_ptr[index].devname[0] = '\0';
366 status = aac_probe_container(dev, index);
369 printk(KERN_WARNING "aac_get_containers: SendFIB failed.\n");
374 * If there are no more containers, then stop asking.
376 if (++index >= status)
382 static void get_container_name_callback(void *context, struct fib * fibptr)
384 struct aac_get_name_resp * get_name_reply;
385 struct scsi_cmnd * scsicmd;
387 scsicmd = (struct scsi_cmnd *) context;
389 if (!aac_valid_context(scsicmd, fibptr))
392 dprintk((KERN_DEBUG "get_container_name_callback[cpu %d]: t = %ld.\n", smp_processor_id(), jiffies));
393 BUG_ON(fibptr == NULL);
395 get_name_reply = (struct aac_get_name_resp *) fib_data(fibptr);
396 /* Failure is irrelevant, using default value instead */
397 if ((le32_to_cpu(get_name_reply->status) == CT_OK)
398 && (get_name_reply->data[0] != '\0')) {
399 char *sp = get_name_reply->data;
400 sp[sizeof(((struct aac_get_name_resp *)NULL)->data)-1] = '\0';
404 struct inquiry_data inq;
405 char d[sizeof(((struct inquiry_data *)NULL)->inqd_pid)];
406 int count = sizeof(d);
409 *dp++ = (*sp) ? *sp++ : ' ';
410 } while (--count > 0);
412 scsi_sg_copy_to_buffer(scsicmd, &inq, sizeof(inq));
413 memcpy(inq.inqd_pid, d, sizeof(d));
414 scsi_sg_copy_from_buffer(scsicmd, &inq, sizeof(inq));
418 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
420 aac_fib_complete(fibptr);
421 aac_fib_free(fibptr);
422 scsicmd->scsi_done(scsicmd);
426 * aac_get_container_name - get container name, none blocking.
428 static int aac_get_container_name(struct scsi_cmnd * scsicmd)
431 struct aac_get_name *dinfo;
432 struct fib * cmd_fibcontext;
433 struct aac_dev * dev;
435 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
437 if (!(cmd_fibcontext = aac_fib_alloc(dev)))
440 aac_fib_init(cmd_fibcontext);
441 dinfo = (struct aac_get_name *) fib_data(cmd_fibcontext);
443 dinfo->command = cpu_to_le32(VM_ContainerConfig);
444 dinfo->type = cpu_to_le32(CT_READ_NAME);
445 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
446 dinfo->count = cpu_to_le32(sizeof(((struct aac_get_name_resp *)NULL)->data));
448 status = aac_fib_send(ContainerCommand,
450 sizeof (struct aac_get_name),
453 (fib_callback)get_container_name_callback,
457 * Check that the command queued to the controller
459 if (status == -EINPROGRESS) {
460 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
464 printk(KERN_WARNING "aac_get_container_name: aac_fib_send failed with status: %d.\n", status);
465 aac_fib_complete(cmd_fibcontext);
466 aac_fib_free(cmd_fibcontext);
470 static int aac_probe_container_callback2(struct scsi_cmnd * scsicmd)
472 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
474 if ((fsa_dev_ptr[scmd_id(scsicmd)].valid & 1))
475 return aac_scsi_cmd(scsicmd);
477 scsicmd->result = DID_NO_CONNECT << 16;
478 scsicmd->scsi_done(scsicmd);
482 static void _aac_probe_container2(void * context, struct fib * fibptr)
484 struct fsa_dev_info *fsa_dev_ptr;
485 int (*callback)(struct scsi_cmnd *);
486 struct scsi_cmnd * scsicmd = (struct scsi_cmnd *)context;
489 if (!aac_valid_context(scsicmd, fibptr))
492 scsicmd->SCp.Status = 0;
493 fsa_dev_ptr = fibptr->dev->fsa_dev;
495 struct aac_mount * dresp = (struct aac_mount *) fib_data(fibptr);
496 fsa_dev_ptr += scmd_id(scsicmd);
498 if ((le32_to_cpu(dresp->status) == ST_OK) &&
499 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE) &&
500 (le32_to_cpu(dresp->mnt[0].state) != FSCS_HIDDEN)) {
501 fsa_dev_ptr->valid = 1;
502 fsa_dev_ptr->type = le32_to_cpu(dresp->mnt[0].vol);
504 = ((u64)le32_to_cpu(dresp->mnt[0].capacity)) +
505 (((u64)le32_to_cpu(dresp->mnt[0].capacityhigh)) << 32);
506 fsa_dev_ptr->ro = ((le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY) != 0);
508 if ((fsa_dev_ptr->valid & 1) == 0)
509 fsa_dev_ptr->valid = 0;
510 scsicmd->SCp.Status = le32_to_cpu(dresp->count);
512 aac_fib_complete(fibptr);
513 aac_fib_free(fibptr);
514 callback = (int (*)(struct scsi_cmnd *))(scsicmd->SCp.ptr);
515 scsicmd->SCp.ptr = NULL;
516 (*callback)(scsicmd);
520 static void _aac_probe_container1(void * context, struct fib * fibptr)
522 struct scsi_cmnd * scsicmd;
523 struct aac_mount * dresp;
524 struct aac_query_mount *dinfo;
527 dresp = (struct aac_mount *) fib_data(fibptr);
528 dresp->mnt[0].capacityhigh = 0;
529 if ((le32_to_cpu(dresp->status) != ST_OK) ||
530 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE)) {
531 _aac_probe_container2(context, fibptr);
534 scsicmd = (struct scsi_cmnd *) context;
536 if (!aac_valid_context(scsicmd, fibptr))
539 aac_fib_init(fibptr);
541 dinfo = (struct aac_query_mount *)fib_data(fibptr);
543 dinfo->command = cpu_to_le32(VM_NameServe64);
544 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
545 dinfo->type = cpu_to_le32(FT_FILESYS);
547 status = aac_fib_send(ContainerCommand,
549 sizeof(struct aac_query_mount),
552 _aac_probe_container2,
555 * Check that the command queued to the controller
557 if (status == -EINPROGRESS)
558 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
559 else if (status < 0) {
560 /* Inherit results from VM_NameServe, if any */
561 dresp->status = cpu_to_le32(ST_OK);
562 _aac_probe_container2(context, fibptr);
566 static int _aac_probe_container(struct scsi_cmnd * scsicmd, int (*callback)(struct scsi_cmnd *))
569 int status = -ENOMEM;
571 if ((fibptr = aac_fib_alloc((struct aac_dev *)scsicmd->device->host->hostdata))) {
572 struct aac_query_mount *dinfo;
574 aac_fib_init(fibptr);
576 dinfo = (struct aac_query_mount *)fib_data(fibptr);
578 dinfo->command = cpu_to_le32(VM_NameServe);
579 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
580 dinfo->type = cpu_to_le32(FT_FILESYS);
581 scsicmd->SCp.ptr = (char *)callback;
583 status = aac_fib_send(ContainerCommand,
585 sizeof(struct aac_query_mount),
588 _aac_probe_container1,
591 * Check that the command queued to the controller
593 if (status == -EINPROGRESS) {
594 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
598 scsicmd->SCp.ptr = NULL;
599 aac_fib_complete(fibptr);
600 aac_fib_free(fibptr);
604 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
606 fsa_dev_ptr += scmd_id(scsicmd);
607 if ((fsa_dev_ptr->valid & 1) == 0) {
608 fsa_dev_ptr->valid = 0;
609 return (*callback)(scsicmd);
617 * aac_probe_container - query a logical volume
618 * @dev: device to query
619 * @cid: container identifier
621 * Queries the controller about the given volume. The volume information
622 * is updated in the struct fsa_dev_info structure rather than returned.
624 static int aac_probe_container_callback1(struct scsi_cmnd * scsicmd)
626 scsicmd->device = NULL;
630 int aac_probe_container(struct aac_dev *dev, int cid)
632 struct scsi_cmnd *scsicmd = kmalloc(sizeof(*scsicmd), GFP_KERNEL);
633 struct scsi_device *scsidev = kmalloc(sizeof(*scsidev), GFP_KERNEL);
636 if (!scsicmd || !scsidev) {
641 scsicmd->list.next = NULL;
642 scsicmd->scsi_done = (void (*)(struct scsi_cmnd*))aac_probe_container_callback1;
644 scsicmd->device = scsidev;
645 scsidev->sdev_state = 0;
647 scsidev->host = dev->scsi_host_ptr;
649 if (_aac_probe_container(scsicmd, aac_probe_container_callback1) == 0)
650 while (scsicmd->device == scsidev)
653 status = scsicmd->SCp.Status;
658 /* Local Structure to set SCSI inquiry data strings */
660 char vid[8]; /* Vendor ID */
661 char pid[16]; /* Product ID */
662 char prl[4]; /* Product Revision Level */
666 * InqStrCopy - string merge
667 * @a: string to copy from
668 * @b: string to copy to
670 * Copy a String from one location to another
674 static void inqstrcpy(char *a, char *b)
677 while (*a != (char)0)
681 static char *container_types[] = {
705 char * get_container_type(unsigned tindex)
707 if (tindex >= ARRAY_SIZE(container_types))
708 tindex = ARRAY_SIZE(container_types) - 1;
709 return container_types[tindex];
712 /* Function: setinqstr
714 * Arguments: [1] pointer to void [1] int
716 * Purpose: Sets SCSI inquiry data strings for vendor, product
717 * and revision level. Allows strings to be set in platform dependant
718 * files instead of in OS dependant driver source.
721 static void setinqstr(struct aac_dev *dev, void *data, int tindex)
723 struct scsi_inq *str;
725 str = (struct scsi_inq *)(data); /* cast data to scsi inq block */
726 memset(str, ' ', sizeof(*str));
728 if (dev->supplement_adapter_info.AdapterTypeText[0]) {
729 char * cp = dev->supplement_adapter_info.AdapterTypeText;
731 if ((cp[0] == 'A') && (cp[1] == 'O') && (cp[2] == 'C'))
732 inqstrcpy("SMC", str->vid);
734 c = sizeof(str->vid);
735 while (*cp && *cp != ' ' && --c)
739 inqstrcpy (dev->supplement_adapter_info.AdapterTypeText,
742 while (*cp && *cp != ' ')
747 /* last six chars reserved for vol type */
749 if (strlen(cp) > sizeof(str->pid)) {
750 c = cp[sizeof(str->pid)];
751 cp[sizeof(str->pid)] = '\0';
753 inqstrcpy (cp, str->pid);
755 cp[sizeof(str->pid)] = c;
757 struct aac_driver_ident *mp = aac_get_driver_ident(dev->cardtype);
759 inqstrcpy (mp->vname, str->vid);
760 /* last six chars reserved for vol type */
761 inqstrcpy (mp->model, str->pid);
764 if (tindex < ARRAY_SIZE(container_types)){
765 char *findit = str->pid;
767 for ( ; *findit != ' '; findit++); /* walk till we find a space */
768 /* RAID is superfluous in the context of a RAID device */
769 if (memcmp(findit-4, "RAID", 4) == 0)
770 *(findit -= 4) = ' ';
771 if (((findit - str->pid) + strlen(container_types[tindex]))
772 < (sizeof(str->pid) + sizeof(str->prl)))
773 inqstrcpy (container_types[tindex], findit + 1);
775 inqstrcpy ("V1.0", str->prl);
778 static void get_container_serial_callback(void *context, struct fib * fibptr)
780 struct aac_get_serial_resp * get_serial_reply;
781 struct scsi_cmnd * scsicmd;
783 BUG_ON(fibptr == NULL);
785 scsicmd = (struct scsi_cmnd *) context;
786 if (!aac_valid_context(scsicmd, fibptr))
789 get_serial_reply = (struct aac_get_serial_resp *) fib_data(fibptr);
790 /* Failure is irrelevant, using default value instead */
791 if (le32_to_cpu(get_serial_reply->status) == CT_OK) {
795 sp[1] = scsicmd->cmnd[2];
797 sp[3] = snprintf(sp+4, sizeof(sp)-4, "%08X",
798 le32_to_cpu(get_serial_reply->uid));
799 scsi_sg_copy_from_buffer(scsicmd, sp, sizeof(sp));
802 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
804 aac_fib_complete(fibptr);
805 aac_fib_free(fibptr);
806 scsicmd->scsi_done(scsicmd);
810 * aac_get_container_serial - get container serial, none blocking.
812 static int aac_get_container_serial(struct scsi_cmnd * scsicmd)
815 struct aac_get_serial *dinfo;
816 struct fib * cmd_fibcontext;
817 struct aac_dev * dev;
819 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
821 if (!(cmd_fibcontext = aac_fib_alloc(dev)))
824 aac_fib_init(cmd_fibcontext);
825 dinfo = (struct aac_get_serial *) fib_data(cmd_fibcontext);
827 dinfo->command = cpu_to_le32(VM_ContainerConfig);
828 dinfo->type = cpu_to_le32(CT_CID_TO_32BITS_UID);
829 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
831 status = aac_fib_send(ContainerCommand,
833 sizeof (struct aac_get_serial),
836 (fib_callback) get_container_serial_callback,
840 * Check that the command queued to the controller
842 if (status == -EINPROGRESS) {
843 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
847 printk(KERN_WARNING "aac_get_container_serial: aac_fib_send failed with status: %d.\n", status);
848 aac_fib_complete(cmd_fibcontext);
849 aac_fib_free(cmd_fibcontext);
853 /* Function: setinqserial
855 * Arguments: [1] pointer to void [1] int
857 * Purpose: Sets SCSI Unit Serial number.
858 * This is a fake. We should read a proper
859 * serial number from the container. <SuSE>But
860 * without docs it's quite hard to do it :-)
861 * So this will have to do in the meantime.</SuSE>
864 static int setinqserial(struct aac_dev *dev, void *data, int cid)
867 * This breaks array migration.
869 return snprintf((char *)(data), sizeof(struct scsi_inq) - 4, "%08X%02X",
870 le32_to_cpu(dev->adapter_info.serial[0]), cid);
873 static inline void set_sense(struct sense_data *sense_data, u8 sense_key,
874 u8 sense_code, u8 a_sense_code, u8 bit_pointer, u16 field_pointer)
876 u8 *sense_buf = (u8 *)sense_data;
877 /* Sense data valid, err code 70h */
878 sense_buf[0] = 0x70; /* No info field */
879 sense_buf[1] = 0; /* Segment number, always zero */
881 sense_buf[2] = sense_key; /* Sense key */
883 sense_buf[12] = sense_code; /* Additional sense code */
884 sense_buf[13] = a_sense_code; /* Additional sense code qualifier */
886 if (sense_key == ILLEGAL_REQUEST) {
887 sense_buf[7] = 10; /* Additional sense length */
889 sense_buf[15] = bit_pointer;
890 /* Illegal parameter is in the parameter block */
891 if (sense_code == SENCODE_INVALID_CDB_FIELD)
892 sense_buf[15] |= 0xc0;/* Std sense key specific field */
893 /* Illegal parameter is in the CDB block */
894 sense_buf[16] = field_pointer >> 8; /* MSB */
895 sense_buf[17] = field_pointer; /* LSB */
897 sense_buf[7] = 6; /* Additional sense length */
900 static int aac_bounds_32(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
902 if (lba & 0xffffffff00000000LL) {
903 int cid = scmd_id(cmd);
904 dprintk((KERN_DEBUG "aacraid: Illegal lba\n"));
905 cmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
906 SAM_STAT_CHECK_CONDITION;
907 set_sense(&dev->fsa_dev[cid].sense_data,
908 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
909 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
910 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
911 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
912 SCSI_SENSE_BUFFERSIZE));
919 static int aac_bounds_64(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
924 static void io_callback(void *context, struct fib * fibptr);
926 static int aac_read_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
929 struct aac_raw_io *readcmd;
931 readcmd = (struct aac_raw_io *) fib_data(fib);
932 readcmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
933 readcmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
934 readcmd->count = cpu_to_le32(count<<9);
935 readcmd->cid = cpu_to_le16(scmd_id(cmd));
936 readcmd->flags = cpu_to_le16(IO_TYPE_READ);
937 readcmd->bpTotal = 0;
938 readcmd->bpComplete = 0;
940 aac_build_sgraw(cmd, &readcmd->sg);
941 fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(readcmd->sg.count) - 1) * sizeof (struct sgentryraw));
942 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
944 * Now send the Fib to the adapter
946 return aac_fib_send(ContainerRawIo,
951 (fib_callback) io_callback,
955 static int aac_read_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
958 struct aac_read64 *readcmd;
960 readcmd = (struct aac_read64 *) fib_data(fib);
961 readcmd->command = cpu_to_le32(VM_CtHostRead64);
962 readcmd->cid = cpu_to_le16(scmd_id(cmd));
963 readcmd->sector_count = cpu_to_le16(count);
964 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
968 aac_build_sg64(cmd, &readcmd->sg);
969 fibsize = sizeof(struct aac_read64) +
970 ((le32_to_cpu(readcmd->sg.count) - 1) *
971 sizeof (struct sgentry64));
972 BUG_ON (fibsize > (fib->dev->max_fib_size -
973 sizeof(struct aac_fibhdr)));
975 * Now send the Fib to the adapter
977 return aac_fib_send(ContainerCommand64,
982 (fib_callback) io_callback,
986 static int aac_read_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
989 struct aac_read *readcmd;
991 readcmd = (struct aac_read *) fib_data(fib);
992 readcmd->command = cpu_to_le32(VM_CtBlockRead);
993 readcmd->cid = cpu_to_le32(scmd_id(cmd));
994 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
995 readcmd->count = cpu_to_le32(count * 512);
997 aac_build_sg(cmd, &readcmd->sg);
998 fibsize = sizeof(struct aac_read) +
999 ((le32_to_cpu(readcmd->sg.count) - 1) *
1000 sizeof (struct sgentry));
1001 BUG_ON (fibsize > (fib->dev->max_fib_size -
1002 sizeof(struct aac_fibhdr)));
1004 * Now send the Fib to the adapter
1006 return aac_fib_send(ContainerCommand,
1011 (fib_callback) io_callback,
1015 static int aac_write_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1018 struct aac_raw_io *writecmd;
1020 writecmd = (struct aac_raw_io *) fib_data(fib);
1021 writecmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
1022 writecmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
1023 writecmd->count = cpu_to_le32(count<<9);
1024 writecmd->cid = cpu_to_le16(scmd_id(cmd));
1025 writecmd->flags = (fua && ((aac_cache & 5) != 1) &&
1026 (((aac_cache & 5) != 5) || !fib->dev->cache_protected)) ?
1027 cpu_to_le16(IO_TYPE_WRITE|IO_SUREWRITE) :
1028 cpu_to_le16(IO_TYPE_WRITE);
1029 writecmd->bpTotal = 0;
1030 writecmd->bpComplete = 0;
1032 aac_build_sgraw(cmd, &writecmd->sg);
1033 fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(writecmd->sg.count) - 1) * sizeof (struct sgentryraw));
1034 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
1036 * Now send the Fib to the adapter
1038 return aac_fib_send(ContainerRawIo,
1043 (fib_callback) io_callback,
1047 static int aac_write_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1050 struct aac_write64 *writecmd;
1052 writecmd = (struct aac_write64 *) fib_data(fib);
1053 writecmd->command = cpu_to_le32(VM_CtHostWrite64);
1054 writecmd->cid = cpu_to_le16(scmd_id(cmd));
1055 writecmd->sector_count = cpu_to_le16(count);
1056 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1058 writecmd->flags = 0;
1060 aac_build_sg64(cmd, &writecmd->sg);
1061 fibsize = sizeof(struct aac_write64) +
1062 ((le32_to_cpu(writecmd->sg.count) - 1) *
1063 sizeof (struct sgentry64));
1064 BUG_ON (fibsize > (fib->dev->max_fib_size -
1065 sizeof(struct aac_fibhdr)));
1067 * Now send the Fib to the adapter
1069 return aac_fib_send(ContainerCommand64,
1074 (fib_callback) io_callback,
1078 static int aac_write_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1081 struct aac_write *writecmd;
1083 writecmd = (struct aac_write *) fib_data(fib);
1084 writecmd->command = cpu_to_le32(VM_CtBlockWrite);
1085 writecmd->cid = cpu_to_le32(scmd_id(cmd));
1086 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1087 writecmd->count = cpu_to_le32(count * 512);
1088 writecmd->sg.count = cpu_to_le32(1);
1089 /* ->stable is not used - it did mean which type of write */
1091 aac_build_sg(cmd, &writecmd->sg);
1092 fibsize = sizeof(struct aac_write) +
1093 ((le32_to_cpu(writecmd->sg.count) - 1) *
1094 sizeof (struct sgentry));
1095 BUG_ON (fibsize > (fib->dev->max_fib_size -
1096 sizeof(struct aac_fibhdr)));
1098 * Now send the Fib to the adapter
1100 return aac_fib_send(ContainerCommand,
1105 (fib_callback) io_callback,
1109 static struct aac_srb * aac_scsi_common(struct fib * fib, struct scsi_cmnd * cmd)
1111 struct aac_srb * srbcmd;
1116 switch(cmd->sc_data_direction){
1120 case DMA_BIDIRECTIONAL:
1121 flag = SRB_DataIn | SRB_DataOut;
1123 case DMA_FROM_DEVICE:
1127 default: /* shuts up some versions of gcc */
1128 flag = SRB_NoDataXfer;
1132 srbcmd = (struct aac_srb*) fib_data(fib);
1133 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi);
1134 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd)));
1135 srbcmd->id = cpu_to_le32(scmd_id(cmd));
1136 srbcmd->lun = cpu_to_le32(cmd->device->lun);
1137 srbcmd->flags = cpu_to_le32(flag);
1138 timeout = cmd->timeout_per_command/HZ;
1141 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds
1142 srbcmd->retry_limit = 0; /* Obsolete parameter */
1143 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len);
1147 static void aac_srb_callback(void *context, struct fib * fibptr);
1149 static int aac_scsi_64(struct fib * fib, struct scsi_cmnd * cmd)
1152 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1154 aac_build_sg64(cmd, (struct sgmap64*) &srbcmd->sg);
1155 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
1157 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1158 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1160 * Build Scatter/Gather list
1162 fibsize = sizeof (struct aac_srb) - sizeof (struct sgentry) +
1163 ((le32_to_cpu(srbcmd->sg.count) & 0xff) *
1164 sizeof (struct sgentry64));
1165 BUG_ON (fibsize > (fib->dev->max_fib_size -
1166 sizeof(struct aac_fibhdr)));
1169 * Now send the Fib to the adapter
1171 return aac_fib_send(ScsiPortCommand64, fib,
1172 fibsize, FsaNormal, 0, 1,
1173 (fib_callback) aac_srb_callback,
1177 static int aac_scsi_32(struct fib * fib, struct scsi_cmnd * cmd)
1180 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1182 aac_build_sg(cmd, (struct sgmap*)&srbcmd->sg);
1183 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
1185 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1186 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1188 * Build Scatter/Gather list
1190 fibsize = sizeof (struct aac_srb) +
1191 (((le32_to_cpu(srbcmd->sg.count) & 0xff) - 1) *
1192 sizeof (struct sgentry));
1193 BUG_ON (fibsize > (fib->dev->max_fib_size -
1194 sizeof(struct aac_fibhdr)));
1197 * Now send the Fib to the adapter
1199 return aac_fib_send(ScsiPortCommand, fib, fibsize, FsaNormal, 0, 1,
1200 (fib_callback) aac_srb_callback, (void *) cmd);
1203 static int aac_scsi_32_64(struct fib * fib, struct scsi_cmnd * cmd)
1205 if ((sizeof(dma_addr_t) > 4) &&
1206 (num_physpages > (0xFFFFFFFFULL >> PAGE_SHIFT)) &&
1207 (fib->dev->adapter_info.options & AAC_OPT_SGMAP_HOST64))
1209 return aac_scsi_32(fib, cmd);
1212 int aac_get_adapter_info(struct aac_dev* dev)
1217 struct aac_adapter_info *info;
1218 struct aac_bus_info *command;
1219 struct aac_bus_info_response *bus_info;
1221 if (!(fibptr = aac_fib_alloc(dev)))
1224 aac_fib_init(fibptr);
1225 info = (struct aac_adapter_info *) fib_data(fibptr);
1226 memset(info,0,sizeof(*info));
1228 rcode = aac_fib_send(RequestAdapterInfo,
1232 -1, 1, /* First `interrupt' command uses special wait */
1237 aac_fib_complete(fibptr);
1238 aac_fib_free(fibptr);
1241 memcpy(&dev->adapter_info, info, sizeof(*info));
1243 if (dev->adapter_info.options & AAC_OPT_SUPPLEMENT_ADAPTER_INFO) {
1244 struct aac_supplement_adapter_info * sinfo;
1246 aac_fib_init(fibptr);
1248 sinfo = (struct aac_supplement_adapter_info *) fib_data(fibptr);
1250 memset(sinfo,0,sizeof(*sinfo));
1252 rcode = aac_fib_send(RequestSupplementAdapterInfo,
1261 memcpy(&dev->supplement_adapter_info, sinfo, sizeof(*sinfo));
1269 aac_fib_init(fibptr);
1271 bus_info = (struct aac_bus_info_response *) fib_data(fibptr);
1273 memset(bus_info, 0, sizeof(*bus_info));
1275 command = (struct aac_bus_info *)bus_info;
1277 command->Command = cpu_to_le32(VM_Ioctl);
1278 command->ObjType = cpu_to_le32(FT_DRIVE);
1279 command->MethodId = cpu_to_le32(1);
1280 command->CtlCmd = cpu_to_le32(GetBusInfo);
1282 rcode = aac_fib_send(ContainerCommand,
1289 /* reasoned default */
1290 dev->maximum_num_physicals = 16;
1291 if (rcode >= 0 && le32_to_cpu(bus_info->Status) == ST_OK) {
1292 dev->maximum_num_physicals = le32_to_cpu(bus_info->TargetsPerBus);
1293 dev->maximum_num_channels = le32_to_cpu(bus_info->BusCount);
1296 if (!dev->in_reset) {
1298 tmp = le32_to_cpu(dev->adapter_info.kernelrev);
1299 printk(KERN_INFO "%s%d: kernel %d.%d-%d[%d] %.*s\n",
1305 le32_to_cpu(dev->adapter_info.kernelbuild),
1306 (int)sizeof(dev->supplement_adapter_info.BuildDate),
1307 dev->supplement_adapter_info.BuildDate);
1308 tmp = le32_to_cpu(dev->adapter_info.monitorrev);
1309 printk(KERN_INFO "%s%d: monitor %d.%d-%d[%d]\n",
1311 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
1312 le32_to_cpu(dev->adapter_info.monitorbuild));
1313 tmp = le32_to_cpu(dev->adapter_info.biosrev);
1314 printk(KERN_INFO "%s%d: bios %d.%d-%d[%d]\n",
1316 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
1317 le32_to_cpu(dev->adapter_info.biosbuild));
1319 if (aac_show_serial_number(
1320 shost_to_class(dev->scsi_host_ptr), buffer))
1321 printk(KERN_INFO "%s%d: serial %s",
1322 dev->name, dev->id, buffer);
1323 if (dev->supplement_adapter_info.VpdInfo.Tsid[0]) {
1324 printk(KERN_INFO "%s%d: TSID %.*s\n",
1326 (int)sizeof(dev->supplement_adapter_info.VpdInfo.Tsid),
1327 dev->supplement_adapter_info.VpdInfo.Tsid);
1329 if (!aac_check_reset || ((aac_check_reset == 1) &&
1330 (dev->supplement_adapter_info.SupportedOptions2 &
1331 AAC_OPTION_IGNORE_RESET))) {
1332 printk(KERN_INFO "%s%d: Reset Adapter Ignored\n",
1333 dev->name, dev->id);
1337 dev->cache_protected = 0;
1338 dev->jbod = ((dev->supplement_adapter_info.FeatureBits &
1339 AAC_FEATURE_JBOD) != 0);
1340 dev->nondasd_support = 0;
1341 dev->raid_scsi_mode = 0;
1342 if(dev->adapter_info.options & AAC_OPT_NONDASD)
1343 dev->nondasd_support = 1;
1346 * If the firmware supports ROMB RAID/SCSI mode and we are currently
1347 * in RAID/SCSI mode, set the flag. For now if in this mode we will
1348 * force nondasd support on. If we decide to allow the non-dasd flag
1349 * additional changes changes will have to be made to support
1350 * RAID/SCSI. the function aac_scsi_cmd in this module will have to be
1351 * changed to support the new dev->raid_scsi_mode flag instead of
1352 * leaching off of the dev->nondasd_support flag. Also in linit.c the
1353 * function aac_detect will have to be modified where it sets up the
1354 * max number of channels based on the aac->nondasd_support flag only.
1356 if ((dev->adapter_info.options & AAC_OPT_SCSI_MANAGED) &&
1357 (dev->adapter_info.options & AAC_OPT_RAID_SCSI_MODE)) {
1358 dev->nondasd_support = 1;
1359 dev->raid_scsi_mode = 1;
1361 if (dev->raid_scsi_mode != 0)
1362 printk(KERN_INFO "%s%d: ROMB RAID/SCSI mode enabled\n",
1363 dev->name, dev->id);
1366 dev->nondasd_support = (nondasd!=0);
1367 if (dev->nondasd_support && !dev->in_reset)
1368 printk(KERN_INFO "%s%d: Non-DASD support enabled.\n",dev->name, dev->id);
1370 dev->dac_support = 0;
1371 if( (sizeof(dma_addr_t) > 4) && (dev->adapter_info.options & AAC_OPT_SGMAP_HOST64)){
1373 printk(KERN_INFO "%s%d: 64bit support enabled.\n",
1374 dev->name, dev->id);
1375 dev->dac_support = 1;
1379 dev->dac_support = (dacmode!=0);
1381 if(dev->dac_support != 0) {
1382 if (!pci_set_dma_mask(dev->pdev, DMA_64BIT_MASK) &&
1383 !pci_set_consistent_dma_mask(dev->pdev, DMA_64BIT_MASK)) {
1385 printk(KERN_INFO"%s%d: 64 Bit DAC enabled\n",
1386 dev->name, dev->id);
1387 } else if (!pci_set_dma_mask(dev->pdev, DMA_32BIT_MASK) &&
1388 !pci_set_consistent_dma_mask(dev->pdev, DMA_32BIT_MASK)) {
1389 printk(KERN_INFO"%s%d: DMA mask set failed, 64 Bit DAC disabled\n",
1390 dev->name, dev->id);
1391 dev->dac_support = 0;
1393 printk(KERN_WARNING"%s%d: No suitable DMA available.\n",
1394 dev->name, dev->id);
1399 * Deal with configuring for the individualized limits of each packet
1402 dev->a_ops.adapter_scsi = (dev->dac_support)
1403 ? ((aac_get_driver_ident(dev->cardtype)->quirks & AAC_QUIRK_SCSI_32)
1407 if (dev->raw_io_interface) {
1408 dev->a_ops.adapter_bounds = (dev->raw_io_64)
1411 dev->a_ops.adapter_read = aac_read_raw_io;
1412 dev->a_ops.adapter_write = aac_write_raw_io;
1414 dev->a_ops.adapter_bounds = aac_bounds_32;
1415 dev->scsi_host_ptr->sg_tablesize = (dev->max_fib_size -
1416 sizeof(struct aac_fibhdr) -
1417 sizeof(struct aac_write) + sizeof(struct sgentry)) /
1418 sizeof(struct sgentry);
1419 if (dev->dac_support) {
1420 dev->a_ops.adapter_read = aac_read_block64;
1421 dev->a_ops.adapter_write = aac_write_block64;
1423 * 38 scatter gather elements
1425 dev->scsi_host_ptr->sg_tablesize =
1426 (dev->max_fib_size -
1427 sizeof(struct aac_fibhdr) -
1428 sizeof(struct aac_write64) +
1429 sizeof(struct sgentry64)) /
1430 sizeof(struct sgentry64);
1432 dev->a_ops.adapter_read = aac_read_block;
1433 dev->a_ops.adapter_write = aac_write_block;
1435 dev->scsi_host_ptr->max_sectors = AAC_MAX_32BIT_SGBCOUNT;
1436 if(!(dev->adapter_info.options & AAC_OPT_NEW_COMM)) {
1438 * Worst case size that could cause sg overflow when
1439 * we break up SG elements that are larger than 64KB.
1440 * Would be nice if we could tell the SCSI layer what
1441 * the maximum SG element size can be. Worst case is
1442 * (sg_tablesize-1) 4KB elements with one 64KB
1444 * 32bit -> 468 or 238KB 64bit -> 424 or 212KB
1446 dev->scsi_host_ptr->max_sectors =
1447 (dev->scsi_host_ptr->sg_tablesize * 8) + 112;
1451 aac_fib_complete(fibptr);
1452 aac_fib_free(fibptr);
1458 static void io_callback(void *context, struct fib * fibptr)
1460 struct aac_dev *dev;
1461 struct aac_read_reply *readreply;
1462 struct scsi_cmnd *scsicmd;
1465 scsicmd = (struct scsi_cmnd *) context;
1467 if (!aac_valid_context(scsicmd, fibptr))
1471 cid = scmd_id(scsicmd);
1473 if (nblank(dprintk(x))) {
1475 switch (scsicmd->cmnd[0]) {
1478 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
1479 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1483 lba = ((u64)scsicmd->cmnd[2] << 56) |
1484 ((u64)scsicmd->cmnd[3] << 48) |
1485 ((u64)scsicmd->cmnd[4] << 40) |
1486 ((u64)scsicmd->cmnd[5] << 32) |
1487 ((u64)scsicmd->cmnd[6] << 24) |
1488 (scsicmd->cmnd[7] << 16) |
1489 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1493 lba = ((u64)scsicmd->cmnd[2] << 24) |
1494 (scsicmd->cmnd[3] << 16) |
1495 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1498 lba = ((u64)scsicmd->cmnd[2] << 24) |
1499 (scsicmd->cmnd[3] << 16) |
1500 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1504 "io_callback[cpu %d]: lba = %llu, t = %ld.\n",
1505 smp_processor_id(), (unsigned long long)lba, jiffies);
1508 BUG_ON(fibptr == NULL);
1510 scsi_dma_unmap(scsicmd);
1512 readreply = (struct aac_read_reply *)fib_data(fibptr);
1513 if (le32_to_cpu(readreply->status) == ST_OK)
1514 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1516 #ifdef AAC_DETAILED_STATUS_INFO
1517 printk(KERN_WARNING "io_callback: io failed, status = %d\n",
1518 le32_to_cpu(readreply->status));
1520 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
1521 set_sense(&dev->fsa_dev[cid].sense_data,
1522 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
1523 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
1524 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
1525 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1526 SCSI_SENSE_BUFFERSIZE));
1528 aac_fib_complete(fibptr);
1529 aac_fib_free(fibptr);
1531 scsicmd->scsi_done(scsicmd);
1534 static int aac_read(struct scsi_cmnd * scsicmd)
1539 struct aac_dev *dev;
1540 struct fib * cmd_fibcontext;
1542 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
1544 * Get block address and transfer length
1546 switch (scsicmd->cmnd[0]) {
1548 dprintk((KERN_DEBUG "aachba: received a read(6) command on id %d.\n", scmd_id(scsicmd)));
1550 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
1551 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1552 count = scsicmd->cmnd[4];
1558 dprintk((KERN_DEBUG "aachba: received a read(16) command on id %d.\n", scmd_id(scsicmd)));
1560 lba = ((u64)scsicmd->cmnd[2] << 56) |
1561 ((u64)scsicmd->cmnd[3] << 48) |
1562 ((u64)scsicmd->cmnd[4] << 40) |
1563 ((u64)scsicmd->cmnd[5] << 32) |
1564 ((u64)scsicmd->cmnd[6] << 24) |
1565 (scsicmd->cmnd[7] << 16) |
1566 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1567 count = (scsicmd->cmnd[10] << 24) |
1568 (scsicmd->cmnd[11] << 16) |
1569 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
1572 dprintk((KERN_DEBUG "aachba: received a read(12) command on id %d.\n", scmd_id(scsicmd)));
1574 lba = ((u64)scsicmd->cmnd[2] << 24) |
1575 (scsicmd->cmnd[3] << 16) |
1576 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1577 count = (scsicmd->cmnd[6] << 24) |
1578 (scsicmd->cmnd[7] << 16) |
1579 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1582 dprintk((KERN_DEBUG "aachba: received a read(10) command on id %d.\n", scmd_id(scsicmd)));
1584 lba = ((u64)scsicmd->cmnd[2] << 24) |
1585 (scsicmd->cmnd[3] << 16) |
1586 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1587 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
1590 dprintk((KERN_DEBUG "aac_read[cpu %d]: lba = %llu, t = %ld.\n",
1591 smp_processor_id(), (unsigned long long)lba, jiffies));
1592 if (aac_adapter_bounds(dev,scsicmd,lba))
1595 * Alocate and initialize a Fib
1597 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
1601 status = aac_adapter_read(cmd_fibcontext, scsicmd, lba, count);
1604 * Check that the command queued to the controller
1606 if (status == -EINPROGRESS) {
1607 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
1611 printk(KERN_WARNING "aac_read: aac_fib_send failed with status: %d.\n", status);
1613 * For some reason, the Fib didn't queue, return QUEUE_FULL
1615 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
1616 scsicmd->scsi_done(scsicmd);
1617 aac_fib_complete(cmd_fibcontext);
1618 aac_fib_free(cmd_fibcontext);
1622 static int aac_write(struct scsi_cmnd * scsicmd)
1628 struct aac_dev *dev;
1629 struct fib * cmd_fibcontext;
1631 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
1633 * Get block address and transfer length
1635 if (scsicmd->cmnd[0] == WRITE_6) /* 6 byte command */
1637 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1638 count = scsicmd->cmnd[4];
1642 } else if (scsicmd->cmnd[0] == WRITE_16) { /* 16 byte command */
1643 dprintk((KERN_DEBUG "aachba: received a write(16) command on id %d.\n", scmd_id(scsicmd)));
1645 lba = ((u64)scsicmd->cmnd[2] << 56) |
1646 ((u64)scsicmd->cmnd[3] << 48) |
1647 ((u64)scsicmd->cmnd[4] << 40) |
1648 ((u64)scsicmd->cmnd[5] << 32) |
1649 ((u64)scsicmd->cmnd[6] << 24) |
1650 (scsicmd->cmnd[7] << 16) |
1651 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1652 count = (scsicmd->cmnd[10] << 24) | (scsicmd->cmnd[11] << 16) |
1653 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
1654 fua = scsicmd->cmnd[1] & 0x8;
1655 } else if (scsicmd->cmnd[0] == WRITE_12) { /* 12 byte command */
1656 dprintk((KERN_DEBUG "aachba: received a write(12) command on id %d.\n", scmd_id(scsicmd)));
1658 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16)
1659 | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1660 count = (scsicmd->cmnd[6] << 24) | (scsicmd->cmnd[7] << 16)
1661 | (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1662 fua = scsicmd->cmnd[1] & 0x8;
1664 dprintk((KERN_DEBUG "aachba: received a write(10) command on id %d.\n", scmd_id(scsicmd)));
1665 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1666 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
1667 fua = scsicmd->cmnd[1] & 0x8;
1669 dprintk((KERN_DEBUG "aac_write[cpu %d]: lba = %llu, t = %ld.\n",
1670 smp_processor_id(), (unsigned long long)lba, jiffies));
1671 if (aac_adapter_bounds(dev,scsicmd,lba))
1674 * Allocate and initialize a Fib then setup a BlockWrite command
1676 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
1677 scsicmd->result = DID_ERROR << 16;
1678 scsicmd->scsi_done(scsicmd);
1682 status = aac_adapter_write(cmd_fibcontext, scsicmd, lba, count, fua);
1685 * Check that the command queued to the controller
1687 if (status == -EINPROGRESS) {
1688 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
1692 printk(KERN_WARNING "aac_write: aac_fib_send failed with status: %d\n", status);
1694 * For some reason, the Fib didn't queue, return QUEUE_FULL
1696 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
1697 scsicmd->scsi_done(scsicmd);
1699 aac_fib_complete(cmd_fibcontext);
1700 aac_fib_free(cmd_fibcontext);
1704 static void synchronize_callback(void *context, struct fib *fibptr)
1706 struct aac_synchronize_reply *synchronizereply;
1707 struct scsi_cmnd *cmd;
1711 if (!aac_valid_context(cmd, fibptr))
1714 dprintk((KERN_DEBUG "synchronize_callback[cpu %d]: t = %ld.\n",
1715 smp_processor_id(), jiffies));
1716 BUG_ON(fibptr == NULL);
1719 synchronizereply = fib_data(fibptr);
1720 if (le32_to_cpu(synchronizereply->status) == CT_OK)
1721 cmd->result = DID_OK << 16 |
1722 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1724 struct scsi_device *sdev = cmd->device;
1725 struct aac_dev *dev = fibptr->dev;
1726 u32 cid = sdev_id(sdev);
1728 "synchronize_callback: synchronize failed, status = %d\n",
1729 le32_to_cpu(synchronizereply->status));
1730 cmd->result = DID_OK << 16 |
1731 COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
1732 set_sense(&dev->fsa_dev[cid].sense_data,
1733 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
1734 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
1735 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
1736 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1737 SCSI_SENSE_BUFFERSIZE));
1740 aac_fib_complete(fibptr);
1741 aac_fib_free(fibptr);
1742 cmd->scsi_done(cmd);
1745 static int aac_synchronize(struct scsi_cmnd *scsicmd)
1748 struct fib *cmd_fibcontext;
1749 struct aac_synchronize *synchronizecmd;
1750 struct scsi_cmnd *cmd;
1751 struct scsi_device *sdev = scsicmd->device;
1753 struct aac_dev *aac;
1754 u64 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) |
1755 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1756 u32 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
1757 unsigned long flags;
1760 * Wait for all outstanding queued commands to complete to this
1761 * specific target (block).
1763 spin_lock_irqsave(&sdev->list_lock, flags);
1764 list_for_each_entry(cmd, &sdev->cmd_list, list)
1765 if (cmd->SCp.phase == AAC_OWNER_FIRMWARE) {
1769 if (cmd->cmnd[0] == WRITE_6) {
1770 cmnd_lba = ((cmd->cmnd[1] & 0x1F) << 16) |
1771 (cmd->cmnd[2] << 8) |
1773 cmnd_count = cmd->cmnd[4];
1774 if (cmnd_count == 0)
1776 } else if (cmd->cmnd[0] == WRITE_16) {
1777 cmnd_lba = ((u64)cmd->cmnd[2] << 56) |
1778 ((u64)cmd->cmnd[3] << 48) |
1779 ((u64)cmd->cmnd[4] << 40) |
1780 ((u64)cmd->cmnd[5] << 32) |
1781 ((u64)cmd->cmnd[6] << 24) |
1782 (cmd->cmnd[7] << 16) |
1783 (cmd->cmnd[8] << 8) |
1785 cmnd_count = (cmd->cmnd[10] << 24) |
1786 (cmd->cmnd[11] << 16) |
1787 (cmd->cmnd[12] << 8) |
1789 } else if (cmd->cmnd[0] == WRITE_12) {
1790 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
1791 (cmd->cmnd[3] << 16) |
1792 (cmd->cmnd[4] << 8) |
1794 cmnd_count = (cmd->cmnd[6] << 24) |
1795 (cmd->cmnd[7] << 16) |
1796 (cmd->cmnd[8] << 8) |
1798 } else if (cmd->cmnd[0] == WRITE_10) {
1799 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
1800 (cmd->cmnd[3] << 16) |
1801 (cmd->cmnd[4] << 8) |
1803 cmnd_count = (cmd->cmnd[7] << 8) |
1807 if (((cmnd_lba + cmnd_count) < lba) ||
1808 (count && ((lba + count) < cmnd_lba)))
1814 spin_unlock_irqrestore(&sdev->list_lock, flags);
1817 * Yield the processor (requeue for later)
1820 return SCSI_MLQUEUE_DEVICE_BUSY;
1822 aac = (struct aac_dev *)sdev->host->hostdata;
1824 return SCSI_MLQUEUE_HOST_BUSY;
1827 * Allocate and initialize a Fib
1829 if (!(cmd_fibcontext = aac_fib_alloc(aac)))
1830 return SCSI_MLQUEUE_HOST_BUSY;
1832 aac_fib_init(cmd_fibcontext);
1834 synchronizecmd = fib_data(cmd_fibcontext);
1835 synchronizecmd->command = cpu_to_le32(VM_ContainerConfig);
1836 synchronizecmd->type = cpu_to_le32(CT_FLUSH_CACHE);
1837 synchronizecmd->cid = cpu_to_le32(scmd_id(scsicmd));
1838 synchronizecmd->count =
1839 cpu_to_le32(sizeof(((struct aac_synchronize_reply *)NULL)->data));
1842 * Now send the Fib to the adapter
1844 status = aac_fib_send(ContainerCommand,
1846 sizeof(struct aac_synchronize),
1849 (fib_callback)synchronize_callback,
1853 * Check that the command queued to the controller
1855 if (status == -EINPROGRESS) {
1856 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
1861 "aac_synchronize: aac_fib_send failed with status: %d.\n", status);
1862 aac_fib_complete(cmd_fibcontext);
1863 aac_fib_free(cmd_fibcontext);
1864 return SCSI_MLQUEUE_HOST_BUSY;
1868 * aac_scsi_cmd() - Process SCSI command
1869 * @scsicmd: SCSI command block
1871 * Emulate a SCSI command and queue the required request for the
1875 int aac_scsi_cmd(struct scsi_cmnd * scsicmd)
1878 struct Scsi_Host *host = scsicmd->device->host;
1879 struct aac_dev *dev = (struct aac_dev *)host->hostdata;
1880 struct fsa_dev_info *fsa_dev_ptr = dev->fsa_dev;
1882 if (fsa_dev_ptr == NULL)
1885 * If the bus, id or lun is out of range, return fail
1886 * Test does not apply to ID 16, the pseudo id for the controller
1889 cid = scmd_id(scsicmd);
1890 if (cid != host->this_id) {
1891 if (scmd_channel(scsicmd) == CONTAINER_CHANNEL) {
1892 if((cid >= dev->maximum_num_containers) ||
1893 (scsicmd->device->lun != 0)) {
1894 scsicmd->result = DID_NO_CONNECT << 16;
1895 scsicmd->scsi_done(scsicmd);
1900 * If the target container doesn't exist, it may have
1901 * been newly created
1903 if ((fsa_dev_ptr[cid].valid & 1) == 0) {
1904 switch (scsicmd->cmnd[0]) {
1905 case SERVICE_ACTION_IN:
1906 if (!(dev->raw_io_interface) ||
1907 !(dev->raw_io_64) ||
1908 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
1912 case TEST_UNIT_READY:
1915 return _aac_probe_container(scsicmd,
1916 aac_probe_container_callback2);
1921 } else { /* check for physical non-dasd devices */
1922 if (dev->nondasd_support || expose_physicals ||
1926 return aac_send_srb_fib(scsicmd);
1928 scsicmd->result = DID_NO_CONNECT << 16;
1929 scsicmd->scsi_done(scsicmd);
1935 * else Command for the controller itself
1937 else if ((scsicmd->cmnd[0] != INQUIRY) && /* only INQUIRY & TUR cmnd supported for controller */
1938 (scsicmd->cmnd[0] != TEST_UNIT_READY))
1940 dprintk((KERN_WARNING "Only INQUIRY & TUR command supported for controller, rcvd = 0x%x.\n", scsicmd->cmnd[0]));
1941 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
1942 set_sense(&dev->fsa_dev[cid].sense_data,
1943 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
1944 ASENCODE_INVALID_COMMAND, 0, 0);
1945 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
1946 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1947 SCSI_SENSE_BUFFERSIZE));
1948 scsicmd->scsi_done(scsicmd);
1953 /* Handle commands here that don't really require going out to the adapter */
1954 switch (scsicmd->cmnd[0]) {
1957 struct inquiry_data inq_data;
1959 dprintk((KERN_DEBUG "INQUIRY command, ID: %d.\n", cid));
1960 memset(&inq_data, 0, sizeof (struct inquiry_data));
1962 if (scsicmd->cmnd[1] & 0x1) {
1963 char *arr = (char *)&inq_data;
1966 arr[0] = (scmd_id(scsicmd) == host->this_id) ?
1967 INQD_PDT_PROC : INQD_PDT_DA;
1968 if (scsicmd->cmnd[2] == 0) {
1969 /* supported vital product data pages */
1973 arr[1] = scsicmd->cmnd[2];
1974 scsi_sg_copy_from_buffer(scsicmd, &inq_data,
1976 scsicmd->result = DID_OK << 16 |
1977 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1978 } else if (scsicmd->cmnd[2] == 0x80) {
1979 /* unit serial number page */
1980 arr[3] = setinqserial(dev, &arr[4],
1982 arr[1] = scsicmd->cmnd[2];
1983 scsi_sg_copy_from_buffer(scsicmd, &inq_data,
1985 return aac_get_container_serial(scsicmd);
1987 /* vpd page not implemented */
1988 scsicmd->result = DID_OK << 16 |
1989 COMMAND_COMPLETE << 8 |
1990 SAM_STAT_CHECK_CONDITION;
1991 set_sense(&dev->fsa_dev[cid].sense_data,
1992 ILLEGAL_REQUEST, SENCODE_INVALID_CDB_FIELD,
1993 ASENCODE_NO_SENSE, 7, 2);
1994 memcpy(scsicmd->sense_buffer,
1995 &dev->fsa_dev[cid].sense_data,
1997 sizeof(dev->fsa_dev[cid].sense_data),
1998 SCSI_SENSE_BUFFERSIZE));
2000 scsicmd->scsi_done(scsicmd);
2003 inq_data.inqd_ver = 2; /* claim compliance to SCSI-2 */
2004 inq_data.inqd_rdf = 2; /* A response data format value of two indicates that the data shall be in the format specified in SCSI-2 */
2005 inq_data.inqd_len = 31;
2006 /*Format for "pad2" is RelAdr | WBus32 | WBus16 | Sync | Linked |Reserved| CmdQue | SftRe */
2007 inq_data.inqd_pad2= 0x32 ; /*WBus16|Sync|CmdQue */
2009 * Set the Vendor, Product, and Revision Level
2010 * see: <vendor>.c i.e. aac.c
2012 if (cid == host->this_id) {
2013 setinqstr(dev, (void *) (inq_data.inqd_vid), ARRAY_SIZE(container_types));
2014 inq_data.inqd_pdt = INQD_PDT_PROC; /* Processor device */
2015 scsi_sg_copy_from_buffer(scsicmd, &inq_data,
2017 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2018 scsicmd->scsi_done(scsicmd);
2023 setinqstr(dev, (void *) (inq_data.inqd_vid), fsa_dev_ptr[cid].type);
2024 inq_data.inqd_pdt = INQD_PDT_DA; /* Direct/random access device */
2025 scsi_sg_copy_from_buffer(scsicmd, &inq_data, sizeof(inq_data));
2026 return aac_get_container_name(scsicmd);
2028 case SERVICE_ACTION_IN:
2029 if (!(dev->raw_io_interface) ||
2030 !(dev->raw_io_64) ||
2031 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
2036 unsigned int alloc_len;
2038 dprintk((KERN_DEBUG "READ CAPACITY_16 command.\n"));
2039 capacity = fsa_dev_ptr[cid].size - 1;
2040 cp[0] = (capacity >> 56) & 0xff;
2041 cp[1] = (capacity >> 48) & 0xff;
2042 cp[2] = (capacity >> 40) & 0xff;
2043 cp[3] = (capacity >> 32) & 0xff;
2044 cp[4] = (capacity >> 24) & 0xff;
2045 cp[5] = (capacity >> 16) & 0xff;
2046 cp[6] = (capacity >> 8) & 0xff;
2047 cp[7] = (capacity >> 0) & 0xff;
2054 alloc_len = ((scsicmd->cmnd[10] << 24)
2055 + (scsicmd->cmnd[11] << 16)
2056 + (scsicmd->cmnd[12] << 8) + scsicmd->cmnd[13]);
2058 alloc_len = min_t(size_t, alloc_len, sizeof(cp));
2059 scsi_sg_copy_from_buffer(scsicmd, cp, alloc_len);
2060 if (alloc_len < scsi_bufflen(scsicmd))
2061 scsi_set_resid(scsicmd,
2062 scsi_bufflen(scsicmd) - alloc_len);
2064 /* Do not cache partition table for arrays */
2065 scsicmd->device->removable = 1;
2067 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2068 scsicmd->scsi_done(scsicmd);
2078 dprintk((KERN_DEBUG "READ CAPACITY command.\n"));
2079 if (fsa_dev_ptr[cid].size <= 0x100000000ULL)
2080 capacity = fsa_dev_ptr[cid].size - 1;
2084 cp[0] = (capacity >> 24) & 0xff;
2085 cp[1] = (capacity >> 16) & 0xff;
2086 cp[2] = (capacity >> 8) & 0xff;
2087 cp[3] = (capacity >> 0) & 0xff;
2092 scsi_sg_copy_from_buffer(scsicmd, cp, sizeof(cp));
2093 /* Do not cache partition table for arrays */
2094 scsicmd->device->removable = 1;
2096 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2097 scsicmd->scsi_done(scsicmd);
2105 int mode_buf_length = 4;
2107 dprintk((KERN_DEBUG "MODE SENSE command.\n"));
2108 mode_buf[0] = 3; /* Mode data length */
2109 mode_buf[1] = 0; /* Medium type - default */
2110 mode_buf[2] = 0; /* Device-specific param,
2111 bit 8: 0/1 = write enabled/protected
2112 bit 4: 0/1 = FUA enabled */
2113 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
2115 mode_buf[3] = 0; /* Block descriptor length */
2116 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
2117 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
2121 mode_buf[6] = ((aac_cache & 6) == 2)
2122 ? 0 : 0x04; /* WCE */
2123 mode_buf_length = 7;
2124 if (mode_buf_length > scsicmd->cmnd[4])
2125 mode_buf_length = scsicmd->cmnd[4];
2127 scsi_sg_copy_from_buffer(scsicmd, mode_buf, mode_buf_length);
2128 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2129 scsicmd->scsi_done(scsicmd);
2136 int mode_buf_length = 8;
2138 dprintk((KERN_DEBUG "MODE SENSE 10 byte command.\n"));
2139 mode_buf[0] = 0; /* Mode data length (MSB) */
2140 mode_buf[1] = 6; /* Mode data length (LSB) */
2141 mode_buf[2] = 0; /* Medium type - default */
2142 mode_buf[3] = 0; /* Device-specific param,
2143 bit 8: 0/1 = write enabled/protected
2144 bit 4: 0/1 = FUA enabled */
2145 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
2147 mode_buf[4] = 0; /* reserved */
2148 mode_buf[5] = 0; /* reserved */
2149 mode_buf[6] = 0; /* Block descriptor length (MSB) */
2150 mode_buf[7] = 0; /* Block descriptor length (LSB) */
2151 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
2152 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
2156 mode_buf[10] = ((aac_cache & 6) == 2)
2157 ? 0 : 0x04; /* WCE */
2158 mode_buf_length = 11;
2159 if (mode_buf_length > scsicmd->cmnd[8])
2160 mode_buf_length = scsicmd->cmnd[8];
2162 scsi_sg_copy_from_buffer(scsicmd, mode_buf, mode_buf_length);
2164 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2165 scsicmd->scsi_done(scsicmd);
2170 dprintk((KERN_DEBUG "REQUEST SENSE command.\n"));
2171 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data, sizeof (struct sense_data));
2172 memset(&dev->fsa_dev[cid].sense_data, 0, sizeof (struct sense_data));
2173 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2174 scsicmd->scsi_done(scsicmd);
2177 case ALLOW_MEDIUM_REMOVAL:
2178 dprintk((KERN_DEBUG "LOCK command.\n"));
2179 if (scsicmd->cmnd[4])
2180 fsa_dev_ptr[cid].locked = 1;
2182 fsa_dev_ptr[cid].locked = 0;
2184 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2185 scsicmd->scsi_done(scsicmd);
2188 * These commands are all No-Ops
2190 case TEST_UNIT_READY:
2194 case REASSIGN_BLOCKS:
2197 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2198 scsicmd->scsi_done(scsicmd);
2202 switch (scsicmd->cmnd[0])
2211 * Hack to keep track of ordinal number of the device that
2212 * corresponds to a container. Needed to convert
2213 * containers to /dev/sd device names
2216 if (scsicmd->request->rq_disk)
2217 strlcpy(fsa_dev_ptr[cid].devname,
2218 scsicmd->request->rq_disk->disk_name,
2219 min(sizeof(fsa_dev_ptr[cid].devname),
2220 sizeof(scsicmd->request->rq_disk->disk_name) + 1));
2222 return aac_read(scsicmd);
2230 return aac_write(scsicmd);
2232 case SYNCHRONIZE_CACHE:
2233 if (((aac_cache & 6) == 6) && dev->cache_protected) {
2234 scsicmd->result = DID_OK << 16 |
2235 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2236 scsicmd->scsi_done(scsicmd);
2239 /* Issue FIB to tell Firmware to flush it's cache */
2240 if ((aac_cache & 6) != 2)
2241 return aac_synchronize(scsicmd);
2245 * Unhandled commands
2247 dprintk((KERN_WARNING "Unhandled SCSI Command: 0x%x.\n", scsicmd->cmnd[0]));
2248 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
2249 set_sense(&dev->fsa_dev[cid].sense_data,
2250 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
2251 ASENCODE_INVALID_COMMAND, 0, 0);
2252 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2254 sizeof(dev->fsa_dev[cid].sense_data),
2255 SCSI_SENSE_BUFFERSIZE));
2256 scsicmd->scsi_done(scsicmd);
2261 static int query_disk(struct aac_dev *dev, void __user *arg)
2263 struct aac_query_disk qd;
2264 struct fsa_dev_info *fsa_dev_ptr;
2266 fsa_dev_ptr = dev->fsa_dev;
2269 if (copy_from_user(&qd, arg, sizeof (struct aac_query_disk)))
2273 else if ((qd.bus == -1) && (qd.id == -1) && (qd.lun == -1))
2275 if (qd.cnum < 0 || qd.cnum >= dev->maximum_num_containers)
2277 qd.instance = dev->scsi_host_ptr->host_no;
2279 qd.id = CONTAINER_TO_ID(qd.cnum);
2280 qd.lun = CONTAINER_TO_LUN(qd.cnum);
2282 else return -EINVAL;
2284 qd.valid = fsa_dev_ptr[qd.cnum].valid != 0;
2285 qd.locked = fsa_dev_ptr[qd.cnum].locked;
2286 qd.deleted = fsa_dev_ptr[qd.cnum].deleted;
2288 if (fsa_dev_ptr[qd.cnum].devname[0] == '\0')
2293 strlcpy(qd.name, fsa_dev_ptr[qd.cnum].devname,
2294 min(sizeof(qd.name), sizeof(fsa_dev_ptr[qd.cnum].devname) + 1));
2296 if (copy_to_user(arg, &qd, sizeof (struct aac_query_disk)))
2301 static int force_delete_disk(struct aac_dev *dev, void __user *arg)
2303 struct aac_delete_disk dd;
2304 struct fsa_dev_info *fsa_dev_ptr;
2306 fsa_dev_ptr = dev->fsa_dev;
2310 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
2313 if (dd.cnum >= dev->maximum_num_containers)
2316 * Mark this container as being deleted.
2318 fsa_dev_ptr[dd.cnum].deleted = 1;
2320 * Mark the container as no longer valid
2322 fsa_dev_ptr[dd.cnum].valid = 0;
2326 static int delete_disk(struct aac_dev *dev, void __user *arg)
2328 struct aac_delete_disk dd;
2329 struct fsa_dev_info *fsa_dev_ptr;
2331 fsa_dev_ptr = dev->fsa_dev;
2335 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
2338 if (dd.cnum >= dev->maximum_num_containers)
2341 * If the container is locked, it can not be deleted by the API.
2343 if (fsa_dev_ptr[dd.cnum].locked)
2347 * Mark the container as no longer being valid.
2349 fsa_dev_ptr[dd.cnum].valid = 0;
2350 fsa_dev_ptr[dd.cnum].devname[0] = '\0';
2355 int aac_dev_ioctl(struct aac_dev *dev, int cmd, void __user *arg)
2358 case FSACTL_QUERY_DISK:
2359 return query_disk(dev, arg);
2360 case FSACTL_DELETE_DISK:
2361 return delete_disk(dev, arg);
2362 case FSACTL_FORCE_DELETE_DISK:
2363 return force_delete_disk(dev, arg);
2364 case FSACTL_GET_CONTAINERS:
2365 return aac_get_containers(dev);
2374 * @context: the context set in the fib - here it is scsi cmd
2375 * @fibptr: pointer to the fib
2377 * Handles the completion of a scsi command to a non dasd device
2381 static void aac_srb_callback(void *context, struct fib * fibptr)
2383 struct aac_dev *dev;
2384 struct aac_srb_reply *srbreply;
2385 struct scsi_cmnd *scsicmd;
2387 scsicmd = (struct scsi_cmnd *) context;
2389 if (!aac_valid_context(scsicmd, fibptr))
2392 BUG_ON(fibptr == NULL);
2396 srbreply = (struct aac_srb_reply *) fib_data(fibptr);
2398 scsicmd->sense_buffer[0] = '\0'; /* Initialize sense valid flag to false */
2400 * Calculate resid for sg
2403 scsi_set_resid(scsicmd, scsi_bufflen(scsicmd)
2404 - le32_to_cpu(srbreply->data_xfer_length));
2406 scsi_dma_unmap(scsicmd);
2409 * First check the fib status
2412 if (le32_to_cpu(srbreply->status) != ST_OK){
2414 printk(KERN_WARNING "aac_srb_callback: srb failed, status = %d\n", le32_to_cpu(srbreply->status));
2415 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
2416 SCSI_SENSE_BUFFERSIZE);
2417 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
2418 memcpy(scsicmd->sense_buffer, srbreply->sense_data, len);
2422 * Next check the srb status
2424 switch( (le32_to_cpu(srbreply->srb_status))&0x3f){
2425 case SRB_STATUS_ERROR_RECOVERY:
2426 case SRB_STATUS_PENDING:
2427 case SRB_STATUS_SUCCESS:
2428 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
2430 case SRB_STATUS_DATA_OVERRUN:
2431 switch(scsicmd->cmnd[0]){
2440 if (le32_to_cpu(srbreply->data_xfer_length) < scsicmd->underflow) {
2441 printk(KERN_WARNING"aacraid: SCSI CMD underflow\n");
2443 printk(KERN_WARNING"aacraid: SCSI CMD Data Overrun\n");
2445 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
2448 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
2452 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
2456 case SRB_STATUS_ABORTED:
2457 scsicmd->result = DID_ABORT << 16 | ABORT << 8;
2459 case SRB_STATUS_ABORT_FAILED:
2460 // Not sure about this one - but assuming the hba was trying to abort for some reason
2461 scsicmd->result = DID_ERROR << 16 | ABORT << 8;
2463 case SRB_STATUS_PARITY_ERROR:
2464 scsicmd->result = DID_PARITY << 16 | MSG_PARITY_ERROR << 8;
2466 case SRB_STATUS_NO_DEVICE:
2467 case SRB_STATUS_INVALID_PATH_ID:
2468 case SRB_STATUS_INVALID_TARGET_ID:
2469 case SRB_STATUS_INVALID_LUN:
2470 case SRB_STATUS_SELECTION_TIMEOUT:
2471 scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
2474 case SRB_STATUS_COMMAND_TIMEOUT:
2475 case SRB_STATUS_TIMEOUT:
2476 scsicmd->result = DID_TIME_OUT << 16 | COMMAND_COMPLETE << 8;
2479 case SRB_STATUS_BUSY:
2480 scsicmd->result = DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8;
2483 case SRB_STATUS_BUS_RESET:
2484 scsicmd->result = DID_RESET << 16 | COMMAND_COMPLETE << 8;
2487 case SRB_STATUS_MESSAGE_REJECTED:
2488 scsicmd->result = DID_ERROR << 16 | MESSAGE_REJECT << 8;
2490 case SRB_STATUS_REQUEST_FLUSHED:
2491 case SRB_STATUS_ERROR:
2492 case SRB_STATUS_INVALID_REQUEST:
2493 case SRB_STATUS_REQUEST_SENSE_FAILED:
2494 case SRB_STATUS_NO_HBA:
2495 case SRB_STATUS_UNEXPECTED_BUS_FREE:
2496 case SRB_STATUS_PHASE_SEQUENCE_FAILURE:
2497 case SRB_STATUS_BAD_SRB_BLOCK_LENGTH:
2498 case SRB_STATUS_DELAYED_RETRY:
2499 case SRB_STATUS_BAD_FUNCTION:
2500 case SRB_STATUS_NOT_STARTED:
2501 case SRB_STATUS_NOT_IN_USE:
2502 case SRB_STATUS_FORCE_ABORT:
2503 case SRB_STATUS_DOMAIN_VALIDATION_FAIL:
2505 #ifdef AAC_DETAILED_STATUS_INFO
2506 printk("aacraid: SRB ERROR(%u) %s scsi cmd 0x%x - scsi status 0x%x\n",
2507 le32_to_cpu(srbreply->srb_status) & 0x3F,
2508 aac_get_status_string(
2509 le32_to_cpu(srbreply->srb_status) & 0x3F),
2511 le32_to_cpu(srbreply->scsi_status));
2513 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
2516 if (le32_to_cpu(srbreply->scsi_status) == SAM_STAT_CHECK_CONDITION) {
2518 scsicmd->result |= SAM_STAT_CHECK_CONDITION;
2519 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
2520 SCSI_SENSE_BUFFERSIZE);
2521 #ifdef AAC_DETAILED_STATUS_INFO
2522 printk(KERN_WARNING "aac_srb_callback: check condition, status = %d len=%d\n",
2523 le32_to_cpu(srbreply->status), len);
2525 memcpy(scsicmd->sense_buffer, srbreply->sense_data, len);
2528 * OR in the scsi status (already shifted up a bit)
2530 scsicmd->result |= le32_to_cpu(srbreply->scsi_status);
2532 aac_fib_complete(fibptr);
2533 aac_fib_free(fibptr);
2534 scsicmd->scsi_done(scsicmd);
2540 * @scsicmd: the scsi command block
2542 * This routine will form a FIB and fill in the aac_srb from the
2543 * scsicmd passed in.
2546 static int aac_send_srb_fib(struct scsi_cmnd* scsicmd)
2548 struct fib* cmd_fibcontext;
2549 struct aac_dev* dev;
2552 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2553 if (scmd_id(scsicmd) >= dev->maximum_num_physicals ||
2554 scsicmd->device->lun > 7) {
2555 scsicmd->result = DID_NO_CONNECT << 16;
2556 scsicmd->scsi_done(scsicmd);
2561 * Allocate and initialize a Fib then setup a BlockWrite command
2563 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
2566 status = aac_adapter_scsi(cmd_fibcontext, scsicmd);
2569 * Check that the command queued to the controller
2571 if (status == -EINPROGRESS) {
2572 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
2576 printk(KERN_WARNING "aac_srb: aac_fib_send failed with status: %d\n", status);
2577 aac_fib_complete(cmd_fibcontext);
2578 aac_fib_free(cmd_fibcontext);
2583 static unsigned long aac_build_sg(struct scsi_cmnd* scsicmd, struct sgmap* psg)
2585 struct aac_dev *dev;
2586 unsigned long byte_count = 0;
2589 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2590 // Get rid of old data
2592 psg->sg[0].addr = 0;
2593 psg->sg[0].count = 0;
2595 nseg = scsi_dma_map(scsicmd);
2598 struct scatterlist *sg;
2601 psg->count = cpu_to_le32(nseg);
2603 scsi_for_each_sg(scsicmd, sg, nseg, i) {
2604 psg->sg[i].addr = cpu_to_le32(sg_dma_address(sg));
2605 psg->sg[i].count = cpu_to_le32(sg_dma_len(sg));
2606 byte_count += sg_dma_len(sg);
2608 /* hba wants the size to be exact */
2609 if (byte_count > scsi_bufflen(scsicmd)) {
2610 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2611 (byte_count - scsi_bufflen(scsicmd));
2612 psg->sg[i-1].count = cpu_to_le32(temp);
2613 byte_count = scsi_bufflen(scsicmd);
2615 /* Check for command underflow */
2616 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2617 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2618 byte_count, scsicmd->underflow);
2625 static unsigned long aac_build_sg64(struct scsi_cmnd* scsicmd, struct sgmap64* psg)
2627 struct aac_dev *dev;
2628 unsigned long byte_count = 0;
2632 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2633 // Get rid of old data
2635 psg->sg[0].addr[0] = 0;
2636 psg->sg[0].addr[1] = 0;
2637 psg->sg[0].count = 0;
2639 nseg = scsi_dma_map(scsicmd);
2642 struct scatterlist *sg;
2645 scsi_for_each_sg(scsicmd, sg, nseg, i) {
2646 int count = sg_dma_len(sg);
2647 addr = sg_dma_address(sg);
2648 psg->sg[i].addr[0] = cpu_to_le32(addr & 0xffffffff);
2649 psg->sg[i].addr[1] = cpu_to_le32(addr>>32);
2650 psg->sg[i].count = cpu_to_le32(count);
2651 byte_count += count;
2653 psg->count = cpu_to_le32(nseg);
2654 /* hba wants the size to be exact */
2655 if (byte_count > scsi_bufflen(scsicmd)) {
2656 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2657 (byte_count - scsi_bufflen(scsicmd));
2658 psg->sg[i-1].count = cpu_to_le32(temp);
2659 byte_count = scsi_bufflen(scsicmd);
2661 /* Check for command underflow */
2662 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2663 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2664 byte_count, scsicmd->underflow);
2670 static unsigned long aac_build_sgraw(struct scsi_cmnd* scsicmd, struct sgmapraw* psg)
2672 unsigned long byte_count = 0;
2675 // Get rid of old data
2677 psg->sg[0].next = 0;
2678 psg->sg[0].prev = 0;
2679 psg->sg[0].addr[0] = 0;
2680 psg->sg[0].addr[1] = 0;
2681 psg->sg[0].count = 0;
2682 psg->sg[0].flags = 0;
2684 nseg = scsi_dma_map(scsicmd);
2687 struct scatterlist *sg;
2690 scsi_for_each_sg(scsicmd, sg, nseg, i) {
2691 int count = sg_dma_len(sg);
2692 u64 addr = sg_dma_address(sg);
2693 psg->sg[i].next = 0;
2694 psg->sg[i].prev = 0;
2695 psg->sg[i].addr[1] = cpu_to_le32((u32)(addr>>32));
2696 psg->sg[i].addr[0] = cpu_to_le32((u32)(addr & 0xffffffff));
2697 psg->sg[i].count = cpu_to_le32(count);
2698 psg->sg[i].flags = 0;
2699 byte_count += count;
2701 psg->count = cpu_to_le32(nseg);
2702 /* hba wants the size to be exact */
2703 if (byte_count > scsi_bufflen(scsicmd)) {
2704 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2705 (byte_count - scsi_bufflen(scsicmd));
2706 psg->sg[i-1].count = cpu_to_le32(temp);
2707 byte_count = scsi_bufflen(scsicmd);
2709 /* Check for command underflow */
2710 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2711 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2712 byte_count, scsicmd->underflow);
2718 #ifdef AAC_DETAILED_STATUS_INFO
2720 struct aac_srb_status_info {
2726 static struct aac_srb_status_info srb_status_info[] = {
2727 { SRB_STATUS_PENDING, "Pending Status"},
2728 { SRB_STATUS_SUCCESS, "Success"},
2729 { SRB_STATUS_ABORTED, "Aborted Command"},
2730 { SRB_STATUS_ABORT_FAILED, "Abort Failed"},
2731 { SRB_STATUS_ERROR, "Error Event"},
2732 { SRB_STATUS_BUSY, "Device Busy"},
2733 { SRB_STATUS_INVALID_REQUEST, "Invalid Request"},
2734 { SRB_STATUS_INVALID_PATH_ID, "Invalid Path ID"},
2735 { SRB_STATUS_NO_DEVICE, "No Device"},
2736 { SRB_STATUS_TIMEOUT, "Timeout"},
2737 { SRB_STATUS_SELECTION_TIMEOUT, "Selection Timeout"},
2738 { SRB_STATUS_COMMAND_TIMEOUT, "Command Timeout"},
2739 { SRB_STATUS_MESSAGE_REJECTED, "Message Rejected"},
2740 { SRB_STATUS_BUS_RESET, "Bus Reset"},
2741 { SRB_STATUS_PARITY_ERROR, "Parity Error"},
2742 { SRB_STATUS_REQUEST_SENSE_FAILED,"Request Sense Failed"},
2743 { SRB_STATUS_NO_HBA, "No HBA"},
2744 { SRB_STATUS_DATA_OVERRUN, "Data Overrun/Data Underrun"},
2745 { SRB_STATUS_UNEXPECTED_BUS_FREE,"Unexpected Bus Free"},
2746 { SRB_STATUS_PHASE_SEQUENCE_FAILURE,"Phase Error"},
2747 { SRB_STATUS_BAD_SRB_BLOCK_LENGTH,"Bad Srb Block Length"},
2748 { SRB_STATUS_REQUEST_FLUSHED, "Request Flushed"},
2749 { SRB_STATUS_DELAYED_RETRY, "Delayed Retry"},
2750 { SRB_STATUS_INVALID_LUN, "Invalid LUN"},
2751 { SRB_STATUS_INVALID_TARGET_ID, "Invalid TARGET ID"},
2752 { SRB_STATUS_BAD_FUNCTION, "Bad Function"},
2753 { SRB_STATUS_ERROR_RECOVERY, "Error Recovery"},
2754 { SRB_STATUS_NOT_STARTED, "Not Started"},
2755 { SRB_STATUS_NOT_IN_USE, "Not In Use"},
2756 { SRB_STATUS_FORCE_ABORT, "Force Abort"},
2757 { SRB_STATUS_DOMAIN_VALIDATION_FAIL,"Domain Validation Failure"},
2758 { 0xff, "Unknown Error"}
2761 char *aac_get_status_string(u32 status)
2765 for (i = 0; i < ARRAY_SIZE(srb_status_info); i++)
2766 if (srb_status_info[i].status == status)
2767 return srb_status_info[i].str;
2769 return "Bad Status Code";