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 aac_internal_transfer(struct scsi_cmnd *scsicmd, void *data, unsigned int offset, unsigned int len)
386 struct scatterlist *sg = scsi_sglist(scsicmd);
388 buf = kmap_atomic(sg_page(sg), KM_IRQ0) + sg->offset;
389 transfer_len = min(sg->length, len + offset);
391 transfer_len -= offset;
392 if (buf && transfer_len > 0)
393 memcpy(buf + offset, data, transfer_len);
395 flush_kernel_dcache_page(kmap_atomic_to_page(buf - sg->offset));
396 kunmap_atomic(buf - sg->offset, KM_IRQ0);
400 static void get_container_name_callback(void *context, struct fib * fibptr)
402 struct aac_get_name_resp * get_name_reply;
403 struct scsi_cmnd * scsicmd;
405 scsicmd = (struct scsi_cmnd *) context;
407 if (!aac_valid_context(scsicmd, fibptr))
410 dprintk((KERN_DEBUG "get_container_name_callback[cpu %d]: t = %ld.\n", smp_processor_id(), jiffies));
411 BUG_ON(fibptr == NULL);
413 get_name_reply = (struct aac_get_name_resp *) fib_data(fibptr);
414 /* Failure is irrelevant, using default value instead */
415 if ((le32_to_cpu(get_name_reply->status) == CT_OK)
416 && (get_name_reply->data[0] != '\0')) {
417 char *sp = get_name_reply->data;
418 sp[sizeof(((struct aac_get_name_resp *)NULL)->data)-1] = '\0';
422 char d[sizeof(((struct inquiry_data *)NULL)->inqd_pid)];
423 int count = sizeof(d);
426 *dp++ = (*sp) ? *sp++ : ' ';
427 } while (--count > 0);
428 aac_internal_transfer(scsicmd, d,
429 offsetof(struct inquiry_data, inqd_pid), sizeof(d));
433 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
435 aac_fib_complete(fibptr);
436 aac_fib_free(fibptr);
437 scsicmd->scsi_done(scsicmd);
441 * aac_get_container_name - get container name, none blocking.
443 static int aac_get_container_name(struct scsi_cmnd * scsicmd)
446 struct aac_get_name *dinfo;
447 struct fib * cmd_fibcontext;
448 struct aac_dev * dev;
450 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
452 if (!(cmd_fibcontext = aac_fib_alloc(dev)))
455 aac_fib_init(cmd_fibcontext);
456 dinfo = (struct aac_get_name *) fib_data(cmd_fibcontext);
458 dinfo->command = cpu_to_le32(VM_ContainerConfig);
459 dinfo->type = cpu_to_le32(CT_READ_NAME);
460 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
461 dinfo->count = cpu_to_le32(sizeof(((struct aac_get_name_resp *)NULL)->data));
463 status = aac_fib_send(ContainerCommand,
465 sizeof (struct aac_get_name),
468 (fib_callback)get_container_name_callback,
472 * Check that the command queued to the controller
474 if (status == -EINPROGRESS) {
475 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
479 printk(KERN_WARNING "aac_get_container_name: aac_fib_send failed with status: %d.\n", status);
480 aac_fib_complete(cmd_fibcontext);
481 aac_fib_free(cmd_fibcontext);
485 static int aac_probe_container_callback2(struct scsi_cmnd * scsicmd)
487 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
489 if ((fsa_dev_ptr[scmd_id(scsicmd)].valid & 1))
490 return aac_scsi_cmd(scsicmd);
492 scsicmd->result = DID_NO_CONNECT << 16;
493 scsicmd->scsi_done(scsicmd);
497 static void _aac_probe_container2(void * context, struct fib * fibptr)
499 struct fsa_dev_info *fsa_dev_ptr;
500 int (*callback)(struct scsi_cmnd *);
501 struct scsi_cmnd * scsicmd = (struct scsi_cmnd *)context;
504 if (!aac_valid_context(scsicmd, fibptr))
507 scsicmd->SCp.Status = 0;
508 fsa_dev_ptr = fibptr->dev->fsa_dev;
510 struct aac_mount * dresp = (struct aac_mount *) fib_data(fibptr);
511 fsa_dev_ptr += scmd_id(scsicmd);
513 if ((le32_to_cpu(dresp->status) == ST_OK) &&
514 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE) &&
515 (le32_to_cpu(dresp->mnt[0].state) != FSCS_HIDDEN)) {
516 fsa_dev_ptr->valid = 1;
517 fsa_dev_ptr->type = le32_to_cpu(dresp->mnt[0].vol);
519 = ((u64)le32_to_cpu(dresp->mnt[0].capacity)) +
520 (((u64)le32_to_cpu(dresp->mnt[0].capacityhigh)) << 32);
521 fsa_dev_ptr->ro = ((le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY) != 0);
523 if ((fsa_dev_ptr->valid & 1) == 0)
524 fsa_dev_ptr->valid = 0;
525 scsicmd->SCp.Status = le32_to_cpu(dresp->count);
527 aac_fib_complete(fibptr);
528 aac_fib_free(fibptr);
529 callback = (int (*)(struct scsi_cmnd *))(scsicmd->SCp.ptr);
530 scsicmd->SCp.ptr = NULL;
531 (*callback)(scsicmd);
535 static void _aac_probe_container1(void * context, struct fib * fibptr)
537 struct scsi_cmnd * scsicmd;
538 struct aac_mount * dresp;
539 struct aac_query_mount *dinfo;
542 dresp = (struct aac_mount *) fib_data(fibptr);
543 dresp->mnt[0].capacityhigh = 0;
544 if ((le32_to_cpu(dresp->status) != ST_OK) ||
545 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE)) {
546 _aac_probe_container2(context, fibptr);
549 scsicmd = (struct scsi_cmnd *) context;
551 if (!aac_valid_context(scsicmd, fibptr))
554 aac_fib_init(fibptr);
556 dinfo = (struct aac_query_mount *)fib_data(fibptr);
558 dinfo->command = cpu_to_le32(VM_NameServe64);
559 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
560 dinfo->type = cpu_to_le32(FT_FILESYS);
562 status = aac_fib_send(ContainerCommand,
564 sizeof(struct aac_query_mount),
567 _aac_probe_container2,
570 * Check that the command queued to the controller
572 if (status == -EINPROGRESS)
573 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
574 else if (status < 0) {
575 /* Inherit results from VM_NameServe, if any */
576 dresp->status = cpu_to_le32(ST_OK);
577 _aac_probe_container2(context, fibptr);
581 static int _aac_probe_container(struct scsi_cmnd * scsicmd, int (*callback)(struct scsi_cmnd *))
584 int status = -ENOMEM;
586 if ((fibptr = aac_fib_alloc((struct aac_dev *)scsicmd->device->host->hostdata))) {
587 struct aac_query_mount *dinfo;
589 aac_fib_init(fibptr);
591 dinfo = (struct aac_query_mount *)fib_data(fibptr);
593 dinfo->command = cpu_to_le32(VM_NameServe);
594 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
595 dinfo->type = cpu_to_le32(FT_FILESYS);
596 scsicmd->SCp.ptr = (char *)callback;
598 status = aac_fib_send(ContainerCommand,
600 sizeof(struct aac_query_mount),
603 _aac_probe_container1,
606 * Check that the command queued to the controller
608 if (status == -EINPROGRESS) {
609 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
613 scsicmd->SCp.ptr = NULL;
614 aac_fib_complete(fibptr);
615 aac_fib_free(fibptr);
619 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
621 fsa_dev_ptr += scmd_id(scsicmd);
622 if ((fsa_dev_ptr->valid & 1) == 0) {
623 fsa_dev_ptr->valid = 0;
624 return (*callback)(scsicmd);
632 * aac_probe_container - query a logical volume
633 * @dev: device to query
634 * @cid: container identifier
636 * Queries the controller about the given volume. The volume information
637 * is updated in the struct fsa_dev_info structure rather than returned.
639 static int aac_probe_container_callback1(struct scsi_cmnd * scsicmd)
641 scsicmd->device = NULL;
645 int aac_probe_container(struct aac_dev *dev, int cid)
647 struct scsi_cmnd *scsicmd = kmalloc(sizeof(*scsicmd), GFP_KERNEL);
648 struct scsi_device *scsidev = kmalloc(sizeof(*scsidev), GFP_KERNEL);
651 if (!scsicmd || !scsidev) {
656 scsicmd->list.next = NULL;
657 scsicmd->scsi_done = (void (*)(struct scsi_cmnd*))aac_probe_container_callback1;
659 scsicmd->device = scsidev;
660 scsidev->sdev_state = 0;
662 scsidev->host = dev->scsi_host_ptr;
664 if (_aac_probe_container(scsicmd, aac_probe_container_callback1) == 0)
665 while (scsicmd->device == scsidev)
668 status = scsicmd->SCp.Status;
673 /* Local Structure to set SCSI inquiry data strings */
675 char vid[8]; /* Vendor ID */
676 char pid[16]; /* Product ID */
677 char prl[4]; /* Product Revision Level */
681 * InqStrCopy - string merge
682 * @a: string to copy from
683 * @b: string to copy to
685 * Copy a String from one location to another
689 static void inqstrcpy(char *a, char *b)
692 while (*a != (char)0)
696 static char *container_types[] = {
720 char * get_container_type(unsigned tindex)
722 if (tindex >= ARRAY_SIZE(container_types))
723 tindex = ARRAY_SIZE(container_types) - 1;
724 return container_types[tindex];
727 /* Function: setinqstr
729 * Arguments: [1] pointer to void [1] int
731 * Purpose: Sets SCSI inquiry data strings for vendor, product
732 * and revision level. Allows strings to be set in platform dependant
733 * files instead of in OS dependant driver source.
736 static void setinqstr(struct aac_dev *dev, void *data, int tindex)
738 struct scsi_inq *str;
740 str = (struct scsi_inq *)(data); /* cast data to scsi inq block */
741 memset(str, ' ', sizeof(*str));
743 if (dev->supplement_adapter_info.AdapterTypeText[0]) {
744 char * cp = dev->supplement_adapter_info.AdapterTypeText;
746 if ((cp[0] == 'A') && (cp[1] == 'O') && (cp[2] == 'C'))
747 inqstrcpy("SMC", str->vid);
749 c = sizeof(str->vid);
750 while (*cp && *cp != ' ' && --c)
754 inqstrcpy (dev->supplement_adapter_info.AdapterTypeText,
757 while (*cp && *cp != ' ')
762 /* last six chars reserved for vol type */
764 if (strlen(cp) > sizeof(str->pid)) {
765 c = cp[sizeof(str->pid)];
766 cp[sizeof(str->pid)] = '\0';
768 inqstrcpy (cp, str->pid);
770 cp[sizeof(str->pid)] = c;
772 struct aac_driver_ident *mp = aac_get_driver_ident(dev->cardtype);
774 inqstrcpy (mp->vname, str->vid);
775 /* last six chars reserved for vol type */
776 inqstrcpy (mp->model, str->pid);
779 if (tindex < ARRAY_SIZE(container_types)){
780 char *findit = str->pid;
782 for ( ; *findit != ' '; findit++); /* walk till we find a space */
783 /* RAID is superfluous in the context of a RAID device */
784 if (memcmp(findit-4, "RAID", 4) == 0)
785 *(findit -= 4) = ' ';
786 if (((findit - str->pid) + strlen(container_types[tindex]))
787 < (sizeof(str->pid) + sizeof(str->prl)))
788 inqstrcpy (container_types[tindex], findit + 1);
790 inqstrcpy ("V1.0", str->prl);
793 static void get_container_serial_callback(void *context, struct fib * fibptr)
795 struct aac_get_serial_resp * get_serial_reply;
796 struct scsi_cmnd * scsicmd;
798 BUG_ON(fibptr == NULL);
800 scsicmd = (struct scsi_cmnd *) context;
801 if (!aac_valid_context(scsicmd, fibptr))
804 get_serial_reply = (struct aac_get_serial_resp *) fib_data(fibptr);
805 /* Failure is irrelevant, using default value instead */
806 if (le32_to_cpu(get_serial_reply->status) == CT_OK) {
810 sp[1] = scsicmd->cmnd[2];
812 sp[3] = snprintf(sp+4, sizeof(sp)-4, "%08X",
813 le32_to_cpu(get_serial_reply->uid));
814 aac_internal_transfer(scsicmd, sp, 0, sizeof(sp));
817 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
819 aac_fib_complete(fibptr);
820 aac_fib_free(fibptr);
821 scsicmd->scsi_done(scsicmd);
825 * aac_get_container_serial - get container serial, none blocking.
827 static int aac_get_container_serial(struct scsi_cmnd * scsicmd)
830 struct aac_get_serial *dinfo;
831 struct fib * cmd_fibcontext;
832 struct aac_dev * dev;
834 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
836 if (!(cmd_fibcontext = aac_fib_alloc(dev)))
839 aac_fib_init(cmd_fibcontext);
840 dinfo = (struct aac_get_serial *) fib_data(cmd_fibcontext);
842 dinfo->command = cpu_to_le32(VM_ContainerConfig);
843 dinfo->type = cpu_to_le32(CT_CID_TO_32BITS_UID);
844 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
846 status = aac_fib_send(ContainerCommand,
848 sizeof (struct aac_get_serial),
851 (fib_callback) get_container_serial_callback,
855 * Check that the command queued to the controller
857 if (status == -EINPROGRESS) {
858 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
862 printk(KERN_WARNING "aac_get_container_serial: aac_fib_send failed with status: %d.\n", status);
863 aac_fib_complete(cmd_fibcontext);
864 aac_fib_free(cmd_fibcontext);
868 /* Function: setinqserial
870 * Arguments: [1] pointer to void [1] int
872 * Purpose: Sets SCSI Unit Serial number.
873 * This is a fake. We should read a proper
874 * serial number from the container. <SuSE>But
875 * without docs it's quite hard to do it :-)
876 * So this will have to do in the meantime.</SuSE>
879 static int setinqserial(struct aac_dev *dev, void *data, int cid)
882 * This breaks array migration.
884 return snprintf((char *)(data), sizeof(struct scsi_inq) - 4, "%08X%02X",
885 le32_to_cpu(dev->adapter_info.serial[0]), cid);
888 static inline void set_sense(struct sense_data *sense_data, u8 sense_key,
889 u8 sense_code, u8 a_sense_code, u8 bit_pointer, u16 field_pointer)
891 u8 *sense_buf = (u8 *)sense_data;
892 /* Sense data valid, err code 70h */
893 sense_buf[0] = 0x70; /* No info field */
894 sense_buf[1] = 0; /* Segment number, always zero */
896 sense_buf[2] = sense_key; /* Sense key */
898 sense_buf[12] = sense_code; /* Additional sense code */
899 sense_buf[13] = a_sense_code; /* Additional sense code qualifier */
901 if (sense_key == ILLEGAL_REQUEST) {
902 sense_buf[7] = 10; /* Additional sense length */
904 sense_buf[15] = bit_pointer;
905 /* Illegal parameter is in the parameter block */
906 if (sense_code == SENCODE_INVALID_CDB_FIELD)
907 sense_buf[15] |= 0xc0;/* Std sense key specific field */
908 /* Illegal parameter is in the CDB block */
909 sense_buf[16] = field_pointer >> 8; /* MSB */
910 sense_buf[17] = field_pointer; /* LSB */
912 sense_buf[7] = 6; /* Additional sense length */
915 static int aac_bounds_32(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
917 if (lba & 0xffffffff00000000LL) {
918 int cid = scmd_id(cmd);
919 dprintk((KERN_DEBUG "aacraid: Illegal lba\n"));
920 cmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
921 SAM_STAT_CHECK_CONDITION;
922 set_sense(&dev->fsa_dev[cid].sense_data,
923 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
924 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
925 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
926 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
927 SCSI_SENSE_BUFFERSIZE));
934 static int aac_bounds_64(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
939 static void io_callback(void *context, struct fib * fibptr);
941 static int aac_read_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
944 struct aac_raw_io *readcmd;
946 readcmd = (struct aac_raw_io *) fib_data(fib);
947 readcmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
948 readcmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
949 readcmd->count = cpu_to_le32(count<<9);
950 readcmd->cid = cpu_to_le16(scmd_id(cmd));
951 readcmd->flags = cpu_to_le16(IO_TYPE_READ);
952 readcmd->bpTotal = 0;
953 readcmd->bpComplete = 0;
955 aac_build_sgraw(cmd, &readcmd->sg);
956 fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(readcmd->sg.count) - 1) * sizeof (struct sgentryraw));
957 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
959 * Now send the Fib to the adapter
961 return aac_fib_send(ContainerRawIo,
966 (fib_callback) io_callback,
970 static int aac_read_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
973 struct aac_read64 *readcmd;
975 readcmd = (struct aac_read64 *) fib_data(fib);
976 readcmd->command = cpu_to_le32(VM_CtHostRead64);
977 readcmd->cid = cpu_to_le16(scmd_id(cmd));
978 readcmd->sector_count = cpu_to_le16(count);
979 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
983 aac_build_sg64(cmd, &readcmd->sg);
984 fibsize = sizeof(struct aac_read64) +
985 ((le32_to_cpu(readcmd->sg.count) - 1) *
986 sizeof (struct sgentry64));
987 BUG_ON (fibsize > (fib->dev->max_fib_size -
988 sizeof(struct aac_fibhdr)));
990 * Now send the Fib to the adapter
992 return aac_fib_send(ContainerCommand64,
997 (fib_callback) io_callback,
1001 static int aac_read_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
1004 struct aac_read *readcmd;
1006 readcmd = (struct aac_read *) fib_data(fib);
1007 readcmd->command = cpu_to_le32(VM_CtBlockRead);
1008 readcmd->cid = cpu_to_le32(scmd_id(cmd));
1009 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1010 readcmd->count = cpu_to_le32(count * 512);
1012 aac_build_sg(cmd, &readcmd->sg);
1013 fibsize = sizeof(struct aac_read) +
1014 ((le32_to_cpu(readcmd->sg.count) - 1) *
1015 sizeof (struct sgentry));
1016 BUG_ON (fibsize > (fib->dev->max_fib_size -
1017 sizeof(struct aac_fibhdr)));
1019 * Now send the Fib to the adapter
1021 return aac_fib_send(ContainerCommand,
1026 (fib_callback) io_callback,
1030 static int aac_write_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1033 struct aac_raw_io *writecmd;
1035 writecmd = (struct aac_raw_io *) fib_data(fib);
1036 writecmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
1037 writecmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
1038 writecmd->count = cpu_to_le32(count<<9);
1039 writecmd->cid = cpu_to_le16(scmd_id(cmd));
1040 writecmd->flags = (fua && ((aac_cache & 5) != 1) &&
1041 (((aac_cache & 5) != 5) || !fib->dev->cache_protected)) ?
1042 cpu_to_le16(IO_TYPE_WRITE|IO_SUREWRITE) :
1043 cpu_to_le16(IO_TYPE_WRITE);
1044 writecmd->bpTotal = 0;
1045 writecmd->bpComplete = 0;
1047 aac_build_sgraw(cmd, &writecmd->sg);
1048 fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(writecmd->sg.count) - 1) * sizeof (struct sgentryraw));
1049 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
1051 * Now send the Fib to the adapter
1053 return aac_fib_send(ContainerRawIo,
1058 (fib_callback) io_callback,
1062 static int aac_write_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1065 struct aac_write64 *writecmd;
1067 writecmd = (struct aac_write64 *) fib_data(fib);
1068 writecmd->command = cpu_to_le32(VM_CtHostWrite64);
1069 writecmd->cid = cpu_to_le16(scmd_id(cmd));
1070 writecmd->sector_count = cpu_to_le16(count);
1071 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1073 writecmd->flags = 0;
1075 aac_build_sg64(cmd, &writecmd->sg);
1076 fibsize = sizeof(struct aac_write64) +
1077 ((le32_to_cpu(writecmd->sg.count) - 1) *
1078 sizeof (struct sgentry64));
1079 BUG_ON (fibsize > (fib->dev->max_fib_size -
1080 sizeof(struct aac_fibhdr)));
1082 * Now send the Fib to the adapter
1084 return aac_fib_send(ContainerCommand64,
1089 (fib_callback) io_callback,
1093 static int aac_write_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1096 struct aac_write *writecmd;
1098 writecmd = (struct aac_write *) fib_data(fib);
1099 writecmd->command = cpu_to_le32(VM_CtBlockWrite);
1100 writecmd->cid = cpu_to_le32(scmd_id(cmd));
1101 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1102 writecmd->count = cpu_to_le32(count * 512);
1103 writecmd->sg.count = cpu_to_le32(1);
1104 /* ->stable is not used - it did mean which type of write */
1106 aac_build_sg(cmd, &writecmd->sg);
1107 fibsize = sizeof(struct aac_write) +
1108 ((le32_to_cpu(writecmd->sg.count) - 1) *
1109 sizeof (struct sgentry));
1110 BUG_ON (fibsize > (fib->dev->max_fib_size -
1111 sizeof(struct aac_fibhdr)));
1113 * Now send the Fib to the adapter
1115 return aac_fib_send(ContainerCommand,
1120 (fib_callback) io_callback,
1124 static struct aac_srb * aac_scsi_common(struct fib * fib, struct scsi_cmnd * cmd)
1126 struct aac_srb * srbcmd;
1131 switch(cmd->sc_data_direction){
1135 case DMA_BIDIRECTIONAL:
1136 flag = SRB_DataIn | SRB_DataOut;
1138 case DMA_FROM_DEVICE:
1142 default: /* shuts up some versions of gcc */
1143 flag = SRB_NoDataXfer;
1147 srbcmd = (struct aac_srb*) fib_data(fib);
1148 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi);
1149 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd)));
1150 srbcmd->id = cpu_to_le32(scmd_id(cmd));
1151 srbcmd->lun = cpu_to_le32(cmd->device->lun);
1152 srbcmd->flags = cpu_to_le32(flag);
1153 timeout = cmd->timeout_per_command/HZ;
1156 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds
1157 srbcmd->retry_limit = 0; /* Obsolete parameter */
1158 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len);
1162 static void aac_srb_callback(void *context, struct fib * fibptr);
1164 static int aac_scsi_64(struct fib * fib, struct scsi_cmnd * cmd)
1167 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1169 aac_build_sg64(cmd, (struct sgmap64*) &srbcmd->sg);
1170 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
1172 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1173 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1175 * Build Scatter/Gather list
1177 fibsize = sizeof (struct aac_srb) - sizeof (struct sgentry) +
1178 ((le32_to_cpu(srbcmd->sg.count) & 0xff) *
1179 sizeof (struct sgentry64));
1180 BUG_ON (fibsize > (fib->dev->max_fib_size -
1181 sizeof(struct aac_fibhdr)));
1184 * Now send the Fib to the adapter
1186 return aac_fib_send(ScsiPortCommand64, fib,
1187 fibsize, FsaNormal, 0, 1,
1188 (fib_callback) aac_srb_callback,
1192 static int aac_scsi_32(struct fib * fib, struct scsi_cmnd * cmd)
1195 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1197 aac_build_sg(cmd, (struct sgmap*)&srbcmd->sg);
1198 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
1200 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1201 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1203 * Build Scatter/Gather list
1205 fibsize = sizeof (struct aac_srb) +
1206 (((le32_to_cpu(srbcmd->sg.count) & 0xff) - 1) *
1207 sizeof (struct sgentry));
1208 BUG_ON (fibsize > (fib->dev->max_fib_size -
1209 sizeof(struct aac_fibhdr)));
1212 * Now send the Fib to the adapter
1214 return aac_fib_send(ScsiPortCommand, fib, fibsize, FsaNormal, 0, 1,
1215 (fib_callback) aac_srb_callback, (void *) cmd);
1218 static int aac_scsi_32_64(struct fib * fib, struct scsi_cmnd * cmd)
1220 if ((sizeof(dma_addr_t) > 4) &&
1221 (num_physpages > (0xFFFFFFFFULL >> PAGE_SHIFT)) &&
1222 (fib->dev->adapter_info.options & AAC_OPT_SGMAP_HOST64))
1224 return aac_scsi_32(fib, cmd);
1227 int aac_get_adapter_info(struct aac_dev* dev)
1232 struct aac_adapter_info *info;
1233 struct aac_bus_info *command;
1234 struct aac_bus_info_response *bus_info;
1236 if (!(fibptr = aac_fib_alloc(dev)))
1239 aac_fib_init(fibptr);
1240 info = (struct aac_adapter_info *) fib_data(fibptr);
1241 memset(info,0,sizeof(*info));
1243 rcode = aac_fib_send(RequestAdapterInfo,
1247 -1, 1, /* First `interrupt' command uses special wait */
1252 aac_fib_complete(fibptr);
1253 aac_fib_free(fibptr);
1256 memcpy(&dev->adapter_info, info, sizeof(*info));
1258 if (dev->adapter_info.options & AAC_OPT_SUPPLEMENT_ADAPTER_INFO) {
1259 struct aac_supplement_adapter_info * sinfo;
1261 aac_fib_init(fibptr);
1263 sinfo = (struct aac_supplement_adapter_info *) fib_data(fibptr);
1265 memset(sinfo,0,sizeof(*sinfo));
1267 rcode = aac_fib_send(RequestSupplementAdapterInfo,
1276 memcpy(&dev->supplement_adapter_info, sinfo, sizeof(*sinfo));
1284 aac_fib_init(fibptr);
1286 bus_info = (struct aac_bus_info_response *) fib_data(fibptr);
1288 memset(bus_info, 0, sizeof(*bus_info));
1290 command = (struct aac_bus_info *)bus_info;
1292 command->Command = cpu_to_le32(VM_Ioctl);
1293 command->ObjType = cpu_to_le32(FT_DRIVE);
1294 command->MethodId = cpu_to_le32(1);
1295 command->CtlCmd = cpu_to_le32(GetBusInfo);
1297 rcode = aac_fib_send(ContainerCommand,
1304 /* reasoned default */
1305 dev->maximum_num_physicals = 16;
1306 if (rcode >= 0 && le32_to_cpu(bus_info->Status) == ST_OK) {
1307 dev->maximum_num_physicals = le32_to_cpu(bus_info->TargetsPerBus);
1308 dev->maximum_num_channels = le32_to_cpu(bus_info->BusCount);
1311 if (!dev->in_reset) {
1313 tmp = le32_to_cpu(dev->adapter_info.kernelrev);
1314 printk(KERN_INFO "%s%d: kernel %d.%d-%d[%d] %.*s\n",
1320 le32_to_cpu(dev->adapter_info.kernelbuild),
1321 (int)sizeof(dev->supplement_adapter_info.BuildDate),
1322 dev->supplement_adapter_info.BuildDate);
1323 tmp = le32_to_cpu(dev->adapter_info.monitorrev);
1324 printk(KERN_INFO "%s%d: monitor %d.%d-%d[%d]\n",
1326 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
1327 le32_to_cpu(dev->adapter_info.monitorbuild));
1328 tmp = le32_to_cpu(dev->adapter_info.biosrev);
1329 printk(KERN_INFO "%s%d: bios %d.%d-%d[%d]\n",
1331 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
1332 le32_to_cpu(dev->adapter_info.biosbuild));
1334 if (aac_show_serial_number(
1335 shost_to_class(dev->scsi_host_ptr), buffer))
1336 printk(KERN_INFO "%s%d: serial %s",
1337 dev->name, dev->id, buffer);
1338 if (dev->supplement_adapter_info.VpdInfo.Tsid[0]) {
1339 printk(KERN_INFO "%s%d: TSID %.*s\n",
1341 (int)sizeof(dev->supplement_adapter_info.VpdInfo.Tsid),
1342 dev->supplement_adapter_info.VpdInfo.Tsid);
1344 if (!aac_check_reset || ((aac_check_reset == 1) &&
1345 (dev->supplement_adapter_info.SupportedOptions2 &
1346 AAC_OPTION_IGNORE_RESET))) {
1347 printk(KERN_INFO "%s%d: Reset Adapter Ignored\n",
1348 dev->name, dev->id);
1352 dev->cache_protected = 0;
1353 dev->jbod = ((dev->supplement_adapter_info.FeatureBits &
1354 AAC_FEATURE_JBOD) != 0);
1355 dev->nondasd_support = 0;
1356 dev->raid_scsi_mode = 0;
1357 if(dev->adapter_info.options & AAC_OPT_NONDASD)
1358 dev->nondasd_support = 1;
1361 * If the firmware supports ROMB RAID/SCSI mode and we are currently
1362 * in RAID/SCSI mode, set the flag. For now if in this mode we will
1363 * force nondasd support on. If we decide to allow the non-dasd flag
1364 * additional changes changes will have to be made to support
1365 * RAID/SCSI. the function aac_scsi_cmd in this module will have to be
1366 * changed to support the new dev->raid_scsi_mode flag instead of
1367 * leaching off of the dev->nondasd_support flag. Also in linit.c the
1368 * function aac_detect will have to be modified where it sets up the
1369 * max number of channels based on the aac->nondasd_support flag only.
1371 if ((dev->adapter_info.options & AAC_OPT_SCSI_MANAGED) &&
1372 (dev->adapter_info.options & AAC_OPT_RAID_SCSI_MODE)) {
1373 dev->nondasd_support = 1;
1374 dev->raid_scsi_mode = 1;
1376 if (dev->raid_scsi_mode != 0)
1377 printk(KERN_INFO "%s%d: ROMB RAID/SCSI mode enabled\n",
1378 dev->name, dev->id);
1381 dev->nondasd_support = (nondasd!=0);
1382 if (dev->nondasd_support && !dev->in_reset)
1383 printk(KERN_INFO "%s%d: Non-DASD support enabled.\n",dev->name, dev->id);
1385 dev->dac_support = 0;
1386 if( (sizeof(dma_addr_t) > 4) && (dev->adapter_info.options & AAC_OPT_SGMAP_HOST64)){
1388 printk(KERN_INFO "%s%d: 64bit support enabled.\n",
1389 dev->name, dev->id);
1390 dev->dac_support = 1;
1394 dev->dac_support = (dacmode!=0);
1396 if(dev->dac_support != 0) {
1397 if (!pci_set_dma_mask(dev->pdev, DMA_64BIT_MASK) &&
1398 !pci_set_consistent_dma_mask(dev->pdev, DMA_64BIT_MASK)) {
1400 printk(KERN_INFO"%s%d: 64 Bit DAC enabled\n",
1401 dev->name, dev->id);
1402 } else if (!pci_set_dma_mask(dev->pdev, DMA_32BIT_MASK) &&
1403 !pci_set_consistent_dma_mask(dev->pdev, DMA_32BIT_MASK)) {
1404 printk(KERN_INFO"%s%d: DMA mask set failed, 64 Bit DAC disabled\n",
1405 dev->name, dev->id);
1406 dev->dac_support = 0;
1408 printk(KERN_WARNING"%s%d: No suitable DMA available.\n",
1409 dev->name, dev->id);
1414 * Deal with configuring for the individualized limits of each packet
1417 dev->a_ops.adapter_scsi = (dev->dac_support)
1418 ? ((aac_get_driver_ident(dev->cardtype)->quirks & AAC_QUIRK_SCSI_32)
1422 if (dev->raw_io_interface) {
1423 dev->a_ops.adapter_bounds = (dev->raw_io_64)
1426 dev->a_ops.adapter_read = aac_read_raw_io;
1427 dev->a_ops.adapter_write = aac_write_raw_io;
1429 dev->a_ops.adapter_bounds = aac_bounds_32;
1430 dev->scsi_host_ptr->sg_tablesize = (dev->max_fib_size -
1431 sizeof(struct aac_fibhdr) -
1432 sizeof(struct aac_write) + sizeof(struct sgentry)) /
1433 sizeof(struct sgentry);
1434 if (dev->dac_support) {
1435 dev->a_ops.adapter_read = aac_read_block64;
1436 dev->a_ops.adapter_write = aac_write_block64;
1438 * 38 scatter gather elements
1440 dev->scsi_host_ptr->sg_tablesize =
1441 (dev->max_fib_size -
1442 sizeof(struct aac_fibhdr) -
1443 sizeof(struct aac_write64) +
1444 sizeof(struct sgentry64)) /
1445 sizeof(struct sgentry64);
1447 dev->a_ops.adapter_read = aac_read_block;
1448 dev->a_ops.adapter_write = aac_write_block;
1450 dev->scsi_host_ptr->max_sectors = AAC_MAX_32BIT_SGBCOUNT;
1451 if(!(dev->adapter_info.options & AAC_OPT_NEW_COMM)) {
1453 * Worst case size that could cause sg overflow when
1454 * we break up SG elements that are larger than 64KB.
1455 * Would be nice if we could tell the SCSI layer what
1456 * the maximum SG element size can be. Worst case is
1457 * (sg_tablesize-1) 4KB elements with one 64KB
1459 * 32bit -> 468 or 238KB 64bit -> 424 or 212KB
1461 dev->scsi_host_ptr->max_sectors =
1462 (dev->scsi_host_ptr->sg_tablesize * 8) + 112;
1466 aac_fib_complete(fibptr);
1467 aac_fib_free(fibptr);
1473 static void io_callback(void *context, struct fib * fibptr)
1475 struct aac_dev *dev;
1476 struct aac_read_reply *readreply;
1477 struct scsi_cmnd *scsicmd;
1480 scsicmd = (struct scsi_cmnd *) context;
1482 if (!aac_valid_context(scsicmd, fibptr))
1486 cid = scmd_id(scsicmd);
1488 if (nblank(dprintk(x))) {
1490 switch (scsicmd->cmnd[0]) {
1493 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
1494 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1498 lba = ((u64)scsicmd->cmnd[2] << 56) |
1499 ((u64)scsicmd->cmnd[3] << 48) |
1500 ((u64)scsicmd->cmnd[4] << 40) |
1501 ((u64)scsicmd->cmnd[5] << 32) |
1502 ((u64)scsicmd->cmnd[6] << 24) |
1503 (scsicmd->cmnd[7] << 16) |
1504 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1508 lba = ((u64)scsicmd->cmnd[2] << 24) |
1509 (scsicmd->cmnd[3] << 16) |
1510 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1513 lba = ((u64)scsicmd->cmnd[2] << 24) |
1514 (scsicmd->cmnd[3] << 16) |
1515 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1519 "io_callback[cpu %d]: lba = %llu, t = %ld.\n",
1520 smp_processor_id(), (unsigned long long)lba, jiffies);
1523 BUG_ON(fibptr == NULL);
1525 scsi_dma_unmap(scsicmd);
1527 readreply = (struct aac_read_reply *)fib_data(fibptr);
1528 if (le32_to_cpu(readreply->status) == ST_OK)
1529 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1531 #ifdef AAC_DETAILED_STATUS_INFO
1532 printk(KERN_WARNING "io_callback: io failed, status = %d\n",
1533 le32_to_cpu(readreply->status));
1535 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
1536 set_sense(&dev->fsa_dev[cid].sense_data,
1537 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
1538 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
1539 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
1540 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1541 SCSI_SENSE_BUFFERSIZE));
1543 aac_fib_complete(fibptr);
1544 aac_fib_free(fibptr);
1546 scsicmd->scsi_done(scsicmd);
1549 static int aac_read(struct scsi_cmnd * scsicmd)
1554 struct aac_dev *dev;
1555 struct fib * cmd_fibcontext;
1557 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
1559 * Get block address and transfer length
1561 switch (scsicmd->cmnd[0]) {
1563 dprintk((KERN_DEBUG "aachba: received a read(6) command on id %d.\n", scmd_id(scsicmd)));
1565 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
1566 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1567 count = scsicmd->cmnd[4];
1573 dprintk((KERN_DEBUG "aachba: received a read(16) command on id %d.\n", scmd_id(scsicmd)));
1575 lba = ((u64)scsicmd->cmnd[2] << 56) |
1576 ((u64)scsicmd->cmnd[3] << 48) |
1577 ((u64)scsicmd->cmnd[4] << 40) |
1578 ((u64)scsicmd->cmnd[5] << 32) |
1579 ((u64)scsicmd->cmnd[6] << 24) |
1580 (scsicmd->cmnd[7] << 16) |
1581 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1582 count = (scsicmd->cmnd[10] << 24) |
1583 (scsicmd->cmnd[11] << 16) |
1584 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
1587 dprintk((KERN_DEBUG "aachba: received a read(12) command on id %d.\n", scmd_id(scsicmd)));
1589 lba = ((u64)scsicmd->cmnd[2] << 24) |
1590 (scsicmd->cmnd[3] << 16) |
1591 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1592 count = (scsicmd->cmnd[6] << 24) |
1593 (scsicmd->cmnd[7] << 16) |
1594 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1597 dprintk((KERN_DEBUG "aachba: received a read(10) command on id %d.\n", scmd_id(scsicmd)));
1599 lba = ((u64)scsicmd->cmnd[2] << 24) |
1600 (scsicmd->cmnd[3] << 16) |
1601 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1602 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
1605 dprintk((KERN_DEBUG "aac_read[cpu %d]: lba = %llu, t = %ld.\n",
1606 smp_processor_id(), (unsigned long long)lba, jiffies));
1607 if (aac_adapter_bounds(dev,scsicmd,lba))
1610 * Alocate and initialize a Fib
1612 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
1616 status = aac_adapter_read(cmd_fibcontext, scsicmd, lba, count);
1619 * Check that the command queued to the controller
1621 if (status == -EINPROGRESS) {
1622 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
1626 printk(KERN_WARNING "aac_read: aac_fib_send failed with status: %d.\n", status);
1628 * For some reason, the Fib didn't queue, return QUEUE_FULL
1630 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
1631 scsicmd->scsi_done(scsicmd);
1632 aac_fib_complete(cmd_fibcontext);
1633 aac_fib_free(cmd_fibcontext);
1637 static int aac_write(struct scsi_cmnd * scsicmd)
1643 struct aac_dev *dev;
1644 struct fib * cmd_fibcontext;
1646 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
1648 * Get block address and transfer length
1650 if (scsicmd->cmnd[0] == WRITE_6) /* 6 byte command */
1652 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1653 count = scsicmd->cmnd[4];
1657 } else if (scsicmd->cmnd[0] == WRITE_16) { /* 16 byte command */
1658 dprintk((KERN_DEBUG "aachba: received a write(16) command on id %d.\n", scmd_id(scsicmd)));
1660 lba = ((u64)scsicmd->cmnd[2] << 56) |
1661 ((u64)scsicmd->cmnd[3] << 48) |
1662 ((u64)scsicmd->cmnd[4] << 40) |
1663 ((u64)scsicmd->cmnd[5] << 32) |
1664 ((u64)scsicmd->cmnd[6] << 24) |
1665 (scsicmd->cmnd[7] << 16) |
1666 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1667 count = (scsicmd->cmnd[10] << 24) | (scsicmd->cmnd[11] << 16) |
1668 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
1669 fua = scsicmd->cmnd[1] & 0x8;
1670 } else if (scsicmd->cmnd[0] == WRITE_12) { /* 12 byte command */
1671 dprintk((KERN_DEBUG "aachba: received a write(12) command on id %d.\n", scmd_id(scsicmd)));
1673 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16)
1674 | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1675 count = (scsicmd->cmnd[6] << 24) | (scsicmd->cmnd[7] << 16)
1676 | (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1677 fua = scsicmd->cmnd[1] & 0x8;
1679 dprintk((KERN_DEBUG "aachba: received a write(10) command on id %d.\n", scmd_id(scsicmd)));
1680 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1681 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
1682 fua = scsicmd->cmnd[1] & 0x8;
1684 dprintk((KERN_DEBUG "aac_write[cpu %d]: lba = %llu, t = %ld.\n",
1685 smp_processor_id(), (unsigned long long)lba, jiffies));
1686 if (aac_adapter_bounds(dev,scsicmd,lba))
1689 * Allocate and initialize a Fib then setup a BlockWrite command
1691 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
1692 scsicmd->result = DID_ERROR << 16;
1693 scsicmd->scsi_done(scsicmd);
1697 status = aac_adapter_write(cmd_fibcontext, scsicmd, lba, count, fua);
1700 * Check that the command queued to the controller
1702 if (status == -EINPROGRESS) {
1703 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
1707 printk(KERN_WARNING "aac_write: aac_fib_send failed with status: %d\n", status);
1709 * For some reason, the Fib didn't queue, return QUEUE_FULL
1711 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
1712 scsicmd->scsi_done(scsicmd);
1714 aac_fib_complete(cmd_fibcontext);
1715 aac_fib_free(cmd_fibcontext);
1719 static void synchronize_callback(void *context, struct fib *fibptr)
1721 struct aac_synchronize_reply *synchronizereply;
1722 struct scsi_cmnd *cmd;
1726 if (!aac_valid_context(cmd, fibptr))
1729 dprintk((KERN_DEBUG "synchronize_callback[cpu %d]: t = %ld.\n",
1730 smp_processor_id(), jiffies));
1731 BUG_ON(fibptr == NULL);
1734 synchronizereply = fib_data(fibptr);
1735 if (le32_to_cpu(synchronizereply->status) == CT_OK)
1736 cmd->result = DID_OK << 16 |
1737 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1739 struct scsi_device *sdev = cmd->device;
1740 struct aac_dev *dev = fibptr->dev;
1741 u32 cid = sdev_id(sdev);
1743 "synchronize_callback: synchronize failed, status = %d\n",
1744 le32_to_cpu(synchronizereply->status));
1745 cmd->result = DID_OK << 16 |
1746 COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
1747 set_sense(&dev->fsa_dev[cid].sense_data,
1748 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
1749 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
1750 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
1751 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1752 SCSI_SENSE_BUFFERSIZE));
1755 aac_fib_complete(fibptr);
1756 aac_fib_free(fibptr);
1757 cmd->scsi_done(cmd);
1760 static int aac_synchronize(struct scsi_cmnd *scsicmd)
1763 struct fib *cmd_fibcontext;
1764 struct aac_synchronize *synchronizecmd;
1765 struct scsi_cmnd *cmd;
1766 struct scsi_device *sdev = scsicmd->device;
1768 struct aac_dev *aac;
1769 u64 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) |
1770 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1771 u32 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
1772 unsigned long flags;
1775 * Wait for all outstanding queued commands to complete to this
1776 * specific target (block).
1778 spin_lock_irqsave(&sdev->list_lock, flags);
1779 list_for_each_entry(cmd, &sdev->cmd_list, list)
1780 if (cmd->SCp.phase == AAC_OWNER_FIRMWARE) {
1784 if (cmd->cmnd[0] == WRITE_6) {
1785 cmnd_lba = ((cmd->cmnd[1] & 0x1F) << 16) |
1786 (cmd->cmnd[2] << 8) |
1788 cmnd_count = cmd->cmnd[4];
1789 if (cmnd_count == 0)
1791 } else if (cmd->cmnd[0] == WRITE_16) {
1792 cmnd_lba = ((u64)cmd->cmnd[2] << 56) |
1793 ((u64)cmd->cmnd[3] << 48) |
1794 ((u64)cmd->cmnd[4] << 40) |
1795 ((u64)cmd->cmnd[5] << 32) |
1796 ((u64)cmd->cmnd[6] << 24) |
1797 (cmd->cmnd[7] << 16) |
1798 (cmd->cmnd[8] << 8) |
1800 cmnd_count = (cmd->cmnd[10] << 24) |
1801 (cmd->cmnd[11] << 16) |
1802 (cmd->cmnd[12] << 8) |
1804 } else if (cmd->cmnd[0] == WRITE_12) {
1805 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
1806 (cmd->cmnd[3] << 16) |
1807 (cmd->cmnd[4] << 8) |
1809 cmnd_count = (cmd->cmnd[6] << 24) |
1810 (cmd->cmnd[7] << 16) |
1811 (cmd->cmnd[8] << 8) |
1813 } else if (cmd->cmnd[0] == WRITE_10) {
1814 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
1815 (cmd->cmnd[3] << 16) |
1816 (cmd->cmnd[4] << 8) |
1818 cmnd_count = (cmd->cmnd[7] << 8) |
1822 if (((cmnd_lba + cmnd_count) < lba) ||
1823 (count && ((lba + count) < cmnd_lba)))
1829 spin_unlock_irqrestore(&sdev->list_lock, flags);
1832 * Yield the processor (requeue for later)
1835 return SCSI_MLQUEUE_DEVICE_BUSY;
1837 aac = (struct aac_dev *)sdev->host->hostdata;
1839 return SCSI_MLQUEUE_HOST_BUSY;
1842 * Allocate and initialize a Fib
1844 if (!(cmd_fibcontext = aac_fib_alloc(aac)))
1845 return SCSI_MLQUEUE_HOST_BUSY;
1847 aac_fib_init(cmd_fibcontext);
1849 synchronizecmd = fib_data(cmd_fibcontext);
1850 synchronizecmd->command = cpu_to_le32(VM_ContainerConfig);
1851 synchronizecmd->type = cpu_to_le32(CT_FLUSH_CACHE);
1852 synchronizecmd->cid = cpu_to_le32(scmd_id(scsicmd));
1853 synchronizecmd->count =
1854 cpu_to_le32(sizeof(((struct aac_synchronize_reply *)NULL)->data));
1857 * Now send the Fib to the adapter
1859 status = aac_fib_send(ContainerCommand,
1861 sizeof(struct aac_synchronize),
1864 (fib_callback)synchronize_callback,
1868 * Check that the command queued to the controller
1870 if (status == -EINPROGRESS) {
1871 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
1876 "aac_synchronize: aac_fib_send failed with status: %d.\n", status);
1877 aac_fib_complete(cmd_fibcontext);
1878 aac_fib_free(cmd_fibcontext);
1879 return SCSI_MLQUEUE_HOST_BUSY;
1883 * aac_scsi_cmd() - Process SCSI command
1884 * @scsicmd: SCSI command block
1886 * Emulate a SCSI command and queue the required request for the
1890 int aac_scsi_cmd(struct scsi_cmnd * scsicmd)
1893 struct Scsi_Host *host = scsicmd->device->host;
1894 struct aac_dev *dev = (struct aac_dev *)host->hostdata;
1895 struct fsa_dev_info *fsa_dev_ptr = dev->fsa_dev;
1897 if (fsa_dev_ptr == NULL)
1900 * If the bus, id or lun is out of range, return fail
1901 * Test does not apply to ID 16, the pseudo id for the controller
1904 cid = scmd_id(scsicmd);
1905 if (cid != host->this_id) {
1906 if (scmd_channel(scsicmd) == CONTAINER_CHANNEL) {
1907 if((cid >= dev->maximum_num_containers) ||
1908 (scsicmd->device->lun != 0)) {
1909 scsicmd->result = DID_NO_CONNECT << 16;
1910 scsicmd->scsi_done(scsicmd);
1915 * If the target container doesn't exist, it may have
1916 * been newly created
1918 if ((fsa_dev_ptr[cid].valid & 1) == 0) {
1919 switch (scsicmd->cmnd[0]) {
1920 case SERVICE_ACTION_IN:
1921 if (!(dev->raw_io_interface) ||
1922 !(dev->raw_io_64) ||
1923 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
1927 case TEST_UNIT_READY:
1930 return _aac_probe_container(scsicmd,
1931 aac_probe_container_callback2);
1936 } else { /* check for physical non-dasd devices */
1937 if (dev->nondasd_support || expose_physicals ||
1941 return aac_send_srb_fib(scsicmd);
1943 scsicmd->result = DID_NO_CONNECT << 16;
1944 scsicmd->scsi_done(scsicmd);
1950 * else Command for the controller itself
1952 else if ((scsicmd->cmnd[0] != INQUIRY) && /* only INQUIRY & TUR cmnd supported for controller */
1953 (scsicmd->cmnd[0] != TEST_UNIT_READY))
1955 dprintk((KERN_WARNING "Only INQUIRY & TUR command supported for controller, rcvd = 0x%x.\n", scsicmd->cmnd[0]));
1956 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
1957 set_sense(&dev->fsa_dev[cid].sense_data,
1958 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
1959 ASENCODE_INVALID_COMMAND, 0, 0);
1960 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
1961 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1962 SCSI_SENSE_BUFFERSIZE));
1963 scsicmd->scsi_done(scsicmd);
1968 /* Handle commands here that don't really require going out to the adapter */
1969 switch (scsicmd->cmnd[0]) {
1972 struct inquiry_data inq_data;
1974 dprintk((KERN_DEBUG "INQUIRY command, ID: %d.\n", cid));
1975 memset(&inq_data, 0, sizeof (struct inquiry_data));
1977 if (scsicmd->cmnd[1] & 0x1) {
1978 char *arr = (char *)&inq_data;
1981 arr[0] = (scmd_id(scsicmd) == host->this_id) ?
1982 INQD_PDT_PROC : INQD_PDT_DA;
1983 if (scsicmd->cmnd[2] == 0) {
1984 /* supported vital product data pages */
1988 arr[1] = scsicmd->cmnd[2];
1989 aac_internal_transfer(scsicmd, &inq_data, 0,
1991 scsicmd->result = DID_OK << 16 |
1992 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1993 } else if (scsicmd->cmnd[2] == 0x80) {
1994 /* unit serial number page */
1995 arr[3] = setinqserial(dev, &arr[4],
1997 arr[1] = scsicmd->cmnd[2];
1998 aac_internal_transfer(scsicmd, &inq_data, 0,
2000 return aac_get_container_serial(scsicmd);
2002 /* vpd page not implemented */
2003 scsicmd->result = DID_OK << 16 |
2004 COMMAND_COMPLETE << 8 |
2005 SAM_STAT_CHECK_CONDITION;
2006 set_sense(&dev->fsa_dev[cid].sense_data,
2007 ILLEGAL_REQUEST, SENCODE_INVALID_CDB_FIELD,
2008 ASENCODE_NO_SENSE, 7, 2);
2009 memcpy(scsicmd->sense_buffer,
2010 &dev->fsa_dev[cid].sense_data,
2012 sizeof(dev->fsa_dev[cid].sense_data),
2013 SCSI_SENSE_BUFFERSIZE));
2015 scsicmd->scsi_done(scsicmd);
2018 inq_data.inqd_ver = 2; /* claim compliance to SCSI-2 */
2019 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 */
2020 inq_data.inqd_len = 31;
2021 /*Format for "pad2" is RelAdr | WBus32 | WBus16 | Sync | Linked |Reserved| CmdQue | SftRe */
2022 inq_data.inqd_pad2= 0x32 ; /*WBus16|Sync|CmdQue */
2024 * Set the Vendor, Product, and Revision Level
2025 * see: <vendor>.c i.e. aac.c
2027 if (cid == host->this_id) {
2028 setinqstr(dev, (void *) (inq_data.inqd_vid), ARRAY_SIZE(container_types));
2029 inq_data.inqd_pdt = INQD_PDT_PROC; /* Processor device */
2030 aac_internal_transfer(scsicmd, &inq_data, 0, sizeof(inq_data));
2031 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2032 scsicmd->scsi_done(scsicmd);
2037 setinqstr(dev, (void *) (inq_data.inqd_vid), fsa_dev_ptr[cid].type);
2038 inq_data.inqd_pdt = INQD_PDT_DA; /* Direct/random access device */
2039 aac_internal_transfer(scsicmd, &inq_data, 0, sizeof(inq_data));
2040 return aac_get_container_name(scsicmd);
2042 case SERVICE_ACTION_IN:
2043 if (!(dev->raw_io_interface) ||
2044 !(dev->raw_io_64) ||
2045 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
2051 dprintk((KERN_DEBUG "READ CAPACITY_16 command.\n"));
2052 capacity = fsa_dev_ptr[cid].size - 1;
2053 cp[0] = (capacity >> 56) & 0xff;
2054 cp[1] = (capacity >> 48) & 0xff;
2055 cp[2] = (capacity >> 40) & 0xff;
2056 cp[3] = (capacity >> 32) & 0xff;
2057 cp[4] = (capacity >> 24) & 0xff;
2058 cp[5] = (capacity >> 16) & 0xff;
2059 cp[6] = (capacity >> 8) & 0xff;
2060 cp[7] = (capacity >> 0) & 0xff;
2066 aac_internal_transfer(scsicmd, cp, 0,
2067 min_t(size_t, scsicmd->cmnd[13], sizeof(cp)));
2068 if (sizeof(cp) < scsicmd->cmnd[13]) {
2069 unsigned int len, offset = sizeof(cp);
2071 memset(cp, 0, offset);
2073 len = min_t(size_t, scsicmd->cmnd[13] - offset,
2075 aac_internal_transfer(scsicmd, cp, offset, len);
2076 } while ((offset += len) < scsicmd->cmnd[13]);
2079 /* Do not cache partition table for arrays */
2080 scsicmd->device->removable = 1;
2082 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2083 scsicmd->scsi_done(scsicmd);
2093 dprintk((KERN_DEBUG "READ CAPACITY command.\n"));
2094 if (fsa_dev_ptr[cid].size <= 0x100000000ULL)
2095 capacity = fsa_dev_ptr[cid].size - 1;
2099 cp[0] = (capacity >> 24) & 0xff;
2100 cp[1] = (capacity >> 16) & 0xff;
2101 cp[2] = (capacity >> 8) & 0xff;
2102 cp[3] = (capacity >> 0) & 0xff;
2107 aac_internal_transfer(scsicmd, cp, 0, sizeof(cp));
2108 /* Do not cache partition table for arrays */
2109 scsicmd->device->removable = 1;
2111 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2112 scsicmd->scsi_done(scsicmd);
2120 int mode_buf_length = 4;
2122 dprintk((KERN_DEBUG "MODE SENSE command.\n"));
2123 mode_buf[0] = 3; /* Mode data length */
2124 mode_buf[1] = 0; /* Medium type - default */
2125 mode_buf[2] = 0; /* Device-specific param,
2126 bit 8: 0/1 = write enabled/protected
2127 bit 4: 0/1 = FUA enabled */
2128 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
2130 mode_buf[3] = 0; /* Block descriptor length */
2131 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
2132 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
2136 mode_buf[6] = ((aac_cache & 6) == 2)
2137 ? 0 : 0x04; /* WCE */
2138 mode_buf_length = 7;
2139 if (mode_buf_length > scsicmd->cmnd[4])
2140 mode_buf_length = scsicmd->cmnd[4];
2142 aac_internal_transfer(scsicmd, mode_buf, 0, mode_buf_length);
2143 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2144 scsicmd->scsi_done(scsicmd);
2151 int mode_buf_length = 8;
2153 dprintk((KERN_DEBUG "MODE SENSE 10 byte command.\n"));
2154 mode_buf[0] = 0; /* Mode data length (MSB) */
2155 mode_buf[1] = 6; /* Mode data length (LSB) */
2156 mode_buf[2] = 0; /* Medium type - default */
2157 mode_buf[3] = 0; /* Device-specific param,
2158 bit 8: 0/1 = write enabled/protected
2159 bit 4: 0/1 = FUA enabled */
2160 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
2162 mode_buf[4] = 0; /* reserved */
2163 mode_buf[5] = 0; /* reserved */
2164 mode_buf[6] = 0; /* Block descriptor length (MSB) */
2165 mode_buf[7] = 0; /* Block descriptor length (LSB) */
2166 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
2167 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
2171 mode_buf[10] = ((aac_cache & 6) == 2)
2172 ? 0 : 0x04; /* WCE */
2173 mode_buf_length = 11;
2174 if (mode_buf_length > scsicmd->cmnd[8])
2175 mode_buf_length = scsicmd->cmnd[8];
2177 aac_internal_transfer(scsicmd, mode_buf, 0, mode_buf_length);
2179 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2180 scsicmd->scsi_done(scsicmd);
2185 dprintk((KERN_DEBUG "REQUEST SENSE command.\n"));
2186 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data, sizeof (struct sense_data));
2187 memset(&dev->fsa_dev[cid].sense_data, 0, sizeof (struct sense_data));
2188 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2189 scsicmd->scsi_done(scsicmd);
2192 case ALLOW_MEDIUM_REMOVAL:
2193 dprintk((KERN_DEBUG "LOCK command.\n"));
2194 if (scsicmd->cmnd[4])
2195 fsa_dev_ptr[cid].locked = 1;
2197 fsa_dev_ptr[cid].locked = 0;
2199 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2200 scsicmd->scsi_done(scsicmd);
2203 * These commands are all No-Ops
2205 case TEST_UNIT_READY:
2209 case REASSIGN_BLOCKS:
2212 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2213 scsicmd->scsi_done(scsicmd);
2217 switch (scsicmd->cmnd[0])
2226 * Hack to keep track of ordinal number of the device that
2227 * corresponds to a container. Needed to convert
2228 * containers to /dev/sd device names
2231 if (scsicmd->request->rq_disk)
2232 strlcpy(fsa_dev_ptr[cid].devname,
2233 scsicmd->request->rq_disk->disk_name,
2234 min(sizeof(fsa_dev_ptr[cid].devname),
2235 sizeof(scsicmd->request->rq_disk->disk_name) + 1));
2237 return aac_read(scsicmd);
2245 return aac_write(scsicmd);
2247 case SYNCHRONIZE_CACHE:
2248 if (((aac_cache & 6) == 6) && dev->cache_protected) {
2249 scsicmd->result = DID_OK << 16 |
2250 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2251 scsicmd->scsi_done(scsicmd);
2254 /* Issue FIB to tell Firmware to flush it's cache */
2255 if ((aac_cache & 6) != 2)
2256 return aac_synchronize(scsicmd);
2260 * Unhandled commands
2262 dprintk((KERN_WARNING "Unhandled SCSI Command: 0x%x.\n", scsicmd->cmnd[0]));
2263 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
2264 set_sense(&dev->fsa_dev[cid].sense_data,
2265 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
2266 ASENCODE_INVALID_COMMAND, 0, 0);
2267 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2269 sizeof(dev->fsa_dev[cid].sense_data),
2270 SCSI_SENSE_BUFFERSIZE));
2271 scsicmd->scsi_done(scsicmd);
2276 static int query_disk(struct aac_dev *dev, void __user *arg)
2278 struct aac_query_disk qd;
2279 struct fsa_dev_info *fsa_dev_ptr;
2281 fsa_dev_ptr = dev->fsa_dev;
2284 if (copy_from_user(&qd, arg, sizeof (struct aac_query_disk)))
2288 else if ((qd.bus == -1) && (qd.id == -1) && (qd.lun == -1))
2290 if (qd.cnum < 0 || qd.cnum >= dev->maximum_num_containers)
2292 qd.instance = dev->scsi_host_ptr->host_no;
2294 qd.id = CONTAINER_TO_ID(qd.cnum);
2295 qd.lun = CONTAINER_TO_LUN(qd.cnum);
2297 else return -EINVAL;
2299 qd.valid = fsa_dev_ptr[qd.cnum].valid != 0;
2300 qd.locked = fsa_dev_ptr[qd.cnum].locked;
2301 qd.deleted = fsa_dev_ptr[qd.cnum].deleted;
2303 if (fsa_dev_ptr[qd.cnum].devname[0] == '\0')
2308 strlcpy(qd.name, fsa_dev_ptr[qd.cnum].devname,
2309 min(sizeof(qd.name), sizeof(fsa_dev_ptr[qd.cnum].devname) + 1));
2311 if (copy_to_user(arg, &qd, sizeof (struct aac_query_disk)))
2316 static int force_delete_disk(struct aac_dev *dev, void __user *arg)
2318 struct aac_delete_disk dd;
2319 struct fsa_dev_info *fsa_dev_ptr;
2321 fsa_dev_ptr = dev->fsa_dev;
2325 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
2328 if (dd.cnum >= dev->maximum_num_containers)
2331 * Mark this container as being deleted.
2333 fsa_dev_ptr[dd.cnum].deleted = 1;
2335 * Mark the container as no longer valid
2337 fsa_dev_ptr[dd.cnum].valid = 0;
2341 static int delete_disk(struct aac_dev *dev, void __user *arg)
2343 struct aac_delete_disk dd;
2344 struct fsa_dev_info *fsa_dev_ptr;
2346 fsa_dev_ptr = dev->fsa_dev;
2350 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
2353 if (dd.cnum >= dev->maximum_num_containers)
2356 * If the container is locked, it can not be deleted by the API.
2358 if (fsa_dev_ptr[dd.cnum].locked)
2362 * Mark the container as no longer being valid.
2364 fsa_dev_ptr[dd.cnum].valid = 0;
2365 fsa_dev_ptr[dd.cnum].devname[0] = '\0';
2370 int aac_dev_ioctl(struct aac_dev *dev, int cmd, void __user *arg)
2373 case FSACTL_QUERY_DISK:
2374 return query_disk(dev, arg);
2375 case FSACTL_DELETE_DISK:
2376 return delete_disk(dev, arg);
2377 case FSACTL_FORCE_DELETE_DISK:
2378 return force_delete_disk(dev, arg);
2379 case FSACTL_GET_CONTAINERS:
2380 return aac_get_containers(dev);
2389 * @context: the context set in the fib - here it is scsi cmd
2390 * @fibptr: pointer to the fib
2392 * Handles the completion of a scsi command to a non dasd device
2396 static void aac_srb_callback(void *context, struct fib * fibptr)
2398 struct aac_dev *dev;
2399 struct aac_srb_reply *srbreply;
2400 struct scsi_cmnd *scsicmd;
2402 scsicmd = (struct scsi_cmnd *) context;
2404 if (!aac_valid_context(scsicmd, fibptr))
2407 BUG_ON(fibptr == NULL);
2411 srbreply = (struct aac_srb_reply *) fib_data(fibptr);
2413 scsicmd->sense_buffer[0] = '\0'; /* Initialize sense valid flag to false */
2415 * Calculate resid for sg
2418 scsi_set_resid(scsicmd, scsi_bufflen(scsicmd)
2419 - le32_to_cpu(srbreply->data_xfer_length));
2421 scsi_dma_unmap(scsicmd);
2424 * First check the fib status
2427 if (le32_to_cpu(srbreply->status) != ST_OK){
2429 printk(KERN_WARNING "aac_srb_callback: srb failed, status = %d\n", le32_to_cpu(srbreply->status));
2430 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
2431 SCSI_SENSE_BUFFERSIZE);
2432 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
2433 memcpy(scsicmd->sense_buffer, srbreply->sense_data, len);
2437 * Next check the srb status
2439 switch( (le32_to_cpu(srbreply->srb_status))&0x3f){
2440 case SRB_STATUS_ERROR_RECOVERY:
2441 case SRB_STATUS_PENDING:
2442 case SRB_STATUS_SUCCESS:
2443 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
2445 case SRB_STATUS_DATA_OVERRUN:
2446 switch(scsicmd->cmnd[0]){
2455 if (le32_to_cpu(srbreply->data_xfer_length) < scsicmd->underflow) {
2456 printk(KERN_WARNING"aacraid: SCSI CMD underflow\n");
2458 printk(KERN_WARNING"aacraid: SCSI CMD Data Overrun\n");
2460 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
2463 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
2467 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
2471 case SRB_STATUS_ABORTED:
2472 scsicmd->result = DID_ABORT << 16 | ABORT << 8;
2474 case SRB_STATUS_ABORT_FAILED:
2475 // Not sure about this one - but assuming the hba was trying to abort for some reason
2476 scsicmd->result = DID_ERROR << 16 | ABORT << 8;
2478 case SRB_STATUS_PARITY_ERROR:
2479 scsicmd->result = DID_PARITY << 16 | MSG_PARITY_ERROR << 8;
2481 case SRB_STATUS_NO_DEVICE:
2482 case SRB_STATUS_INVALID_PATH_ID:
2483 case SRB_STATUS_INVALID_TARGET_ID:
2484 case SRB_STATUS_INVALID_LUN:
2485 case SRB_STATUS_SELECTION_TIMEOUT:
2486 scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
2489 case SRB_STATUS_COMMAND_TIMEOUT:
2490 case SRB_STATUS_TIMEOUT:
2491 scsicmd->result = DID_TIME_OUT << 16 | COMMAND_COMPLETE << 8;
2494 case SRB_STATUS_BUSY:
2495 scsicmd->result = DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8;
2498 case SRB_STATUS_BUS_RESET:
2499 scsicmd->result = DID_RESET << 16 | COMMAND_COMPLETE << 8;
2502 case SRB_STATUS_MESSAGE_REJECTED:
2503 scsicmd->result = DID_ERROR << 16 | MESSAGE_REJECT << 8;
2505 case SRB_STATUS_REQUEST_FLUSHED:
2506 case SRB_STATUS_ERROR:
2507 case SRB_STATUS_INVALID_REQUEST:
2508 case SRB_STATUS_REQUEST_SENSE_FAILED:
2509 case SRB_STATUS_NO_HBA:
2510 case SRB_STATUS_UNEXPECTED_BUS_FREE:
2511 case SRB_STATUS_PHASE_SEQUENCE_FAILURE:
2512 case SRB_STATUS_BAD_SRB_BLOCK_LENGTH:
2513 case SRB_STATUS_DELAYED_RETRY:
2514 case SRB_STATUS_BAD_FUNCTION:
2515 case SRB_STATUS_NOT_STARTED:
2516 case SRB_STATUS_NOT_IN_USE:
2517 case SRB_STATUS_FORCE_ABORT:
2518 case SRB_STATUS_DOMAIN_VALIDATION_FAIL:
2520 #ifdef AAC_DETAILED_STATUS_INFO
2521 printk("aacraid: SRB ERROR(%u) %s scsi cmd 0x%x - scsi status 0x%x\n",
2522 le32_to_cpu(srbreply->srb_status) & 0x3F,
2523 aac_get_status_string(
2524 le32_to_cpu(srbreply->srb_status) & 0x3F),
2526 le32_to_cpu(srbreply->scsi_status));
2528 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
2531 if (le32_to_cpu(srbreply->scsi_status) == SAM_STAT_CHECK_CONDITION) {
2533 scsicmd->result |= SAM_STAT_CHECK_CONDITION;
2534 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
2535 SCSI_SENSE_BUFFERSIZE);
2536 #ifdef AAC_DETAILED_STATUS_INFO
2537 printk(KERN_WARNING "aac_srb_callback: check condition, status = %d len=%d\n",
2538 le32_to_cpu(srbreply->status), len);
2540 memcpy(scsicmd->sense_buffer, srbreply->sense_data, len);
2543 * OR in the scsi status (already shifted up a bit)
2545 scsicmd->result |= le32_to_cpu(srbreply->scsi_status);
2547 aac_fib_complete(fibptr);
2548 aac_fib_free(fibptr);
2549 scsicmd->scsi_done(scsicmd);
2555 * @scsicmd: the scsi command block
2557 * This routine will form a FIB and fill in the aac_srb from the
2558 * scsicmd passed in.
2561 static int aac_send_srb_fib(struct scsi_cmnd* scsicmd)
2563 struct fib* cmd_fibcontext;
2564 struct aac_dev* dev;
2567 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2568 if (scmd_id(scsicmd) >= dev->maximum_num_physicals ||
2569 scsicmd->device->lun > 7) {
2570 scsicmd->result = DID_NO_CONNECT << 16;
2571 scsicmd->scsi_done(scsicmd);
2576 * Allocate and initialize a Fib then setup a BlockWrite command
2578 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
2581 status = aac_adapter_scsi(cmd_fibcontext, scsicmd);
2584 * Check that the command queued to the controller
2586 if (status == -EINPROGRESS) {
2587 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
2591 printk(KERN_WARNING "aac_srb: aac_fib_send failed with status: %d\n", status);
2592 aac_fib_complete(cmd_fibcontext);
2593 aac_fib_free(cmd_fibcontext);
2598 static unsigned long aac_build_sg(struct scsi_cmnd* scsicmd, struct sgmap* psg)
2600 struct aac_dev *dev;
2601 unsigned long byte_count = 0;
2604 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2605 // Get rid of old data
2607 psg->sg[0].addr = 0;
2608 psg->sg[0].count = 0;
2610 nseg = scsi_dma_map(scsicmd);
2613 struct scatterlist *sg;
2616 psg->count = cpu_to_le32(nseg);
2618 scsi_for_each_sg(scsicmd, sg, nseg, i) {
2619 psg->sg[i].addr = cpu_to_le32(sg_dma_address(sg));
2620 psg->sg[i].count = cpu_to_le32(sg_dma_len(sg));
2621 byte_count += sg_dma_len(sg);
2623 /* hba wants the size to be exact */
2624 if (byte_count > scsi_bufflen(scsicmd)) {
2625 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2626 (byte_count - scsi_bufflen(scsicmd));
2627 psg->sg[i-1].count = cpu_to_le32(temp);
2628 byte_count = scsi_bufflen(scsicmd);
2630 /* Check for command underflow */
2631 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2632 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2633 byte_count, scsicmd->underflow);
2640 static unsigned long aac_build_sg64(struct scsi_cmnd* scsicmd, struct sgmap64* psg)
2642 struct aac_dev *dev;
2643 unsigned long byte_count = 0;
2647 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2648 // Get rid of old data
2650 psg->sg[0].addr[0] = 0;
2651 psg->sg[0].addr[1] = 0;
2652 psg->sg[0].count = 0;
2654 nseg = scsi_dma_map(scsicmd);
2657 struct scatterlist *sg;
2660 scsi_for_each_sg(scsicmd, sg, nseg, i) {
2661 int count = sg_dma_len(sg);
2662 addr = sg_dma_address(sg);
2663 psg->sg[i].addr[0] = cpu_to_le32(addr & 0xffffffff);
2664 psg->sg[i].addr[1] = cpu_to_le32(addr>>32);
2665 psg->sg[i].count = cpu_to_le32(count);
2666 byte_count += count;
2668 psg->count = cpu_to_le32(nseg);
2669 /* hba wants the size to be exact */
2670 if (byte_count > scsi_bufflen(scsicmd)) {
2671 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2672 (byte_count - scsi_bufflen(scsicmd));
2673 psg->sg[i-1].count = cpu_to_le32(temp);
2674 byte_count = scsi_bufflen(scsicmd);
2676 /* Check for command underflow */
2677 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2678 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2679 byte_count, scsicmd->underflow);
2685 static unsigned long aac_build_sgraw(struct scsi_cmnd* scsicmd, struct sgmapraw* psg)
2687 unsigned long byte_count = 0;
2690 // Get rid of old data
2692 psg->sg[0].next = 0;
2693 psg->sg[0].prev = 0;
2694 psg->sg[0].addr[0] = 0;
2695 psg->sg[0].addr[1] = 0;
2696 psg->sg[0].count = 0;
2697 psg->sg[0].flags = 0;
2699 nseg = scsi_dma_map(scsicmd);
2702 struct scatterlist *sg;
2705 scsi_for_each_sg(scsicmd, sg, nseg, i) {
2706 int count = sg_dma_len(sg);
2707 u64 addr = sg_dma_address(sg);
2708 psg->sg[i].next = 0;
2709 psg->sg[i].prev = 0;
2710 psg->sg[i].addr[1] = cpu_to_le32((u32)(addr>>32));
2711 psg->sg[i].addr[0] = cpu_to_le32((u32)(addr & 0xffffffff));
2712 psg->sg[i].count = cpu_to_le32(count);
2713 psg->sg[i].flags = 0;
2714 byte_count += count;
2716 psg->count = cpu_to_le32(nseg);
2717 /* hba wants the size to be exact */
2718 if (byte_count > scsi_bufflen(scsicmd)) {
2719 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2720 (byte_count - scsi_bufflen(scsicmd));
2721 psg->sg[i-1].count = cpu_to_le32(temp);
2722 byte_count = scsi_bufflen(scsicmd);
2724 /* Check for command underflow */
2725 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2726 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2727 byte_count, scsicmd->underflow);
2733 #ifdef AAC_DETAILED_STATUS_INFO
2735 struct aac_srb_status_info {
2741 static struct aac_srb_status_info srb_status_info[] = {
2742 { SRB_STATUS_PENDING, "Pending Status"},
2743 { SRB_STATUS_SUCCESS, "Success"},
2744 { SRB_STATUS_ABORTED, "Aborted Command"},
2745 { SRB_STATUS_ABORT_FAILED, "Abort Failed"},
2746 { SRB_STATUS_ERROR, "Error Event"},
2747 { SRB_STATUS_BUSY, "Device Busy"},
2748 { SRB_STATUS_INVALID_REQUEST, "Invalid Request"},
2749 { SRB_STATUS_INVALID_PATH_ID, "Invalid Path ID"},
2750 { SRB_STATUS_NO_DEVICE, "No Device"},
2751 { SRB_STATUS_TIMEOUT, "Timeout"},
2752 { SRB_STATUS_SELECTION_TIMEOUT, "Selection Timeout"},
2753 { SRB_STATUS_COMMAND_TIMEOUT, "Command Timeout"},
2754 { SRB_STATUS_MESSAGE_REJECTED, "Message Rejected"},
2755 { SRB_STATUS_BUS_RESET, "Bus Reset"},
2756 { SRB_STATUS_PARITY_ERROR, "Parity Error"},
2757 { SRB_STATUS_REQUEST_SENSE_FAILED,"Request Sense Failed"},
2758 { SRB_STATUS_NO_HBA, "No HBA"},
2759 { SRB_STATUS_DATA_OVERRUN, "Data Overrun/Data Underrun"},
2760 { SRB_STATUS_UNEXPECTED_BUS_FREE,"Unexpected Bus Free"},
2761 { SRB_STATUS_PHASE_SEQUENCE_FAILURE,"Phase Error"},
2762 { SRB_STATUS_BAD_SRB_BLOCK_LENGTH,"Bad Srb Block Length"},
2763 { SRB_STATUS_REQUEST_FLUSHED, "Request Flushed"},
2764 { SRB_STATUS_DELAYED_RETRY, "Delayed Retry"},
2765 { SRB_STATUS_INVALID_LUN, "Invalid LUN"},
2766 { SRB_STATUS_INVALID_TARGET_ID, "Invalid TARGET ID"},
2767 { SRB_STATUS_BAD_FUNCTION, "Bad Function"},
2768 { SRB_STATUS_ERROR_RECOVERY, "Error Recovery"},
2769 { SRB_STATUS_NOT_STARTED, "Not Started"},
2770 { SRB_STATUS_NOT_IN_USE, "Not In Use"},
2771 { SRB_STATUS_FORCE_ABORT, "Force Abort"},
2772 { SRB_STATUS_DOMAIN_VALIDATION_FAIL,"Domain Validation Failure"},
2773 { 0xff, "Unknown Error"}
2776 char *aac_get_status_string(u32 status)
2780 for (i = 0; i < ARRAY_SIZE(srb_status_info); i++)
2781 if (srb_status_info[i].status == status)
2782 return srb_status_info[i].str;
2784 return "Bad Status Code";