1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Adaptec AAC series RAID controller driver
4 * (c) Copyright 2001 Red Hat Inc.
6 * based on the old aacraid driver that is..
7 * Adaptec aacraid device driver for Linux.
9 * Copyright (c) 2000-2010 Adaptec, Inc.
16 * Abstract: Contains Interfaces to manage IOs.
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/types.h>
22 #include <linux/pci.h>
23 #include <linux/spinlock.h>
24 #include <linux/slab.h>
25 #include <linux/completion.h>
26 #include <linux/blkdev.h>
27 #include <linux/uaccess.h>
28 #include <linux/highmem.h> /* For flush_kernel_dcache_page */
29 #include <linux/module.h>
31 #include <asm/unaligned.h>
33 #include <scsi/scsi.h>
34 #include <scsi/scsi_cmnd.h>
35 #include <scsi/scsi_device.h>
36 #include <scsi/scsi_host.h>
40 /* values for inqd_pdt: Peripheral device type in plain English */
41 #define INQD_PDT_DA 0x00 /* Direct-access (DISK) device */
42 #define INQD_PDT_PROC 0x03 /* Processor device */
43 #define INQD_PDT_CHNGR 0x08 /* Changer (jukebox, scsi2) */
44 #define INQD_PDT_COMM 0x09 /* Communication device (scsi2) */
45 #define INQD_PDT_NOLUN2 0x1f /* Unknown Device (scsi2) */
46 #define INQD_PDT_NOLUN 0x7f /* Logical Unit Not Present */
48 #define INQD_PDT_DMASK 0x1F /* Peripheral Device Type Mask */
49 #define INQD_PDT_QMASK 0xE0 /* Peripheral Device Qualifer Mask */
55 #define SENCODE_NO_SENSE 0x00
56 #define SENCODE_END_OF_DATA 0x00
57 #define SENCODE_BECOMING_READY 0x04
58 #define SENCODE_INIT_CMD_REQUIRED 0x04
59 #define SENCODE_UNRECOVERED_READ_ERROR 0x11
60 #define SENCODE_PARAM_LIST_LENGTH_ERROR 0x1A
61 #define SENCODE_INVALID_COMMAND 0x20
62 #define SENCODE_LBA_OUT_OF_RANGE 0x21
63 #define SENCODE_INVALID_CDB_FIELD 0x24
64 #define SENCODE_LUN_NOT_SUPPORTED 0x25
65 #define SENCODE_INVALID_PARAM_FIELD 0x26
66 #define SENCODE_PARAM_NOT_SUPPORTED 0x26
67 #define SENCODE_PARAM_VALUE_INVALID 0x26
68 #define SENCODE_RESET_OCCURRED 0x29
69 #define SENCODE_LUN_NOT_SELF_CONFIGURED_YET 0x3E
70 #define SENCODE_INQUIRY_DATA_CHANGED 0x3F
71 #define SENCODE_SAVING_PARAMS_NOT_SUPPORTED 0x39
72 #define SENCODE_DIAGNOSTIC_FAILURE 0x40
73 #define SENCODE_INTERNAL_TARGET_FAILURE 0x44
74 #define SENCODE_INVALID_MESSAGE_ERROR 0x49
75 #define SENCODE_LUN_FAILED_SELF_CONFIG 0x4c
76 #define SENCODE_OVERLAPPED_COMMAND 0x4E
79 * Additional sense codes
82 #define ASENCODE_NO_SENSE 0x00
83 #define ASENCODE_END_OF_DATA 0x05
84 #define ASENCODE_BECOMING_READY 0x01
85 #define ASENCODE_INIT_CMD_REQUIRED 0x02
86 #define ASENCODE_PARAM_LIST_LENGTH_ERROR 0x00
87 #define ASENCODE_INVALID_COMMAND 0x00
88 #define ASENCODE_LBA_OUT_OF_RANGE 0x00
89 #define ASENCODE_INVALID_CDB_FIELD 0x00
90 #define ASENCODE_LUN_NOT_SUPPORTED 0x00
91 #define ASENCODE_INVALID_PARAM_FIELD 0x00
92 #define ASENCODE_PARAM_NOT_SUPPORTED 0x01
93 #define ASENCODE_PARAM_VALUE_INVALID 0x02
94 #define ASENCODE_RESET_OCCURRED 0x00
95 #define ASENCODE_LUN_NOT_SELF_CONFIGURED_YET 0x00
96 #define ASENCODE_INQUIRY_DATA_CHANGED 0x03
97 #define ASENCODE_SAVING_PARAMS_NOT_SUPPORTED 0x00
98 #define ASENCODE_DIAGNOSTIC_FAILURE 0x80
99 #define ASENCODE_INTERNAL_TARGET_FAILURE 0x00
100 #define ASENCODE_INVALID_MESSAGE_ERROR 0x00
101 #define ASENCODE_LUN_FAILED_SELF_CONFIG 0x00
102 #define ASENCODE_OVERLAPPED_COMMAND 0x00
104 #define BYTE0(x) (unsigned char)(x)
105 #define BYTE1(x) (unsigned char)((x) >> 8)
106 #define BYTE2(x) (unsigned char)((x) >> 16)
107 #define BYTE3(x) (unsigned char)((x) >> 24)
109 /* MODE_SENSE data format */
116 } __attribute__((packed)) hd;
122 } __attribute__((packed)) bd;
124 } __attribute__((packed)) aac_modep_data;
126 /* MODE_SENSE_10 data format */
134 } __attribute__((packed)) hd;
140 } __attribute__((packed)) bd;
142 } __attribute__((packed)) aac_modep10_data;
144 /*------------------------------------------------------------------------------
145 * S T R U C T S / T Y P E D E F S
146 *----------------------------------------------------------------------------*/
147 /* SCSI inquiry data */
148 struct inquiry_data {
149 u8 inqd_pdt; /* Peripheral qualifier | Peripheral Device Type */
150 u8 inqd_dtq; /* RMB | Device Type Qualifier */
151 u8 inqd_ver; /* ISO version | ECMA version | ANSI-approved version */
152 u8 inqd_rdf; /* AENC | TrmIOP | Response data format */
153 u8 inqd_len; /* Additional length (n-4) */
154 u8 inqd_pad1[2];/* Reserved - must be zero */
155 u8 inqd_pad2; /* RelAdr | WBus32 | WBus16 | Sync | Linked |Reserved| CmdQue | SftRe */
156 u8 inqd_vid[8]; /* Vendor ID */
157 u8 inqd_pid[16];/* Product ID */
158 u8 inqd_prl[4]; /* Product Revision Level */
161 /* Added for VPD 0x83 */
162 struct tvpd_id_descriptor_type_1 {
163 u8 codeset:4; /* VPD_CODE_SET */
165 u8 identifiertype:4; /* VPD_IDENTIFIER_TYPE */
171 u8 serialnumber[8]; /* SN in ASCII */
175 struct tvpd_id_descriptor_type_2 {
176 u8 codeset:4; /* VPD_CODE_SET */
178 u8 identifiertype:4; /* VPD_IDENTIFIER_TYPE */
184 /* The serial number supposed to be 40 bits,
185 * bit we only support 32, so make the last byte zero. */
192 struct tvpd_id_descriptor_type_3 {
193 u8 codeset : 4; /* VPD_CODE_SET */
195 u8 identifiertype : 4; /* VPD_IDENTIFIER_TYPE */
204 u8 DeviceTypeQualifier:3;
208 struct tvpd_id_descriptor_type_1 type1;
209 struct tvpd_id_descriptor_type_2 type2;
210 struct tvpd_id_descriptor_type_3 type3;
214 * M O D U L E G L O B A L S
217 static long aac_build_sg(struct scsi_cmnd *scsicmd, struct sgmap *sgmap);
218 static long aac_build_sg64(struct scsi_cmnd *scsicmd, struct sgmap64 *psg);
219 static long aac_build_sgraw(struct scsi_cmnd *scsicmd, struct sgmapraw *psg);
220 static long aac_build_sgraw2(struct scsi_cmnd *scsicmd,
221 struct aac_raw_io2 *rio2, int sg_max);
222 static long aac_build_sghba(struct scsi_cmnd *scsicmd,
223 struct aac_hba_cmd_req *hbacmd,
224 int sg_max, u64 sg_address);
225 static int aac_convert_sgraw2(struct aac_raw_io2 *rio2,
226 int pages, int nseg, int nseg_new);
227 static int aac_send_srb_fib(struct scsi_cmnd* scsicmd);
228 static int aac_send_hba_fib(struct scsi_cmnd *scsicmd);
229 #ifdef AAC_DETAILED_STATUS_INFO
230 static char *aac_get_status_string(u32 status);
234 * Non dasd selection is handled entirely in aachba now
237 static int nondasd = -1;
238 static int aac_cache = 2; /* WCE=0 to avoid performance problems */
239 static int dacmode = -1;
242 int startup_timeout = 180;
243 int aif_timeout = 120;
244 int aac_sync_mode; /* Only Sync. transfer - disabled */
245 int aac_convert_sgl = 1; /* convert non-conformable s/g list - enabled */
247 module_param(aac_sync_mode, int, S_IRUGO|S_IWUSR);
248 MODULE_PARM_DESC(aac_sync_mode, "Force sync. transfer mode"
250 module_param(aac_convert_sgl, int, S_IRUGO|S_IWUSR);
251 MODULE_PARM_DESC(aac_convert_sgl, "Convert non-conformable s/g list"
253 module_param(nondasd, int, S_IRUGO|S_IWUSR);
254 MODULE_PARM_DESC(nondasd, "Control scanning of hba for nondasd devices."
256 module_param_named(cache, aac_cache, int, S_IRUGO|S_IWUSR);
257 MODULE_PARM_DESC(cache, "Disable Queue Flush commands:\n"
258 "\tbit 0 - Disable FUA in WRITE SCSI commands\n"
259 "\tbit 1 - Disable SYNCHRONIZE_CACHE SCSI command\n"
260 "\tbit 2 - Disable only if Battery is protecting Cache");
261 module_param(dacmode, int, S_IRUGO|S_IWUSR);
262 MODULE_PARM_DESC(dacmode, "Control whether dma addressing is using 64 bit DAC."
264 module_param_named(commit, aac_commit, int, S_IRUGO|S_IWUSR);
265 MODULE_PARM_DESC(commit, "Control whether a COMMIT_CONFIG is issued to the"
266 " adapter for foreign arrays.\n"
267 "This is typically needed in systems that do not have a BIOS."
269 module_param_named(msi, aac_msi, int, S_IRUGO|S_IWUSR);
270 MODULE_PARM_DESC(msi, "IRQ handling."
271 " 0=PIC(default), 1=MSI, 2=MSI-X)");
272 module_param(startup_timeout, int, S_IRUGO|S_IWUSR);
273 MODULE_PARM_DESC(startup_timeout, "The duration of time in seconds to wait for"
274 " adapter to have it's kernel up and\n"
275 "running. This is typically adjusted for large systems that do not"
277 module_param(aif_timeout, int, S_IRUGO|S_IWUSR);
278 MODULE_PARM_DESC(aif_timeout, "The duration of time in seconds to wait for"
279 " applications to pick up AIFs before\n"
280 "deregistering them. This is typically adjusted for heavily burdened"
284 module_param(aac_fib_dump, int, 0644);
285 MODULE_PARM_DESC(aac_fib_dump, "Dump controller fibs prior to IOP_RESET 0=off, 1=on");
288 module_param(numacb, int, S_IRUGO|S_IWUSR);
289 MODULE_PARM_DESC(numacb, "Request a limit to the number of adapter control"
290 " blocks (FIB) allocated. Valid values are 512 and down. Default is"
291 " to use suggestion from Firmware.");
294 module_param(acbsize, int, S_IRUGO|S_IWUSR);
295 MODULE_PARM_DESC(acbsize, "Request a specific adapter control block (FIB)"
296 " size. Valid values are 512, 2048, 4096 and 8192. Default is to use"
297 " suggestion from Firmware.");
299 int update_interval = 30 * 60;
300 module_param(update_interval, int, S_IRUGO|S_IWUSR);
301 MODULE_PARM_DESC(update_interval, "Interval in seconds between time sync"
302 " updates issued to adapter.");
304 int check_interval = 60;
305 module_param(check_interval, int, S_IRUGO|S_IWUSR);
306 MODULE_PARM_DESC(check_interval, "Interval in seconds between adapter health"
309 int aac_check_reset = 1;
310 module_param_named(check_reset, aac_check_reset, int, S_IRUGO|S_IWUSR);
311 MODULE_PARM_DESC(check_reset, "If adapter fails health check, reset the"
312 " adapter. a value of -1 forces the reset to adapters programmed to"
315 int expose_physicals = -1;
316 module_param(expose_physicals, int, S_IRUGO|S_IWUSR);
317 MODULE_PARM_DESC(expose_physicals, "Expose physical components of the arrays."
318 " -1=protect 0=off, 1=on");
320 int aac_reset_devices;
321 module_param_named(reset_devices, aac_reset_devices, int, S_IRUGO|S_IWUSR);
322 MODULE_PARM_DESC(reset_devices, "Force an adapter reset at initialization.");
325 module_param_named(wwn, aac_wwn, int, S_IRUGO|S_IWUSR);
326 MODULE_PARM_DESC(wwn, "Select a WWN type for the arrays:\n"
328 "\t1 - Array Meta Data Signature (default)\n"
329 "\t2 - Adapter Serial Number");
332 static inline int aac_valid_context(struct scsi_cmnd *scsicmd,
333 struct fib *fibptr) {
334 struct scsi_device *device;
336 if (unlikely(!scsicmd || !scsicmd->scsi_done)) {
337 dprintk((KERN_WARNING "aac_valid_context: scsi command corrupt\n"));
338 aac_fib_complete(fibptr);
341 scsicmd->SCp.phase = AAC_OWNER_MIDLEVEL;
342 device = scsicmd->device;
343 if (unlikely(!device)) {
344 dprintk((KERN_WARNING "aac_valid_context: scsi device corrupt\n"));
345 aac_fib_complete(fibptr);
352 * aac_get_config_status - check the adapter configuration
353 * @common: adapter to query
355 * Query config status, and commit the configuration if needed.
357 int aac_get_config_status(struct aac_dev *dev, int commit_flag)
362 if (!(fibptr = aac_fib_alloc(dev)))
365 aac_fib_init(fibptr);
367 struct aac_get_config_status *dinfo;
368 dinfo = (struct aac_get_config_status *) fib_data(fibptr);
370 dinfo->command = cpu_to_le32(VM_ContainerConfig);
371 dinfo->type = cpu_to_le32(CT_GET_CONFIG_STATUS);
372 dinfo->count = cpu_to_le32(sizeof(((struct aac_get_config_status_resp *)NULL)->data));
375 status = aac_fib_send(ContainerCommand,
377 sizeof (struct aac_get_config_status),
382 printk(KERN_WARNING "aac_get_config_status: SendFIB failed.\n");
384 struct aac_get_config_status_resp *reply
385 = (struct aac_get_config_status_resp *) fib_data(fibptr);
386 dprintk((KERN_WARNING
387 "aac_get_config_status: response=%d status=%d action=%d\n",
388 le32_to_cpu(reply->response),
389 le32_to_cpu(reply->status),
390 le32_to_cpu(reply->data.action)));
391 if ((le32_to_cpu(reply->response) != ST_OK) ||
392 (le32_to_cpu(reply->status) != CT_OK) ||
393 (le32_to_cpu(reply->data.action) > CFACT_PAUSE)) {
394 printk(KERN_WARNING "aac_get_config_status: Will not issue the Commit Configuration\n");
398 /* Do not set XferState to zero unless receives a response from F/W */
400 aac_fib_complete(fibptr);
402 /* Send a CT_COMMIT_CONFIG to enable discovery of devices */
404 if ((aac_commit == 1) || commit_flag) {
405 struct aac_commit_config * dinfo;
406 aac_fib_init(fibptr);
407 dinfo = (struct aac_commit_config *) fib_data(fibptr);
409 dinfo->command = cpu_to_le32(VM_ContainerConfig);
410 dinfo->type = cpu_to_le32(CT_COMMIT_CONFIG);
412 status = aac_fib_send(ContainerCommand,
414 sizeof (struct aac_commit_config),
418 /* Do not set XferState to zero unless
419 * receives a response from F/W */
421 aac_fib_complete(fibptr);
422 } else if (aac_commit == 0) {
424 "aac_get_config_status: Foreign device configurations are being ignored\n");
427 /* FIB should be freed only after getting the response from the F/W */
428 if (status != -ERESTARTSYS)
429 aac_fib_free(fibptr);
433 static void aac_expose_phy_device(struct scsi_cmnd *scsicmd)
436 scsi_sg_copy_to_buffer(scsicmd, &inq_data, sizeof(inq_data));
437 if ((inq_data & 0x20) && (inq_data & 0x1f) == TYPE_DISK) {
439 scsi_sg_copy_from_buffer(scsicmd, &inq_data, sizeof(inq_data));
444 * aac_get_containers - list containers
445 * @common: adapter to probe
447 * Make a list of all containers on this controller
449 int aac_get_containers(struct aac_dev *dev)
451 struct fsa_dev_info *fsa_dev_ptr;
455 struct aac_get_container_count *dinfo;
456 struct aac_get_container_count_resp *dresp;
457 int maximum_num_containers = MAXIMUM_NUM_CONTAINERS;
459 if (!(fibptr = aac_fib_alloc(dev)))
462 aac_fib_init(fibptr);
463 dinfo = (struct aac_get_container_count *) fib_data(fibptr);
464 dinfo->command = cpu_to_le32(VM_ContainerConfig);
465 dinfo->type = cpu_to_le32(CT_GET_CONTAINER_COUNT);
467 status = aac_fib_send(ContainerCommand,
469 sizeof (struct aac_get_container_count),
474 dresp = (struct aac_get_container_count_resp *)fib_data(fibptr);
475 maximum_num_containers = le32_to_cpu(dresp->ContainerSwitchEntries);
476 if (fibptr->dev->supplement_adapter_info.supported_options2 &
477 AAC_OPTION_SUPPORTED_240_VOLUMES) {
478 maximum_num_containers =
479 le32_to_cpu(dresp->MaxSimpleVolumes);
481 aac_fib_complete(fibptr);
483 /* FIB should be freed only after getting the response from the F/W */
484 if (status != -ERESTARTSYS)
485 aac_fib_free(fibptr);
487 if (maximum_num_containers < MAXIMUM_NUM_CONTAINERS)
488 maximum_num_containers = MAXIMUM_NUM_CONTAINERS;
489 if (dev->fsa_dev == NULL ||
490 dev->maximum_num_containers != maximum_num_containers) {
492 fsa_dev_ptr = dev->fsa_dev;
494 dev->fsa_dev = kcalloc(maximum_num_containers,
495 sizeof(*fsa_dev_ptr), GFP_KERNEL);
504 dev->maximum_num_containers = maximum_num_containers;
506 for (index = 0; index < dev->maximum_num_containers; index++) {
507 dev->fsa_dev[index].devname[0] = '\0';
508 dev->fsa_dev[index].valid = 0;
510 status = aac_probe_container(dev, index);
513 printk(KERN_WARNING "aac_get_containers: SendFIB failed.\n");
520 static void get_container_name_callback(void *context, struct fib * fibptr)
522 struct aac_get_name_resp * get_name_reply;
523 struct scsi_cmnd * scsicmd;
525 scsicmd = (struct scsi_cmnd *) context;
527 if (!aac_valid_context(scsicmd, fibptr))
530 dprintk((KERN_DEBUG "get_container_name_callback[cpu %d]: t = %ld.\n", smp_processor_id(), jiffies));
531 BUG_ON(fibptr == NULL);
533 get_name_reply = (struct aac_get_name_resp *) fib_data(fibptr);
534 /* Failure is irrelevant, using default value instead */
535 if ((le32_to_cpu(get_name_reply->status) == CT_OK)
536 && (get_name_reply->data[0] != '\0')) {
537 char *sp = get_name_reply->data;
538 int data_size = sizeof_field(struct aac_get_name_resp, data);
540 sp[data_size - 1] = '\0';
544 struct inquiry_data inq;
545 char d[sizeof(((struct inquiry_data *)NULL)->inqd_pid)];
546 int count = sizeof(d);
549 *dp++ = (*sp) ? *sp++ : ' ';
550 } while (--count > 0);
552 scsi_sg_copy_to_buffer(scsicmd, &inq, sizeof(inq));
553 memcpy(inq.inqd_pid, d, sizeof(d));
554 scsi_sg_copy_from_buffer(scsicmd, &inq, sizeof(inq));
558 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
560 aac_fib_complete(fibptr);
561 scsicmd->scsi_done(scsicmd);
565 * aac_get_container_name - get container name, none blocking.
567 static int aac_get_container_name(struct scsi_cmnd * scsicmd)
571 struct aac_get_name *dinfo;
572 struct fib * cmd_fibcontext;
573 struct aac_dev * dev;
575 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
577 data_size = sizeof_field(struct aac_get_name_resp, data);
579 cmd_fibcontext = aac_fib_alloc_tag(dev, scsicmd);
581 aac_fib_init(cmd_fibcontext);
582 dinfo = (struct aac_get_name *) fib_data(cmd_fibcontext);
583 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
585 dinfo->command = cpu_to_le32(VM_ContainerConfig);
586 dinfo->type = cpu_to_le32(CT_READ_NAME);
587 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
588 dinfo->count = cpu_to_le32(data_size - 1);
590 status = aac_fib_send(ContainerCommand,
592 sizeof(struct aac_get_name_resp),
595 (fib_callback)get_container_name_callback,
599 * Check that the command queued to the controller
601 if (status == -EINPROGRESS)
604 printk(KERN_WARNING "aac_get_container_name: aac_fib_send failed with status: %d.\n", status);
605 aac_fib_complete(cmd_fibcontext);
609 static int aac_probe_container_callback2(struct scsi_cmnd * scsicmd)
611 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
613 if ((fsa_dev_ptr[scmd_id(scsicmd)].valid & 1))
614 return aac_scsi_cmd(scsicmd);
616 scsicmd->result = DID_NO_CONNECT << 16;
617 scsicmd->scsi_done(scsicmd);
621 static void _aac_probe_container2(void * context, struct fib * fibptr)
623 struct fsa_dev_info *fsa_dev_ptr;
624 int (*callback)(struct scsi_cmnd *);
625 struct scsi_cmnd * scsicmd = (struct scsi_cmnd *)context;
629 if (!aac_valid_context(scsicmd, fibptr))
632 scsicmd->SCp.Status = 0;
633 fsa_dev_ptr = fibptr->dev->fsa_dev;
635 struct aac_mount * dresp = (struct aac_mount *) fib_data(fibptr);
638 fsa_dev_ptr += scmd_id(scsicmd);
640 fibptr->dev->supplement_adapter_info.supported_options2;
642 if ((le32_to_cpu(dresp->status) == ST_OK) &&
643 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE) &&
644 (le32_to_cpu(dresp->mnt[0].state) != FSCS_HIDDEN)) {
645 if (!(sup_options2 & AAC_OPTION_VARIABLE_BLOCK_SIZE)) {
646 dresp->mnt[0].fileinfo.bdevinfo.block_size = 0x200;
647 fsa_dev_ptr->block_size = 0x200;
649 fsa_dev_ptr->block_size =
650 le32_to_cpu(dresp->mnt[0].fileinfo.bdevinfo.block_size);
652 for (i = 0; i < 16; i++)
653 fsa_dev_ptr->identifier[i] =
654 dresp->mnt[0].fileinfo.bdevinfo
656 fsa_dev_ptr->valid = 1;
657 /* sense_key holds the current state of the spin-up */
658 if (dresp->mnt[0].state & cpu_to_le32(FSCS_NOT_READY))
659 fsa_dev_ptr->sense_data.sense_key = NOT_READY;
660 else if (fsa_dev_ptr->sense_data.sense_key == NOT_READY)
661 fsa_dev_ptr->sense_data.sense_key = NO_SENSE;
662 fsa_dev_ptr->type = le32_to_cpu(dresp->mnt[0].vol);
664 = ((u64)le32_to_cpu(dresp->mnt[0].capacity)) +
665 (((u64)le32_to_cpu(dresp->mnt[0].capacityhigh)) << 32);
666 fsa_dev_ptr->ro = ((le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY) != 0);
668 if ((fsa_dev_ptr->valid & 1) == 0)
669 fsa_dev_ptr->valid = 0;
670 scsicmd->SCp.Status = le32_to_cpu(dresp->count);
672 aac_fib_complete(fibptr);
673 aac_fib_free(fibptr);
674 callback = (int (*)(struct scsi_cmnd *))(scsicmd->SCp.ptr);
675 scsicmd->SCp.ptr = NULL;
676 (*callback)(scsicmd);
680 static void _aac_probe_container1(void * context, struct fib * fibptr)
682 struct scsi_cmnd * scsicmd;
683 struct aac_mount * dresp;
684 struct aac_query_mount *dinfo;
687 dresp = (struct aac_mount *) fib_data(fibptr);
688 if (!aac_supports_2T(fibptr->dev)) {
689 dresp->mnt[0].capacityhigh = 0;
690 if ((le32_to_cpu(dresp->status) == ST_OK) &&
691 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE)) {
692 _aac_probe_container2(context, fibptr);
696 scsicmd = (struct scsi_cmnd *) context;
698 if (!aac_valid_context(scsicmd, fibptr))
701 aac_fib_init(fibptr);
703 dinfo = (struct aac_query_mount *)fib_data(fibptr);
705 if (fibptr->dev->supplement_adapter_info.supported_options2 &
706 AAC_OPTION_VARIABLE_BLOCK_SIZE)
707 dinfo->command = cpu_to_le32(VM_NameServeAllBlk);
709 dinfo->command = cpu_to_le32(VM_NameServe64);
711 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
712 dinfo->type = cpu_to_le32(FT_FILESYS);
713 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
715 status = aac_fib_send(ContainerCommand,
717 sizeof(struct aac_query_mount),
720 _aac_probe_container2,
723 * Check that the command queued to the controller
725 if (status < 0 && status != -EINPROGRESS) {
726 /* Inherit results from VM_NameServe, if any */
727 dresp->status = cpu_to_le32(ST_OK);
728 _aac_probe_container2(context, fibptr);
732 static int _aac_probe_container(struct scsi_cmnd * scsicmd, int (*callback)(struct scsi_cmnd *))
735 int status = -ENOMEM;
737 if ((fibptr = aac_fib_alloc((struct aac_dev *)scsicmd->device->host->hostdata))) {
738 struct aac_query_mount *dinfo;
740 aac_fib_init(fibptr);
742 dinfo = (struct aac_query_mount *)fib_data(fibptr);
744 if (fibptr->dev->supplement_adapter_info.supported_options2 &
745 AAC_OPTION_VARIABLE_BLOCK_SIZE)
746 dinfo->command = cpu_to_le32(VM_NameServeAllBlk);
748 dinfo->command = cpu_to_le32(VM_NameServe);
750 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
751 dinfo->type = cpu_to_le32(FT_FILESYS);
752 scsicmd->SCp.ptr = (char *)callback;
753 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
755 status = aac_fib_send(ContainerCommand,
757 sizeof(struct aac_query_mount),
760 _aac_probe_container1,
763 * Check that the command queued to the controller
765 if (status == -EINPROGRESS)
769 scsicmd->SCp.ptr = NULL;
770 aac_fib_complete(fibptr);
771 aac_fib_free(fibptr);
775 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
777 fsa_dev_ptr += scmd_id(scsicmd);
778 if ((fsa_dev_ptr->valid & 1) == 0) {
779 fsa_dev_ptr->valid = 0;
780 return (*callback)(scsicmd);
788 * aac_probe_container - query a logical volume
789 * @dev: device to query
790 * @cid: container identifier
792 * Queries the controller about the given volume. The volume information
793 * is updated in the struct fsa_dev_info structure rather than returned.
795 static int aac_probe_container_callback1(struct scsi_cmnd * scsicmd)
797 scsicmd->device = NULL;
801 int aac_probe_container(struct aac_dev *dev, int cid)
803 struct scsi_cmnd *scsicmd = kmalloc(sizeof(*scsicmd), GFP_KERNEL);
804 struct scsi_device *scsidev = kmalloc(sizeof(*scsidev), GFP_KERNEL);
807 if (!scsicmd || !scsidev) {
812 scsicmd->list.next = NULL;
813 scsicmd->scsi_done = (void (*)(struct scsi_cmnd*))aac_probe_container_callback1;
815 scsicmd->device = scsidev;
816 scsidev->sdev_state = 0;
818 scsidev->host = dev->scsi_host_ptr;
820 if (_aac_probe_container(scsicmd, aac_probe_container_callback1) == 0)
821 while (scsicmd->device == scsidev)
824 status = scsicmd->SCp.Status;
829 /* Local Structure to set SCSI inquiry data strings */
831 char vid[8]; /* Vendor ID */
832 char pid[16]; /* Product ID */
833 char prl[4]; /* Product Revision Level */
837 * InqStrCopy - string merge
838 * @a: string to copy from
839 * @b: string to copy to
841 * Copy a String from one location to another
845 static void inqstrcpy(char *a, char *b)
848 while (*a != (char)0)
852 static char *container_types[] = {
876 char * get_container_type(unsigned tindex)
878 if (tindex >= ARRAY_SIZE(container_types))
879 tindex = ARRAY_SIZE(container_types) - 1;
880 return container_types[tindex];
883 /* Function: setinqstr
885 * Arguments: [1] pointer to void [1] int
887 * Purpose: Sets SCSI inquiry data strings for vendor, product
888 * and revision level. Allows strings to be set in platform dependent
889 * files instead of in OS dependent driver source.
892 static void setinqstr(struct aac_dev *dev, void *data, int tindex)
894 struct scsi_inq *str;
895 struct aac_supplement_adapter_info *sup_adap_info;
897 sup_adap_info = &dev->supplement_adapter_info;
898 str = (struct scsi_inq *)(data); /* cast data to scsi inq block */
899 memset(str, ' ', sizeof(*str));
901 if (sup_adap_info->adapter_type_text[0]) {
904 char *cname = kmemdup(sup_adap_info->adapter_type_text,
905 sizeof(sup_adap_info->adapter_type_text),
911 if ((cp[0] == 'A') && (cp[1] == 'O') && (cp[2] == 'C'))
912 inqstrcpy("SMC", str->vid);
914 c = sizeof(str->vid);
915 while (*cp && *cp != ' ' && --c)
919 inqstrcpy(cname, str->vid);
921 while (*cp && *cp != ' ')
926 /* last six chars reserved for vol type */
927 if (strlen(cp) > sizeof(str->pid))
928 cp[sizeof(str->pid)] = '\0';
929 inqstrcpy (cp, str->pid);
933 struct aac_driver_ident *mp = aac_get_driver_ident(dev->cardtype);
935 inqstrcpy (mp->vname, str->vid);
936 /* last six chars reserved for vol type */
937 inqstrcpy (mp->model, str->pid);
940 if (tindex < ARRAY_SIZE(container_types)){
941 char *findit = str->pid;
943 for ( ; *findit != ' '; findit++); /* walk till we find a space */
944 /* RAID is superfluous in the context of a RAID device */
945 if (memcmp(findit-4, "RAID", 4) == 0)
946 *(findit -= 4) = ' ';
947 if (((findit - str->pid) + strlen(container_types[tindex]))
948 < (sizeof(str->pid) + sizeof(str->prl)))
949 inqstrcpy (container_types[tindex], findit + 1);
951 inqstrcpy ("V1.0", str->prl);
954 static void build_vpd83_type3(struct tvpd_page83 *vpdpage83data,
955 struct aac_dev *dev, struct scsi_cmnd *scsicmd)
959 vpdpage83data->type3.codeset = 1;
960 vpdpage83data->type3.identifiertype = 3;
961 vpdpage83data->type3.identifierlength = sizeof(vpdpage83data->type3)
964 for (container = 0; container < dev->maximum_num_containers;
967 if (scmd_id(scsicmd) == container) {
968 memcpy(vpdpage83data->type3.Identifier,
969 dev->fsa_dev[container].identifier,
976 static void get_container_serial_callback(void *context, struct fib * fibptr)
978 struct aac_get_serial_resp * get_serial_reply;
979 struct scsi_cmnd * scsicmd;
981 BUG_ON(fibptr == NULL);
983 scsicmd = (struct scsi_cmnd *) context;
984 if (!aac_valid_context(scsicmd, fibptr))
987 get_serial_reply = (struct aac_get_serial_resp *) fib_data(fibptr);
988 /* Failure is irrelevant, using default value instead */
989 if (le32_to_cpu(get_serial_reply->status) == CT_OK) {
990 /*Check to see if it's for VPD 0x83 or 0x80 */
991 if (scsicmd->cmnd[2] == 0x83) {
992 /* vpd page 0x83 - Device Identification Page */
995 struct tvpd_page83 vpdpage83data;
997 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
999 memset(((u8 *)&vpdpage83data), 0,
1000 sizeof(vpdpage83data));
1002 /* DIRECT_ACCESS_DEVIC */
1003 vpdpage83data.DeviceType = 0;
1004 /* DEVICE_CONNECTED */
1005 vpdpage83data.DeviceTypeQualifier = 0;
1006 /* VPD_DEVICE_IDENTIFIERS */
1007 vpdpage83data.PageCode = 0x83;
1008 vpdpage83data.reserved = 0;
1009 vpdpage83data.PageLength =
1010 sizeof(vpdpage83data.type1) +
1011 sizeof(vpdpage83data.type2);
1013 /* VPD 83 Type 3 is not supported for ARC */
1014 if (dev->sa_firmware)
1015 vpdpage83data.PageLength +=
1016 sizeof(vpdpage83data.type3);
1018 /* T10 Vendor Identifier Field Format */
1019 /* VpdcodesetAscii */
1020 vpdpage83data.type1.codeset = 2;
1021 /* VpdIdentifierTypeVendorId */
1022 vpdpage83data.type1.identifiertype = 1;
1023 vpdpage83data.type1.identifierlength =
1024 sizeof(vpdpage83data.type1) - 4;
1026 /* "ADAPTEC " for adaptec */
1027 memcpy(vpdpage83data.type1.venid,
1029 sizeof(vpdpage83data.type1.venid));
1030 memcpy(vpdpage83data.type1.productid,
1033 vpdpage83data.type1.productid));
1035 /* Convert to ascii based serial number.
1036 * The LSB is the the end.
1038 for (i = 0; i < 8; i++) {
1040 (u8)((get_serial_reply->uid >> ((7 - i) * 4)) & 0xF);
1042 vpdpage83data.type1.serialnumber[i] =
1045 vpdpage83data.type1.serialnumber[i] =
1050 /* VpdCodeSetBinary */
1051 vpdpage83data.type2.codeset = 1;
1052 /* VpdidentifiertypeEUI64 */
1053 vpdpage83data.type2.identifiertype = 2;
1054 vpdpage83data.type2.identifierlength =
1055 sizeof(vpdpage83data.type2) - 4;
1057 vpdpage83data.type2.eu64id.venid[0] = 0xD0;
1058 vpdpage83data.type2.eu64id.venid[1] = 0;
1059 vpdpage83data.type2.eu64id.venid[2] = 0;
1061 vpdpage83data.type2.eu64id.Serial =
1062 get_serial_reply->uid;
1063 vpdpage83data.type2.eu64id.reserved = 0;
1066 * VpdIdentifierTypeFCPHName
1067 * VPD 0x83 Type 3 not supported for ARC
1069 if (dev->sa_firmware) {
1070 build_vpd83_type3(&vpdpage83data,
1074 /* Move the inquiry data to the response buffer. */
1075 scsi_sg_copy_from_buffer(scsicmd, &vpdpage83data,
1076 sizeof(vpdpage83data));
1078 /* It must be for VPD 0x80 */
1081 sp[0] = INQD_PDT_DA;
1082 sp[1] = scsicmd->cmnd[2];
1084 sp[3] = snprintf(sp+4, sizeof(sp)-4, "%08X",
1085 le32_to_cpu(get_serial_reply->uid));
1086 scsi_sg_copy_from_buffer(scsicmd, sp,
1091 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1093 aac_fib_complete(fibptr);
1094 scsicmd->scsi_done(scsicmd);
1098 * aac_get_container_serial - get container serial, none blocking.
1100 static int aac_get_container_serial(struct scsi_cmnd * scsicmd)
1103 struct aac_get_serial *dinfo;
1104 struct fib * cmd_fibcontext;
1105 struct aac_dev * dev;
1107 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
1109 cmd_fibcontext = aac_fib_alloc_tag(dev, scsicmd);
1111 aac_fib_init(cmd_fibcontext);
1112 dinfo = (struct aac_get_serial *) fib_data(cmd_fibcontext);
1114 dinfo->command = cpu_to_le32(VM_ContainerConfig);
1115 dinfo->type = cpu_to_le32(CT_CID_TO_32BITS_UID);
1116 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
1117 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
1119 status = aac_fib_send(ContainerCommand,
1121 sizeof(struct aac_get_serial_resp),
1124 (fib_callback) get_container_serial_callback,
1128 * Check that the command queued to the controller
1130 if (status == -EINPROGRESS)
1133 printk(KERN_WARNING "aac_get_container_serial: aac_fib_send failed with status: %d.\n", status);
1134 aac_fib_complete(cmd_fibcontext);
1138 /* Function: setinqserial
1140 * Arguments: [1] pointer to void [1] int
1142 * Purpose: Sets SCSI Unit Serial number.
1143 * This is a fake. We should read a proper
1144 * serial number from the container. <SuSE>But
1145 * without docs it's quite hard to do it :-)
1146 * So this will have to do in the meantime.</SuSE>
1149 static int setinqserial(struct aac_dev *dev, void *data, int cid)
1152 * This breaks array migration.
1154 return snprintf((char *)(data), sizeof(struct scsi_inq) - 4, "%08X%02X",
1155 le32_to_cpu(dev->adapter_info.serial[0]), cid);
1158 static inline void set_sense(struct sense_data *sense_data, u8 sense_key,
1159 u8 sense_code, u8 a_sense_code, u8 bit_pointer, u16 field_pointer)
1161 u8 *sense_buf = (u8 *)sense_data;
1162 /* Sense data valid, err code 70h */
1163 sense_buf[0] = 0x70; /* No info field */
1164 sense_buf[1] = 0; /* Segment number, always zero */
1166 sense_buf[2] = sense_key; /* Sense key */
1168 sense_buf[12] = sense_code; /* Additional sense code */
1169 sense_buf[13] = a_sense_code; /* Additional sense code qualifier */
1171 if (sense_key == ILLEGAL_REQUEST) {
1172 sense_buf[7] = 10; /* Additional sense length */
1174 sense_buf[15] = bit_pointer;
1175 /* Illegal parameter is in the parameter block */
1176 if (sense_code == SENCODE_INVALID_CDB_FIELD)
1177 sense_buf[15] |= 0xc0;/* Std sense key specific field */
1178 /* Illegal parameter is in the CDB block */
1179 sense_buf[16] = field_pointer >> 8; /* MSB */
1180 sense_buf[17] = field_pointer; /* LSB */
1182 sense_buf[7] = 6; /* Additional sense length */
1185 static int aac_bounds_32(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
1187 if (lba & 0xffffffff00000000LL) {
1188 int cid = scmd_id(cmd);
1189 dprintk((KERN_DEBUG "aacraid: Illegal lba\n"));
1190 cmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
1191 SAM_STAT_CHECK_CONDITION;
1192 set_sense(&dev->fsa_dev[cid].sense_data,
1193 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
1194 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
1195 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
1196 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1197 SCSI_SENSE_BUFFERSIZE));
1198 cmd->scsi_done(cmd);
1204 static int aac_bounds_64(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
1209 static void io_callback(void *context, struct fib * fibptr);
1211 static int aac_read_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
1213 struct aac_dev *dev = fib->dev;
1214 u16 fibsize, command;
1218 if ((dev->comm_interface == AAC_COMM_MESSAGE_TYPE2 ||
1219 dev->comm_interface == AAC_COMM_MESSAGE_TYPE3) &&
1221 struct aac_raw_io2 *readcmd2;
1222 readcmd2 = (struct aac_raw_io2 *) fib_data(fib);
1223 memset(readcmd2, 0, sizeof(struct aac_raw_io2));
1224 readcmd2->blockLow = cpu_to_le32((u32)(lba&0xffffffff));
1225 readcmd2->blockHigh = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
1226 readcmd2->byteCount = cpu_to_le32(count *
1227 dev->fsa_dev[scmd_id(cmd)].block_size);
1228 readcmd2->cid = cpu_to_le16(scmd_id(cmd));
1229 readcmd2->flags = cpu_to_le16(RIO2_IO_TYPE_READ);
1230 ret = aac_build_sgraw2(cmd, readcmd2,
1231 dev->scsi_host_ptr->sg_tablesize);
1234 command = ContainerRawIo2;
1235 fibsize = sizeof(struct aac_raw_io2) +
1236 ((le32_to_cpu(readcmd2->sgeCnt)-1) * sizeof(struct sge_ieee1212));
1238 struct aac_raw_io *readcmd;
1239 readcmd = (struct aac_raw_io *) fib_data(fib);
1240 readcmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
1241 readcmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
1242 readcmd->count = cpu_to_le32(count *
1243 dev->fsa_dev[scmd_id(cmd)].block_size);
1244 readcmd->cid = cpu_to_le16(scmd_id(cmd));
1245 readcmd->flags = cpu_to_le16(RIO_TYPE_READ);
1246 readcmd->bpTotal = 0;
1247 readcmd->bpComplete = 0;
1248 ret = aac_build_sgraw(cmd, &readcmd->sg);
1251 command = ContainerRawIo;
1252 fibsize = sizeof(struct aac_raw_io) +
1253 ((le32_to_cpu(readcmd->sg.count)-1) * sizeof(struct sgentryraw));
1256 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
1258 * Now send the Fib to the adapter
1260 return aac_fib_send(command,
1265 (fib_callback) io_callback,
1269 static int aac_read_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
1272 struct aac_read64 *readcmd;
1276 readcmd = (struct aac_read64 *) fib_data(fib);
1277 readcmd->command = cpu_to_le32(VM_CtHostRead64);
1278 readcmd->cid = cpu_to_le16(scmd_id(cmd));
1279 readcmd->sector_count = cpu_to_le16(count);
1280 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1284 ret = aac_build_sg64(cmd, &readcmd->sg);
1287 fibsize = sizeof(struct aac_read64) +
1288 ((le32_to_cpu(readcmd->sg.count) - 1) *
1289 sizeof (struct sgentry64));
1290 BUG_ON (fibsize > (fib->dev->max_fib_size -
1291 sizeof(struct aac_fibhdr)));
1293 * Now send the Fib to the adapter
1295 return aac_fib_send(ContainerCommand64,
1300 (fib_callback) io_callback,
1304 static int aac_read_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
1307 struct aac_read *readcmd;
1308 struct aac_dev *dev = fib->dev;
1312 readcmd = (struct aac_read *) fib_data(fib);
1313 readcmd->command = cpu_to_le32(VM_CtBlockRead);
1314 readcmd->cid = cpu_to_le32(scmd_id(cmd));
1315 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1316 readcmd->count = cpu_to_le32(count *
1317 dev->fsa_dev[scmd_id(cmd)].block_size);
1319 ret = aac_build_sg(cmd, &readcmd->sg);
1322 fibsize = sizeof(struct aac_read) +
1323 ((le32_to_cpu(readcmd->sg.count) - 1) *
1324 sizeof (struct sgentry));
1325 BUG_ON (fibsize > (fib->dev->max_fib_size -
1326 sizeof(struct aac_fibhdr)));
1328 * Now send the Fib to the adapter
1330 return aac_fib_send(ContainerCommand,
1335 (fib_callback) io_callback,
1339 static int aac_write_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1341 struct aac_dev *dev = fib->dev;
1342 u16 fibsize, command;
1346 if ((dev->comm_interface == AAC_COMM_MESSAGE_TYPE2 ||
1347 dev->comm_interface == AAC_COMM_MESSAGE_TYPE3) &&
1349 struct aac_raw_io2 *writecmd2;
1350 writecmd2 = (struct aac_raw_io2 *) fib_data(fib);
1351 memset(writecmd2, 0, sizeof(struct aac_raw_io2));
1352 writecmd2->blockLow = cpu_to_le32((u32)(lba&0xffffffff));
1353 writecmd2->blockHigh = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
1354 writecmd2->byteCount = cpu_to_le32(count *
1355 dev->fsa_dev[scmd_id(cmd)].block_size);
1356 writecmd2->cid = cpu_to_le16(scmd_id(cmd));
1357 writecmd2->flags = (fua && ((aac_cache & 5) != 1) &&
1358 (((aac_cache & 5) != 5) || !fib->dev->cache_protected)) ?
1359 cpu_to_le16(RIO2_IO_TYPE_WRITE|RIO2_IO_SUREWRITE) :
1360 cpu_to_le16(RIO2_IO_TYPE_WRITE);
1361 ret = aac_build_sgraw2(cmd, writecmd2,
1362 dev->scsi_host_ptr->sg_tablesize);
1365 command = ContainerRawIo2;
1366 fibsize = sizeof(struct aac_raw_io2) +
1367 ((le32_to_cpu(writecmd2->sgeCnt)-1) * sizeof(struct sge_ieee1212));
1369 struct aac_raw_io *writecmd;
1370 writecmd = (struct aac_raw_io *) fib_data(fib);
1371 writecmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
1372 writecmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
1373 writecmd->count = cpu_to_le32(count *
1374 dev->fsa_dev[scmd_id(cmd)].block_size);
1375 writecmd->cid = cpu_to_le16(scmd_id(cmd));
1376 writecmd->flags = (fua && ((aac_cache & 5) != 1) &&
1377 (((aac_cache & 5) != 5) || !fib->dev->cache_protected)) ?
1378 cpu_to_le16(RIO_TYPE_WRITE|RIO_SUREWRITE) :
1379 cpu_to_le16(RIO_TYPE_WRITE);
1380 writecmd->bpTotal = 0;
1381 writecmd->bpComplete = 0;
1382 ret = aac_build_sgraw(cmd, &writecmd->sg);
1385 command = ContainerRawIo;
1386 fibsize = sizeof(struct aac_raw_io) +
1387 ((le32_to_cpu(writecmd->sg.count)-1) * sizeof (struct sgentryraw));
1390 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
1392 * Now send the Fib to the adapter
1394 return aac_fib_send(command,
1399 (fib_callback) io_callback,
1403 static int aac_write_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1406 struct aac_write64 *writecmd;
1410 writecmd = (struct aac_write64 *) fib_data(fib);
1411 writecmd->command = cpu_to_le32(VM_CtHostWrite64);
1412 writecmd->cid = cpu_to_le16(scmd_id(cmd));
1413 writecmd->sector_count = cpu_to_le16(count);
1414 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1416 writecmd->flags = 0;
1418 ret = aac_build_sg64(cmd, &writecmd->sg);
1421 fibsize = sizeof(struct aac_write64) +
1422 ((le32_to_cpu(writecmd->sg.count) - 1) *
1423 sizeof (struct sgentry64));
1424 BUG_ON (fibsize > (fib->dev->max_fib_size -
1425 sizeof(struct aac_fibhdr)));
1427 * Now send the Fib to the adapter
1429 return aac_fib_send(ContainerCommand64,
1434 (fib_callback) io_callback,
1438 static int aac_write_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
1441 struct aac_write *writecmd;
1442 struct aac_dev *dev = fib->dev;
1446 writecmd = (struct aac_write *) fib_data(fib);
1447 writecmd->command = cpu_to_le32(VM_CtBlockWrite);
1448 writecmd->cid = cpu_to_le32(scmd_id(cmd));
1449 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1450 writecmd->count = cpu_to_le32(count *
1451 dev->fsa_dev[scmd_id(cmd)].block_size);
1452 writecmd->sg.count = cpu_to_le32(1);
1453 /* ->stable is not used - it did mean which type of write */
1455 ret = aac_build_sg(cmd, &writecmd->sg);
1458 fibsize = sizeof(struct aac_write) +
1459 ((le32_to_cpu(writecmd->sg.count) - 1) *
1460 sizeof (struct sgentry));
1461 BUG_ON (fibsize > (fib->dev->max_fib_size -
1462 sizeof(struct aac_fibhdr)));
1464 * Now send the Fib to the adapter
1466 return aac_fib_send(ContainerCommand,
1471 (fib_callback) io_callback,
1475 static struct aac_srb * aac_scsi_common(struct fib * fib, struct scsi_cmnd * cmd)
1477 struct aac_srb * srbcmd;
1480 struct aac_dev *dev = fib->dev;
1483 switch(cmd->sc_data_direction){
1487 case DMA_BIDIRECTIONAL:
1488 flag = SRB_DataIn | SRB_DataOut;
1490 case DMA_FROM_DEVICE:
1494 default: /* shuts up some versions of gcc */
1495 flag = SRB_NoDataXfer;
1499 srbcmd = (struct aac_srb*) fib_data(fib);
1500 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi);
1501 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd)));
1502 srbcmd->id = cpu_to_le32(scmd_id(cmd));
1503 srbcmd->lun = cpu_to_le32(cmd->device->lun);
1504 srbcmd->flags = cpu_to_le32(flag);
1505 timeout = cmd->request->timeout/HZ;
1507 timeout = (dev->sa_firmware ? AAC_SA_TIMEOUT : AAC_ARC_TIMEOUT);
1508 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds
1509 srbcmd->retry_limit = 0; /* Obsolete parameter */
1510 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len);
1514 static struct aac_hba_cmd_req *aac_construct_hbacmd(struct fib *fib,
1515 struct scsi_cmnd *cmd)
1517 struct aac_hba_cmd_req *hbacmd;
1518 struct aac_dev *dev;
1522 dev = (struct aac_dev *)cmd->device->host->hostdata;
1524 hbacmd = (struct aac_hba_cmd_req *)fib->hw_fib_va;
1525 memset(hbacmd, 0, 96); /* sizeof(*hbacmd) is not necessary */
1526 /* iu_type is a parameter of aac_hba_send */
1527 switch (cmd->sc_data_direction) {
1531 case DMA_FROM_DEVICE:
1532 case DMA_BIDIRECTIONAL:
1539 hbacmd->lun[1] = cpu_to_le32(cmd->device->lun);
1541 bus = aac_logical_to_phys(scmd_channel(cmd));
1542 target = scmd_id(cmd);
1543 hbacmd->it_nexus = dev->hba_map[bus][target].rmw_nexus;
1545 /* we fill in reply_qid later in aac_src_deliver_message */
1546 /* we fill in iu_type, request_id later in aac_hba_send */
1547 /* we fill in emb_data_desc_count later in aac_build_sghba */
1549 memcpy(hbacmd->cdb, cmd->cmnd, cmd->cmd_len);
1550 hbacmd->data_length = cpu_to_le32(scsi_bufflen(cmd));
1552 address = (u64)fib->hw_error_pa;
1553 hbacmd->error_ptr_hi = cpu_to_le32((u32)(address >> 32));
1554 hbacmd->error_ptr_lo = cpu_to_le32((u32)(address & 0xffffffff));
1555 hbacmd->error_length = cpu_to_le32(FW_ERROR_BUFFER_SIZE);
1560 static void aac_srb_callback(void *context, struct fib * fibptr);
1562 static int aac_scsi_64(struct fib * fib, struct scsi_cmnd * cmd)
1565 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1568 ret = aac_build_sg64(cmd, (struct sgmap64 *) &srbcmd->sg);
1571 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
1573 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1574 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1576 * Build Scatter/Gather list
1578 fibsize = sizeof (struct aac_srb) - sizeof (struct sgentry) +
1579 ((le32_to_cpu(srbcmd->sg.count) & 0xff) *
1580 sizeof (struct sgentry64));
1581 BUG_ON (fibsize > (fib->dev->max_fib_size -
1582 sizeof(struct aac_fibhdr)));
1585 * Now send the Fib to the adapter
1587 return aac_fib_send(ScsiPortCommand64, fib,
1588 fibsize, FsaNormal, 0, 1,
1589 (fib_callback) aac_srb_callback,
1593 static int aac_scsi_32(struct fib * fib, struct scsi_cmnd * cmd)
1596 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1599 ret = aac_build_sg(cmd, (struct sgmap *)&srbcmd->sg);
1602 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
1604 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1605 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1607 * Build Scatter/Gather list
1609 fibsize = sizeof (struct aac_srb) +
1610 (((le32_to_cpu(srbcmd->sg.count) & 0xff) - 1) *
1611 sizeof (struct sgentry));
1612 BUG_ON (fibsize > (fib->dev->max_fib_size -
1613 sizeof(struct aac_fibhdr)));
1616 * Now send the Fib to the adapter
1618 return aac_fib_send(ScsiPortCommand, fib, fibsize, FsaNormal, 0, 1,
1619 (fib_callback) aac_srb_callback, (void *) cmd);
1622 static int aac_scsi_32_64(struct fib * fib, struct scsi_cmnd * cmd)
1624 if ((sizeof(dma_addr_t) > 4) && fib->dev->needs_dac &&
1625 (fib->dev->adapter_info.options & AAC_OPT_SGMAP_HOST64))
1627 return aac_scsi_32(fib, cmd);
1630 static int aac_adapter_hba(struct fib *fib, struct scsi_cmnd *cmd)
1632 struct aac_hba_cmd_req *hbacmd = aac_construct_hbacmd(fib, cmd);
1633 struct aac_dev *dev;
1636 dev = (struct aac_dev *)cmd->device->host->hostdata;
1638 ret = aac_build_sghba(cmd, hbacmd,
1639 dev->scsi_host_ptr->sg_tablesize, (u64)fib->hw_sgl_pa);
1644 * Now send the HBA command to the adapter
1646 fib->hbacmd_size = 64 + le32_to_cpu(hbacmd->emb_data_desc_count) *
1647 sizeof(struct aac_hba_sgl);
1649 return aac_hba_send(HBA_IU_TYPE_SCSI_CMD_REQ, fib,
1650 (fib_callback) aac_hba_callback,
1654 static int aac_send_safw_bmic_cmd(struct aac_dev *dev,
1655 struct aac_srb_unit *srbu, void *xfer_buf, int xfer_len)
1661 struct aac_srb *srb;
1662 struct aac_srb_reply *srb_reply;
1663 struct sgmap64 *sg64;
1667 if (!dev->sa_firmware)
1671 fibptr = aac_fib_alloc(dev);
1675 aac_fib_init(fibptr);
1676 fibptr->hw_fib_va->header.XferState &=
1677 ~cpu_to_le32(FastResponseCapable);
1679 fibsize = sizeof(struct aac_srb) - sizeof(struct sgentry) +
1680 sizeof(struct sgentry64);
1682 /* allocate DMA buffer for response */
1683 addr = dma_map_single(&dev->pdev->dev, xfer_buf, xfer_len,
1685 if (dma_mapping_error(&dev->pdev->dev, addr)) {
1690 srb = fib_data(fibptr);
1691 memcpy(srb, &srbu->srb, sizeof(struct aac_srb));
1693 vbus = (u32)le16_to_cpu(
1694 dev->supplement_adapter_info.virt_device_bus);
1695 vid = (u32)le16_to_cpu(
1696 dev->supplement_adapter_info.virt_device_target);
1698 /* set the common request fields */
1699 srb->channel = cpu_to_le32(vbus);
1700 srb->id = cpu_to_le32(vid);
1702 srb->function = cpu_to_le32(SRBF_ExecuteScsi);
1704 srb->retry_limit = 0;
1705 srb->cdb_size = cpu_to_le32(16);
1706 srb->count = cpu_to_le32(xfer_len);
1708 sg64 = (struct sgmap64 *)&srb->sg;
1709 sg64->count = cpu_to_le32(1);
1710 sg64->sg[0].addr[1] = cpu_to_le32(upper_32_bits(addr));
1711 sg64->sg[0].addr[0] = cpu_to_le32(lower_32_bits(addr));
1712 sg64->sg[0].count = cpu_to_le32(xfer_len);
1715 * Copy the updated data for other dumping or other usage if needed
1717 memcpy(&srbu->srb, srb, sizeof(struct aac_srb));
1719 /* issue request to the controller */
1720 rcode = aac_fib_send(ScsiPortCommand64, fibptr, fibsize, FsaNormal,
1723 if (rcode == -ERESTARTSYS)
1726 if (unlikely(rcode < 0))
1729 srb_reply = (struct aac_srb_reply *)fib_data(fibptr);
1730 memcpy(&srbu->srb_reply, srb_reply, sizeof(struct aac_srb_reply));
1733 dma_unmap_single(&dev->pdev->dev, addr, xfer_len, DMA_BIDIRECTIONAL);
1735 aac_fib_complete(fibptr);
1736 aac_fib_free(fibptr);
1740 static void aac_set_safw_target_qd(struct aac_dev *dev, int bus, int target)
1743 struct aac_ciss_identify_pd *identify_resp;
1745 if (dev->hba_map[bus][target].devtype != AAC_DEVTYPE_NATIVE_RAW)
1748 identify_resp = dev->hba_map[bus][target].safw_identify_resp;
1749 if (identify_resp == NULL) {
1750 dev->hba_map[bus][target].qd_limit = 32;
1754 if (identify_resp->current_queue_depth_limit <= 0 ||
1755 identify_resp->current_queue_depth_limit > 255)
1756 dev->hba_map[bus][target].qd_limit = 32;
1758 dev->hba_map[bus][target].qd_limit =
1759 identify_resp->current_queue_depth_limit;
1762 static int aac_issue_safw_bmic_identify(struct aac_dev *dev,
1763 struct aac_ciss_identify_pd **identify_resp, u32 bus, u32 target)
1765 int rcode = -ENOMEM;
1767 struct aac_srb_unit srbu;
1768 struct aac_srb *srbcmd;
1769 struct aac_ciss_identify_pd *identify_reply;
1771 datasize = sizeof(struct aac_ciss_identify_pd);
1772 identify_reply = kmalloc(datasize, GFP_KERNEL);
1773 if (!identify_reply)
1776 memset(&srbu, 0, sizeof(struct aac_srb_unit));
1779 srbcmd->flags = cpu_to_le32(SRB_DataIn);
1780 srbcmd->cdb[0] = 0x26;
1781 srbcmd->cdb[2] = (u8)((AAC_MAX_LUN + target) & 0x00FF);
1782 srbcmd->cdb[6] = CISS_IDENTIFY_PHYSICAL_DEVICE;
1784 rcode = aac_send_safw_bmic_cmd(dev, &srbu, identify_reply, datasize);
1785 if (unlikely(rcode < 0))
1788 *identify_resp = identify_reply;
1793 kfree(identify_reply);
1797 static inline void aac_free_safw_ciss_luns(struct aac_dev *dev)
1799 kfree(dev->safw_phys_luns);
1800 dev->safw_phys_luns = NULL;
1804 * aac_get_safw_ciss_luns() Process topology change
1805 * @dev: aac_dev structure
1807 * Execute a CISS REPORT PHYS LUNS and process the results into
1808 * the current hba_map.
1810 static int aac_get_safw_ciss_luns(struct aac_dev *dev)
1812 int rcode = -ENOMEM;
1814 struct aac_srb *srbcmd;
1815 struct aac_srb_unit srbu;
1816 struct aac_ciss_phys_luns_resp *phys_luns;
1818 datasize = sizeof(struct aac_ciss_phys_luns_resp) +
1819 (AAC_MAX_TARGETS - 1) * sizeof(struct _ciss_lun);
1820 phys_luns = kmalloc(datasize, GFP_KERNEL);
1821 if (phys_luns == NULL)
1824 memset(&srbu, 0, sizeof(struct aac_srb_unit));
1827 srbcmd->flags = cpu_to_le32(SRB_DataIn);
1828 srbcmd->cdb[0] = CISS_REPORT_PHYSICAL_LUNS;
1829 srbcmd->cdb[1] = 2; /* extended reporting */
1830 srbcmd->cdb[8] = (u8)(datasize >> 8);
1831 srbcmd->cdb[9] = (u8)(datasize);
1833 rcode = aac_send_safw_bmic_cmd(dev, &srbu, phys_luns, datasize);
1834 if (unlikely(rcode < 0))
1837 if (phys_luns->resp_flag != 2) {
1842 dev->safw_phys_luns = phys_luns;
1851 static inline u32 aac_get_safw_phys_lun_count(struct aac_dev *dev)
1853 return get_unaligned_be32(&dev->safw_phys_luns->list_length[0])/24;
1856 static inline u32 aac_get_safw_phys_bus(struct aac_dev *dev, int lun)
1858 return dev->safw_phys_luns->lun[lun].level2[1] & 0x3f;
1861 static inline u32 aac_get_safw_phys_target(struct aac_dev *dev, int lun)
1863 return dev->safw_phys_luns->lun[lun].level2[0];
1866 static inline u32 aac_get_safw_phys_expose_flag(struct aac_dev *dev, int lun)
1868 return dev->safw_phys_luns->lun[lun].bus >> 6;
1871 static inline u32 aac_get_safw_phys_attribs(struct aac_dev *dev, int lun)
1873 return dev->safw_phys_luns->lun[lun].node_ident[9];
1876 static inline u32 aac_get_safw_phys_nexus(struct aac_dev *dev, int lun)
1878 return *((u32 *)&dev->safw_phys_luns->lun[lun].node_ident[12]);
1881 static inline u32 aac_get_safw_phys_device_type(struct aac_dev *dev, int lun)
1883 return dev->safw_phys_luns->lun[lun].node_ident[8];
1886 static inline void aac_free_safw_identify_resp(struct aac_dev *dev,
1887 int bus, int target)
1889 kfree(dev->hba_map[bus][target].safw_identify_resp);
1890 dev->hba_map[bus][target].safw_identify_resp = NULL;
1893 static inline void aac_free_safw_all_identify_resp(struct aac_dev *dev,
1901 luns = aac_get_safw_phys_lun_count(dev);
1903 if (luns < lun_count)
1905 else if (lun_count < 0)
1908 for (i = 0; i < lun_count; i++) {
1909 bus = aac_get_safw_phys_bus(dev, i);
1910 target = aac_get_safw_phys_target(dev, i);
1912 aac_free_safw_identify_resp(dev, bus, target);
1916 static int aac_get_safw_attr_all_targets(struct aac_dev *dev)
1923 struct aac_ciss_identify_pd *identify_resp = NULL;
1925 lun_count = aac_get_safw_phys_lun_count(dev);
1927 for (i = 0; i < lun_count; ++i) {
1929 bus = aac_get_safw_phys_bus(dev, i);
1930 target = aac_get_safw_phys_target(dev, i);
1932 rcode = aac_issue_safw_bmic_identify(dev,
1933 &identify_resp, bus, target);
1935 if (unlikely(rcode < 0))
1936 goto free_identify_resp;
1938 dev->hba_map[bus][target].safw_identify_resp = identify_resp;
1944 aac_free_safw_all_identify_resp(dev, i);
1949 * aac_set_safw_attr_all_targets- update current hba map with data from FW
1950 * @dev: aac_dev structure
1951 * @phys_luns: FW information from report phys luns
1952 * @rescan: Indicates scan type
1954 * Update our hba map with the information gathered from the FW
1956 static void aac_set_safw_attr_all_targets(struct aac_dev *dev)
1958 /* ok and extended reporting */
1959 u32 lun_count, nexus;
1961 u8 expose_flag, attribs;
1963 lun_count = aac_get_safw_phys_lun_count(dev);
1965 dev->scan_counter++;
1967 for (i = 0; i < lun_count; ++i) {
1969 bus = aac_get_safw_phys_bus(dev, i);
1970 target = aac_get_safw_phys_target(dev, i);
1971 expose_flag = aac_get_safw_phys_expose_flag(dev, i);
1972 attribs = aac_get_safw_phys_attribs(dev, i);
1973 nexus = aac_get_safw_phys_nexus(dev, i);
1975 if (bus >= AAC_MAX_BUSES || target >= AAC_MAX_TARGETS)
1978 if (expose_flag != 0) {
1979 dev->hba_map[bus][target].devtype =
1980 AAC_DEVTYPE_RAID_MEMBER;
1984 if (nexus != 0 && (attribs & 8)) {
1985 dev->hba_map[bus][target].devtype =
1986 AAC_DEVTYPE_NATIVE_RAW;
1987 dev->hba_map[bus][target].rmw_nexus =
1990 dev->hba_map[bus][target].devtype =
1991 AAC_DEVTYPE_ARC_RAW;
1993 dev->hba_map[bus][target].scan_counter = dev->scan_counter;
1995 aac_set_safw_target_qd(dev, bus, target);
1999 static int aac_setup_safw_targets(struct aac_dev *dev)
2003 rcode = aac_get_containers(dev);
2004 if (unlikely(rcode < 0))
2007 rcode = aac_get_safw_ciss_luns(dev);
2008 if (unlikely(rcode < 0))
2011 rcode = aac_get_safw_attr_all_targets(dev);
2012 if (unlikely(rcode < 0))
2013 goto free_ciss_luns;
2015 aac_set_safw_attr_all_targets(dev);
2017 aac_free_safw_all_identify_resp(dev, -1);
2019 aac_free_safw_ciss_luns(dev);
2024 int aac_setup_safw_adapter(struct aac_dev *dev)
2026 return aac_setup_safw_targets(dev);
2029 int aac_get_adapter_info(struct aac_dev* dev)
2033 u32 tmp, bus, target;
2034 struct aac_adapter_info *info;
2035 struct aac_bus_info *command;
2036 struct aac_bus_info_response *bus_info;
2038 if (!(fibptr = aac_fib_alloc(dev)))
2041 aac_fib_init(fibptr);
2042 info = (struct aac_adapter_info *) fib_data(fibptr);
2043 memset(info,0,sizeof(*info));
2045 rcode = aac_fib_send(RequestAdapterInfo,
2049 -1, 1, /* First `interrupt' command uses special wait */
2054 /* FIB should be freed only after
2055 * getting the response from the F/W */
2056 if (rcode != -ERESTARTSYS) {
2057 aac_fib_complete(fibptr);
2058 aac_fib_free(fibptr);
2062 memcpy(&dev->adapter_info, info, sizeof(*info));
2064 dev->supplement_adapter_info.virt_device_bus = 0xffff;
2065 if (dev->adapter_info.options & AAC_OPT_SUPPLEMENT_ADAPTER_INFO) {
2066 struct aac_supplement_adapter_info * sinfo;
2068 aac_fib_init(fibptr);
2070 sinfo = (struct aac_supplement_adapter_info *) fib_data(fibptr);
2072 memset(sinfo,0,sizeof(*sinfo));
2074 rcode = aac_fib_send(RequestSupplementAdapterInfo,
2083 memcpy(&dev->supplement_adapter_info, sinfo, sizeof(*sinfo));
2084 if (rcode == -ERESTARTSYS) {
2085 fibptr = aac_fib_alloc(dev);
2092 /* reset all previous mapped devices (i.e. for init. after IOP_RESET) */
2093 for (bus = 0; bus < AAC_MAX_BUSES; bus++) {
2094 for (target = 0; target < AAC_MAX_TARGETS; target++) {
2095 dev->hba_map[bus][target].devtype = 0;
2096 dev->hba_map[bus][target].qd_limit = 0;
2104 aac_fib_init(fibptr);
2106 bus_info = (struct aac_bus_info_response *) fib_data(fibptr);
2108 memset(bus_info, 0, sizeof(*bus_info));
2110 command = (struct aac_bus_info *)bus_info;
2112 command->Command = cpu_to_le32(VM_Ioctl);
2113 command->ObjType = cpu_to_le32(FT_DRIVE);
2114 command->MethodId = cpu_to_le32(1);
2115 command->CtlCmd = cpu_to_le32(GetBusInfo);
2117 rcode = aac_fib_send(ContainerCommand,
2124 /* reasoned default */
2125 dev->maximum_num_physicals = 16;
2126 if (rcode >= 0 && le32_to_cpu(bus_info->Status) == ST_OK) {
2127 dev->maximum_num_physicals = le32_to_cpu(bus_info->TargetsPerBus);
2128 dev->maximum_num_channels = le32_to_cpu(bus_info->BusCount);
2131 if (!dev->in_reset) {
2133 tmp = le32_to_cpu(dev->adapter_info.kernelrev);
2134 printk(KERN_INFO "%s%d: kernel %d.%d-%d[%d] %.*s\n",
2140 le32_to_cpu(dev->adapter_info.kernelbuild),
2141 (int)sizeof(dev->supplement_adapter_info.build_date),
2142 dev->supplement_adapter_info.build_date);
2143 tmp = le32_to_cpu(dev->adapter_info.monitorrev);
2144 printk(KERN_INFO "%s%d: monitor %d.%d-%d[%d]\n",
2146 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
2147 le32_to_cpu(dev->adapter_info.monitorbuild));
2148 tmp = le32_to_cpu(dev->adapter_info.biosrev);
2149 printk(KERN_INFO "%s%d: bios %d.%d-%d[%d]\n",
2151 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
2152 le32_to_cpu(dev->adapter_info.biosbuild));
2154 if (aac_get_serial_number(
2155 shost_to_class(dev->scsi_host_ptr), buffer))
2156 printk(KERN_INFO "%s%d: serial %s",
2157 dev->name, dev->id, buffer);
2158 if (dev->supplement_adapter_info.vpd_info.tsid[0]) {
2159 printk(KERN_INFO "%s%d: TSID %.*s\n",
2161 (int)sizeof(dev->supplement_adapter_info
2163 dev->supplement_adapter_info.vpd_info.tsid);
2165 if (!aac_check_reset || ((aac_check_reset == 1) &&
2166 (dev->supplement_adapter_info.supported_options2 &
2167 AAC_OPTION_IGNORE_RESET))) {
2168 printk(KERN_INFO "%s%d: Reset Adapter Ignored\n",
2169 dev->name, dev->id);
2173 dev->cache_protected = 0;
2174 dev->jbod = ((dev->supplement_adapter_info.feature_bits &
2175 AAC_FEATURE_JBOD) != 0);
2176 dev->nondasd_support = 0;
2177 dev->raid_scsi_mode = 0;
2178 if(dev->adapter_info.options & AAC_OPT_NONDASD)
2179 dev->nondasd_support = 1;
2182 * If the firmware supports ROMB RAID/SCSI mode and we are currently
2183 * in RAID/SCSI mode, set the flag. For now if in this mode we will
2184 * force nondasd support on. If we decide to allow the non-dasd flag
2185 * additional changes changes will have to be made to support
2186 * RAID/SCSI. the function aac_scsi_cmd in this module will have to be
2187 * changed to support the new dev->raid_scsi_mode flag instead of
2188 * leaching off of the dev->nondasd_support flag. Also in linit.c the
2189 * function aac_detect will have to be modified where it sets up the
2190 * max number of channels based on the aac->nondasd_support flag only.
2192 if ((dev->adapter_info.options & AAC_OPT_SCSI_MANAGED) &&
2193 (dev->adapter_info.options & AAC_OPT_RAID_SCSI_MODE)) {
2194 dev->nondasd_support = 1;
2195 dev->raid_scsi_mode = 1;
2197 if (dev->raid_scsi_mode != 0)
2198 printk(KERN_INFO "%s%d: ROMB RAID/SCSI mode enabled\n",
2199 dev->name, dev->id);
2202 dev->nondasd_support = (nondasd!=0);
2203 if (dev->nondasd_support && !dev->in_reset)
2204 printk(KERN_INFO "%s%d: Non-DASD support enabled.\n",dev->name, dev->id);
2206 if (dma_get_required_mask(&dev->pdev->dev) > DMA_BIT_MASK(32))
2208 dev->dac_support = 0;
2209 if ((sizeof(dma_addr_t) > 4) && dev->needs_dac &&
2210 (dev->adapter_info.options & AAC_OPT_SGMAP_HOST64)) {
2212 printk(KERN_INFO "%s%d: 64bit support enabled.\n",
2213 dev->name, dev->id);
2214 dev->dac_support = 1;
2218 dev->dac_support = (dacmode!=0);
2221 /* avoid problems with AAC_QUIRK_SCSI_32 controllers */
2222 if (dev->dac_support && (aac_get_driver_ident(dev->cardtype)->quirks
2223 & AAC_QUIRK_SCSI_32)) {
2224 dev->nondasd_support = 0;
2226 expose_physicals = 0;
2229 if (dev->dac_support) {
2230 if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(64))) {
2232 dev_info(&dev->pdev->dev, "64 Bit DAC enabled\n");
2233 } else if (!pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(32))) {
2234 dev_info(&dev->pdev->dev, "DMA mask set failed, 64 Bit DAC disabled\n");
2235 dev->dac_support = 0;
2237 dev_info(&dev->pdev->dev, "No suitable DMA available\n");
2242 * Deal with configuring for the individualized limits of each packet
2245 dev->a_ops.adapter_scsi = (dev->dac_support)
2246 ? ((aac_get_driver_ident(dev->cardtype)->quirks & AAC_QUIRK_SCSI_32)
2250 if (dev->raw_io_interface) {
2251 dev->a_ops.adapter_bounds = (dev->raw_io_64)
2254 dev->a_ops.adapter_read = aac_read_raw_io;
2255 dev->a_ops.adapter_write = aac_write_raw_io;
2257 dev->a_ops.adapter_bounds = aac_bounds_32;
2258 dev->scsi_host_ptr->sg_tablesize = (dev->max_fib_size -
2259 sizeof(struct aac_fibhdr) -
2260 sizeof(struct aac_write) + sizeof(struct sgentry)) /
2261 sizeof(struct sgentry);
2262 if (dev->dac_support) {
2263 dev->a_ops.adapter_read = aac_read_block64;
2264 dev->a_ops.adapter_write = aac_write_block64;
2266 * 38 scatter gather elements
2268 dev->scsi_host_ptr->sg_tablesize =
2269 (dev->max_fib_size -
2270 sizeof(struct aac_fibhdr) -
2271 sizeof(struct aac_write64) +
2272 sizeof(struct sgentry64)) /
2273 sizeof(struct sgentry64);
2275 dev->a_ops.adapter_read = aac_read_block;
2276 dev->a_ops.adapter_write = aac_write_block;
2278 dev->scsi_host_ptr->max_sectors = AAC_MAX_32BIT_SGBCOUNT;
2279 if (!(dev->adapter_info.options & AAC_OPT_NEW_COMM)) {
2281 * Worst case size that could cause sg overflow when
2282 * we break up SG elements that are larger than 64KB.
2283 * Would be nice if we could tell the SCSI layer what
2284 * the maximum SG element size can be. Worst case is
2285 * (sg_tablesize-1) 4KB elements with one 64KB
2287 * 32bit -> 468 or 238KB 64bit -> 424 or 212KB
2289 dev->scsi_host_ptr->max_sectors =
2290 (dev->scsi_host_ptr->sg_tablesize * 8) + 112;
2293 if (!dev->sync_mode && dev->sa_firmware &&
2294 dev->scsi_host_ptr->sg_tablesize > HBA_MAX_SG_SEPARATE)
2295 dev->scsi_host_ptr->sg_tablesize = dev->sg_tablesize =
2296 HBA_MAX_SG_SEPARATE;
2298 /* FIB should be freed only after getting the response from the F/W */
2299 if (rcode != -ERESTARTSYS) {
2300 aac_fib_complete(fibptr);
2301 aac_fib_free(fibptr);
2308 static void io_callback(void *context, struct fib * fibptr)
2310 struct aac_dev *dev;
2311 struct aac_read_reply *readreply;
2312 struct scsi_cmnd *scsicmd;
2315 scsicmd = (struct scsi_cmnd *) context;
2317 if (!aac_valid_context(scsicmd, fibptr))
2321 cid = scmd_id(scsicmd);
2323 if (nblank(dprintk(x))) {
2325 switch (scsicmd->cmnd[0]) {
2328 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
2329 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
2333 lba = ((u64)scsicmd->cmnd[2] << 56) |
2334 ((u64)scsicmd->cmnd[3] << 48) |
2335 ((u64)scsicmd->cmnd[4] << 40) |
2336 ((u64)scsicmd->cmnd[5] << 32) |
2337 ((u64)scsicmd->cmnd[6] << 24) |
2338 (scsicmd->cmnd[7] << 16) |
2339 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
2343 lba = ((u64)scsicmd->cmnd[2] << 24) |
2344 (scsicmd->cmnd[3] << 16) |
2345 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
2348 lba = ((u64)scsicmd->cmnd[2] << 24) |
2349 (scsicmd->cmnd[3] << 16) |
2350 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
2354 "io_callback[cpu %d]: lba = %llu, t = %ld.\n",
2355 smp_processor_id(), (unsigned long long)lba, jiffies);
2358 BUG_ON(fibptr == NULL);
2360 scsi_dma_unmap(scsicmd);
2362 readreply = (struct aac_read_reply *)fib_data(fibptr);
2363 switch (le32_to_cpu(readreply->status)) {
2365 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2367 dev->fsa_dev[cid].sense_data.sense_key = NO_SENSE;
2370 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2371 SAM_STAT_CHECK_CONDITION;
2372 set_sense(&dev->fsa_dev[cid].sense_data, NOT_READY,
2373 SENCODE_BECOMING_READY, ASENCODE_BECOMING_READY, 0, 0);
2374 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2375 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
2376 SCSI_SENSE_BUFFERSIZE));
2379 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2380 SAM_STAT_CHECK_CONDITION;
2381 set_sense(&dev->fsa_dev[cid].sense_data, MEDIUM_ERROR,
2382 SENCODE_UNRECOVERED_READ_ERROR, ASENCODE_NO_SENSE, 0, 0);
2383 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2384 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
2385 SCSI_SENSE_BUFFERSIZE));
2388 #ifdef AAC_DETAILED_STATUS_INFO
2389 printk(KERN_WARNING "io_callback: io failed, status = %d\n",
2390 le32_to_cpu(readreply->status));
2392 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2393 SAM_STAT_CHECK_CONDITION;
2394 set_sense(&dev->fsa_dev[cid].sense_data,
2395 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
2396 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
2397 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2398 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
2399 SCSI_SENSE_BUFFERSIZE));
2402 aac_fib_complete(fibptr);
2404 scsicmd->scsi_done(scsicmd);
2407 static int aac_read(struct scsi_cmnd * scsicmd)
2412 struct aac_dev *dev;
2413 struct fib * cmd_fibcontext;
2416 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2418 * Get block address and transfer length
2420 switch (scsicmd->cmnd[0]) {
2422 dprintk((KERN_DEBUG "aachba: received a read(6) command on id %d.\n", scmd_id(scsicmd)));
2424 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
2425 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
2426 count = scsicmd->cmnd[4];
2432 dprintk((KERN_DEBUG "aachba: received a read(16) command on id %d.\n", scmd_id(scsicmd)));
2434 lba = ((u64)scsicmd->cmnd[2] << 56) |
2435 ((u64)scsicmd->cmnd[3] << 48) |
2436 ((u64)scsicmd->cmnd[4] << 40) |
2437 ((u64)scsicmd->cmnd[5] << 32) |
2438 ((u64)scsicmd->cmnd[6] << 24) |
2439 (scsicmd->cmnd[7] << 16) |
2440 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
2441 count = (scsicmd->cmnd[10] << 24) |
2442 (scsicmd->cmnd[11] << 16) |
2443 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
2446 dprintk((KERN_DEBUG "aachba: received a read(12) command on id %d.\n", scmd_id(scsicmd)));
2448 lba = ((u64)scsicmd->cmnd[2] << 24) |
2449 (scsicmd->cmnd[3] << 16) |
2450 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
2451 count = (scsicmd->cmnd[6] << 24) |
2452 (scsicmd->cmnd[7] << 16) |
2453 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
2456 dprintk((KERN_DEBUG "aachba: received a read(10) command on id %d.\n", scmd_id(scsicmd)));
2458 lba = ((u64)scsicmd->cmnd[2] << 24) |
2459 (scsicmd->cmnd[3] << 16) |
2460 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
2461 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
2465 if ((lba + count) > (dev->fsa_dev[scmd_id(scsicmd)].size)) {
2466 cid = scmd_id(scsicmd);
2467 dprintk((KERN_DEBUG "aacraid: Illegal lba\n"));
2468 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2469 SAM_STAT_CHECK_CONDITION;
2470 set_sense(&dev->fsa_dev[cid].sense_data,
2471 ILLEGAL_REQUEST, SENCODE_LBA_OUT_OF_RANGE,
2472 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
2473 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2474 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
2475 SCSI_SENSE_BUFFERSIZE));
2476 scsicmd->scsi_done(scsicmd);
2480 dprintk((KERN_DEBUG "aac_read[cpu %d]: lba = %llu, t = %ld.\n",
2481 smp_processor_id(), (unsigned long long)lba, jiffies));
2482 if (aac_adapter_bounds(dev,scsicmd,lba))
2485 * Alocate and initialize a Fib
2487 cmd_fibcontext = aac_fib_alloc_tag(dev, scsicmd);
2488 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
2489 status = aac_adapter_read(cmd_fibcontext, scsicmd, lba, count);
2492 * Check that the command queued to the controller
2494 if (status == -EINPROGRESS)
2497 printk(KERN_WARNING "aac_read: aac_fib_send failed with status: %d.\n", status);
2499 * For some reason, the Fib didn't queue, return QUEUE_FULL
2501 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
2502 scsicmd->scsi_done(scsicmd);
2503 aac_fib_complete(cmd_fibcontext);
2504 aac_fib_free(cmd_fibcontext);
2508 static int aac_write(struct scsi_cmnd * scsicmd)
2514 struct aac_dev *dev;
2515 struct fib * cmd_fibcontext;
2518 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2520 * Get block address and transfer length
2522 if (scsicmd->cmnd[0] == WRITE_6) /* 6 byte command */
2524 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
2525 count = scsicmd->cmnd[4];
2529 } else if (scsicmd->cmnd[0] == WRITE_16) { /* 16 byte command */
2530 dprintk((KERN_DEBUG "aachba: received a write(16) command on id %d.\n", scmd_id(scsicmd)));
2532 lba = ((u64)scsicmd->cmnd[2] << 56) |
2533 ((u64)scsicmd->cmnd[3] << 48) |
2534 ((u64)scsicmd->cmnd[4] << 40) |
2535 ((u64)scsicmd->cmnd[5] << 32) |
2536 ((u64)scsicmd->cmnd[6] << 24) |
2537 (scsicmd->cmnd[7] << 16) |
2538 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
2539 count = (scsicmd->cmnd[10] << 24) | (scsicmd->cmnd[11] << 16) |
2540 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
2541 fua = scsicmd->cmnd[1] & 0x8;
2542 } else if (scsicmd->cmnd[0] == WRITE_12) { /* 12 byte command */
2543 dprintk((KERN_DEBUG "aachba: received a write(12) command on id %d.\n", scmd_id(scsicmd)));
2545 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16)
2546 | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
2547 count = (scsicmd->cmnd[6] << 24) | (scsicmd->cmnd[7] << 16)
2548 | (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
2549 fua = scsicmd->cmnd[1] & 0x8;
2551 dprintk((KERN_DEBUG "aachba: received a write(10) command on id %d.\n", scmd_id(scsicmd)));
2552 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
2553 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
2554 fua = scsicmd->cmnd[1] & 0x8;
2557 if ((lba + count) > (dev->fsa_dev[scmd_id(scsicmd)].size)) {
2558 cid = scmd_id(scsicmd);
2559 dprintk((KERN_DEBUG "aacraid: Illegal lba\n"));
2560 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2561 SAM_STAT_CHECK_CONDITION;
2562 set_sense(&dev->fsa_dev[cid].sense_data,
2563 ILLEGAL_REQUEST, SENCODE_LBA_OUT_OF_RANGE,
2564 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
2565 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2566 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
2567 SCSI_SENSE_BUFFERSIZE));
2568 scsicmd->scsi_done(scsicmd);
2572 dprintk((KERN_DEBUG "aac_write[cpu %d]: lba = %llu, t = %ld.\n",
2573 smp_processor_id(), (unsigned long long)lba, jiffies));
2574 if (aac_adapter_bounds(dev,scsicmd,lba))
2577 * Allocate and initialize a Fib then setup a BlockWrite command
2579 cmd_fibcontext = aac_fib_alloc_tag(dev, scsicmd);
2580 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
2581 status = aac_adapter_write(cmd_fibcontext, scsicmd, lba, count, fua);
2584 * Check that the command queued to the controller
2586 if (status == -EINPROGRESS)
2589 printk(KERN_WARNING "aac_write: aac_fib_send failed with status: %d\n", status);
2591 * For some reason, the Fib didn't queue, return QUEUE_FULL
2593 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
2594 scsicmd->scsi_done(scsicmd);
2596 aac_fib_complete(cmd_fibcontext);
2597 aac_fib_free(cmd_fibcontext);
2601 static void synchronize_callback(void *context, struct fib *fibptr)
2603 struct aac_synchronize_reply *synchronizereply;
2604 struct scsi_cmnd *cmd;
2608 if (!aac_valid_context(cmd, fibptr))
2611 dprintk((KERN_DEBUG "synchronize_callback[cpu %d]: t = %ld.\n",
2612 smp_processor_id(), jiffies));
2613 BUG_ON(fibptr == NULL);
2616 synchronizereply = fib_data(fibptr);
2617 if (le32_to_cpu(synchronizereply->status) == CT_OK)
2618 cmd->result = DID_OK << 16 |
2619 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2621 struct scsi_device *sdev = cmd->device;
2622 struct aac_dev *dev = fibptr->dev;
2623 u32 cid = sdev_id(sdev);
2625 "synchronize_callback: synchronize failed, status = %d\n",
2626 le32_to_cpu(synchronizereply->status));
2627 cmd->result = DID_OK << 16 |
2628 COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
2629 set_sense(&dev->fsa_dev[cid].sense_data,
2630 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
2631 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
2632 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2633 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
2634 SCSI_SENSE_BUFFERSIZE));
2637 aac_fib_complete(fibptr);
2638 aac_fib_free(fibptr);
2639 cmd->scsi_done(cmd);
2642 static int aac_synchronize(struct scsi_cmnd *scsicmd)
2645 struct fib *cmd_fibcontext;
2646 struct aac_synchronize *synchronizecmd;
2647 struct scsi_cmnd *cmd;
2648 struct scsi_device *sdev = scsicmd->device;
2650 struct aac_dev *aac;
2651 u64 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) |
2652 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
2653 u32 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
2654 unsigned long flags;
2657 * Wait for all outstanding queued commands to complete to this
2658 * specific target (block).
2660 spin_lock_irqsave(&sdev->list_lock, flags);
2661 list_for_each_entry(cmd, &sdev->cmd_list, list)
2662 if (cmd->SCp.phase == AAC_OWNER_FIRMWARE) {
2666 if (cmd->cmnd[0] == WRITE_6) {
2667 cmnd_lba = ((cmd->cmnd[1] & 0x1F) << 16) |
2668 (cmd->cmnd[2] << 8) |
2670 cmnd_count = cmd->cmnd[4];
2671 if (cmnd_count == 0)
2673 } else if (cmd->cmnd[0] == WRITE_16) {
2674 cmnd_lba = ((u64)cmd->cmnd[2] << 56) |
2675 ((u64)cmd->cmnd[3] << 48) |
2676 ((u64)cmd->cmnd[4] << 40) |
2677 ((u64)cmd->cmnd[5] << 32) |
2678 ((u64)cmd->cmnd[6] << 24) |
2679 (cmd->cmnd[7] << 16) |
2680 (cmd->cmnd[8] << 8) |
2682 cmnd_count = (cmd->cmnd[10] << 24) |
2683 (cmd->cmnd[11] << 16) |
2684 (cmd->cmnd[12] << 8) |
2686 } else if (cmd->cmnd[0] == WRITE_12) {
2687 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
2688 (cmd->cmnd[3] << 16) |
2689 (cmd->cmnd[4] << 8) |
2691 cmnd_count = (cmd->cmnd[6] << 24) |
2692 (cmd->cmnd[7] << 16) |
2693 (cmd->cmnd[8] << 8) |
2695 } else if (cmd->cmnd[0] == WRITE_10) {
2696 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
2697 (cmd->cmnd[3] << 16) |
2698 (cmd->cmnd[4] << 8) |
2700 cmnd_count = (cmd->cmnd[7] << 8) |
2704 if (((cmnd_lba + cmnd_count) < lba) ||
2705 (count && ((lba + count) < cmnd_lba)))
2711 spin_unlock_irqrestore(&sdev->list_lock, flags);
2714 * Yield the processor (requeue for later)
2717 return SCSI_MLQUEUE_DEVICE_BUSY;
2719 aac = (struct aac_dev *)sdev->host->hostdata;
2721 return SCSI_MLQUEUE_HOST_BUSY;
2724 * Allocate and initialize a Fib
2726 if (!(cmd_fibcontext = aac_fib_alloc(aac)))
2727 return SCSI_MLQUEUE_HOST_BUSY;
2729 aac_fib_init(cmd_fibcontext);
2731 synchronizecmd = fib_data(cmd_fibcontext);
2732 synchronizecmd->command = cpu_to_le32(VM_ContainerConfig);
2733 synchronizecmd->type = cpu_to_le32(CT_FLUSH_CACHE);
2734 synchronizecmd->cid = cpu_to_le32(scmd_id(scsicmd));
2735 synchronizecmd->count =
2736 cpu_to_le32(sizeof(((struct aac_synchronize_reply *)NULL)->data));
2737 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
2740 * Now send the Fib to the adapter
2742 status = aac_fib_send(ContainerCommand,
2744 sizeof(struct aac_synchronize),
2747 (fib_callback)synchronize_callback,
2751 * Check that the command queued to the controller
2753 if (status == -EINPROGRESS)
2757 "aac_synchronize: aac_fib_send failed with status: %d.\n", status);
2758 aac_fib_complete(cmd_fibcontext);
2759 aac_fib_free(cmd_fibcontext);
2760 return SCSI_MLQUEUE_HOST_BUSY;
2763 static void aac_start_stop_callback(void *context, struct fib *fibptr)
2765 struct scsi_cmnd *scsicmd = context;
2767 if (!aac_valid_context(scsicmd, fibptr))
2770 BUG_ON(fibptr == NULL);
2772 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2774 aac_fib_complete(fibptr);
2775 aac_fib_free(fibptr);
2776 scsicmd->scsi_done(scsicmd);
2779 static int aac_start_stop(struct scsi_cmnd *scsicmd)
2782 struct fib *cmd_fibcontext;
2783 struct aac_power_management *pmcmd;
2784 struct scsi_device *sdev = scsicmd->device;
2785 struct aac_dev *aac = (struct aac_dev *)sdev->host->hostdata;
2787 if (!(aac->supplement_adapter_info.supported_options2 &
2788 AAC_OPTION_POWER_MANAGEMENT)) {
2789 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2791 scsicmd->scsi_done(scsicmd);
2796 return SCSI_MLQUEUE_HOST_BUSY;
2799 * Allocate and initialize a Fib
2801 cmd_fibcontext = aac_fib_alloc_tag(aac, scsicmd);
2803 aac_fib_init(cmd_fibcontext);
2805 pmcmd = fib_data(cmd_fibcontext);
2806 pmcmd->command = cpu_to_le32(VM_ContainerConfig);
2807 pmcmd->type = cpu_to_le32(CT_POWER_MANAGEMENT);
2808 /* Eject bit ignored, not relevant */
2809 pmcmd->sub = (scsicmd->cmnd[4] & 1) ?
2810 cpu_to_le32(CT_PM_START_UNIT) : cpu_to_le32(CT_PM_STOP_UNIT);
2811 pmcmd->cid = cpu_to_le32(sdev_id(sdev));
2812 pmcmd->parm = (scsicmd->cmnd[1] & 1) ?
2813 cpu_to_le32(CT_PM_UNIT_IMMEDIATE) : 0;
2814 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
2817 * Now send the Fib to the adapter
2819 status = aac_fib_send(ContainerCommand,
2821 sizeof(struct aac_power_management),
2824 (fib_callback)aac_start_stop_callback,
2828 * Check that the command queued to the controller
2830 if (status == -EINPROGRESS)
2833 aac_fib_complete(cmd_fibcontext);
2834 aac_fib_free(cmd_fibcontext);
2835 return SCSI_MLQUEUE_HOST_BUSY;
2839 * aac_scsi_cmd() - Process SCSI command
2840 * @scsicmd: SCSI command block
2842 * Emulate a SCSI command and queue the required request for the
2846 int aac_scsi_cmd(struct scsi_cmnd * scsicmd)
2849 struct Scsi_Host *host = scsicmd->device->host;
2850 struct aac_dev *dev = (struct aac_dev *)host->hostdata;
2851 struct fsa_dev_info *fsa_dev_ptr = dev->fsa_dev;
2853 if (fsa_dev_ptr == NULL)
2856 * If the bus, id or lun is out of range, return fail
2857 * Test does not apply to ID 16, the pseudo id for the controller
2860 cid = scmd_id(scsicmd);
2861 if (cid != host->this_id) {
2862 if (scmd_channel(scsicmd) == CONTAINER_CHANNEL) {
2863 if((cid >= dev->maximum_num_containers) ||
2864 (scsicmd->device->lun != 0)) {
2865 scsicmd->result = DID_NO_CONNECT << 16;
2870 * If the target container doesn't exist, it may have
2871 * been newly created
2873 if (((fsa_dev_ptr[cid].valid & 1) == 0) ||
2874 (fsa_dev_ptr[cid].sense_data.sense_key ==
2876 switch (scsicmd->cmnd[0]) {
2877 case SERVICE_ACTION_IN_16:
2878 if (!(dev->raw_io_interface) ||
2879 !(dev->raw_io_64) ||
2880 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
2885 case TEST_UNIT_READY:
2888 return _aac_probe_container(scsicmd,
2889 aac_probe_container_callback2);
2894 } else { /* check for physical non-dasd devices */
2895 bus = aac_logical_to_phys(scmd_channel(scsicmd));
2897 if (bus < AAC_MAX_BUSES && cid < AAC_MAX_TARGETS &&
2898 dev->hba_map[bus][cid].devtype
2899 == AAC_DEVTYPE_NATIVE_RAW) {
2902 return aac_send_hba_fib(scsicmd);
2903 } else if (dev->nondasd_support || expose_physicals ||
2907 return aac_send_srb_fib(scsicmd);
2909 scsicmd->result = DID_NO_CONNECT << 16;
2915 * else Command for the controller itself
2917 else if ((scsicmd->cmnd[0] != INQUIRY) && /* only INQUIRY & TUR cmnd supported for controller */
2918 (scsicmd->cmnd[0] != TEST_UNIT_READY))
2920 dprintk((KERN_WARNING "Only INQUIRY & TUR command supported for controller, rcvd = 0x%x.\n", scsicmd->cmnd[0]));
2921 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
2922 set_sense(&dev->fsa_dev[cid].sense_data,
2923 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
2924 ASENCODE_INVALID_COMMAND, 0, 0);
2925 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
2926 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
2927 SCSI_SENSE_BUFFERSIZE));
2931 switch (scsicmd->cmnd[0]) {
2938 return aac_read(scsicmd);
2946 return aac_write(scsicmd);
2948 case SYNCHRONIZE_CACHE:
2949 if (((aac_cache & 6) == 6) && dev->cache_protected) {
2950 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
2954 /* Issue FIB to tell Firmware to flush it's cache */
2955 if ((aac_cache & 6) != 2)
2956 return aac_synchronize(scsicmd);
2960 struct inquiry_data inq_data;
2962 dprintk((KERN_DEBUG "INQUIRY command, ID: %d.\n", cid));
2963 memset(&inq_data, 0, sizeof (struct inquiry_data));
2965 if ((scsicmd->cmnd[1] & 0x1) && aac_wwn) {
2966 char *arr = (char *)&inq_data;
2969 arr[0] = (scmd_id(scsicmd) == host->this_id) ?
2970 INQD_PDT_PROC : INQD_PDT_DA;
2971 if (scsicmd->cmnd[2] == 0) {
2972 /* supported vital product data pages */
2977 arr[1] = scsicmd->cmnd[2];
2978 scsi_sg_copy_from_buffer(scsicmd, &inq_data,
2980 scsicmd->result = DID_OK << 16 |
2981 COMMAND_COMPLETE << 8 |
2983 } else if (scsicmd->cmnd[2] == 0x80) {
2984 /* unit serial number page */
2985 arr[3] = setinqserial(dev, &arr[4],
2987 arr[1] = scsicmd->cmnd[2];
2988 scsi_sg_copy_from_buffer(scsicmd, &inq_data,
2991 return aac_get_container_serial(
2993 scsicmd->result = DID_OK << 16 |
2994 COMMAND_COMPLETE << 8 |
2996 } else if (scsicmd->cmnd[2] == 0x83) {
2997 /* vpd page 0x83 - Device Identification Page */
2998 char *sno = (char *)&inq_data;
2999 sno[3] = setinqserial(dev, &sno[4],
3002 return aac_get_container_serial(
3004 scsicmd->result = DID_OK << 16 |
3005 COMMAND_COMPLETE << 8 |
3008 /* vpd page not implemented */
3009 scsicmd->result = DID_OK << 16 |
3010 COMMAND_COMPLETE << 8 |
3011 SAM_STAT_CHECK_CONDITION;
3012 set_sense(&dev->fsa_dev[cid].sense_data,
3013 ILLEGAL_REQUEST, SENCODE_INVALID_CDB_FIELD,
3014 ASENCODE_NO_SENSE, 7, 2);
3015 memcpy(scsicmd->sense_buffer,
3016 &dev->fsa_dev[cid].sense_data,
3018 sizeof(dev->fsa_dev[cid].sense_data),
3019 SCSI_SENSE_BUFFERSIZE));
3023 inq_data.inqd_ver = 2; /* claim compliance to SCSI-2 */
3024 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 */
3025 inq_data.inqd_len = 31;
3026 /*Format for "pad2" is RelAdr | WBus32 | WBus16 | Sync | Linked |Reserved| CmdQue | SftRe */
3027 inq_data.inqd_pad2= 0x32 ; /*WBus16|Sync|CmdQue */
3029 * Set the Vendor, Product, and Revision Level
3030 * see: <vendor>.c i.e. aac.c
3032 if (cid == host->this_id) {
3033 setinqstr(dev, (void *) (inq_data.inqd_vid), ARRAY_SIZE(container_types));
3034 inq_data.inqd_pdt = INQD_PDT_PROC; /* Processor device */
3035 scsi_sg_copy_from_buffer(scsicmd, &inq_data,
3037 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3043 setinqstr(dev, (void *) (inq_data.inqd_vid), fsa_dev_ptr[cid].type);
3044 inq_data.inqd_pdt = INQD_PDT_DA; /* Direct/random access device */
3045 scsi_sg_copy_from_buffer(scsicmd, &inq_data, sizeof(inq_data));
3046 return aac_get_container_name(scsicmd);
3048 case SERVICE_ACTION_IN_16:
3049 if (!(dev->raw_io_interface) ||
3050 !(dev->raw_io_64) ||
3051 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
3056 unsigned int alloc_len;
3058 dprintk((KERN_DEBUG "READ CAPACITY_16 command.\n"));
3059 capacity = fsa_dev_ptr[cid].size - 1;
3060 cp[0] = (capacity >> 56) & 0xff;
3061 cp[1] = (capacity >> 48) & 0xff;
3062 cp[2] = (capacity >> 40) & 0xff;
3063 cp[3] = (capacity >> 32) & 0xff;
3064 cp[4] = (capacity >> 24) & 0xff;
3065 cp[5] = (capacity >> 16) & 0xff;
3066 cp[6] = (capacity >> 8) & 0xff;
3067 cp[7] = (capacity >> 0) & 0xff;
3068 cp[8] = (fsa_dev_ptr[cid].block_size >> 24) & 0xff;
3069 cp[9] = (fsa_dev_ptr[cid].block_size >> 16) & 0xff;
3070 cp[10] = (fsa_dev_ptr[cid].block_size >> 8) & 0xff;
3071 cp[11] = (fsa_dev_ptr[cid].block_size) & 0xff;
3074 alloc_len = ((scsicmd->cmnd[10] << 24)
3075 + (scsicmd->cmnd[11] << 16)
3076 + (scsicmd->cmnd[12] << 8) + scsicmd->cmnd[13]);
3078 alloc_len = min_t(size_t, alloc_len, sizeof(cp));
3079 scsi_sg_copy_from_buffer(scsicmd, cp, alloc_len);
3080 if (alloc_len < scsi_bufflen(scsicmd))
3081 scsi_set_resid(scsicmd,
3082 scsi_bufflen(scsicmd) - alloc_len);
3084 /* Do not cache partition table for arrays */
3085 scsicmd->device->removable = 1;
3087 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3097 dprintk((KERN_DEBUG "READ CAPACITY command.\n"));
3098 if (fsa_dev_ptr[cid].size <= 0x100000000ULL)
3099 capacity = fsa_dev_ptr[cid].size - 1;
3103 cp[0] = (capacity >> 24) & 0xff;
3104 cp[1] = (capacity >> 16) & 0xff;
3105 cp[2] = (capacity >> 8) & 0xff;
3106 cp[3] = (capacity >> 0) & 0xff;
3107 cp[4] = (fsa_dev_ptr[cid].block_size >> 24) & 0xff;
3108 cp[5] = (fsa_dev_ptr[cid].block_size >> 16) & 0xff;
3109 cp[6] = (fsa_dev_ptr[cid].block_size >> 8) & 0xff;
3110 cp[7] = (fsa_dev_ptr[cid].block_size) & 0xff;
3111 scsi_sg_copy_from_buffer(scsicmd, cp, sizeof(cp));
3112 /* Do not cache partition table for arrays */
3113 scsicmd->device->removable = 1;
3114 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3121 int mode_buf_length = 4;
3125 if (fsa_dev_ptr[cid].size <= 0x100000000ULL)
3126 capacity = fsa_dev_ptr[cid].size - 1;
3130 dprintk((KERN_DEBUG "MODE SENSE command.\n"));
3131 memset((char *)&mpd, 0, sizeof(aac_modep_data));
3133 /* Mode data length */
3134 mpd.hd.data_length = sizeof(mpd.hd) - 1;
3135 /* Medium type - default */
3136 mpd.hd.med_type = 0;
3137 /* Device-specific param,
3138 bit 8: 0/1 = write enabled/protected
3139 bit 4: 0/1 = FUA enabled */
3142 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
3143 mpd.hd.dev_par = 0x10;
3144 if (scsicmd->cmnd[1] & 0x8)
3145 mpd.hd.bd_length = 0; /* Block descriptor length */
3147 mpd.hd.bd_length = sizeof(mpd.bd);
3148 mpd.hd.data_length += mpd.hd.bd_length;
3149 mpd.bd.block_length[0] =
3150 (fsa_dev_ptr[cid].block_size >> 16) & 0xff;
3151 mpd.bd.block_length[1] =
3152 (fsa_dev_ptr[cid].block_size >> 8) & 0xff;
3153 mpd.bd.block_length[2] =
3154 fsa_dev_ptr[cid].block_size & 0xff;
3156 mpd.mpc_buf[0] = scsicmd->cmnd[2];
3157 if (scsicmd->cmnd[2] == 0x1C) {
3159 mpd.mpc_buf[1] = 0xa;
3160 /* Mode data length */
3161 mpd.hd.data_length = 23;
3163 /* Mode data length */
3164 mpd.hd.data_length = 15;
3167 if (capacity > 0xffffff) {
3168 mpd.bd.block_count[0] = 0xff;
3169 mpd.bd.block_count[1] = 0xff;
3170 mpd.bd.block_count[2] = 0xff;
3172 mpd.bd.block_count[0] = (capacity >> 16) & 0xff;
3173 mpd.bd.block_count[1] = (capacity >> 8) & 0xff;
3174 mpd.bd.block_count[2] = capacity & 0xff;
3177 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
3178 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
3179 mpd.hd.data_length += 3;
3182 mpd.mpc_buf[2] = ((aac_cache & 6) == 2)
3183 ? 0 : 0x04; /* WCE */
3184 mode_buf_length = sizeof(mpd);
3187 if (mode_buf_length > scsicmd->cmnd[4])
3188 mode_buf_length = scsicmd->cmnd[4];
3190 mode_buf_length = sizeof(mpd);
3191 scsi_sg_copy_from_buffer(scsicmd,
3194 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3201 int mode_buf_length = 8;
3202 aac_modep10_data mpd10;
3204 if (fsa_dev_ptr[cid].size <= 0x100000000ULL)
3205 capacity = fsa_dev_ptr[cid].size - 1;
3209 dprintk((KERN_DEBUG "MODE SENSE 10 byte command.\n"));
3210 memset((char *)&mpd10, 0, sizeof(aac_modep10_data));
3211 /* Mode data length (MSB) */
3212 mpd10.hd.data_length[0] = 0;
3213 /* Mode data length (LSB) */
3214 mpd10.hd.data_length[1] = sizeof(mpd10.hd) - 1;
3215 /* Medium type - default */
3216 mpd10.hd.med_type = 0;
3217 /* Device-specific param,
3218 bit 8: 0/1 = write enabled/protected
3219 bit 4: 0/1 = FUA enabled */
3220 mpd10.hd.dev_par = 0;
3222 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
3223 mpd10.hd.dev_par = 0x10;
3224 mpd10.hd.rsrvd[0] = 0; /* reserved */
3225 mpd10.hd.rsrvd[1] = 0; /* reserved */
3226 if (scsicmd->cmnd[1] & 0x8) {
3227 /* Block descriptor length (MSB) */
3228 mpd10.hd.bd_length[0] = 0;
3229 /* Block descriptor length (LSB) */
3230 mpd10.hd.bd_length[1] = 0;
3232 mpd10.hd.bd_length[0] = 0;
3233 mpd10.hd.bd_length[1] = sizeof(mpd10.bd);
3235 mpd10.hd.data_length[1] += mpd10.hd.bd_length[1];
3237 mpd10.bd.block_length[0] =
3238 (fsa_dev_ptr[cid].block_size >> 16) & 0xff;
3239 mpd10.bd.block_length[1] =
3240 (fsa_dev_ptr[cid].block_size >> 8) & 0xff;
3241 mpd10.bd.block_length[2] =
3242 fsa_dev_ptr[cid].block_size & 0xff;
3244 if (capacity > 0xffffff) {
3245 mpd10.bd.block_count[0] = 0xff;
3246 mpd10.bd.block_count[1] = 0xff;
3247 mpd10.bd.block_count[2] = 0xff;
3249 mpd10.bd.block_count[0] =
3250 (capacity >> 16) & 0xff;
3251 mpd10.bd.block_count[1] =
3252 (capacity >> 8) & 0xff;
3253 mpd10.bd.block_count[2] =
3257 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
3258 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
3259 mpd10.hd.data_length[1] += 3;
3260 mpd10.mpc_buf[0] = 8;
3261 mpd10.mpc_buf[1] = 1;
3262 mpd10.mpc_buf[2] = ((aac_cache & 6) == 2)
3263 ? 0 : 0x04; /* WCE */
3264 mode_buf_length = sizeof(mpd10);
3265 if (mode_buf_length > scsicmd->cmnd[8])
3266 mode_buf_length = scsicmd->cmnd[8];
3268 scsi_sg_copy_from_buffer(scsicmd,
3272 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3277 dprintk((KERN_DEBUG "REQUEST SENSE command.\n"));
3278 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
3279 sizeof(struct sense_data));
3280 memset(&dev->fsa_dev[cid].sense_data, 0,
3281 sizeof(struct sense_data));
3282 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3286 case ALLOW_MEDIUM_REMOVAL:
3287 dprintk((KERN_DEBUG "LOCK command.\n"));
3288 if (scsicmd->cmnd[4])
3289 fsa_dev_ptr[cid].locked = 1;
3291 fsa_dev_ptr[cid].locked = 0;
3293 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3297 * These commands are all No-Ops
3299 case TEST_UNIT_READY:
3300 if (fsa_dev_ptr[cid].sense_data.sense_key == NOT_READY) {
3301 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3302 SAM_STAT_CHECK_CONDITION;
3303 set_sense(&dev->fsa_dev[cid].sense_data,
3304 NOT_READY, SENCODE_BECOMING_READY,
3305 ASENCODE_BECOMING_READY, 0, 0);
3306 memcpy(scsicmd->sense_buffer,
3307 &dev->fsa_dev[cid].sense_data,
3309 sizeof(dev->fsa_dev[cid].sense_data),
3310 SCSI_SENSE_BUFFERSIZE));
3317 case REASSIGN_BLOCKS:
3319 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3324 return aac_start_stop(scsicmd);
3329 * Unhandled commands
3331 dprintk((KERN_WARNING "Unhandled SCSI Command: 0x%x.\n",
3333 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
3334 SAM_STAT_CHECK_CONDITION;
3335 set_sense(&dev->fsa_dev[cid].sense_data,
3336 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
3337 ASENCODE_INVALID_COMMAND, 0, 0);
3338 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
3340 sizeof(dev->fsa_dev[cid].sense_data),
3341 SCSI_SENSE_BUFFERSIZE));
3346 scsicmd->scsi_done(scsicmd);
3350 static int query_disk(struct aac_dev *dev, void __user *arg)
3352 struct aac_query_disk qd;
3353 struct fsa_dev_info *fsa_dev_ptr;
3355 fsa_dev_ptr = dev->fsa_dev;
3358 if (copy_from_user(&qd, arg, sizeof (struct aac_query_disk)))
3360 if (qd.cnum == -1) {
3361 if (qd.id < 0 || qd.id >= dev->maximum_num_containers)
3364 } else if ((qd.bus == -1) && (qd.id == -1) && (qd.lun == -1)) {
3365 if (qd.cnum < 0 || qd.cnum >= dev->maximum_num_containers)
3367 qd.instance = dev->scsi_host_ptr->host_no;
3369 qd.id = CONTAINER_TO_ID(qd.cnum);
3370 qd.lun = CONTAINER_TO_LUN(qd.cnum);
3372 else return -EINVAL;
3374 qd.valid = fsa_dev_ptr[qd.cnum].valid != 0;
3375 qd.locked = fsa_dev_ptr[qd.cnum].locked;
3376 qd.deleted = fsa_dev_ptr[qd.cnum].deleted;
3378 if (fsa_dev_ptr[qd.cnum].devname[0] == '\0')
3383 strlcpy(qd.name, fsa_dev_ptr[qd.cnum].devname,
3384 min(sizeof(qd.name), sizeof(fsa_dev_ptr[qd.cnum].devname) + 1));
3386 if (copy_to_user(arg, &qd, sizeof (struct aac_query_disk)))
3391 static int force_delete_disk(struct aac_dev *dev, void __user *arg)
3393 struct aac_delete_disk dd;
3394 struct fsa_dev_info *fsa_dev_ptr;
3396 fsa_dev_ptr = dev->fsa_dev;
3400 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
3403 if (dd.cnum >= dev->maximum_num_containers)
3406 * Mark this container as being deleted.
3408 fsa_dev_ptr[dd.cnum].deleted = 1;
3410 * Mark the container as no longer valid
3412 fsa_dev_ptr[dd.cnum].valid = 0;
3416 static int delete_disk(struct aac_dev *dev, void __user *arg)
3418 struct aac_delete_disk dd;
3419 struct fsa_dev_info *fsa_dev_ptr;
3421 fsa_dev_ptr = dev->fsa_dev;
3425 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
3428 if (dd.cnum >= dev->maximum_num_containers)
3431 * If the container is locked, it can not be deleted by the API.
3433 if (fsa_dev_ptr[dd.cnum].locked)
3437 * Mark the container as no longer being valid.
3439 fsa_dev_ptr[dd.cnum].valid = 0;
3440 fsa_dev_ptr[dd.cnum].devname[0] = '\0';
3445 int aac_dev_ioctl(struct aac_dev *dev, unsigned int cmd, void __user *arg)
3448 case FSACTL_QUERY_DISK:
3449 return query_disk(dev, arg);
3450 case FSACTL_DELETE_DISK:
3451 return delete_disk(dev, arg);
3452 case FSACTL_FORCE_DELETE_DISK:
3453 return force_delete_disk(dev, arg);
3454 case FSACTL_GET_CONTAINERS:
3455 return aac_get_containers(dev);
3464 * @context: the context set in the fib - here it is scsi cmd
3465 * @fibptr: pointer to the fib
3467 * Handles the completion of a scsi command to a non dasd device
3471 static void aac_srb_callback(void *context, struct fib * fibptr)
3473 struct aac_srb_reply *srbreply;
3474 struct scsi_cmnd *scsicmd;
3476 scsicmd = (struct scsi_cmnd *) context;
3478 if (!aac_valid_context(scsicmd, fibptr))
3481 BUG_ON(fibptr == NULL);
3483 srbreply = (struct aac_srb_reply *) fib_data(fibptr);
3485 scsicmd->sense_buffer[0] = '\0'; /* Initialize sense valid flag to false */
3487 if (fibptr->flags & FIB_CONTEXT_FLAG_FASTRESP) {
3489 srbreply->srb_status = cpu_to_le32(SRB_STATUS_SUCCESS);
3490 srbreply->scsi_status = cpu_to_le32(SAM_STAT_GOOD);
3493 * Calculate resid for sg
3495 scsi_set_resid(scsicmd, scsi_bufflen(scsicmd)
3496 - le32_to_cpu(srbreply->data_xfer_length));
3500 scsi_dma_unmap(scsicmd);
3502 /* expose physical device if expose_physicald flag is on */
3503 if (scsicmd->cmnd[0] == INQUIRY && !(scsicmd->cmnd[1] & 0x01)
3504 && expose_physicals > 0)
3505 aac_expose_phy_device(scsicmd);
3508 * First check the fib status
3511 if (le32_to_cpu(srbreply->status) != ST_OK) {
3514 pr_warn("aac_srb_callback: srb failed, status = %d\n",
3515 le32_to_cpu(srbreply->status));
3516 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
3517 SCSI_SENSE_BUFFERSIZE);
3518 scsicmd->result = DID_ERROR << 16
3519 | COMMAND_COMPLETE << 8
3520 | SAM_STAT_CHECK_CONDITION;
3521 memcpy(scsicmd->sense_buffer,
3522 srbreply->sense_data, len);
3526 * Next check the srb status
3528 switch ((le32_to_cpu(srbreply->srb_status))&0x3f) {
3529 case SRB_STATUS_ERROR_RECOVERY:
3530 case SRB_STATUS_PENDING:
3531 case SRB_STATUS_SUCCESS:
3532 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
3534 case SRB_STATUS_DATA_OVERRUN:
3535 switch (scsicmd->cmnd[0]) {
3544 if (le32_to_cpu(srbreply->data_xfer_length)
3545 < scsicmd->underflow)
3546 pr_warn("aacraid: SCSI CMD underflow\n");
3548 pr_warn("aacraid: SCSI CMD Data Overrun\n");
3549 scsicmd->result = DID_ERROR << 16
3550 | COMMAND_COMPLETE << 8;
3553 scsicmd->result = DID_OK << 16
3554 | COMMAND_COMPLETE << 8;
3557 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
3561 case SRB_STATUS_ABORTED:
3562 scsicmd->result = DID_ABORT << 16 | ABORT << 8;
3564 case SRB_STATUS_ABORT_FAILED:
3566 * Not sure about this one - but assuming the
3567 * hba was trying to abort for some reason
3569 scsicmd->result = DID_ERROR << 16 | ABORT << 8;
3571 case SRB_STATUS_PARITY_ERROR:
3572 scsicmd->result = DID_PARITY << 16
3573 | MSG_PARITY_ERROR << 8;
3575 case SRB_STATUS_NO_DEVICE:
3576 case SRB_STATUS_INVALID_PATH_ID:
3577 case SRB_STATUS_INVALID_TARGET_ID:
3578 case SRB_STATUS_INVALID_LUN:
3579 case SRB_STATUS_SELECTION_TIMEOUT:
3580 scsicmd->result = DID_NO_CONNECT << 16
3581 | COMMAND_COMPLETE << 8;
3584 case SRB_STATUS_COMMAND_TIMEOUT:
3585 case SRB_STATUS_TIMEOUT:
3586 scsicmd->result = DID_TIME_OUT << 16
3587 | COMMAND_COMPLETE << 8;
3590 case SRB_STATUS_BUSY:
3591 scsicmd->result = DID_BUS_BUSY << 16
3592 | COMMAND_COMPLETE << 8;
3595 case SRB_STATUS_BUS_RESET:
3596 scsicmd->result = DID_RESET << 16
3597 | COMMAND_COMPLETE << 8;
3600 case SRB_STATUS_MESSAGE_REJECTED:
3601 scsicmd->result = DID_ERROR << 16
3602 | MESSAGE_REJECT << 8;
3604 case SRB_STATUS_REQUEST_FLUSHED:
3605 case SRB_STATUS_ERROR:
3606 case SRB_STATUS_INVALID_REQUEST:
3607 case SRB_STATUS_REQUEST_SENSE_FAILED:
3608 case SRB_STATUS_NO_HBA:
3609 case SRB_STATUS_UNEXPECTED_BUS_FREE:
3610 case SRB_STATUS_PHASE_SEQUENCE_FAILURE:
3611 case SRB_STATUS_BAD_SRB_BLOCK_LENGTH:
3612 case SRB_STATUS_DELAYED_RETRY:
3613 case SRB_STATUS_BAD_FUNCTION:
3614 case SRB_STATUS_NOT_STARTED:
3615 case SRB_STATUS_NOT_IN_USE:
3616 case SRB_STATUS_FORCE_ABORT:
3617 case SRB_STATUS_DOMAIN_VALIDATION_FAIL:
3619 #ifdef AAC_DETAILED_STATUS_INFO
3620 pr_info("aacraid: SRB ERROR(%u) %s scsi cmd 0x%x -scsi status 0x%x\n",
3621 le32_to_cpu(srbreply->srb_status) & 0x3F,
3622 aac_get_status_string(
3623 le32_to_cpu(srbreply->srb_status) & 0x3F),
3625 le32_to_cpu(srbreply->scsi_status));
3628 * When the CC bit is SET by the host in ATA pass thru CDB,
3629 * driver is supposed to return DID_OK
3631 * When the CC bit is RESET by the host, driver should
3634 if ((scsicmd->cmnd[0] == ATA_12)
3635 || (scsicmd->cmnd[0] == ATA_16)) {
3637 if (scsicmd->cmnd[2] & (0x01 << 5)) {
3638 scsicmd->result = DID_OK << 16
3639 | COMMAND_COMPLETE << 8;
3642 scsicmd->result = DID_ERROR << 16
3643 | COMMAND_COMPLETE << 8;
3647 scsicmd->result = DID_ERROR << 16
3648 | COMMAND_COMPLETE << 8;
3652 if (le32_to_cpu(srbreply->scsi_status)
3653 == SAM_STAT_CHECK_CONDITION) {
3656 scsicmd->result |= SAM_STAT_CHECK_CONDITION;
3657 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
3658 SCSI_SENSE_BUFFERSIZE);
3659 #ifdef AAC_DETAILED_STATUS_INFO
3660 pr_warn("aac_srb_callback: check condition, status = %d len=%d\n",
3661 le32_to_cpu(srbreply->status), len);
3663 memcpy(scsicmd->sense_buffer,
3664 srbreply->sense_data, len);
3668 * OR in the scsi status (already shifted up a bit)
3670 scsicmd->result |= le32_to_cpu(srbreply->scsi_status);
3672 aac_fib_complete(fibptr);
3673 scsicmd->scsi_done(scsicmd);
3676 static void hba_resp_task_complete(struct aac_dev *dev,
3677 struct scsi_cmnd *scsicmd,
3678 struct aac_hba_resp *err) {
3680 scsicmd->result = err->status;
3681 /* set residual count */
3682 scsi_set_resid(scsicmd, le32_to_cpu(err->residual_count));
3684 switch (err->status) {
3686 scsicmd->result |= DID_OK << 16 | COMMAND_COMPLETE << 8;
3688 case SAM_STAT_CHECK_CONDITION:
3692 len = min_t(u8, err->sense_response_data_len,
3693 SCSI_SENSE_BUFFERSIZE);
3695 memcpy(scsicmd->sense_buffer,
3696 err->sense_response_buf, len);
3697 scsicmd->result |= DID_OK << 16 | COMMAND_COMPLETE << 8;
3701 scsicmd->result |= DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8;
3703 case SAM_STAT_TASK_ABORTED:
3704 scsicmd->result |= DID_ABORT << 16 | ABORT << 8;
3706 case SAM_STAT_RESERVATION_CONFLICT:
3707 case SAM_STAT_TASK_SET_FULL:
3709 scsicmd->result |= DID_ERROR << 16 | COMMAND_COMPLETE << 8;
3714 static void hba_resp_task_failure(struct aac_dev *dev,
3715 struct scsi_cmnd *scsicmd,
3716 struct aac_hba_resp *err)
3718 switch (err->status) {
3719 case HBA_RESP_STAT_HBAMODE_DISABLED:
3723 bus = aac_logical_to_phys(scmd_channel(scsicmd));
3724 cid = scmd_id(scsicmd);
3725 if (dev->hba_map[bus][cid].devtype == AAC_DEVTYPE_NATIVE_RAW) {
3726 dev->hba_map[bus][cid].devtype = AAC_DEVTYPE_ARC_RAW;
3727 dev->hba_map[bus][cid].rmw_nexus = 0xffffffff;
3729 scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
3732 case HBA_RESP_STAT_IO_ERROR:
3733 case HBA_RESP_STAT_NO_PATH_TO_DEVICE:
3734 scsicmd->result = DID_OK << 16 |
3735 COMMAND_COMPLETE << 8 | SAM_STAT_BUSY;
3737 case HBA_RESP_STAT_IO_ABORTED:
3738 scsicmd->result = DID_ABORT << 16 | ABORT << 8;
3740 case HBA_RESP_STAT_INVALID_DEVICE:
3741 scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
3743 case HBA_RESP_STAT_UNDERRUN:
3744 /* UNDERRUN is OK */
3745 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
3747 case HBA_RESP_STAT_OVERRUN:
3749 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
3757 * @context: the context set in the fib - here it is scsi cmd
3758 * @fibptr: pointer to the fib
3760 * Handles the completion of a native HBA scsi command
3763 void aac_hba_callback(void *context, struct fib *fibptr)
3765 struct aac_dev *dev;
3766 struct scsi_cmnd *scsicmd;
3768 struct aac_hba_resp *err =
3769 &((struct aac_native_hba *)fibptr->hw_fib_va)->resp.err;
3771 scsicmd = (struct scsi_cmnd *) context;
3773 if (!aac_valid_context(scsicmd, fibptr))
3776 WARN_ON(fibptr == NULL);
3779 if (!(fibptr->flags & FIB_CONTEXT_FLAG_NATIVE_HBA_TMF))
3780 scsi_dma_unmap(scsicmd);
3782 if (fibptr->flags & FIB_CONTEXT_FLAG_FASTRESP) {
3784 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
3788 switch (err->service_response) {
3789 case HBA_RESP_SVCRES_TASK_COMPLETE:
3790 hba_resp_task_complete(dev, scsicmd, err);
3792 case HBA_RESP_SVCRES_FAILURE:
3793 hba_resp_task_failure(dev, scsicmd, err);
3795 case HBA_RESP_SVCRES_TMF_REJECTED:
3796 scsicmd->result = DID_ERROR << 16 | MESSAGE_REJECT << 8;
3798 case HBA_RESP_SVCRES_TMF_LUN_INVALID:
3799 scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
3801 case HBA_RESP_SVCRES_TMF_COMPLETE:
3802 case HBA_RESP_SVCRES_TMF_SUCCEEDED:
3803 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
3806 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
3811 aac_fib_complete(fibptr);
3813 if (fibptr->flags & FIB_CONTEXT_FLAG_NATIVE_HBA_TMF)
3814 scsicmd->SCp.sent_command = 1;
3816 scsicmd->scsi_done(scsicmd);
3822 * @scsicmd: the scsi command block
3824 * This routine will form a FIB and fill in the aac_srb from the
3825 * scsicmd passed in.
3828 static int aac_send_srb_fib(struct scsi_cmnd* scsicmd)
3830 struct fib* cmd_fibcontext;
3831 struct aac_dev* dev;
3834 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
3835 if (scmd_id(scsicmd) >= dev->maximum_num_physicals ||
3836 scsicmd->device->lun > 7) {
3837 scsicmd->result = DID_NO_CONNECT << 16;
3838 scsicmd->scsi_done(scsicmd);
3843 * Allocate and initialize a Fib then setup a BlockWrite command
3845 cmd_fibcontext = aac_fib_alloc_tag(dev, scsicmd);
3846 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
3847 status = aac_adapter_scsi(cmd_fibcontext, scsicmd);
3850 * Check that the command queued to the controller
3852 if (status == -EINPROGRESS)
3855 printk(KERN_WARNING "aac_srb: aac_fib_send failed with status: %d\n", status);
3856 aac_fib_complete(cmd_fibcontext);
3857 aac_fib_free(cmd_fibcontext);
3865 * @scsicmd: the scsi command block
3867 * This routine will form a FIB and fill in the aac_hba_cmd_req from the
3868 * scsicmd passed in.
3870 static int aac_send_hba_fib(struct scsi_cmnd *scsicmd)
3872 struct fib *cmd_fibcontext;
3873 struct aac_dev *dev;
3876 dev = shost_priv(scsicmd->device->host);
3877 if (scmd_id(scsicmd) >= dev->maximum_num_physicals ||
3878 scsicmd->device->lun > AAC_MAX_LUN - 1) {
3879 scsicmd->result = DID_NO_CONNECT << 16;
3880 scsicmd->scsi_done(scsicmd);
3885 * Allocate and initialize a Fib then setup a BlockWrite command
3887 cmd_fibcontext = aac_fib_alloc_tag(dev, scsicmd);
3888 if (!cmd_fibcontext)
3891 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
3892 status = aac_adapter_hba(cmd_fibcontext, scsicmd);
3895 * Check that the command queued to the controller
3897 if (status == -EINPROGRESS)
3900 pr_warn("aac_hba_cmd_req: aac_fib_send failed with status: %d\n",
3902 aac_fib_complete(cmd_fibcontext);
3903 aac_fib_free(cmd_fibcontext);
3909 static long aac_build_sg(struct scsi_cmnd *scsicmd, struct sgmap *psg)
3911 unsigned long byte_count = 0;
3913 struct scatterlist *sg;
3916 // Get rid of old data
3918 psg->sg[0].addr = 0;
3919 psg->sg[0].count = 0;
3921 nseg = scsi_dma_map(scsicmd);
3925 psg->count = cpu_to_le32(nseg);
3927 scsi_for_each_sg(scsicmd, sg, nseg, i) {
3928 psg->sg[i].addr = cpu_to_le32(sg_dma_address(sg));
3929 psg->sg[i].count = cpu_to_le32(sg_dma_len(sg));
3930 byte_count += sg_dma_len(sg);
3932 /* hba wants the size to be exact */
3933 if (byte_count > scsi_bufflen(scsicmd)) {
3934 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
3935 (byte_count - scsi_bufflen(scsicmd));
3936 psg->sg[i-1].count = cpu_to_le32(temp);
3937 byte_count = scsi_bufflen(scsicmd);
3939 /* Check for command underflow */
3940 if (scsicmd->underflow && (byte_count < scsicmd->underflow)) {
3941 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
3942 byte_count, scsicmd->underflow);
3949 static long aac_build_sg64(struct scsi_cmnd *scsicmd, struct sgmap64 *psg)
3951 unsigned long byte_count = 0;
3954 struct scatterlist *sg;
3957 // Get rid of old data
3959 psg->sg[0].addr[0] = 0;
3960 psg->sg[0].addr[1] = 0;
3961 psg->sg[0].count = 0;
3963 nseg = scsi_dma_map(scsicmd);
3967 scsi_for_each_sg(scsicmd, sg, nseg, i) {
3968 int count = sg_dma_len(sg);
3969 addr = sg_dma_address(sg);
3970 psg->sg[i].addr[0] = cpu_to_le32(addr & 0xffffffff);
3971 psg->sg[i].addr[1] = cpu_to_le32(addr>>32);
3972 psg->sg[i].count = cpu_to_le32(count);
3973 byte_count += count;
3975 psg->count = cpu_to_le32(nseg);
3976 /* hba wants the size to be exact */
3977 if (byte_count > scsi_bufflen(scsicmd)) {
3978 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
3979 (byte_count - scsi_bufflen(scsicmd));
3980 psg->sg[i-1].count = cpu_to_le32(temp);
3981 byte_count = scsi_bufflen(scsicmd);
3983 /* Check for command underflow */
3984 if (scsicmd->underflow && (byte_count < scsicmd->underflow)) {
3985 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
3986 byte_count, scsicmd->underflow);
3992 static long aac_build_sgraw(struct scsi_cmnd *scsicmd, struct sgmapraw *psg)
3994 unsigned long byte_count = 0;
3996 struct scatterlist *sg;
3999 // Get rid of old data
4001 psg->sg[0].next = 0;
4002 psg->sg[0].prev = 0;
4003 psg->sg[0].addr[0] = 0;
4004 psg->sg[0].addr[1] = 0;
4005 psg->sg[0].count = 0;
4006 psg->sg[0].flags = 0;
4008 nseg = scsi_dma_map(scsicmd);
4012 scsi_for_each_sg(scsicmd, sg, nseg, i) {
4013 int count = sg_dma_len(sg);
4014 u64 addr = sg_dma_address(sg);
4015 psg->sg[i].next = 0;
4016 psg->sg[i].prev = 0;
4017 psg->sg[i].addr[1] = cpu_to_le32((u32)(addr>>32));
4018 psg->sg[i].addr[0] = cpu_to_le32((u32)(addr & 0xffffffff));
4019 psg->sg[i].count = cpu_to_le32(count);
4020 psg->sg[i].flags = 0;
4021 byte_count += count;
4023 psg->count = cpu_to_le32(nseg);
4024 /* hba wants the size to be exact */
4025 if (byte_count > scsi_bufflen(scsicmd)) {
4026 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
4027 (byte_count - scsi_bufflen(scsicmd));
4028 psg->sg[i-1].count = cpu_to_le32(temp);
4029 byte_count = scsi_bufflen(scsicmd);
4031 /* Check for command underflow */
4032 if (scsicmd->underflow && (byte_count < scsicmd->underflow)) {
4033 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
4034 byte_count, scsicmd->underflow);
4040 static long aac_build_sgraw2(struct scsi_cmnd *scsicmd,
4041 struct aac_raw_io2 *rio2, int sg_max)
4043 unsigned long byte_count = 0;
4045 struct scatterlist *sg;
4046 int i, conformable = 0;
4047 u32 min_size = PAGE_SIZE, cur_size;
4049 nseg = scsi_dma_map(scsicmd);
4053 scsi_for_each_sg(scsicmd, sg, nseg, i) {
4054 int count = sg_dma_len(sg);
4055 u64 addr = sg_dma_address(sg);
4057 BUG_ON(i >= sg_max);
4058 rio2->sge[i].addrHigh = cpu_to_le32((u32)(addr>>32));
4059 rio2->sge[i].addrLow = cpu_to_le32((u32)(addr & 0xffffffff));
4060 cur_size = cpu_to_le32(count);
4061 rio2->sge[i].length = cur_size;
4062 rio2->sge[i].flags = 0;
4065 rio2->sgeFirstSize = cur_size;
4066 } else if (i == 1) {
4067 rio2->sgeNominalSize = cur_size;
4068 min_size = cur_size;
4069 } else if ((i+1) < nseg && cur_size != rio2->sgeNominalSize) {
4071 if (cur_size < min_size)
4072 min_size = cur_size;
4074 byte_count += count;
4077 /* hba wants the size to be exact */
4078 if (byte_count > scsi_bufflen(scsicmd)) {
4079 u32 temp = le32_to_cpu(rio2->sge[i-1].length) -
4080 (byte_count - scsi_bufflen(scsicmd));
4081 rio2->sge[i-1].length = cpu_to_le32(temp);
4082 byte_count = scsi_bufflen(scsicmd);
4085 rio2->sgeCnt = cpu_to_le32(nseg);
4086 rio2->flags |= cpu_to_le16(RIO2_SG_FORMAT_IEEE1212);
4087 /* not conformable: evaluate required sg elements */
4089 int j, nseg_new = nseg, err_found;
4090 for (i = min_size / PAGE_SIZE; i >= 1; --i) {
4093 for (j = 1; j < nseg - 1; ++j) {
4094 if (rio2->sge[j].length % (i*PAGE_SIZE)) {
4098 nseg_new += (rio2->sge[j].length / (i*PAGE_SIZE));
4103 if (i > 0 && nseg_new <= sg_max) {
4104 int ret = aac_convert_sgraw2(rio2, i, nseg, nseg_new);
4110 rio2->flags |= cpu_to_le16(RIO2_SGL_CONFORMANT);
4112 /* Check for command underflow */
4113 if (scsicmd->underflow && (byte_count < scsicmd->underflow)) {
4114 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
4115 byte_count, scsicmd->underflow);
4121 static int aac_convert_sgraw2(struct aac_raw_io2 *rio2, int pages, int nseg, int nseg_new)
4123 struct sge_ieee1212 *sge;
4127 if (aac_convert_sgl == 0)
4130 sge = kmalloc_array(nseg_new, sizeof(struct sge_ieee1212), GFP_ATOMIC);
4134 for (i = 1, pos = 1; i < nseg-1; ++i) {
4135 for (j = 0; j < rio2->sge[i].length / (pages * PAGE_SIZE); ++j) {
4136 addr_low = rio2->sge[i].addrLow + j * pages * PAGE_SIZE;
4137 sge[pos].addrLow = addr_low;
4138 sge[pos].addrHigh = rio2->sge[i].addrHigh;
4139 if (addr_low < rio2->sge[i].addrLow)
4140 sge[pos].addrHigh++;
4141 sge[pos].length = pages * PAGE_SIZE;
4146 sge[pos] = rio2->sge[nseg-1];
4147 memcpy(&rio2->sge[1], &sge[1], (nseg_new-1)*sizeof(struct sge_ieee1212));
4150 rio2->sgeCnt = cpu_to_le32(nseg_new);
4151 rio2->flags |= cpu_to_le16(RIO2_SGL_CONFORMANT);
4152 rio2->sgeNominalSize = pages * PAGE_SIZE;
4156 static long aac_build_sghba(struct scsi_cmnd *scsicmd,
4157 struct aac_hba_cmd_req *hbacmd,
4161 unsigned long byte_count = 0;
4163 struct scatterlist *sg;
4166 struct aac_hba_sgl *sge;
4168 nseg = scsi_dma_map(scsicmd);
4174 if (nseg > HBA_MAX_SG_EMBEDDED)
4175 sge = &hbacmd->sge[2];
4177 sge = &hbacmd->sge[0];
4179 scsi_for_each_sg(scsicmd, sg, nseg, i) {
4180 int count = sg_dma_len(sg);
4181 u64 addr = sg_dma_address(sg);
4183 WARN_ON(i >= sg_max);
4184 sge->addr_hi = cpu_to_le32((u32)(addr>>32));
4185 sge->addr_lo = cpu_to_le32((u32)(addr & 0xffffffff));
4186 cur_size = cpu_to_le32(count);
4187 sge->len = cur_size;
4189 byte_count += count;
4194 /* hba wants the size to be exact */
4195 if (byte_count > scsi_bufflen(scsicmd)) {
4198 temp = le32_to_cpu(sge->len) - byte_count
4199 - scsi_bufflen(scsicmd);
4200 sge->len = cpu_to_le32(temp);
4201 byte_count = scsi_bufflen(scsicmd);
4204 if (nseg <= HBA_MAX_SG_EMBEDDED) {
4205 hbacmd->emb_data_desc_count = cpu_to_le32(nseg);
4206 sge->flags = cpu_to_le32(0x40000000);
4209 hbacmd->sge[0].flags = cpu_to_le32(0x80000000);
4210 hbacmd->emb_data_desc_count = (u8)cpu_to_le32(1);
4211 hbacmd->sge[0].addr_hi = (u32)cpu_to_le32(sg_address >> 32);
4212 hbacmd->sge[0].addr_lo =
4213 cpu_to_le32((u32)(sg_address & 0xffffffff));
4216 /* Check for command underflow */
4217 if (scsicmd->underflow && (byte_count < scsicmd->underflow)) {
4218 pr_warn("aacraid: cmd len %08lX cmd underflow %08X\n",
4219 byte_count, scsicmd->underflow);
4225 #ifdef AAC_DETAILED_STATUS_INFO
4227 struct aac_srb_status_info {
4233 static struct aac_srb_status_info srb_status_info[] = {
4234 { SRB_STATUS_PENDING, "Pending Status"},
4235 { SRB_STATUS_SUCCESS, "Success"},
4236 { SRB_STATUS_ABORTED, "Aborted Command"},
4237 { SRB_STATUS_ABORT_FAILED, "Abort Failed"},
4238 { SRB_STATUS_ERROR, "Error Event"},
4239 { SRB_STATUS_BUSY, "Device Busy"},
4240 { SRB_STATUS_INVALID_REQUEST, "Invalid Request"},
4241 { SRB_STATUS_INVALID_PATH_ID, "Invalid Path ID"},
4242 { SRB_STATUS_NO_DEVICE, "No Device"},
4243 { SRB_STATUS_TIMEOUT, "Timeout"},
4244 { SRB_STATUS_SELECTION_TIMEOUT, "Selection Timeout"},
4245 { SRB_STATUS_COMMAND_TIMEOUT, "Command Timeout"},
4246 { SRB_STATUS_MESSAGE_REJECTED, "Message Rejected"},
4247 { SRB_STATUS_BUS_RESET, "Bus Reset"},
4248 { SRB_STATUS_PARITY_ERROR, "Parity Error"},
4249 { SRB_STATUS_REQUEST_SENSE_FAILED,"Request Sense Failed"},
4250 { SRB_STATUS_NO_HBA, "No HBA"},
4251 { SRB_STATUS_DATA_OVERRUN, "Data Overrun/Data Underrun"},
4252 { SRB_STATUS_UNEXPECTED_BUS_FREE,"Unexpected Bus Free"},
4253 { SRB_STATUS_PHASE_SEQUENCE_FAILURE,"Phase Error"},
4254 { SRB_STATUS_BAD_SRB_BLOCK_LENGTH,"Bad Srb Block Length"},
4255 { SRB_STATUS_REQUEST_FLUSHED, "Request Flushed"},
4256 { SRB_STATUS_DELAYED_RETRY, "Delayed Retry"},
4257 { SRB_STATUS_INVALID_LUN, "Invalid LUN"},
4258 { SRB_STATUS_INVALID_TARGET_ID, "Invalid TARGET ID"},
4259 { SRB_STATUS_BAD_FUNCTION, "Bad Function"},
4260 { SRB_STATUS_ERROR_RECOVERY, "Error Recovery"},
4261 { SRB_STATUS_NOT_STARTED, "Not Started"},
4262 { SRB_STATUS_NOT_IN_USE, "Not In Use"},
4263 { SRB_STATUS_FORCE_ABORT, "Force Abort"},
4264 { SRB_STATUS_DOMAIN_VALIDATION_FAIL,"Domain Validation Failure"},
4265 { 0xff, "Unknown Error"}
4268 char *aac_get_status_string(u32 status)
4272 for (i = 0; i < ARRAY_SIZE(srb_status_info); i++)
4273 if (srb_status_info[i].status == status)
4274 return srb_status_info[i].str;
4276 return "Bad Status Code";