blob: f8d2ae301283fd8bbba71be75a3ea41c0d5c20b3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
4 *
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
7 *
Mark Haverkamp03d44332007-03-15 10:27:45 -07008 * Copyright (c) 2000-2007 Adaptec, Inc. (aacraid@adaptec.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; see the file COPYING. If not, write to
22 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 */
25
26#include <linux/kernel.h>
27#include <linux/init.h>
28#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/pci.h>
30#include <linux/spinlock.h>
31#include <linux/slab.h>
32#include <linux/completion.h>
33#include <linux/blkdev.h>
34#include <asm/semaphore.h>
35#include <asm/uaccess.h>
Salyzyn, Mark3a0086a2008-01-11 11:46:44 -080036#include <linux/highmem.h> /* For flush_kernel_dcache_page */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <scsi/scsi.h>
39#include <scsi/scsi_cmnd.h>
40#include <scsi/scsi_device.h>
41#include <scsi/scsi_host.h>
42
43#include "aacraid.h"
44
45/* values for inqd_pdt: Peripheral device type in plain English */
46#define INQD_PDT_DA 0x00 /* Direct-access (DISK) device */
47#define INQD_PDT_PROC 0x03 /* Processor device */
48#define INQD_PDT_CHNGR 0x08 /* Changer (jukebox, scsi2) */
49#define INQD_PDT_COMM 0x09 /* Communication device (scsi2) */
50#define INQD_PDT_NOLUN2 0x1f /* Unknown Device (scsi2) */
51#define INQD_PDT_NOLUN 0x7f /* Logical Unit Not Present */
52
53#define INQD_PDT_DMASK 0x1F /* Peripheral Device Type Mask */
54#define INQD_PDT_QMASK 0xE0 /* Peripheral Device Qualifer Mask */
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * Sense codes
58 */
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -080059
60#define SENCODE_NO_SENSE 0x00
61#define SENCODE_END_OF_DATA 0x00
62#define SENCODE_BECOMING_READY 0x04
63#define SENCODE_INIT_CMD_REQUIRED 0x04
64#define SENCODE_PARAM_LIST_LENGTH_ERROR 0x1A
65#define SENCODE_INVALID_COMMAND 0x20
66#define SENCODE_LBA_OUT_OF_RANGE 0x21
67#define SENCODE_INVALID_CDB_FIELD 0x24
68#define SENCODE_LUN_NOT_SUPPORTED 0x25
69#define SENCODE_INVALID_PARAM_FIELD 0x26
70#define SENCODE_PARAM_NOT_SUPPORTED 0x26
71#define SENCODE_PARAM_VALUE_INVALID 0x26
72#define SENCODE_RESET_OCCURRED 0x29
73#define SENCODE_LUN_NOT_SELF_CONFIGURED_YET 0x3E
74#define SENCODE_INQUIRY_DATA_CHANGED 0x3F
75#define SENCODE_SAVING_PARAMS_NOT_SUPPORTED 0x39
76#define SENCODE_DIAGNOSTIC_FAILURE 0x40
77#define SENCODE_INTERNAL_TARGET_FAILURE 0x44
78#define SENCODE_INVALID_MESSAGE_ERROR 0x49
79#define SENCODE_LUN_FAILED_SELF_CONFIG 0x4c
80#define SENCODE_OVERLAPPED_COMMAND 0x4E
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
83 * Additional sense codes
84 */
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -080085
86#define ASENCODE_NO_SENSE 0x00
87#define ASENCODE_END_OF_DATA 0x05
88#define ASENCODE_BECOMING_READY 0x01
89#define ASENCODE_INIT_CMD_REQUIRED 0x02
90#define ASENCODE_PARAM_LIST_LENGTH_ERROR 0x00
91#define ASENCODE_INVALID_COMMAND 0x00
92#define ASENCODE_LBA_OUT_OF_RANGE 0x00
93#define ASENCODE_INVALID_CDB_FIELD 0x00
94#define ASENCODE_LUN_NOT_SUPPORTED 0x00
95#define ASENCODE_INVALID_PARAM_FIELD 0x00
96#define ASENCODE_PARAM_NOT_SUPPORTED 0x01
97#define ASENCODE_PARAM_VALUE_INVALID 0x02
98#define ASENCODE_RESET_OCCURRED 0x00
99#define ASENCODE_LUN_NOT_SELF_CONFIGURED_YET 0x00
100#define ASENCODE_INQUIRY_DATA_CHANGED 0x03
101#define ASENCODE_SAVING_PARAMS_NOT_SUPPORTED 0x00
102#define ASENCODE_DIAGNOSTIC_FAILURE 0x80
103#define ASENCODE_INTERNAL_TARGET_FAILURE 0x00
104#define ASENCODE_INVALID_MESSAGE_ERROR 0x00
105#define ASENCODE_LUN_FAILED_SELF_CONFIG 0x00
106#define ASENCODE_OVERLAPPED_COMMAND 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108#define BYTE0(x) (unsigned char)(x)
109#define BYTE1(x) (unsigned char)((x) >> 8)
110#define BYTE2(x) (unsigned char)((x) >> 16)
111#define BYTE3(x) (unsigned char)((x) >> 24)
112
113/*------------------------------------------------------------------------------
114 * S T R U C T S / T Y P E D E F S
115 *----------------------------------------------------------------------------*/
116/* SCSI inquiry data */
117struct inquiry_data {
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800118 u8 inqd_pdt; /* Peripheral qualifier | Peripheral Device Type */
119 u8 inqd_dtq; /* RMB | Device Type Qualifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 u8 inqd_ver; /* ISO version | ECMA version | ANSI-approved version */
121 u8 inqd_rdf; /* AENC | TrmIOP | Response data format */
122 u8 inqd_len; /* Additional length (n-4) */
123 u8 inqd_pad1[2];/* Reserved - must be zero */
124 u8 inqd_pad2; /* RelAdr | WBus32 | WBus16 | Sync | Linked |Reserved| CmdQue | SftRe */
125 u8 inqd_vid[8]; /* Vendor ID */
126 u8 inqd_pid[16];/* Product ID */
127 u8 inqd_prl[4]; /* Product Revision Level */
128};
129
130/*
131 * M O D U L E G L O B A L S
132 */
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static unsigned long aac_build_sg(struct scsi_cmnd* scsicmd, struct sgmap* sgmap);
135static unsigned long aac_build_sg64(struct scsi_cmnd* scsicmd, struct sgmap64* psg);
Mark Haverkamp0e68c002005-08-03 15:39:49 -0700136static unsigned long aac_build_sgraw(struct scsi_cmnd* scsicmd, struct sgmapraw* psg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static int aac_send_srb_fib(struct scsi_cmnd* scsicmd);
138#ifdef AAC_DETAILED_STATUS_INFO
139static char *aac_get_status_string(u32 status);
140#endif
141
142/*
143 * Non dasd selection is handled entirely in aachba now
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800144 */
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int nondasd = -1;
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800147static int aac_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static int dacmode = -1;
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800149int aac_msi;
Salyzyn, Mark1208bab2007-05-22 09:32:29 -0400150int aac_commit = -1;
Mark Haverkamp404d9a92006-05-10 09:12:48 -0700151int startup_timeout = 180;
152int aif_timeout = 120;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Mark Haverkamp9a72f972006-03-27 09:44:37 -0800154module_param(nondasd, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800155MODULE_PARM_DESC(nondasd, "Control scanning of hba for nondasd devices."
156 " 0=off, 1=on");
Salyzyn, Mark95e852e2008-01-08 12:01:07 -0800157module_param_named(cache, aac_cache, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800158MODULE_PARM_DESC(cache, "Disable Queue Flush commands:\n"
159 "\tbit 0 - Disable FUA in WRITE SCSI commands\n"
160 "\tbit 1 - Disable SYNCHRONIZE_CACHE SCSI command\n"
161 "\tbit 2 - Disable only if Battery not protecting Cache");
Mark Haverkamp9a72f972006-03-27 09:44:37 -0800162module_param(dacmode, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800163MODULE_PARM_DESC(dacmode, "Control whether dma addressing is using 64 bit DAC."
164 " 0=off, 1=on");
Salyzyn, Mark1208bab2007-05-22 09:32:29 -0400165module_param_named(commit, aac_commit, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800166MODULE_PARM_DESC(commit, "Control whether a COMMIT_CONFIG is issued to the"
167 " adapter for foreign arrays.\n"
168 "This is typically needed in systems that do not have a BIOS."
169 " 0=off, 1=on");
170module_param_named(msi, aac_msi, int, S_IRUGO|S_IWUSR);
171MODULE_PARM_DESC(msi, "IRQ handling."
172 " 0=PIC(default), 1=MSI, 2=MSI-X(unsupported, uses MSI)");
Mark Haverkamp404d9a92006-05-10 09:12:48 -0700173module_param(startup_timeout, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800174MODULE_PARM_DESC(startup_timeout, "The duration of time in seconds to wait for"
175 " adapter to have it's kernel up and\n"
176 "running. This is typically adjusted for large systems that do not"
177 " have a BIOS.");
Mark Haverkamp404d9a92006-05-10 09:12:48 -0700178module_param(aif_timeout, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800179MODULE_PARM_DESC(aif_timeout, "The duration of time in seconds to wait for"
180 " applications to pick up AIFs before\n"
181 "deregistering them. This is typically adjusted for heavily burdened"
182 " systems.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700184int numacb = -1;
185module_param(numacb, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800186MODULE_PARM_DESC(numacb, "Request a limit to the number of adapter control"
187 " blocks (FIB) allocated. Valid values are 512 and down. Default is"
188 " to use suggestion from Firmware.");
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700189
190int acbsize = -1;
191module_param(acbsize, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800192MODULE_PARM_DESC(acbsize, "Request a specific adapter control block (FIB)"
193 " size. Valid values are 512, 2048, 4096 and 8192. Default is to use"
194 " suggestion from Firmware.");
Mark Haverkamp653ba582006-09-19 08:59:43 -0700195
Salyzyn, Mark29c97682007-06-12 09:33:54 -0400196int update_interval = 30 * 60;
197module_param(update_interval, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800198MODULE_PARM_DESC(update_interval, "Interval in seconds between time sync"
199 " updates issued to adapter.");
Salyzyn, Mark29c97682007-06-12 09:33:54 -0400200
201int check_interval = 24 * 60 * 60;
202module_param(check_interval, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800203MODULE_PARM_DESC(check_interval, "Interval in seconds between adapter health"
204 " checks.");
Salyzyn, Mark29c97682007-06-12 09:33:54 -0400205
Andrew Morton87f3bda2007-08-10 14:50:30 -0700206int aac_check_reset = 1;
207module_param_named(check_reset, aac_check_reset, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800208MODULE_PARM_DESC(aac_check_reset, "If adapter fails health check, reset the"
209 " adapter. a value of -1 forces the reset to adapters programmed to"
210 " ignore it.");
Salyzyn, Mark29c97682007-06-12 09:33:54 -0400211
Mark Haverkampe37ee4b2007-01-26 09:23:32 -0800212int expose_physicals = -1;
Mark Haverkamp653ba582006-09-19 08:59:43 -0700213module_param(expose_physicals, int, S_IRUGO|S_IWUSR);
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800214MODULE_PARM_DESC(expose_physicals, "Expose physical components of the arrays."
215 " -1=protect 0=off, 1=on");
Mark Haverkamp03d44332007-03-15 10:27:45 -0700216
Salyzyn, Mark8ef22242008-02-08 05:48:22 -0800217int aac_reset_devices;
Salyzyn, Mark1208bab2007-05-22 09:32:29 -0400218module_param_named(reset_devices, aac_reset_devices, int, S_IRUGO|S_IWUSR);
219MODULE_PARM_DESC(reset_devices, "Force an adapter reset at initialization.");
Mark Haverkamp03d44332007-03-15 10:27:45 -0700220
221static inline int aac_valid_context(struct scsi_cmnd *scsicmd,
222 struct fib *fibptr) {
223 struct scsi_device *device;
224
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800225 if (unlikely(!scsicmd || !scsicmd->scsi_done)) {
Salyzyn, Markc835e372007-07-26 14:20:02 -0400226 dprintk((KERN_WARNING "aac_valid_context: scsi command corrupt\n"));
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800227 aac_fib_complete(fibptr);
228 aac_fib_free(fibptr);
229 return 0;
230 }
Mark Haverkamp03d44332007-03-15 10:27:45 -0700231 scsicmd->SCp.phase = AAC_OWNER_MIDLEVEL;
232 device = scsicmd->device;
233 if (unlikely(!device || !scsi_device_online(device))) {
234 dprintk((KERN_WARNING "aac_valid_context: scsi device corrupt\n"));
235 aac_fib_complete(fibptr);
236 aac_fib_free(fibptr);
237 return 0;
238 }
239 return 1;
240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242/**
243 * aac_get_config_status - check the adapter configuration
244 * @common: adapter to query
245 *
246 * Query config status, and commit the configuration if needed.
247 */
Mark Haverkamp8c867b22006-08-03 08:03:30 -0700248int aac_get_config_status(struct aac_dev *dev, int commit_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 int status = 0;
251 struct fib * fibptr;
252
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800253 if (!(fibptr = aac_fib_alloc(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return -ENOMEM;
255
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800256 aac_fib_init(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 {
258 struct aac_get_config_status *dinfo;
259 dinfo = (struct aac_get_config_status *) fib_data(fibptr);
260
261 dinfo->command = cpu_to_le32(VM_ContainerConfig);
262 dinfo->type = cpu_to_le32(CT_GET_CONFIG_STATUS);
263 dinfo->count = cpu_to_le32(sizeof(((struct aac_get_config_status_resp *)NULL)->data));
264 }
265
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800266 status = aac_fib_send(ContainerCommand,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 fibptr,
268 sizeof (struct aac_get_config_status),
269 FsaNormal,
270 1, 1,
271 NULL, NULL);
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800272 if (status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 printk(KERN_WARNING "aac_get_config_status: SendFIB failed.\n");
274 } else {
275 struct aac_get_config_status_resp *reply
276 = (struct aac_get_config_status_resp *) fib_data(fibptr);
277 dprintk((KERN_WARNING
278 "aac_get_config_status: response=%d status=%d action=%d\n",
279 le32_to_cpu(reply->response),
280 le32_to_cpu(reply->status),
281 le32_to_cpu(reply->data.action)));
282 if ((le32_to_cpu(reply->response) != ST_OK) ||
283 (le32_to_cpu(reply->status) != CT_OK) ||
284 (le32_to_cpu(reply->data.action) > CFACT_PAUSE)) {
285 printk(KERN_WARNING "aac_get_config_status: Will not issue the Commit Configuration\n");
286 status = -EINVAL;
287 }
288 }
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800289 aac_fib_complete(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* Send a CT_COMMIT_CONFIG to enable discovery of devices */
291 if (status >= 0) {
Salyzyn, Mark1208bab2007-05-22 09:32:29 -0400292 if ((aac_commit == 1) || commit_flag) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 struct aac_commit_config * dinfo;
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800294 aac_fib_init(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 dinfo = (struct aac_commit_config *) fib_data(fibptr);
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 dinfo->command = cpu_to_le32(VM_ContainerConfig);
298 dinfo->type = cpu_to_le32(CT_COMMIT_CONFIG);
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800299
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800300 status = aac_fib_send(ContainerCommand,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 fibptr,
302 sizeof (struct aac_commit_config),
303 FsaNormal,
304 1, 1,
305 NULL, NULL);
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800306 aac_fib_complete(fibptr);
Salyzyn, Mark1208bab2007-05-22 09:32:29 -0400307 } else if (aac_commit == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 printk(KERN_WARNING
309 "aac_get_config_status: Foreign device configurations are being ignored\n");
310 }
311 }
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800312 aac_fib_free(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return status;
314}
315
316/**
317 * aac_get_containers - list containers
318 * @common: adapter to probe
319 *
320 * Make a list of all containers on this controller
321 */
322int aac_get_containers(struct aac_dev *dev)
323{
324 struct fsa_dev_info *fsa_dev_ptr;
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800325 u32 index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 int status = 0;
327 struct fib * fibptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct aac_get_container_count *dinfo;
329 struct aac_get_container_count_resp *dresp;
330 int maximum_num_containers = MAXIMUM_NUM_CONTAINERS;
331
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800332 if (!(fibptr = aac_fib_alloc(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return -ENOMEM;
334
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800335 aac_fib_init(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 dinfo = (struct aac_get_container_count *) fib_data(fibptr);
337 dinfo->command = cpu_to_le32(VM_ContainerConfig);
338 dinfo->type = cpu_to_le32(CT_GET_CONTAINER_COUNT);
339
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800340 status = aac_fib_send(ContainerCommand,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 fibptr,
342 sizeof (struct aac_get_container_count),
343 FsaNormal,
344 1, 1,
345 NULL, NULL);
346 if (status >= 0) {
347 dresp = (struct aac_get_container_count_resp *)fib_data(fibptr);
348 maximum_num_containers = le32_to_cpu(dresp->ContainerSwitchEntries);
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800349 aac_fib_complete(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
Mark Haverkampfe76df42007-03-15 12:55:07 -0700351 aac_fib_free(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 if (maximum_num_containers < MAXIMUM_NUM_CONTAINERS)
354 maximum_num_containers = MAXIMUM_NUM_CONTAINERS;
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400355 fsa_dev_ptr = kzalloc(sizeof(*fsa_dev_ptr) * maximum_num_containers,
Mark Haverkampfe76df42007-03-15 12:55:07 -0700356 GFP_KERNEL);
357 if (!fsa_dev_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 dev->fsa_dev = fsa_dev_ptr;
361 dev->maximum_num_containers = maximum_num_containers;
362
Mark Haverkampfe76df42007-03-15 12:55:07 -0700363 for (index = 0; index < dev->maximum_num_containers; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 fsa_dev_ptr[index].devname[0] = '\0';
365
Mark Haverkampfe76df42007-03-15 12:55:07 -0700366 status = aac_probe_container(dev, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Mark Haverkampfe76df42007-03-15 12:55:07 -0700368 if (status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 printk(KERN_WARNING "aac_get_containers: SendFIB failed.\n");
370 break;
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /*
374 * If there are no more containers, then stop asking.
375 */
Mark Haverkampfe76df42007-03-15 12:55:07 -0700376 if (++index >= status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return status;
380}
381
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700382static void aac_internal_transfer(struct scsi_cmnd *scsicmd, void *data, unsigned int offset, unsigned int len)
383{
384 void *buf;
James Bottomleycab537d2007-05-16 10:06:39 -0400385 int transfer_len;
FUJITA Tomonori727eead2007-05-26 02:00:42 +0900386 struct scatterlist *sg = scsi_sglist(scsicmd);
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700387
Jens Axboe45711f12007-10-22 21:19:53 +0200388 buf = kmap_atomic(sg_page(sg), KM_IRQ0) + sg->offset;
FUJITA Tomonori727eead2007-05-26 02:00:42 +0900389 transfer_len = min(sg->length, len + offset);
390
Salyzyn, Mark20235f32007-03-21 13:22:56 -0400391 transfer_len -= offset;
James Bottomleycab537d2007-05-16 10:06:39 -0400392 if (buf && transfer_len > 0)
Salyzyn, Mark20235f32007-03-21 13:22:56 -0400393 memcpy(buf + offset, data, transfer_len);
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700394
Salyzyn, Mark3a0086a2008-01-11 11:46:44 -0800395 flush_kernel_dcache_page(kmap_atomic_to_page(buf - sg->offset));
FUJITA Tomonori727eead2007-05-26 02:00:42 +0900396 kunmap_atomic(buf - sg->offset, KM_IRQ0);
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700397
398}
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static void get_container_name_callback(void *context, struct fib * fibptr)
401{
402 struct aac_get_name_resp * get_name_reply;
403 struct scsi_cmnd * scsicmd;
404
405 scsicmd = (struct scsi_cmnd *) context;
406
Mark Haverkamp03d44332007-03-15 10:27:45 -0700407 if (!aac_valid_context(scsicmd, fibptr))
408 return;
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 dprintk((KERN_DEBUG "get_container_name_callback[cpu %d]: t = %ld.\n", smp_processor_id(), jiffies));
Eric Sesterhenn125e1872006-06-23 02:06:06 -0700411 BUG_ON(fibptr == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 get_name_reply = (struct aac_get_name_resp *) fib_data(fibptr);
414 /* Failure is irrelevant, using default value instead */
415 if ((le32_to_cpu(get_name_reply->status) == CT_OK)
416 && (get_name_reply->data[0] != '\0')) {
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700417 char *sp = get_name_reply->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 sp[sizeof(((struct aac_get_name_resp *)NULL)->data)-1] = '\0';
419 while (*sp == ' ')
420 ++sp;
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700421 if (*sp) {
422 char d[sizeof(((struct inquiry_data *)NULL)->inqd_pid)];
423 int count = sizeof(d);
424 char *dp = d;
425 do {
426 *dp++ = (*sp) ? *sp++ : ' ';
427 } while (--count > 0);
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800428 aac_internal_transfer(scsicmd, d,
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700429 offsetof(struct inquiry_data, inqd_pid), sizeof(d));
430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Mark Haverkamp3b2946c2005-08-15 10:50:24 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
434
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800435 aac_fib_complete(fibptr);
436 aac_fib_free(fibptr);
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -0700437 scsicmd->scsi_done(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
440/**
441 * aac_get_container_name - get container name, none blocking.
442 */
Mark Haverkamp9e7c3492007-03-15 10:26:55 -0700443static int aac_get_container_name(struct scsi_cmnd * scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 int status;
446 struct aac_get_name *dinfo;
447 struct fib * cmd_fibcontext;
448 struct aac_dev * dev;
449
450 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
451
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800452 if (!(cmd_fibcontext = aac_fib_alloc(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return -ENOMEM;
454
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800455 aac_fib_init(cmd_fibcontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 dinfo = (struct aac_get_name *) fib_data(cmd_fibcontext);
457
458 dinfo->command = cpu_to_le32(VM_ContainerConfig);
459 dinfo->type = cpu_to_le32(CT_READ_NAME);
Mark Haverkamp9e7c3492007-03-15 10:26:55 -0700460 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 dinfo->count = cpu_to_le32(sizeof(((struct aac_get_name_resp *)NULL)->data));
462
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800463 status = aac_fib_send(ContainerCommand,
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800464 cmd_fibcontext,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 sizeof (struct aac_get_name),
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800466 FsaNormal,
467 0, 1,
468 (fib_callback)get_container_name_callback,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 (void *) scsicmd);
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /*
472 * Check that the command queued to the controller
473 */
Mark Haverkamp77d644d2006-03-27 09:43:40 -0800474 if (status == -EINPROGRESS) {
475 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return 0;
Mark Haverkamp77d644d2006-03-27 09:43:40 -0800477 }
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800478
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800479 printk(KERN_WARNING "aac_get_container_name: aac_fib_send failed with status: %d.\n", status);
480 aac_fib_complete(cmd_fibcontext);
481 aac_fib_free(cmd_fibcontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return -1;
483}
484
Mark Haverkampfe76df42007-03-15 12:55:07 -0700485static int aac_probe_container_callback2(struct scsi_cmnd * scsicmd)
486{
487 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
488
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400489 if ((fsa_dev_ptr[scmd_id(scsicmd)].valid & 1))
Mark Haverkampfe76df42007-03-15 12:55:07 -0700490 return aac_scsi_cmd(scsicmd);
491
492 scsicmd->result = DID_NO_CONNECT << 16;
493 scsicmd->scsi_done(scsicmd);
494 return 0;
495}
496
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400497static void _aac_probe_container2(void * context, struct fib * fibptr)
Mark Haverkampfe76df42007-03-15 12:55:07 -0700498{
Mark Haverkamp03d44332007-03-15 10:27:45 -0700499 struct fsa_dev_info *fsa_dev_ptr;
Mark Haverkampfe76df42007-03-15 12:55:07 -0700500 int (*callback)(struct scsi_cmnd *);
Mark Haverkamp03d44332007-03-15 10:27:45 -0700501 struct scsi_cmnd * scsicmd = (struct scsi_cmnd *)context;
502
Mark Haverkamp03d44332007-03-15 10:27:45 -0700503
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400504 if (!aac_valid_context(scsicmd, fibptr))
505 return;
Mark Haverkampfe76df42007-03-15 12:55:07 -0700506
507 scsicmd->SCp.Status = 0;
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400508 fsa_dev_ptr = fibptr->dev->fsa_dev;
Mark Haverkampfe76df42007-03-15 12:55:07 -0700509 if (fsa_dev_ptr) {
510 struct aac_mount * dresp = (struct aac_mount *) fib_data(fibptr);
511 fsa_dev_ptr += scmd_id(scsicmd);
512
513 if ((le32_to_cpu(dresp->status) == ST_OK) &&
514 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE) &&
515 (le32_to_cpu(dresp->mnt[0].state) != FSCS_HIDDEN)) {
516 fsa_dev_ptr->valid = 1;
517 fsa_dev_ptr->type = le32_to_cpu(dresp->mnt[0].vol);
518 fsa_dev_ptr->size
519 = ((u64)le32_to_cpu(dresp->mnt[0].capacity)) +
520 (((u64)le32_to_cpu(dresp->mnt[0].capacityhigh)) << 32);
521 fsa_dev_ptr->ro = ((le32_to_cpu(dresp->mnt[0].state) & FSCS_READONLY) != 0);
522 }
523 if ((fsa_dev_ptr->valid & 1) == 0)
524 fsa_dev_ptr->valid = 0;
525 scsicmd->SCp.Status = le32_to_cpu(dresp->count);
526 }
527 aac_fib_complete(fibptr);
528 aac_fib_free(fibptr);
529 callback = (int (*)(struct scsi_cmnd *))(scsicmd->SCp.ptr);
530 scsicmd->SCp.ptr = NULL;
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400531 (*callback)(scsicmd);
532 return;
Mark Haverkampfe76df42007-03-15 12:55:07 -0700533}
534
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400535static void _aac_probe_container1(void * context, struct fib * fibptr)
Mark Haverkampfe76df42007-03-15 12:55:07 -0700536{
537 struct scsi_cmnd * scsicmd;
538 struct aac_mount * dresp;
539 struct aac_query_mount *dinfo;
540 int status;
541
542 dresp = (struct aac_mount *) fib_data(fibptr);
543 dresp->mnt[0].capacityhigh = 0;
544 if ((le32_to_cpu(dresp->status) != ST_OK) ||
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400545 (le32_to_cpu(dresp->mnt[0].vol) != CT_NONE)) {
546 _aac_probe_container2(context, fibptr);
547 return;
548 }
Mark Haverkampfe76df42007-03-15 12:55:07 -0700549 scsicmd = (struct scsi_cmnd *) context;
Mark Haverkampfe76df42007-03-15 12:55:07 -0700550
Mark Haverkamp03d44332007-03-15 10:27:45 -0700551 if (!aac_valid_context(scsicmd, fibptr))
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400552 return;
Mark Haverkamp03d44332007-03-15 10:27:45 -0700553
Mark Haverkampfe76df42007-03-15 12:55:07 -0700554 aac_fib_init(fibptr);
555
556 dinfo = (struct aac_query_mount *)fib_data(fibptr);
557
558 dinfo->command = cpu_to_le32(VM_NameServe64);
559 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
560 dinfo->type = cpu_to_le32(FT_FILESYS);
561
562 status = aac_fib_send(ContainerCommand,
563 fibptr,
564 sizeof(struct aac_query_mount),
565 FsaNormal,
566 0, 1,
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400567 _aac_probe_container2,
Mark Haverkampfe76df42007-03-15 12:55:07 -0700568 (void *) scsicmd);
569 /*
570 * Check that the command queued to the controller
571 */
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400572 if (status == -EINPROGRESS)
Mark Haverkampfe76df42007-03-15 12:55:07 -0700573 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400574 else if (status < 0) {
Mark Haverkampfe76df42007-03-15 12:55:07 -0700575 /* Inherit results from VM_NameServe, if any */
576 dresp->status = cpu_to_le32(ST_OK);
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400577 _aac_probe_container2(context, fibptr);
Mark Haverkampfe76df42007-03-15 12:55:07 -0700578 }
Mark Haverkampfe76df42007-03-15 12:55:07 -0700579}
580
581static int _aac_probe_container(struct scsi_cmnd * scsicmd, int (*callback)(struct scsi_cmnd *))
582{
583 struct fib * fibptr;
584 int status = -ENOMEM;
585
586 if ((fibptr = aac_fib_alloc((struct aac_dev *)scsicmd->device->host->hostdata))) {
587 struct aac_query_mount *dinfo;
588
589 aac_fib_init(fibptr);
590
591 dinfo = (struct aac_query_mount *)fib_data(fibptr);
592
593 dinfo->command = cpu_to_le32(VM_NameServe);
594 dinfo->count = cpu_to_le32(scmd_id(scsicmd));
595 dinfo->type = cpu_to_le32(FT_FILESYS);
596 scsicmd->SCp.ptr = (char *)callback;
597
598 status = aac_fib_send(ContainerCommand,
599 fibptr,
600 sizeof(struct aac_query_mount),
601 FsaNormal,
602 0, 1,
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400603 _aac_probe_container1,
Mark Haverkampfe76df42007-03-15 12:55:07 -0700604 (void *) scsicmd);
605 /*
606 * Check that the command queued to the controller
607 */
608 if (status == -EINPROGRESS) {
609 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
610 return 0;
611 }
612 if (status < 0) {
613 scsicmd->SCp.ptr = NULL;
614 aac_fib_complete(fibptr);
615 aac_fib_free(fibptr);
616 }
617 }
618 if (status < 0) {
619 struct fsa_dev_info *fsa_dev_ptr = ((struct aac_dev *)(scsicmd->device->host->hostdata))->fsa_dev;
620 if (fsa_dev_ptr) {
621 fsa_dev_ptr += scmd_id(scsicmd);
622 if ((fsa_dev_ptr->valid & 1) == 0) {
623 fsa_dev_ptr->valid = 0;
624 return (*callback)(scsicmd);
625 }
626 }
627 }
628 return status;
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/**
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800632 * aac_probe_container - query a logical volume
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * @dev: device to query
634 * @cid: container identifier
635 *
636 * Queries the controller about the given volume. The volume information
637 * is updated in the struct fsa_dev_info structure rather than returned.
638 */
Mark Haverkampfe76df42007-03-15 12:55:07 -0700639static int aac_probe_container_callback1(struct scsi_cmnd * scsicmd)
640{
641 scsicmd->device = NULL;
642 return 0;
643}
644
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800645int aac_probe_container(struct aac_dev *dev, int cid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Mark Haverkampfe76df42007-03-15 12:55:07 -0700647 struct scsi_cmnd *scsicmd = kmalloc(sizeof(*scsicmd), GFP_KERNEL);
648 struct scsi_device *scsidev = kmalloc(sizeof(*scsidev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Mark Haverkampfe76df42007-03-15 12:55:07 -0700651 if (!scsicmd || !scsidev) {
652 kfree(scsicmd);
653 kfree(scsidev);
Mark Haverkamp90ee3462006-08-03 08:03:07 -0700654 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Mark Haverkampfe76df42007-03-15 12:55:07 -0700656 scsicmd->list.next = NULL;
Salyzyn, Mark1a655042007-06-11 16:17:55 -0400657 scsicmd->scsi_done = (void (*)(struct scsi_cmnd*))aac_probe_container_callback1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Mark Haverkampfe76df42007-03-15 12:55:07 -0700659 scsicmd->device = scsidev;
660 scsidev->sdev_state = 0;
661 scsidev->id = cid;
662 scsidev->host = dev->scsi_host_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Mark Haverkampfe76df42007-03-15 12:55:07 -0700664 if (_aac_probe_container(scsicmd, aac_probe_container_callback1) == 0)
665 while (scsicmd->device == scsidev)
666 schedule();
Salyzyn, Mark802ae2f2007-03-21 13:49:47 -0400667 kfree(scsidev);
Mark Haverkampfe76df42007-03-15 12:55:07 -0700668 status = scsicmd->SCp.Status;
669 kfree(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return status;
671}
672
673/* Local Structure to set SCSI inquiry data strings */
674struct scsi_inq {
675 char vid[8]; /* Vendor ID */
676 char pid[16]; /* Product ID */
677 char prl[4]; /* Product Revision Level */
678};
679
680/**
681 * InqStrCopy - string merge
682 * @a: string to copy from
683 * @b: string to copy to
684 *
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800685 * Copy a String from one location to another
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * without copying \0
687 */
688
689static void inqstrcpy(char *a, char *b)
690{
691
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800692 while (*a != (char)0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 *b++ = *a++;
694}
695
696static char *container_types[] = {
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800697 "None",
698 "Volume",
699 "Mirror",
700 "Stripe",
701 "RAID5",
702 "SSRW",
703 "SSRO",
704 "Morph",
705 "Legacy",
706 "RAID4",
707 "RAID10",
708 "RAID00",
709 "V-MIRRORS",
710 "PSEUDO R4",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 "RAID50",
Mark Haverkamp84971732005-06-20 11:55:24 -0700712 "RAID5D",
713 "RAID5D0",
714 "RAID1E",
715 "RAID6",
716 "RAID60",
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -0800717 "Unknown"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718};
719
Salyzyn, Mark17eaace2008-01-08 12:23:49 -0800720char * get_container_type(unsigned tindex)
721{
722 if (tindex >= ARRAY_SIZE(container_types))
723 tindex = ARRAY_SIZE(container_types) - 1;
724 return container_types[tindex];
725}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727/* Function: setinqstr
728 *
729 * Arguments: [1] pointer to void [1] int
730 *
731 * Purpose: Sets SCSI inquiry data strings for vendor, product
732 * and revision level. Allows strings to be set in platform dependant
733 * files instead of in OS dependant driver source.
734 */
735
Mark Haverkamp794d0602005-10-24 10:51:53 -0700736static void setinqstr(struct aac_dev *dev, void *data, int tindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct scsi_inq *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 str = (struct scsi_inq *)(data); /* cast data to scsi inq block */
Mark Haverkamp794d0602005-10-24 10:51:53 -0700741 memset(str, ' ', sizeof(*str));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Mark Haverkamp794d0602005-10-24 10:51:53 -0700743 if (dev->supplement_adapter_info.AdapterTypeText[0]) {
744 char * cp = dev->supplement_adapter_info.AdapterTypeText;
Salyzyn, Mark3bc80702008-01-11 13:46:24 -0800745 int c;
746 if ((cp[0] == 'A') && (cp[1] == 'O') && (cp[2] == 'C'))
747 inqstrcpy("SMC", str->vid);
748 else {
749 c = sizeof(str->vid);
750 while (*cp && *cp != ' ' && --c)
751 ++cp;
752 c = *cp;
753 *cp = '\0';
754 inqstrcpy (dev->supplement_adapter_info.AdapterTypeText,
755 str->vid);
756 *cp = c;
757 while (*cp && *cp != ' ')
758 ++cp;
759 }
Mark Haverkamp794d0602005-10-24 10:51:53 -0700760 while (*cp == ' ')
761 ++cp;
762 /* last six chars reserved for vol type */
763 c = 0;
764 if (strlen(cp) > sizeof(str->pid)) {
765 c = cp[sizeof(str->pid)];
766 cp[sizeof(str->pid)] = '\0';
767 }
768 inqstrcpy (cp, str->pid);
769 if (c)
770 cp[sizeof(str->pid)] = c;
771 } else {
772 struct aac_driver_ident *mp = aac_get_driver_ident(dev->cardtype);
Tobias Klauser6391a112006-06-08 22:23:48 -0700773
774 inqstrcpy (mp->vname, str->vid);
Mark Haverkamp794d0602005-10-24 10:51:53 -0700775 /* last six chars reserved for vol type */
776 inqstrcpy (mp->model, str->pid);
777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Tobias Klauser6391a112006-06-08 22:23:48 -0700779 if (tindex < ARRAY_SIZE(container_types)){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 char *findit = str->pid;
781
782 for ( ; *findit != ' '; findit++); /* walk till we find a space */
783 /* RAID is superfluous in the context of a RAID device */
784 if (memcmp(findit-4, "RAID", 4) == 0)
785 *(findit -= 4) = ' ';
Mark Haverkamp794d0602005-10-24 10:51:53 -0700786 if (((findit - str->pid) + strlen(container_types[tindex]))
787 < (sizeof(str->pid) + sizeof(str->prl)))
788 inqstrcpy (container_types[tindex], findit + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
790 inqstrcpy ("V1.0", str->prl);
791}
792
Salyzyn, Mark88e2f982007-07-17 14:01:28 -0400793static void get_container_serial_callback(void *context, struct fib * fibptr)
794{
795 struct aac_get_serial_resp * get_serial_reply;
796 struct scsi_cmnd * scsicmd;
797
798 BUG_ON(fibptr == NULL);
799
800 scsicmd = (struct scsi_cmnd *) context;
801 if (!aac_valid_context(scsicmd, fibptr))
802 return;
803
804 get_serial_reply = (struct aac_get_serial_resp *) fib_data(fibptr);
805 /* Failure is irrelevant, using default value instead */
806 if (le32_to_cpu(get_serial_reply->status) == CT_OK) {
807 char sp[13];
808 /* EVPD bit set */
809 sp[0] = INQD_PDT_DA;
810 sp[1] = scsicmd->cmnd[2];
811 sp[2] = 0;
812 sp[3] = snprintf(sp+4, sizeof(sp)-4, "%08X",
813 le32_to_cpu(get_serial_reply->uid));
814 aac_internal_transfer(scsicmd, sp, 0, sizeof(sp));
815 }
816
817 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
818
819 aac_fib_complete(fibptr);
820 aac_fib_free(fibptr);
821 scsicmd->scsi_done(scsicmd);
822}
823
824/**
825 * aac_get_container_serial - get container serial, none blocking.
826 */
827static int aac_get_container_serial(struct scsi_cmnd * scsicmd)
828{
829 int status;
830 struct aac_get_serial *dinfo;
831 struct fib * cmd_fibcontext;
832 struct aac_dev * dev;
833
834 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
835
836 if (!(cmd_fibcontext = aac_fib_alloc(dev)))
837 return -ENOMEM;
838
839 aac_fib_init(cmd_fibcontext);
840 dinfo = (struct aac_get_serial *) fib_data(cmd_fibcontext);
841
842 dinfo->command = cpu_to_le32(VM_ContainerConfig);
843 dinfo->type = cpu_to_le32(CT_CID_TO_32BITS_UID);
844 dinfo->cid = cpu_to_le32(scmd_id(scsicmd));
845
846 status = aac_fib_send(ContainerCommand,
847 cmd_fibcontext,
848 sizeof (struct aac_get_serial),
849 FsaNormal,
850 0, 1,
851 (fib_callback) get_container_serial_callback,
852 (void *) scsicmd);
853
854 /*
855 * Check that the command queued to the controller
856 */
857 if (status == -EINPROGRESS) {
858 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
859 return 0;
860 }
861
862 printk(KERN_WARNING "aac_get_container_serial: aac_fib_send failed with status: %d.\n", status);
863 aac_fib_complete(cmd_fibcontext);
864 aac_fib_free(cmd_fibcontext);
865 return -1;
866}
867
868/* Function: setinqserial
869 *
870 * Arguments: [1] pointer to void [1] int
871 *
872 * Purpose: Sets SCSI Unit Serial number.
873 * This is a fake. We should read a proper
874 * serial number from the container. <SuSE>But
875 * without docs it's quite hard to do it :-)
876 * So this will have to do in the meantime.</SuSE>
877 */
878
879static int setinqserial(struct aac_dev *dev, void *data, int cid)
880{
881 /*
882 * This breaks array migration.
883 */
884 return snprintf((char *)(data), sizeof(struct scsi_inq) - 4, "%08X%02X",
885 le32_to_cpu(dev->adapter_info.serial[0]), cid);
886}
887
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800888static inline void set_sense(struct sense_data *sense_data, u8 sense_key,
889 u8 sense_code, u8 a_sense_code, u8 bit_pointer, u16 field_pointer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800891 u8 *sense_buf = (u8 *)sense_data;
892 /* Sense data valid, err code 70h */
893 sense_buf[0] = 0x70; /* No info field */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 sense_buf[1] = 0; /* Segment number, always zero */
895
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800896 sense_buf[2] = sense_key; /* Sense key */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 sense_buf[12] = sense_code; /* Additional sense code */
899 sense_buf[13] = a_sense_code; /* Additional sense code qualifier */
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (sense_key == ILLEGAL_REQUEST) {
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800902 sense_buf[7] = 10; /* Additional sense length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800904 sense_buf[15] = bit_pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /* Illegal parameter is in the parameter block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (sense_code == SENCODE_INVALID_CDB_FIELD)
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800907 sense_buf[15] |= 0xc0;/* Std sense key specific field */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 /* Illegal parameter is in the CDB block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 sense_buf[16] = field_pointer >> 8; /* MSB */
910 sense_buf[17] = field_pointer; /* LSB */
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800911 } else
912 sense_buf[7] = 6; /* Additional sense length */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Mark Haverkampe8f32de2007-01-23 15:00:30 -0800915static int aac_bounds_32(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
916{
917 if (lba & 0xffffffff00000000LL) {
918 int cid = scmd_id(cmd);
919 dprintk((KERN_DEBUG "aacraid: Illegal lba\n"));
920 cmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 |
921 SAM_STAT_CHECK_CONDITION;
Salyzyn, Mark8e31e602008-02-06 13:54:12 -0800922 set_sense(&dev->fsa_dev[cid].sense_data,
923 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
924 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
Mark Haverkampe8f32de2007-01-23 15:00:30 -0800925 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
Salyzyn, Mark3ace4262008-01-14 07:25:33 -0800926 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
927 SCSI_SENSE_BUFFERSIZE));
Mark Haverkampe8f32de2007-01-23 15:00:30 -0800928 cmd->scsi_done(cmd);
929 return 1;
930 }
931 return 0;
932}
933
934static int aac_bounds_64(struct aac_dev * dev, struct scsi_cmnd * cmd, u64 lba)
935{
936 return 0;
937}
938
939static void io_callback(void *context, struct fib * fibptr);
940
941static int aac_read_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
942{
943 u16 fibsize;
944 struct aac_raw_io *readcmd;
945 aac_fib_init(fib);
946 readcmd = (struct aac_raw_io *) fib_data(fib);
947 readcmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
948 readcmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
949 readcmd->count = cpu_to_le32(count<<9);
950 readcmd->cid = cpu_to_le16(scmd_id(cmd));
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -0400951 readcmd->flags = cpu_to_le16(IO_TYPE_READ);
Mark Haverkampe8f32de2007-01-23 15:00:30 -0800952 readcmd->bpTotal = 0;
953 readcmd->bpComplete = 0;
954
955 aac_build_sgraw(cmd, &readcmd->sg);
956 fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(readcmd->sg.count) - 1) * sizeof (struct sgentryraw));
957 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
958 /*
959 * Now send the Fib to the adapter
960 */
961 return aac_fib_send(ContainerRawIo,
962 fib,
963 fibsize,
964 FsaNormal,
965 0, 1,
966 (fib_callback) io_callback,
967 (void *) cmd);
968}
969
970static int aac_read_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
971{
972 u16 fibsize;
973 struct aac_read64 *readcmd;
974 aac_fib_init(fib);
975 readcmd = (struct aac_read64 *) fib_data(fib);
976 readcmd->command = cpu_to_le32(VM_CtHostRead64);
977 readcmd->cid = cpu_to_le16(scmd_id(cmd));
978 readcmd->sector_count = cpu_to_le16(count);
979 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
980 readcmd->pad = 0;
981 readcmd->flags = 0;
982
983 aac_build_sg64(cmd, &readcmd->sg);
984 fibsize = sizeof(struct aac_read64) +
985 ((le32_to_cpu(readcmd->sg.count) - 1) *
986 sizeof (struct sgentry64));
987 BUG_ON (fibsize > (fib->dev->max_fib_size -
988 sizeof(struct aac_fibhdr)));
989 /*
990 * Now send the Fib to the adapter
991 */
992 return aac_fib_send(ContainerCommand64,
993 fib,
994 fibsize,
995 FsaNormal,
996 0, 1,
997 (fib_callback) io_callback,
998 (void *) cmd);
999}
1000
1001static int aac_read_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count)
1002{
1003 u16 fibsize;
1004 struct aac_read *readcmd;
1005 aac_fib_init(fib);
1006 readcmd = (struct aac_read *) fib_data(fib);
1007 readcmd->command = cpu_to_le32(VM_CtBlockRead);
Christoph Hellwigf3307f72007-11-08 17:27:47 +00001008 readcmd->cid = cpu_to_le32(scmd_id(cmd));
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001009 readcmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1010 readcmd->count = cpu_to_le32(count * 512);
1011
1012 aac_build_sg(cmd, &readcmd->sg);
1013 fibsize = sizeof(struct aac_read) +
1014 ((le32_to_cpu(readcmd->sg.count) - 1) *
1015 sizeof (struct sgentry));
1016 BUG_ON (fibsize > (fib->dev->max_fib_size -
1017 sizeof(struct aac_fibhdr)));
1018 /*
1019 * Now send the Fib to the adapter
1020 */
1021 return aac_fib_send(ContainerCommand,
1022 fib,
1023 fibsize,
1024 FsaNormal,
1025 0, 1,
1026 (fib_callback) io_callback,
1027 (void *) cmd);
1028}
1029
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001030static int aac_write_raw_io(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001031{
1032 u16 fibsize;
1033 struct aac_raw_io *writecmd;
1034 aac_fib_init(fib);
1035 writecmd = (struct aac_raw_io *) fib_data(fib);
1036 writecmd->block[0] = cpu_to_le32((u32)(lba&0xffffffff));
1037 writecmd->block[1] = cpu_to_le32((u32)((lba&0xffffffff00000000LL)>>32));
1038 writecmd->count = cpu_to_le32(count<<9);
1039 writecmd->cid = cpu_to_le16(scmd_id(cmd));
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08001040 writecmd->flags = (fua && ((aac_cache & 5) != 1) &&
1041 (((aac_cache & 5) != 5) || !fib->dev->cache_protected)) ?
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001042 cpu_to_le16(IO_TYPE_WRITE|IO_SUREWRITE) :
1043 cpu_to_le16(IO_TYPE_WRITE);
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001044 writecmd->bpTotal = 0;
1045 writecmd->bpComplete = 0;
1046
1047 aac_build_sgraw(cmd, &writecmd->sg);
1048 fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(writecmd->sg.count) - 1) * sizeof (struct sgentryraw));
1049 BUG_ON(fibsize > (fib->dev->max_fib_size - sizeof(struct aac_fibhdr)));
1050 /*
1051 * Now send the Fib to the adapter
1052 */
1053 return aac_fib_send(ContainerRawIo,
1054 fib,
1055 fibsize,
1056 FsaNormal,
1057 0, 1,
1058 (fib_callback) io_callback,
1059 (void *) cmd);
1060}
1061
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001062static int aac_write_block64(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001063{
1064 u16 fibsize;
1065 struct aac_write64 *writecmd;
1066 aac_fib_init(fib);
1067 writecmd = (struct aac_write64 *) fib_data(fib);
1068 writecmd->command = cpu_to_le32(VM_CtHostWrite64);
1069 writecmd->cid = cpu_to_le16(scmd_id(cmd));
1070 writecmd->sector_count = cpu_to_le16(count);
1071 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1072 writecmd->pad = 0;
1073 writecmd->flags = 0;
1074
1075 aac_build_sg64(cmd, &writecmd->sg);
1076 fibsize = sizeof(struct aac_write64) +
1077 ((le32_to_cpu(writecmd->sg.count) - 1) *
1078 sizeof (struct sgentry64));
1079 BUG_ON (fibsize > (fib->dev->max_fib_size -
1080 sizeof(struct aac_fibhdr)));
1081 /*
1082 * Now send the Fib to the adapter
1083 */
1084 return aac_fib_send(ContainerCommand64,
1085 fib,
1086 fibsize,
1087 FsaNormal,
1088 0, 1,
1089 (fib_callback) io_callback,
1090 (void *) cmd);
1091}
1092
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001093static int aac_write_block(struct fib * fib, struct scsi_cmnd * cmd, u64 lba, u32 count, int fua)
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001094{
1095 u16 fibsize;
1096 struct aac_write *writecmd;
1097 aac_fib_init(fib);
1098 writecmd = (struct aac_write *) fib_data(fib);
1099 writecmd->command = cpu_to_le32(VM_CtBlockWrite);
Christoph Hellwigf3307f72007-11-08 17:27:47 +00001100 writecmd->cid = cpu_to_le32(scmd_id(cmd));
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001101 writecmd->block = cpu_to_le32((u32)(lba&0xffffffff));
1102 writecmd->count = cpu_to_le32(count * 512);
1103 writecmd->sg.count = cpu_to_le32(1);
1104 /* ->stable is not used - it did mean which type of write */
1105
1106 aac_build_sg(cmd, &writecmd->sg);
1107 fibsize = sizeof(struct aac_write) +
1108 ((le32_to_cpu(writecmd->sg.count) - 1) *
1109 sizeof (struct sgentry));
1110 BUG_ON (fibsize > (fib->dev->max_fib_size -
1111 sizeof(struct aac_fibhdr)));
1112 /*
1113 * Now send the Fib to the adapter
1114 */
1115 return aac_fib_send(ContainerCommand,
1116 fib,
1117 fibsize,
1118 FsaNormal,
1119 0, 1,
1120 (fib_callback) io_callback,
1121 (void *) cmd);
1122}
1123
1124static struct aac_srb * aac_scsi_common(struct fib * fib, struct scsi_cmnd * cmd)
1125{
1126 struct aac_srb * srbcmd;
1127 u32 flag;
1128 u32 timeout;
1129
1130 aac_fib_init(fib);
1131 switch(cmd->sc_data_direction){
1132 case DMA_TO_DEVICE:
1133 flag = SRB_DataOut;
1134 break;
1135 case DMA_BIDIRECTIONAL:
1136 flag = SRB_DataIn | SRB_DataOut;
1137 break;
1138 case DMA_FROM_DEVICE:
1139 flag = SRB_DataIn;
1140 break;
1141 case DMA_NONE:
1142 default: /* shuts up some versions of gcc */
1143 flag = SRB_NoDataXfer;
1144 break;
1145 }
1146
1147 srbcmd = (struct aac_srb*) fib_data(fib);
1148 srbcmd->function = cpu_to_le32(SRBF_ExecuteScsi);
1149 srbcmd->channel = cpu_to_le32(aac_logical_to_phys(scmd_channel(cmd)));
1150 srbcmd->id = cpu_to_le32(scmd_id(cmd));
1151 srbcmd->lun = cpu_to_le32(cmd->device->lun);
1152 srbcmd->flags = cpu_to_le32(flag);
1153 timeout = cmd->timeout_per_command/HZ;
1154 if (timeout == 0)
1155 timeout = 1;
1156 srbcmd->timeout = cpu_to_le32(timeout); // timeout in seconds
1157 srbcmd->retry_limit = 0; /* Obsolete parameter */
1158 srbcmd->cdb_size = cpu_to_le32(cmd->cmd_len);
1159 return srbcmd;
1160}
1161
1162static void aac_srb_callback(void *context, struct fib * fibptr);
1163
1164static int aac_scsi_64(struct fib * fib, struct scsi_cmnd * cmd)
1165{
1166 u16 fibsize;
1167 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1168
1169 aac_build_sg64(cmd, (struct sgmap64*) &srbcmd->sg);
FUJITA Tomonori727eead2007-05-26 02:00:42 +09001170 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001171
1172 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1173 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1174 /*
1175 * Build Scatter/Gather list
1176 */
1177 fibsize = sizeof (struct aac_srb) - sizeof (struct sgentry) +
1178 ((le32_to_cpu(srbcmd->sg.count) & 0xff) *
1179 sizeof (struct sgentry64));
1180 BUG_ON (fibsize > (fib->dev->max_fib_size -
1181 sizeof(struct aac_fibhdr)));
1182
1183 /*
1184 * Now send the Fib to the adapter
1185 */
1186 return aac_fib_send(ScsiPortCommand64, fib,
1187 fibsize, FsaNormal, 0, 1,
1188 (fib_callback) aac_srb_callback,
1189 (void *) cmd);
1190}
1191
1192static int aac_scsi_32(struct fib * fib, struct scsi_cmnd * cmd)
1193{
1194 u16 fibsize;
1195 struct aac_srb * srbcmd = aac_scsi_common(fib, cmd);
1196
1197 aac_build_sg(cmd, (struct sgmap*)&srbcmd->sg);
FUJITA Tomonori727eead2007-05-26 02:00:42 +09001198 srbcmd->count = cpu_to_le32(scsi_bufflen(cmd));
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001199
1200 memset(srbcmd->cdb, 0, sizeof(srbcmd->cdb));
1201 memcpy(srbcmd->cdb, cmd->cmnd, cmd->cmd_len);
1202 /*
1203 * Build Scatter/Gather list
1204 */
1205 fibsize = sizeof (struct aac_srb) +
1206 (((le32_to_cpu(srbcmd->sg.count) & 0xff) - 1) *
1207 sizeof (struct sgentry));
1208 BUG_ON (fibsize > (fib->dev->max_fib_size -
1209 sizeof(struct aac_fibhdr)));
1210
1211 /*
1212 * Now send the Fib to the adapter
1213 */
1214 return aac_fib_send(ScsiPortCommand, fib, fibsize, FsaNormal, 0, 1,
1215 (fib_callback) aac_srb_callback, (void *) cmd);
1216}
1217
Salyzyn, Mark94cf6ba2007-12-13 16:14:18 -08001218static int aac_scsi_32_64(struct fib * fib, struct scsi_cmnd * cmd)
1219{
1220 if ((sizeof(dma_addr_t) > 4) &&
1221 (num_physpages > (0xFFFFFFFFULL >> PAGE_SHIFT)) &&
1222 (fib->dev->adapter_info.options & AAC_OPT_SGMAP_HOST64))
1223 return FAILED;
1224 return aac_scsi_32(fib, cmd);
1225}
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227int aac_get_adapter_info(struct aac_dev* dev)
1228{
1229 struct fib* fibptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int rcode;
1231 u32 tmp;
Mark Haverkamp84971732005-06-20 11:55:24 -07001232 struct aac_adapter_info *info;
1233 struct aac_bus_info *command;
1234 struct aac_bus_info_response *bus_info;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001235
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001236 if (!(fibptr = aac_fib_alloc(dev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return -ENOMEM;
1238
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001239 aac_fib_init(fibptr);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001240 info = (struct aac_adapter_info *) fib_data(fibptr);
1241 memset(info,0,sizeof(*info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001243 rcode = aac_fib_send(RequestAdapterInfo,
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001244 fibptr,
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001245 sizeof(*info),
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001246 FsaNormal,
Mark Haverkamp92033442005-09-20 12:56:50 -07001247 -1, 1, /* First `interrupt' command uses special wait */
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001248 NULL,
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001249 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001251 if (rcode < 0) {
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001252 aac_fib_complete(fibptr);
1253 aac_fib_free(fibptr);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001254 return rcode;
1255 }
1256 memcpy(&dev->adapter_info, info, sizeof(*info));
1257
1258 if (dev->adapter_info.options & AAC_OPT_SUPPLEMENT_ADAPTER_INFO) {
Salyzyn, Mark06a43d12008-01-08 12:32:00 -08001259 struct aac_supplement_adapter_info * sinfo;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001260
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001261 aac_fib_init(fibptr);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001262
Salyzyn, Mark06a43d12008-01-08 12:32:00 -08001263 sinfo = (struct aac_supplement_adapter_info *) fib_data(fibptr);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001264
Salyzyn, Mark06a43d12008-01-08 12:32:00 -08001265 memset(sinfo,0,sizeof(*sinfo));
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001266
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001267 rcode = aac_fib_send(RequestSupplementAdapterInfo,
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001268 fibptr,
Salyzyn, Mark06a43d12008-01-08 12:32:00 -08001269 sizeof(*sinfo),
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001270 FsaNormal,
1271 1, 1,
1272 NULL,
1273 NULL);
1274
1275 if (rcode >= 0)
Salyzyn, Mark06a43d12008-01-08 12:32:00 -08001276 memcpy(&dev->supplement_adapter_info, sinfo, sizeof(*sinfo));
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Mark Haverkamp84971732005-06-20 11:55:24 -07001279
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001280 /*
1281 * GetBusInfo
Mark Haverkamp84971732005-06-20 11:55:24 -07001282 */
1283
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001284 aac_fib_init(fibptr);
Mark Haverkamp84971732005-06-20 11:55:24 -07001285
1286 bus_info = (struct aac_bus_info_response *) fib_data(fibptr);
1287
1288 memset(bus_info, 0, sizeof(*bus_info));
1289
1290 command = (struct aac_bus_info *)bus_info;
1291
1292 command->Command = cpu_to_le32(VM_Ioctl);
1293 command->ObjType = cpu_to_le32(FT_DRIVE);
1294 command->MethodId = cpu_to_le32(1);
1295 command->CtlCmd = cpu_to_le32(GetBusInfo);
1296
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001297 rcode = aac_fib_send(ContainerCommand,
Mark Haverkamp84971732005-06-20 11:55:24 -07001298 fibptr,
1299 sizeof (*bus_info),
1300 FsaNormal,
1301 1, 1,
1302 NULL, NULL);
1303
Salyzyn, Mark94cf6ba2007-12-13 16:14:18 -08001304 /* reasoned default */
1305 dev->maximum_num_physicals = 16;
Mark Haverkamp84971732005-06-20 11:55:24 -07001306 if (rcode >= 0 && le32_to_cpu(bus_info->Status) == ST_OK) {
1307 dev->maximum_num_physicals = le32_to_cpu(bus_info->TargetsPerBus);
1308 dev->maximum_num_channels = le32_to_cpu(bus_info->BusCount);
1309 }
1310
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001311 if (!dev->in_reset) {
Salyzyn, Mark24f02e12007-06-19 16:29:24 -04001312 char buffer[16];
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001313 tmp = le32_to_cpu(dev->adapter_info.kernelrev);
1314 printk(KERN_INFO "%s%d: kernel %d.%d-%d[%d] %.*s\n",
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001315 dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 dev->id,
1317 tmp>>24,
1318 (tmp>>16)&0xff,
1319 tmp&0xff,
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001320 le32_to_cpu(dev->adapter_info.kernelbuild),
1321 (int)sizeof(dev->supplement_adapter_info.BuildDate),
1322 dev->supplement_adapter_info.BuildDate);
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001323 tmp = le32_to_cpu(dev->adapter_info.monitorrev);
1324 printk(KERN_INFO "%s%d: monitor %d.%d-%d[%d]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 dev->name, dev->id,
1326 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
1327 le32_to_cpu(dev->adapter_info.monitorbuild));
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001328 tmp = le32_to_cpu(dev->adapter_info.biosrev);
1329 printk(KERN_INFO "%s%d: bios %d.%d-%d[%d]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 dev->name, dev->id,
1331 tmp>>24,(tmp>>16)&0xff,tmp&0xff,
1332 le32_to_cpu(dev->adapter_info.biosbuild));
Salyzyn, Mark24f02e12007-06-19 16:29:24 -04001333 buffer[0] = '\0';
1334 if (aac_show_serial_number(
1335 shost_to_class(dev->scsi_host_ptr), buffer))
1336 printk(KERN_INFO "%s%d: serial %s",
1337 dev->name, dev->id, buffer);
Salyzyn, Marka45c8632007-03-28 13:44:54 -04001338 if (dev->supplement_adapter_info.VpdInfo.Tsid[0]) {
1339 printk(KERN_INFO "%s%d: TSID %.*s\n",
1340 dev->name, dev->id,
1341 (int)sizeof(dev->supplement_adapter_info.VpdInfo.Tsid),
1342 dev->supplement_adapter_info.VpdInfo.Tsid);
1343 }
Salyzyn, Marka3940da2008-01-08 12:48:25 -08001344 if (!aac_check_reset || ((aac_check_reset != 1) &&
1345 (dev->supplement_adapter_info.SupportedOptions2 &
1346 AAC_OPTION_IGNORE_RESET))) {
Salyzyn, Mark29c97682007-06-12 09:33:54 -04001347 printk(KERN_INFO "%s%d: Reset Adapter Ignored\n",
1348 dev->name, dev->id);
1349 }
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08001352 dev->cache_protected = 0;
Salyzyn, Markcb1042f2008-01-17 09:25:07 -08001353 dev->jbod = ((dev->supplement_adapter_info.FeatureBits &
1354 AAC_FEATURE_JBOD) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 dev->nondasd_support = 0;
1356 dev->raid_scsi_mode = 0;
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08001357 if(dev->adapter_info.options & AAC_OPT_NONDASD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 dev->nondasd_support = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 /*
1361 * If the firmware supports ROMB RAID/SCSI mode and we are currently
1362 * in RAID/SCSI mode, set the flag. For now if in this mode we will
1363 * force nondasd support on. If we decide to allow the non-dasd flag
1364 * additional changes changes will have to be made to support
1365 * RAID/SCSI. the function aac_scsi_cmd in this module will have to be
1366 * changed to support the new dev->raid_scsi_mode flag instead of
1367 * leaching off of the dev->nondasd_support flag. Also in linit.c the
1368 * function aac_detect will have to be modified where it sets up the
1369 * max number of channels based on the aac->nondasd_support flag only.
1370 */
1371 if ((dev->adapter_info.options & AAC_OPT_SCSI_MANAGED) &&
1372 (dev->adapter_info.options & AAC_OPT_RAID_SCSI_MODE)) {
1373 dev->nondasd_support = 1;
1374 dev->raid_scsi_mode = 1;
1375 }
1376 if (dev->raid_scsi_mode != 0)
1377 printk(KERN_INFO "%s%d: ROMB RAID/SCSI mode enabled\n",
1378 dev->name, dev->id);
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001379
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08001380 if (nondasd != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 dev->nondasd_support = (nondasd!=0);
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08001382 if(dev->nondasd_support != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 printk(KERN_INFO "%s%d: Non-DASD support enabled.\n",dev->name, dev->id);
1384 }
1385
1386 dev->dac_support = 0;
1387 if( (sizeof(dma_addr_t) > 4) && (dev->adapter_info.options & AAC_OPT_SGMAP_HOST64)){
1388 printk(KERN_INFO "%s%d: 64bit support enabled.\n", dev->name, dev->id);
1389 dev->dac_support = 1;
1390 }
1391
1392 if(dacmode != -1) {
1393 dev->dac_support = (dacmode!=0);
1394 }
1395 if(dev->dac_support != 0) {
James Bottomley71e0f322005-10-28 11:21:10 -05001396 if (!pci_set_dma_mask(dev->pdev, DMA_64BIT_MASK) &&
1397 !pci_set_consistent_dma_mask(dev->pdev, DMA_64BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 printk(KERN_INFO"%s%d: 64 Bit DAC enabled\n",
1399 dev->name, dev->id);
James Bottomley71e0f322005-10-28 11:21:10 -05001400 } else if (!pci_set_dma_mask(dev->pdev, DMA_32BIT_MASK) &&
1401 !pci_set_consistent_dma_mask(dev->pdev, DMA_32BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 printk(KERN_INFO"%s%d: DMA mask set failed, 64 Bit DAC disabled\n",
1403 dev->name, dev->id);
1404 dev->dac_support = 0;
1405 } else {
1406 printk(KERN_WARNING"%s%d: No suitable DMA available.\n",
1407 dev->name, dev->id);
1408 rcode = -ENOMEM;
1409 }
1410 }
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001411 /*
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001412 * Deal with configuring for the individualized limits of each packet
1413 * interface.
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001414 */
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001415 dev->a_ops.adapter_scsi = (dev->dac_support)
Salyzyn, Mark94cf6ba2007-12-13 16:14:18 -08001416 ? ((aac_get_driver_ident(dev->cardtype)->quirks & AAC_QUIRK_SCSI_32)
1417 ? aac_scsi_32_64
1418 : aac_scsi_64)
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001419 : aac_scsi_32;
1420 if (dev->raw_io_interface) {
1421 dev->a_ops.adapter_bounds = (dev->raw_io_64)
1422 ? aac_bounds_64
1423 : aac_bounds_32;
1424 dev->a_ops.adapter_read = aac_read_raw_io;
1425 dev->a_ops.adapter_write = aac_write_raw_io;
1426 } else {
1427 dev->a_ops.adapter_bounds = aac_bounds_32;
Mark Haverkamp0e68c002005-08-03 15:39:49 -07001428 dev->scsi_host_ptr->sg_tablesize = (dev->max_fib_size -
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001429 sizeof(struct aac_fibhdr) -
Mark Haverkamp63a70ee2005-09-20 12:57:04 -07001430 sizeof(struct aac_write) + sizeof(struct sgentry)) /
1431 sizeof(struct sgentry);
Mark Haverkamp0e68c002005-08-03 15:39:49 -07001432 if (dev->dac_support) {
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001433 dev->a_ops.adapter_read = aac_read_block64;
1434 dev->a_ops.adapter_write = aac_write_block64;
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001435 /*
1436 * 38 scatter gather elements
Mark Haverkamp0e68c002005-08-03 15:39:49 -07001437 */
1438 dev->scsi_host_ptr->sg_tablesize =
1439 (dev->max_fib_size -
1440 sizeof(struct aac_fibhdr) -
1441 sizeof(struct aac_write64) +
Mark Haverkamp63a70ee2005-09-20 12:57:04 -07001442 sizeof(struct sgentry64)) /
1443 sizeof(struct sgentry64);
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001444 } else {
1445 dev->a_ops.adapter_read = aac_read_block;
1446 dev->a_ops.adapter_write = aac_write_block;
Mark Haverkamp0e68c002005-08-03 15:39:49 -07001447 }
1448 dev->scsi_host_ptr->max_sectors = AAC_MAX_32BIT_SGBCOUNT;
1449 if(!(dev->adapter_info.options & AAC_OPT_NEW_COMM)) {
1450 /*
1451 * Worst case size that could cause sg overflow when
1452 * we break up SG elements that are larger than 64KB.
1453 * Would be nice if we could tell the SCSI layer what
1454 * the maximum SG element size can be. Worst case is
1455 * (sg_tablesize-1) 4KB elements with one 64KB
1456 * element.
1457 * 32bit -> 468 or 238KB 64bit -> 424 or 212KB
1458 */
1459 dev->scsi_host_ptr->max_sectors =
1460 (dev->scsi_host_ptr->sg_tablesize * 8) + 112;
1461 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001464 aac_fib_complete(fibptr);
1465 aac_fib_free(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 return rcode;
1468}
1469
1470
Mark Haverkampe53cb352005-08-03 15:39:09 -07001471static void io_callback(void *context, struct fib * fibptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
1473 struct aac_dev *dev;
1474 struct aac_read_reply *readreply;
1475 struct scsi_cmnd *scsicmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 u32 cid;
1477
1478 scsicmd = (struct scsi_cmnd *) context;
1479
Mark Haverkamp03d44332007-03-15 10:27:45 -07001480 if (!aac_valid_context(scsicmd, fibptr))
1481 return;
1482
Salyzyn, Mark1a655042007-06-11 16:17:55 -04001483 dev = fibptr->dev;
Mark Haverkampe5718772006-03-27 09:43:25 -08001484 cid = scmd_id(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001486 if (nblank(dprintk(x))) {
1487 u64 lba;
1488 switch (scsicmd->cmnd[0]) {
1489 case WRITE_6:
1490 case READ_6:
1491 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
1492 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1493 break;
1494 case WRITE_16:
1495 case READ_16:
1496 lba = ((u64)scsicmd->cmnd[2] << 56) |
1497 ((u64)scsicmd->cmnd[3] << 48) |
1498 ((u64)scsicmd->cmnd[4] << 40) |
1499 ((u64)scsicmd->cmnd[5] << 32) |
1500 ((u64)scsicmd->cmnd[6] << 24) |
1501 (scsicmd->cmnd[7] << 16) |
1502 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1503 break;
1504 case WRITE_12:
1505 case READ_12:
1506 lba = ((u64)scsicmd->cmnd[2] << 24) |
1507 (scsicmd->cmnd[3] << 16) |
1508 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1509 break;
1510 default:
1511 lba = ((u64)scsicmd->cmnd[2] << 24) |
1512 (scsicmd->cmnd[3] << 16) |
1513 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1514 break;
1515 }
1516 printk(KERN_DEBUG
1517 "io_callback[cpu %d]: lba = %llu, t = %ld.\n",
1518 smp_processor_id(), (unsigned long long)lba, jiffies);
1519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Eric Sesterhenn125e1872006-06-23 02:06:06 -07001521 BUG_ON(fibptr == NULL);
FUJITA Tomonori727eead2007-05-26 02:00:42 +09001522
1523 scsi_dma_unmap(scsicmd);
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 readreply = (struct aac_read_reply *)fib_data(fibptr);
1526 if (le32_to_cpu(readreply->status) == ST_OK)
1527 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1528 else {
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001529#ifdef AAC_DETAILED_STATUS_INFO
Mark Haverkampe53cb352005-08-03 15:39:09 -07001530 printk(KERN_WARNING "io_callback: io failed, status = %d\n",
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001531 le32_to_cpu(readreply->status));
1532#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
Salyzyn, Mark8e31e602008-02-06 13:54:12 -08001534 set_sense(&dev->fsa_dev[cid].sense_data,
1535 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
1536 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
Salyzyn, Mark3ace4262008-01-14 07:25:33 -08001538 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1539 SCSI_SENSE_BUFFERSIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001541 aac_fib_complete(fibptr);
1542 aac_fib_free(fibptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -07001544 scsicmd->scsi_done(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001547static int aac_read(struct scsi_cmnd * scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001549 u64 lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 u32 count;
1551 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 struct aac_dev *dev;
1553 struct fib * cmd_fibcontext;
1554
1555 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
1556 /*
1557 * Get block address and transfer length
1558 */
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001559 switch (scsicmd->cmnd[0]) {
1560 case READ_6:
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001561 dprintk((KERN_DEBUG "aachba: received a read(6) command on id %d.\n", scmd_id(scsicmd)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001563 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001564 (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 count = scsicmd->cmnd[4];
1566
1567 if (count == 0)
1568 count = 256;
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001569 break;
1570 case READ_16:
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001571 dprintk((KERN_DEBUG "aachba: received a read(16) command on id %d.\n", scmd_id(scsicmd)));
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001572
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001573 lba = ((u64)scsicmd->cmnd[2] << 56) |
1574 ((u64)scsicmd->cmnd[3] << 48) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001575 ((u64)scsicmd->cmnd[4] << 40) |
1576 ((u64)scsicmd->cmnd[5] << 32) |
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001577 ((u64)scsicmd->cmnd[6] << 24) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001578 (scsicmd->cmnd[7] << 16) |
1579 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001580 count = (scsicmd->cmnd[10] << 24) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001581 (scsicmd->cmnd[11] << 16) |
1582 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
1583 break;
1584 case READ_12:
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001585 dprintk((KERN_DEBUG "aachba: received a read(12) command on id %d.\n", scmd_id(scsicmd)));
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001586
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001587 lba = ((u64)scsicmd->cmnd[2] << 24) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001588 (scsicmd->cmnd[3] << 16) |
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001589 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1590 count = (scsicmd->cmnd[6] << 24) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001591 (scsicmd->cmnd[7] << 16) |
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001592 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001593 break;
1594 default:
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001595 dprintk((KERN_DEBUG "aachba: received a read(10) command on id %d.\n", scmd_id(scsicmd)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001597 lba = ((u64)scsicmd->cmnd[2] << 24) |
1598 (scsicmd->cmnd[3] << 16) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001599 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001601 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 }
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001603 dprintk((KERN_DEBUG "aac_read[cpu %d]: lba = %llu, t = %ld.\n",
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001604 smp_processor_id(), (unsigned long long)lba, jiffies));
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001605 if (aac_adapter_bounds(dev,scsicmd,lba))
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 /*
1608 * Alocate and initialize a Fib
1609 */
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001610 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return -1;
1612 }
1613
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001614 status = aac_adapter_read(cmd_fibcontext, scsicmd, lba, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
1616 /*
1617 * Check that the command queued to the controller
1618 */
Mark Haverkamp77d644d2006-03-27 09:43:40 -08001619 if (status == -EINPROGRESS) {
1620 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return 0;
Mark Haverkamp77d644d2006-03-27 09:43:40 -08001622 }
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001623
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001624 printk(KERN_WARNING "aac_read: aac_fib_send failed with status: %d.\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 /*
1626 * For some reason, the Fib didn't queue, return QUEUE_FULL
1627 */
1628 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -07001629 scsicmd->scsi_done(scsicmd);
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001630 aac_fib_complete(cmd_fibcontext);
1631 aac_fib_free(cmd_fibcontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return 0;
1633}
1634
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001635static int aac_write(struct scsi_cmnd * scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001637 u64 lba;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 u32 count;
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001639 int fua;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 struct aac_dev *dev;
1642 struct fib * cmd_fibcontext;
1643
1644 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
1645 /*
1646 * Get block address and transfer length
1647 */
1648 if (scsicmd->cmnd[0] == WRITE_6) /* 6 byte command */
1649 {
1650 lba = ((scsicmd->cmnd[1] & 0x1F) << 16) | (scsicmd->cmnd[2] << 8) | scsicmd->cmnd[3];
1651 count = scsicmd->cmnd[4];
1652 if (count == 0)
1653 count = 256;
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001654 fua = 0;
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001655 } else if (scsicmd->cmnd[0] == WRITE_16) { /* 16 byte command */
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001656 dprintk((KERN_DEBUG "aachba: received a write(16) command on id %d.\n", scmd_id(scsicmd)));
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001657
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001658 lba = ((u64)scsicmd->cmnd[2] << 56) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001659 ((u64)scsicmd->cmnd[3] << 48) |
1660 ((u64)scsicmd->cmnd[4] << 40) |
1661 ((u64)scsicmd->cmnd[5] << 32) |
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001662 ((u64)scsicmd->cmnd[6] << 24) |
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001663 (scsicmd->cmnd[7] << 16) |
1664 (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
1665 count = (scsicmd->cmnd[10] << 24) | (scsicmd->cmnd[11] << 16) |
1666 (scsicmd->cmnd[12] << 8) | scsicmd->cmnd[13];
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001667 fua = scsicmd->cmnd[1] & 0x8;
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001668 } else if (scsicmd->cmnd[0] == WRITE_12) { /* 12 byte command */
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001669 dprintk((KERN_DEBUG "aachba: received a write(12) command on id %d.\n", scmd_id(scsicmd)));
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001670
1671 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16)
1672 | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1673 count = (scsicmd->cmnd[6] << 24) | (scsicmd->cmnd[7] << 16)
1674 | (scsicmd->cmnd[8] << 8) | scsicmd->cmnd[9];
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001675 fua = scsicmd->cmnd[1] & 0x8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 } else {
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001677 dprintk((KERN_DEBUG "aachba: received a write(10) command on id %d.\n", scmd_id(scsicmd)));
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001678 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) | (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001680 fua = scsicmd->cmnd[1] & 0x8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001682 dprintk((KERN_DEBUG "aac_write[cpu %d]: lba = %llu, t = %ld.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 smp_processor_id(), (unsigned long long)lba, jiffies));
Mark Haverkampe8f32de2007-01-23 15:00:30 -08001684 if (aac_adapter_bounds(dev,scsicmd,lba))
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001685 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 /*
1687 * Allocate and initialize a Fib then setup a BlockWrite command
1688 */
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001689 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 scsicmd->result = DID_ERROR << 16;
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -07001691 scsicmd->scsi_done(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return 0;
1693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04001695 status = aac_adapter_write(cmd_fibcontext, scsicmd, lba, count, fua);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 /*
1698 * Check that the command queued to the controller
1699 */
Mark Haverkamp77d644d2006-03-27 09:43:40 -08001700 if (status == -EINPROGRESS) {
1701 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return 0;
1703 }
1704
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001705 printk(KERN_WARNING "aac_write: aac_fib_send failed with status: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 /*
1707 * For some reason, the Fib didn't queue, return QUEUE_FULL
1708 */
1709 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_TASK_SET_FULL;
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -07001710 scsicmd->scsi_done(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001712 aac_fib_complete(cmd_fibcontext);
1713 aac_fib_free(cmd_fibcontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return 0;
1715}
1716
1717static void synchronize_callback(void *context, struct fib *fibptr)
1718{
1719 struct aac_synchronize_reply *synchronizereply;
1720 struct scsi_cmnd *cmd;
1721
1722 cmd = context;
1723
Mark Haverkamp03d44332007-03-15 10:27:45 -07001724 if (!aac_valid_context(cmd, fibptr))
1725 return;
1726
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001727 dprintk((KERN_DEBUG "synchronize_callback[cpu %d]: t = %ld.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 smp_processor_id(), jiffies));
1729 BUG_ON(fibptr == NULL);
1730
1731
1732 synchronizereply = fib_data(fibptr);
1733 if (le32_to_cpu(synchronizereply->status) == CT_OK)
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001734 cmd->result = DID_OK << 16 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1736 else {
1737 struct scsi_device *sdev = cmd->device;
Salyzyn, Mark1a655042007-06-11 16:17:55 -04001738 struct aac_dev *dev = fibptr->dev;
Mark Haverkampe5718772006-03-27 09:43:25 -08001739 u32 cid = sdev_id(sdev);
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001740 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 "synchronize_callback: synchronize failed, status = %d\n",
1742 le32_to_cpu(synchronizereply->status));
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001743 cmd->result = DID_OK << 16 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
Salyzyn, Mark8e31e602008-02-06 13:54:12 -08001745 set_sense(&dev->fsa_dev[cid].sense_data,
1746 HARDWARE_ERROR, SENCODE_INTERNAL_TARGET_FAILURE,
1747 ASENCODE_INTERNAL_TARGET_FAILURE, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 memcpy(cmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09001749 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1750 SCSI_SENSE_BUFFERSIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001753 aac_fib_complete(fibptr);
1754 aac_fib_free(fibptr);
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -07001755 cmd->scsi_done(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
1757
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001758static int aac_synchronize(struct scsi_cmnd *scsicmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 int status;
1761 struct fib *cmd_fibcontext;
1762 struct aac_synchronize *synchronizecmd;
1763 struct scsi_cmnd *cmd;
1764 struct scsi_device *sdev = scsicmd->device;
1765 int active = 0;
Mark Haverkamp90ee3462006-08-03 08:03:07 -07001766 struct aac_dev *aac;
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001767 u64 lba = ((u64)scsicmd->cmnd[2] << 24) | (scsicmd->cmnd[3] << 16) |
1768 (scsicmd->cmnd[4] << 8) | scsicmd->cmnd[5];
1769 u32 count = (scsicmd->cmnd[7] << 8) | scsicmd->cmnd[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 unsigned long flags;
1771
1772 /*
Mark Haverkamp77d644d2006-03-27 09:43:40 -08001773 * Wait for all outstanding queued commands to complete to this
1774 * specific target (block).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 */
1776 spin_lock_irqsave(&sdev->list_lock, flags);
1777 list_for_each_entry(cmd, &sdev->cmd_list, list)
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001778 if (cmd->SCp.phase == AAC_OWNER_FIRMWARE) {
1779 u64 cmnd_lba;
1780 u32 cmnd_count;
1781
1782 if (cmd->cmnd[0] == WRITE_6) {
1783 cmnd_lba = ((cmd->cmnd[1] & 0x1F) << 16) |
1784 (cmd->cmnd[2] << 8) |
1785 cmd->cmnd[3];
1786 cmnd_count = cmd->cmnd[4];
1787 if (cmnd_count == 0)
1788 cmnd_count = 256;
1789 } else if (cmd->cmnd[0] == WRITE_16) {
1790 cmnd_lba = ((u64)cmd->cmnd[2] << 56) |
1791 ((u64)cmd->cmnd[3] << 48) |
1792 ((u64)cmd->cmnd[4] << 40) |
1793 ((u64)cmd->cmnd[5] << 32) |
1794 ((u64)cmd->cmnd[6] << 24) |
1795 (cmd->cmnd[7] << 16) |
1796 (cmd->cmnd[8] << 8) |
1797 cmd->cmnd[9];
1798 cmnd_count = (cmd->cmnd[10] << 24) |
1799 (cmd->cmnd[11] << 16) |
1800 (cmd->cmnd[12] << 8) |
1801 cmd->cmnd[13];
1802 } else if (cmd->cmnd[0] == WRITE_12) {
1803 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
1804 (cmd->cmnd[3] << 16) |
1805 (cmd->cmnd[4] << 8) |
1806 cmd->cmnd[5];
1807 cmnd_count = (cmd->cmnd[6] << 24) |
1808 (cmd->cmnd[7] << 16) |
1809 (cmd->cmnd[8] << 8) |
1810 cmd->cmnd[9];
1811 } else if (cmd->cmnd[0] == WRITE_10) {
1812 cmnd_lba = ((u64)cmd->cmnd[2] << 24) |
1813 (cmd->cmnd[3] << 16) |
1814 (cmd->cmnd[4] << 8) |
1815 cmd->cmnd[5];
1816 cmnd_count = (cmd->cmnd[7] << 8) |
1817 cmd->cmnd[8];
1818 } else
1819 continue;
1820 if (((cmnd_lba + cmnd_count) < lba) ||
1821 (count && ((lba + count) < cmnd_lba)))
1822 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 ++active;
1824 break;
1825 }
1826
1827 spin_unlock_irqrestore(&sdev->list_lock, flags);
1828
1829 /*
1830 * Yield the processor (requeue for later)
1831 */
1832 if (active)
1833 return SCSI_MLQUEUE_DEVICE_BUSY;
1834
Salyzyn, Markf8583172007-10-30 15:50:49 -04001835 aac = (struct aac_dev *)sdev->host->hostdata;
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001836 if (aac->in_reset)
1837 return SCSI_MLQUEUE_HOST_BUSY;
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 /*
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07001840 * Allocate and initialize a Fib
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 */
Mark Haverkamp90ee3462006-08-03 08:03:07 -07001842 if (!(cmd_fibcontext = aac_fib_alloc(aac)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return SCSI_MLQUEUE_HOST_BUSY;
1844
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001845 aac_fib_init(cmd_fibcontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 synchronizecmd = fib_data(cmd_fibcontext);
1848 synchronizecmd->command = cpu_to_le32(VM_ContainerConfig);
1849 synchronizecmd->type = cpu_to_le32(CT_FLUSH_CACHE);
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07001850 synchronizecmd->cid = cpu_to_le32(scmd_id(scsicmd));
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001851 synchronizecmd->count =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 cpu_to_le32(sizeof(((struct aac_synchronize_reply *)NULL)->data));
1853
1854 /*
1855 * Now send the Fib to the adapter
1856 */
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001857 status = aac_fib_send(ContainerCommand,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 cmd_fibcontext,
1859 sizeof(struct aac_synchronize),
1860 FsaNormal,
1861 0, 1,
1862 (fib_callback)synchronize_callback,
1863 (void *)scsicmd);
1864
1865 /*
1866 * Check that the command queued to the controller
1867 */
Mark Haverkamp77d644d2006-03-27 09:43:40 -08001868 if (status == -EINPROGRESS) {
1869 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return 0;
Mark Haverkamp77d644d2006-03-27 09:43:40 -08001871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Salyzyn, Markb90f90d2007-07-27 09:48:49 -04001873 printk(KERN_WARNING
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08001874 "aac_synchronize: aac_fib_send failed with status: %d.\n", status);
1875 aac_fib_complete(cmd_fibcontext);
1876 aac_fib_free(cmd_fibcontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return SCSI_MLQUEUE_HOST_BUSY;
1878}
1879
1880/**
1881 * aac_scsi_cmd() - Process SCSI command
1882 * @scsicmd: SCSI command block
1883 *
1884 * Emulate a SCSI command and queue the required request for the
1885 * aacraid firmware.
1886 */
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888int aac_scsi_cmd(struct scsi_cmnd * scsicmd)
1889{
Salyzyn, Mark1a655042007-06-11 16:17:55 -04001890 u32 cid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 struct Scsi_Host *host = scsicmd->device->host;
1892 struct aac_dev *dev = (struct aac_dev *)host->hostdata;
1893 struct fsa_dev_info *fsa_dev_ptr = dev->fsa_dev;
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001894
Mark Haverkamp90ee3462006-08-03 08:03:07 -07001895 if (fsa_dev_ptr == NULL)
1896 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /*
1898 * If the bus, id or lun is out of range, return fail
1899 * Test does not apply to ID 16, the pseudo id for the controller
1900 * itself.
1901 */
Salyzyn, Mark1a655042007-06-11 16:17:55 -04001902 cid = scmd_id(scsicmd);
1903 if (cid != host->this_id) {
1904 if (scmd_channel(scsicmd) == CONTAINER_CHANNEL) {
1905 if((cid >= dev->maximum_num_containers) ||
Mark Haverkampe5718772006-03-27 09:43:25 -08001906 (scsicmd->device->lun != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 scsicmd->result = DID_NO_CONNECT << 16;
1908 scsicmd->scsi_done(scsicmd);
1909 return 0;
1910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 /*
1913 * If the target container doesn't exist, it may have
1914 * been newly created
1915 */
1916 if ((fsa_dev_ptr[cid].valid & 1) == 0) {
1917 switch (scsicmd->cmnd[0]) {
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07001918 case SERVICE_ACTION_IN:
1919 if (!(dev->raw_io_interface) ||
1920 !(dev->raw_io_64) ||
1921 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
1922 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 case INQUIRY:
1924 case READ_CAPACITY:
1925 case TEST_UNIT_READY:
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001926 if (dev->in_reset)
1927 return -1;
Mark Haverkampfe76df42007-03-15 12:55:07 -07001928 return _aac_probe_container(scsicmd,
1929 aac_probe_container_callback2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 default:
1931 break;
1932 }
1933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 } else { /* check for physical non-dasd devices */
Salyzyn, Markcb1042f2008-01-17 09:25:07 -08001935 if (dev->nondasd_support || expose_physicals ||
1936 dev->jbod) {
Mark Haverkamp8c867b22006-08-03 08:03:30 -07001937 if (dev->in_reset)
1938 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return aac_send_srb_fib(scsicmd);
1940 } else {
1941 scsicmd->result = DID_NO_CONNECT << 16;
1942 scsicmd->scsi_done(scsicmd);
1943 return 0;
1944 }
1945 }
1946 }
1947 /*
1948 * else Command for the controller itself
1949 */
1950 else if ((scsicmd->cmnd[0] != INQUIRY) && /* only INQUIRY & TUR cmnd supported for controller */
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001951 (scsicmd->cmnd[0] != TEST_UNIT_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 {
1953 dprintk((KERN_WARNING "Only INQUIRY & TUR command supported for controller, rcvd = 0x%x.\n", scsicmd->cmnd[0]));
1954 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
Salyzyn, Mark8e31e602008-02-06 13:54:12 -08001955 set_sense(&dev->fsa_dev[cid].sense_data,
1956 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
1957 ASENCODE_INVALID_COMMAND, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
Salyzyn, Mark3ace4262008-01-14 07:25:33 -08001959 min_t(size_t, sizeof(dev->fsa_dev[cid].sense_data),
1960 SCSI_SENSE_BUFFERSIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 scsicmd->scsi_done(scsicmd);
1962 return 0;
1963 }
1964
1965
1966 /* Handle commands here that don't really require going out to the adapter */
1967 switch (scsicmd->cmnd[0]) {
1968 case INQUIRY:
1969 {
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07001970 struct inquiry_data inq_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Salyzyn, Mark1a655042007-06-11 16:17:55 -04001972 dprintk((KERN_DEBUG "INQUIRY command, ID: %d.\n", cid));
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07001973 memset(&inq_data, 0, sizeof (struct inquiry_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08001975 if (scsicmd->cmnd[1] & 0x1) {
Salyzyn, Mark88e2f982007-07-17 14:01:28 -04001976 char *arr = (char *)&inq_data;
1977
1978 /* EVPD bit set */
1979 arr[0] = (scmd_id(scsicmd) == host->this_id) ?
1980 INQD_PDT_PROC : INQD_PDT_DA;
1981 if (scsicmd->cmnd[2] == 0) {
1982 /* supported vital product data pages */
1983 arr[3] = 2;
1984 arr[4] = 0x0;
1985 arr[5] = 0x80;
1986 arr[1] = scsicmd->cmnd[2];
1987 aac_internal_transfer(scsicmd, &inq_data, 0,
1988 sizeof(inq_data));
1989 scsicmd->result = DID_OK << 16 |
1990 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
1991 } else if (scsicmd->cmnd[2] == 0x80) {
1992 /* unit serial number page */
1993 arr[3] = setinqserial(dev, &arr[4],
1994 scmd_id(scsicmd));
1995 arr[1] = scsicmd->cmnd[2];
1996 aac_internal_transfer(scsicmd, &inq_data, 0,
1997 sizeof(inq_data));
1998 return aac_get_container_serial(scsicmd);
1999 } else {
2000 /* vpd page not implemented */
2001 scsicmd->result = DID_OK << 16 |
2002 COMMAND_COMPLETE << 8 |
2003 SAM_STAT_CHECK_CONDITION;
Salyzyn, Mark8e31e602008-02-06 13:54:12 -08002004 set_sense(&dev->fsa_dev[cid].sense_data,
2005 ILLEGAL_REQUEST, SENCODE_INVALID_CDB_FIELD,
2006 ASENCODE_NO_SENSE, 7, 2);
Salyzyn, Mark88e2f982007-07-17 14:01:28 -04002007 memcpy(scsicmd->sense_buffer,
2008 &dev->fsa_dev[cid].sense_data,
Salyzyn, Mark3ace4262008-01-14 07:25:33 -08002009 min_t(size_t,
2010 sizeof(dev->fsa_dev[cid].sense_data),
2011 SCSI_SENSE_BUFFERSIZE));
Salyzyn, Mark88e2f982007-07-17 14:01:28 -04002012 }
2013 scsicmd->scsi_done(scsicmd);
2014 return 0;
2015 }
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002016 inq_data.inqd_ver = 2; /* claim compliance to SCSI-2 */
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002017 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 */
2018 inq_data.inqd_len = 31;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 /*Format for "pad2" is RelAdr | WBus32 | WBus16 | Sync | Linked |Reserved| CmdQue | SftRe */
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002020 inq_data.inqd_pad2= 0x32 ; /*WBus16|Sync|CmdQue */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 /*
2022 * Set the Vendor, Product, and Revision Level
2023 * see: <vendor>.c i.e. aac.c
2024 */
Salyzyn, Mark1a655042007-06-11 16:17:55 -04002025 if (cid == host->this_id) {
Tobias Klauser6391a112006-06-08 22:23:48 -07002026 setinqstr(dev, (void *) (inq_data.inqd_vid), ARRAY_SIZE(container_types));
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002027 inq_data.inqd_pdt = INQD_PDT_PROC; /* Processor device */
2028 aac_internal_transfer(scsicmd, &inq_data, 0, sizeof(inq_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2030 scsicmd->scsi_done(scsicmd);
2031 return 0;
2032 }
Mark Haverkamp8c867b22006-08-03 08:03:30 -07002033 if (dev->in_reset)
2034 return -1;
Mark Haverkamp794d0602005-10-24 10:51:53 -07002035 setinqstr(dev, (void *) (inq_data.inqd_vid), fsa_dev_ptr[cid].type);
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002036 inq_data.inqd_pdt = INQD_PDT_DA; /* Direct/random access device */
2037 aac_internal_transfer(scsicmd, &inq_data, 0, sizeof(inq_data));
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07002038 return aac_get_container_name(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 }
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002040 case SERVICE_ACTION_IN:
2041 if (!(dev->raw_io_interface) ||
2042 !(dev->raw_io_64) ||
2043 ((scsicmd->cmnd[1] & 0x1f) != SAI_READ_CAPACITY_16))
2044 break;
2045 {
2046 u64 capacity;
Mark Haverkamp07ce5eb2005-11-08 14:26:33 -08002047 char cp[13];
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002048
2049 dprintk((KERN_DEBUG "READ CAPACITY_16 command.\n"));
2050 capacity = fsa_dev_ptr[cid].size - 1;
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002051 cp[0] = (capacity >> 56) & 0xff;
2052 cp[1] = (capacity >> 48) & 0xff;
2053 cp[2] = (capacity >> 40) & 0xff;
2054 cp[3] = (capacity >> 32) & 0xff;
2055 cp[4] = (capacity >> 24) & 0xff;
2056 cp[5] = (capacity >> 16) & 0xff;
2057 cp[6] = (capacity >> 8) & 0xff;
2058 cp[7] = (capacity >> 0) & 0xff;
2059 cp[8] = 0;
2060 cp[9] = 0;
2061 cp[10] = 2;
2062 cp[11] = 0;
Mark Haverkamp07ce5eb2005-11-08 14:26:33 -08002063 cp[12] = 0;
2064 aac_internal_transfer(scsicmd, cp, 0,
Mark Haverkamp1241f352006-03-27 09:44:23 -08002065 min_t(size_t, scsicmd->cmnd[13], sizeof(cp)));
Mark Haverkamp07ce5eb2005-11-08 14:26:33 -08002066 if (sizeof(cp) < scsicmd->cmnd[13]) {
2067 unsigned int len, offset = sizeof(cp);
2068
2069 memset(cp, 0, offset);
2070 do {
Mark Haverkamp1241f352006-03-27 09:44:23 -08002071 len = min_t(size_t, scsicmd->cmnd[13] - offset,
2072 sizeof(cp));
Mark Haverkamp07ce5eb2005-11-08 14:26:33 -08002073 aac_internal_transfer(scsicmd, cp, offset, len);
2074 } while ((offset += len) < scsicmd->cmnd[13]);
2075 }
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002076
2077 /* Do not cache partition table for arrays */
2078 scsicmd->device->removable = 1;
2079
2080 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2081 scsicmd->scsi_done(scsicmd);
2082
2083 return 0;
2084 }
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 case READ_CAPACITY:
2087 {
2088 u32 capacity;
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002089 char cp[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 dprintk((KERN_DEBUG "READ CAPACITY command.\n"));
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002092 if (fsa_dev_ptr[cid].size <= 0x100000000ULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 capacity = fsa_dev_ptr[cid].size - 1;
2094 else
2095 capacity = (u32)-1;
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 cp[0] = (capacity >> 24) & 0xff;
2098 cp[1] = (capacity >> 16) & 0xff;
2099 cp[2] = (capacity >> 8) & 0xff;
2100 cp[3] = (capacity >> 0) & 0xff;
2101 cp[4] = 0;
2102 cp[5] = 0;
2103 cp[6] = 2;
2104 cp[7] = 0;
Mark Haverkamp3b2946c2005-08-15 10:50:24 -07002105 aac_internal_transfer(scsicmd, cp, 0, sizeof(cp));
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002106 /* Do not cache partition table for arrays */
2107 scsicmd->device->removable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2110 scsicmd->scsi_done(scsicmd);
2111
2112 return 0;
2113 }
2114
2115 case MODE_SENSE:
2116 {
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002117 char mode_buf[7];
2118 int mode_buf_length = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120 dprintk((KERN_DEBUG "MODE SENSE command.\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 mode_buf[0] = 3; /* Mode data length */
2122 mode_buf[1] = 0; /* Medium type - default */
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002123 mode_buf[2] = 0; /* Device-specific param,
2124 bit 8: 0/1 = write enabled/protected
2125 bit 4: 0/1 = FUA enabled */
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08002126 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002127 mode_buf[2] = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 mode_buf[3] = 0; /* Block descriptor length */
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002129 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
2130 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
2131 mode_buf[0] = 6;
2132 mode_buf[4] = 8;
2133 mode_buf[5] = 1;
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08002134 mode_buf[6] = ((aac_cache & 6) == 2)
2135 ? 0 : 0x04; /* WCE */
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002136 mode_buf_length = 7;
2137 if (mode_buf_length > scsicmd->cmnd[4])
2138 mode_buf_length = scsicmd->cmnd[4];
2139 }
2140 aac_internal_transfer(scsicmd, mode_buf, 0, mode_buf_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2142 scsicmd->scsi_done(scsicmd);
2143
2144 return 0;
2145 }
2146 case MODE_SENSE_10:
2147 {
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002148 char mode_buf[11];
2149 int mode_buf_length = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 dprintk((KERN_DEBUG "MODE SENSE 10 byte command.\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 mode_buf[0] = 0; /* Mode data length (MSB) */
2153 mode_buf[1] = 6; /* Mode data length (LSB) */
2154 mode_buf[2] = 0; /* Medium type - default */
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002155 mode_buf[3] = 0; /* Device-specific param,
2156 bit 8: 0/1 = write enabled/protected
2157 bit 4: 0/1 = FUA enabled */
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08002158 if (dev->raw_io_interface && ((aac_cache & 5) != 1))
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002159 mode_buf[3] = 0x10;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 mode_buf[4] = 0; /* reserved */
2161 mode_buf[5] = 0; /* reserved */
2162 mode_buf[6] = 0; /* Block descriptor length (MSB) */
2163 mode_buf[7] = 0; /* Block descriptor length (LSB) */
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002164 if (((scsicmd->cmnd[2] & 0x3f) == 8) ||
2165 ((scsicmd->cmnd[2] & 0x3f) == 0x3f)) {
2166 mode_buf[1] = 9;
2167 mode_buf[8] = 8;
2168 mode_buf[9] = 1;
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08002169 mode_buf[10] = ((aac_cache & 6) == 2)
2170 ? 0 : 0x04; /* WCE */
Salyzyn, Mark9d399cc2007-05-18 14:51:34 -04002171 mode_buf_length = 11;
2172 if (mode_buf_length > scsicmd->cmnd[8])
2173 mode_buf_length = scsicmd->cmnd[8];
2174 }
2175 aac_internal_transfer(scsicmd, mode_buf, 0, mode_buf_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2178 scsicmd->scsi_done(scsicmd);
2179
2180 return 0;
2181 }
2182 case REQUEST_SENSE:
2183 dprintk((KERN_DEBUG "REQUEST SENSE command.\n"));
2184 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data, sizeof (struct sense_data));
2185 memset(&dev->fsa_dev[cid].sense_data, 0, sizeof (struct sense_data));
2186 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2187 scsicmd->scsi_done(scsicmd);
2188 return 0;
2189
2190 case ALLOW_MEDIUM_REMOVAL:
2191 dprintk((KERN_DEBUG "LOCK command.\n"));
2192 if (scsicmd->cmnd[4])
2193 fsa_dev_ptr[cid].locked = 1;
2194 else
2195 fsa_dev_ptr[cid].locked = 0;
2196
2197 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2198 scsicmd->scsi_done(scsicmd);
2199 return 0;
2200 /*
2201 * These commands are all No-Ops
2202 */
2203 case TEST_UNIT_READY:
2204 case RESERVE:
2205 case RELEASE:
2206 case REZERO_UNIT:
2207 case REASSIGN_BLOCKS:
2208 case SEEK_10:
2209 case START_STOP:
2210 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2211 scsicmd->scsi_done(scsicmd);
2212 return 0;
2213 }
2214
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002215 switch (scsicmd->cmnd[0])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 {
2217 case READ_6:
2218 case READ_10:
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002219 case READ_12:
2220 case READ_16:
Mark Haverkamp8c867b22006-08-03 08:03:30 -07002221 if (dev->in_reset)
2222 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 /*
2224 * Hack to keep track of ordinal number of the device that
2225 * corresponds to a container. Needed to convert
2226 * containers to /dev/sd device names
2227 */
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002228
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002229 if (scsicmd->request->rq_disk)
2230 strlcpy(fsa_dev_ptr[cid].devname,
2231 scsicmd->request->rq_disk->disk_name,
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002232 min(sizeof(fsa_dev_ptr[cid].devname),
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002233 sizeof(scsicmd->request->rq_disk->disk_name) + 1));
Mark Haverkamp77d644d2006-03-27 09:43:40 -08002234
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07002235 return aac_read(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 case WRITE_6:
2238 case WRITE_10:
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002239 case WRITE_12:
2240 case WRITE_16:
Mark Haverkamp8c867b22006-08-03 08:03:30 -07002241 if (dev->in_reset)
2242 return -1;
Mark Haverkamp9e7c3492007-03-15 10:26:55 -07002243 return aac_write(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 case SYNCHRONIZE_CACHE:
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08002246 if (((aac_cache & 6) == 6) && dev->cache_protected) {
2247 scsicmd->result = DID_OK << 16 |
2248 COMMAND_COMPLETE << 8 | SAM_STAT_GOOD;
2249 scsicmd->scsi_done(scsicmd);
2250 return 0;
2251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 /* Issue FIB to tell Firmware to flush it's cache */
Salyzyn, Mark95e852e2008-01-08 12:01:07 -08002253 if ((aac_cache & 6) != 2)
2254 return aac_synchronize(scsicmd);
2255 /* FALLTHRU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 default:
2257 /*
2258 * Unhandled commands
2259 */
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -07002260 dprintk((KERN_WARNING "Unhandled SCSI Command: 0x%x.\n", scsicmd->cmnd[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
Salyzyn, Mark8e31e602008-02-06 13:54:12 -08002262 set_sense(&dev->fsa_dev[cid].sense_data,
2263 ILLEGAL_REQUEST, SENCODE_INVALID_COMMAND,
2264 ASENCODE_INVALID_COMMAND, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 memcpy(scsicmd->sense_buffer, &dev->fsa_dev[cid].sense_data,
Salyzyn, Mark3ace4262008-01-14 07:25:33 -08002266 min_t(size_t,
2267 sizeof(dev->fsa_dev[cid].sense_data),
2268 SCSI_SENSE_BUFFERSIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 scsicmd->scsi_done(scsicmd);
2270 return 0;
2271 }
2272}
2273
2274static int query_disk(struct aac_dev *dev, void __user *arg)
2275{
2276 struct aac_query_disk qd;
2277 struct fsa_dev_info *fsa_dev_ptr;
2278
2279 fsa_dev_ptr = dev->fsa_dev;
Mark Haverkamp90ee3462006-08-03 08:03:07 -07002280 if (!fsa_dev_ptr)
Mark Haverkamp65101352006-09-19 08:59:23 -07002281 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 if (copy_from_user(&qd, arg, sizeof (struct aac_query_disk)))
2283 return -EFAULT;
2284 if (qd.cnum == -1)
Mark Haverkampe5718772006-03-27 09:43:25 -08002285 qd.cnum = qd.id;
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002286 else if ((qd.bus == -1) && (qd.id == -1) && (qd.lun == -1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 {
2288 if (qd.cnum < 0 || qd.cnum >= dev->maximum_num_containers)
2289 return -EINVAL;
2290 qd.instance = dev->scsi_host_ptr->host_no;
2291 qd.bus = 0;
2292 qd.id = CONTAINER_TO_ID(qd.cnum);
2293 qd.lun = CONTAINER_TO_LUN(qd.cnum);
2294 }
2295 else return -EINVAL;
2296
Salyzyn, Markfd622b12007-07-17 10:59:19 -04002297 qd.valid = fsa_dev_ptr[qd.cnum].valid != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 qd.locked = fsa_dev_ptr[qd.cnum].locked;
2299 qd.deleted = fsa_dev_ptr[qd.cnum].deleted;
2300
2301 if (fsa_dev_ptr[qd.cnum].devname[0] == '\0')
2302 qd.unmapped = 1;
2303 else
2304 qd.unmapped = 0;
2305
2306 strlcpy(qd.name, fsa_dev_ptr[qd.cnum].devname,
2307 min(sizeof(qd.name), sizeof(fsa_dev_ptr[qd.cnum].devname) + 1));
2308
2309 if (copy_to_user(arg, &qd, sizeof (struct aac_query_disk)))
2310 return -EFAULT;
2311 return 0;
2312}
2313
2314static int force_delete_disk(struct aac_dev *dev, void __user *arg)
2315{
2316 struct aac_delete_disk dd;
2317 struct fsa_dev_info *fsa_dev_ptr;
2318
2319 fsa_dev_ptr = dev->fsa_dev;
Mark Haverkamp65101352006-09-19 08:59:23 -07002320 if (!fsa_dev_ptr)
2321 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
2324 return -EFAULT;
2325
2326 if (dd.cnum >= dev->maximum_num_containers)
2327 return -EINVAL;
2328 /*
2329 * Mark this container as being deleted.
2330 */
2331 fsa_dev_ptr[dd.cnum].deleted = 1;
2332 /*
2333 * Mark the container as no longer valid
2334 */
2335 fsa_dev_ptr[dd.cnum].valid = 0;
2336 return 0;
2337}
2338
2339static int delete_disk(struct aac_dev *dev, void __user *arg)
2340{
2341 struct aac_delete_disk dd;
2342 struct fsa_dev_info *fsa_dev_ptr;
2343
2344 fsa_dev_ptr = dev->fsa_dev;
Mark Haverkamp90ee3462006-08-03 08:03:07 -07002345 if (!fsa_dev_ptr)
Mark Haverkamp65101352006-09-19 08:59:23 -07002346 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 if (copy_from_user(&dd, arg, sizeof (struct aac_delete_disk)))
2349 return -EFAULT;
2350
2351 if (dd.cnum >= dev->maximum_num_containers)
2352 return -EINVAL;
2353 /*
2354 * If the container is locked, it can not be deleted by the API.
2355 */
2356 if (fsa_dev_ptr[dd.cnum].locked)
2357 return -EBUSY;
2358 else {
2359 /*
2360 * Mark the container as no longer being valid.
2361 */
2362 fsa_dev_ptr[dd.cnum].valid = 0;
2363 fsa_dev_ptr[dd.cnum].devname[0] = '\0';
2364 return 0;
2365 }
2366}
2367
2368int aac_dev_ioctl(struct aac_dev *dev, int cmd, void __user *arg)
2369{
2370 switch (cmd) {
2371 case FSACTL_QUERY_DISK:
2372 return query_disk(dev, arg);
2373 case FSACTL_DELETE_DISK:
2374 return delete_disk(dev, arg);
2375 case FSACTL_FORCE_DELETE_DISK:
2376 return force_delete_disk(dev, arg);
2377 case FSACTL_GET_CONTAINERS:
2378 return aac_get_containers(dev);
2379 default:
2380 return -ENOTTY;
2381 }
2382}
2383
2384/**
2385 *
2386 * aac_srb_callback
2387 * @context: the context set in the fib - here it is scsi cmd
2388 * @fibptr: pointer to the fib
2389 *
2390 * Handles the completion of a scsi command to a non dasd device
2391 *
2392 */
2393
2394static void aac_srb_callback(void *context, struct fib * fibptr)
2395{
2396 struct aac_dev *dev;
2397 struct aac_srb_reply *srbreply;
2398 struct scsi_cmnd *scsicmd;
2399
2400 scsicmd = (struct scsi_cmnd *) context;
Mark Haverkamp03d44332007-03-15 10:27:45 -07002401
2402 if (!aac_valid_context(scsicmd, fibptr))
2403 return;
2404
Eric Sesterhenn125e1872006-06-23 02:06:06 -07002405 BUG_ON(fibptr == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Salyzyn, Mark1a655042007-06-11 16:17:55 -04002407 dev = fibptr->dev;
2408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 srbreply = (struct aac_srb_reply *) fib_data(fibptr);
2410
2411 scsicmd->sense_buffer[0] = '\0'; /* Initialize sense valid flag to false */
2412 /*
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002413 * Calculate resid for sg
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002416 scsi_set_resid(scsicmd, scsi_bufflen(scsicmd)
2417 - le32_to_cpu(srbreply->data_xfer_length));
2418
2419 scsi_dma_unmap(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 /*
2422 * First check the fib status
2423 */
2424
2425 if (le32_to_cpu(srbreply->status) != ST_OK){
2426 int len;
2427 printk(KERN_WARNING "aac_srb_callback: srb failed, status = %d\n", le32_to_cpu(srbreply->status));
Salyzyn, Mark3ace4262008-01-14 07:25:33 -08002428 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
2429 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8 | SAM_STAT_CHECK_CONDITION;
2431 memcpy(scsicmd->sense_buffer, srbreply->sense_data, len);
2432 }
2433
2434 /*
2435 * Next check the srb status
2436 */
2437 switch( (le32_to_cpu(srbreply->srb_status))&0x3f){
2438 case SRB_STATUS_ERROR_RECOVERY:
2439 case SRB_STATUS_PENDING:
2440 case SRB_STATUS_SUCCESS:
Mark Haverkampbb08f922006-02-01 09:30:44 -08002441 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 break;
2443 case SRB_STATUS_DATA_OVERRUN:
2444 switch(scsicmd->cmnd[0]){
2445 case READ_6:
2446 case WRITE_6:
2447 case READ_10:
2448 case WRITE_10:
2449 case READ_12:
2450 case WRITE_12:
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002451 case READ_16:
2452 case WRITE_16:
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002453 if (le32_to_cpu(srbreply->data_xfer_length) < scsicmd->underflow) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 printk(KERN_WARNING"aacraid: SCSI CMD underflow\n");
2455 } else {
2456 printk(KERN_WARNING"aacraid: SCSI CMD Data Overrun\n");
2457 }
2458 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
2459 break;
2460 case INQUIRY: {
Mark Haverkampbb08f922006-02-01 09:30:44 -08002461 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 break;
2463 }
2464 default:
2465 scsicmd->result = DID_OK << 16 | COMMAND_COMPLETE << 8;
2466 break;
2467 }
2468 break;
2469 case SRB_STATUS_ABORTED:
2470 scsicmd->result = DID_ABORT << 16 | ABORT << 8;
2471 break;
2472 case SRB_STATUS_ABORT_FAILED:
2473 // Not sure about this one - but assuming the hba was trying to abort for some reason
2474 scsicmd->result = DID_ERROR << 16 | ABORT << 8;
2475 break;
2476 case SRB_STATUS_PARITY_ERROR:
2477 scsicmd->result = DID_PARITY << 16 | MSG_PARITY_ERROR << 8;
2478 break;
2479 case SRB_STATUS_NO_DEVICE:
2480 case SRB_STATUS_INVALID_PATH_ID:
2481 case SRB_STATUS_INVALID_TARGET_ID:
2482 case SRB_STATUS_INVALID_LUN:
2483 case SRB_STATUS_SELECTION_TIMEOUT:
2484 scsicmd->result = DID_NO_CONNECT << 16 | COMMAND_COMPLETE << 8;
2485 break;
2486
2487 case SRB_STATUS_COMMAND_TIMEOUT:
2488 case SRB_STATUS_TIMEOUT:
2489 scsicmd->result = DID_TIME_OUT << 16 | COMMAND_COMPLETE << 8;
2490 break;
2491
2492 case SRB_STATUS_BUSY:
Salyzyn, Mark760af102007-06-19 11:41:21 -04002493 scsicmd->result = DID_BUS_BUSY << 16 | COMMAND_COMPLETE << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 break;
2495
2496 case SRB_STATUS_BUS_RESET:
2497 scsicmd->result = DID_RESET << 16 | COMMAND_COMPLETE << 8;
2498 break;
2499
2500 case SRB_STATUS_MESSAGE_REJECTED:
2501 scsicmd->result = DID_ERROR << 16 | MESSAGE_REJECT << 8;
2502 break;
2503 case SRB_STATUS_REQUEST_FLUSHED:
2504 case SRB_STATUS_ERROR:
2505 case SRB_STATUS_INVALID_REQUEST:
2506 case SRB_STATUS_REQUEST_SENSE_FAILED:
2507 case SRB_STATUS_NO_HBA:
2508 case SRB_STATUS_UNEXPECTED_BUS_FREE:
2509 case SRB_STATUS_PHASE_SEQUENCE_FAILURE:
2510 case SRB_STATUS_BAD_SRB_BLOCK_LENGTH:
2511 case SRB_STATUS_DELAYED_RETRY:
2512 case SRB_STATUS_BAD_FUNCTION:
2513 case SRB_STATUS_NOT_STARTED:
2514 case SRB_STATUS_NOT_IN_USE:
2515 case SRB_STATUS_FORCE_ABORT:
2516 case SRB_STATUS_DOMAIN_VALIDATION_FAIL:
2517 default:
2518#ifdef AAC_DETAILED_STATUS_INFO
2519 printk("aacraid: SRB ERROR(%u) %s scsi cmd 0x%x - scsi status 0x%x\n",
2520 le32_to_cpu(srbreply->srb_status) & 0x3F,
2521 aac_get_status_string(
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002522 le32_to_cpu(srbreply->srb_status) & 0x3F),
2523 scsicmd->cmnd[0],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 le32_to_cpu(srbreply->scsi_status));
2525#endif
2526 scsicmd->result = DID_ERROR << 16 | COMMAND_COMPLETE << 8;
2527 break;
2528 }
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002529 if (le32_to_cpu(srbreply->scsi_status) == SAM_STAT_CHECK_CONDITION) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 int len;
2531 scsicmd->result |= SAM_STAT_CHECK_CONDITION;
Salyzyn, Mark3ace4262008-01-14 07:25:33 -08002532 len = min_t(u32, le32_to_cpu(srbreply->sense_data_size),
2533 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#ifdef AAC_DETAILED_STATUS_INFO
Mark Haverkamp7a8cf292005-09-22 09:15:24 -07002535 printk(KERN_WARNING "aac_srb_callback: check condition, status = %d len=%d\n",
2536 le32_to_cpu(srbreply->status), len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537#endif
2538 memcpy(scsicmd->sense_buffer, srbreply->sense_data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540 /*
2541 * OR in the scsi status (already shifted up a bit)
2542 */
2543 scsicmd->result |= le32_to_cpu(srbreply->scsi_status);
2544
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08002545 aac_fib_complete(fibptr);
2546 aac_fib_free(fibptr);
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -07002547 scsicmd->scsi_done(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
2550/**
2551 *
2552 * aac_send_scb_fib
2553 * @scsicmd: the scsi command block
2554 *
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002555 * This routine will form a FIB and fill in the aac_srb from the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 * scsicmd passed in.
2557 */
2558
2559static int aac_send_srb_fib(struct scsi_cmnd* scsicmd)
2560{
2561 struct fib* cmd_fibcontext;
2562 struct aac_dev* dev;
2563 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Mark Haverkamp84971732005-06-20 11:55:24 -07002565 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
Mark Haverkampe5718772006-03-27 09:43:25 -08002566 if (scmd_id(scsicmd) >= dev->maximum_num_physicals ||
Mark Haverkamp84971732005-06-20 11:55:24 -07002567 scsicmd->device->lun > 7) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 scsicmd->result = DID_NO_CONNECT << 16;
2569 scsicmd->scsi_done(scsicmd);
2570 return 0;
2571 }
2572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 /*
2574 * Allocate and initialize a Fib then setup a BlockWrite command
2575 */
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08002576 if (!(cmd_fibcontext = aac_fib_alloc(dev))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 return -1;
2578 }
Mark Haverkampe8f32de2007-01-23 15:00:30 -08002579 status = aac_adapter_scsi(cmd_fibcontext, scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 /*
2582 * Check that the command queued to the controller
2583 */
Mark Haverkamp77d644d2006-03-27 09:43:40 -08002584 if (status == -EINPROGRESS) {
2585 scsicmd->SCp.phase = AAC_OWNER_FIRMWARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 return 0;
2587 }
2588
Mark Haverkampbfb35aa82006-02-01 09:30:55 -08002589 printk(KERN_WARNING "aac_srb: aac_fib_send failed with status: %d\n", status);
2590 aac_fib_complete(cmd_fibcontext);
2591 aac_fib_free(cmd_fibcontext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593 return -1;
2594}
2595
2596static unsigned long aac_build_sg(struct scsi_cmnd* scsicmd, struct sgmap* psg)
2597{
2598 struct aac_dev *dev;
2599 unsigned long byte_count = 0;
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002600 int nseg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2603 // Get rid of old data
2604 psg->count = 0;
2605 psg->sg[0].addr = 0;
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002606 psg->sg[0].count = 0;
2607
2608 nseg = scsi_dma_map(scsicmd);
2609 BUG_ON(nseg < 0);
2610 if (nseg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 struct scatterlist *sg;
2612 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002614 psg->count = cpu_to_le32(nseg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002616 scsi_for_each_sg(scsicmd, sg, nseg, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 psg->sg[i].addr = cpu_to_le32(sg_dma_address(sg));
2618 psg->sg[i].count = cpu_to_le32(sg_dma_len(sg));
2619 byte_count += sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
2621 /* hba wants the size to be exact */
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002622 if (byte_count > scsi_bufflen(scsicmd)) {
2623 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2624 (byte_count - scsi_bufflen(scsicmd));
Mark Haverkamp 56b58712005-04-27 06:05:51 -07002625 psg->sg[i-1].count = cpu_to_le32(temp);
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002626 byte_count = scsi_bufflen(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
2628 /* Check for command underflow */
2629 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2630 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2631 byte_count, scsicmd->underflow);
2632 }
2633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 return byte_count;
2635}
2636
2637
2638static unsigned long aac_build_sg64(struct scsi_cmnd* scsicmd, struct sgmap64* psg)
2639{
2640 struct aac_dev *dev;
2641 unsigned long byte_count = 0;
Mark Haverkamp 56b58712005-04-27 06:05:51 -07002642 u64 addr;
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002643 int nseg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
2645 dev = (struct aac_dev *)scsicmd->device->host->hostdata;
2646 // Get rid of old data
2647 psg->count = 0;
2648 psg->sg[0].addr[0] = 0;
2649 psg->sg[0].addr[1] = 0;
2650 psg->sg[0].count = 0;
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002651
2652 nseg = scsi_dma_map(scsicmd);
2653 BUG_ON(nseg < 0);
2654 if (nseg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 struct scatterlist *sg;
2656 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002658 scsi_for_each_sg(scsicmd, sg, nseg, i) {
Mark Haverkamp1241f352006-03-27 09:44:23 -08002659 int count = sg_dma_len(sg);
Mark Haverkamp 56b58712005-04-27 06:05:51 -07002660 addr = sg_dma_address(sg);
2661 psg->sg[i].addr[0] = cpu_to_le32(addr & 0xffffffff);
2662 psg->sg[i].addr[1] = cpu_to_le32(addr>>32);
Mark Haverkamp1241f352006-03-27 09:44:23 -08002663 psg->sg[i].count = cpu_to_le32(count);
2664 byte_count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 }
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002666 psg->count = cpu_to_le32(nseg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 /* hba wants the size to be exact */
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002668 if (byte_count > scsi_bufflen(scsicmd)) {
2669 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2670 (byte_count - scsi_bufflen(scsicmd));
Mark Haverkamp 56b58712005-04-27 06:05:51 -07002671 psg->sg[i-1].count = cpu_to_le32(temp);
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002672 byte_count = scsi_bufflen(scsicmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 }
2674 /* Check for command underflow */
2675 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2676 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2677 byte_count, scsicmd->underflow);
2678 }
2679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 return byte_count;
2681}
2682
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002683static unsigned long aac_build_sgraw(struct scsi_cmnd* scsicmd, struct sgmapraw* psg)
2684{
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002685 unsigned long byte_count = 0;
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002686 int nseg;
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002687
2688 // Get rid of old data
2689 psg->count = 0;
2690 psg->sg[0].next = 0;
2691 psg->sg[0].prev = 0;
2692 psg->sg[0].addr[0] = 0;
2693 psg->sg[0].addr[1] = 0;
2694 psg->sg[0].count = 0;
2695 psg->sg[0].flags = 0;
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002696
2697 nseg = scsi_dma_map(scsicmd);
2698 BUG_ON(nseg < 0);
2699 if (nseg) {
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002700 struct scatterlist *sg;
2701 int i;
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002702
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002703 scsi_for_each_sg(scsicmd, sg, nseg, i) {
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002704 int count = sg_dma_len(sg);
2705 u64 addr = sg_dma_address(sg);
2706 psg->sg[i].next = 0;
2707 psg->sg[i].prev = 0;
2708 psg->sg[i].addr[1] = cpu_to_le32((u32)(addr>>32));
2709 psg->sg[i].addr[0] = cpu_to_le32((u32)(addr & 0xffffffff));
2710 psg->sg[i].count = cpu_to_le32(count);
2711 psg->sg[i].flags = 0;
2712 byte_count += count;
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002713 }
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002714 psg->count = cpu_to_le32(nseg);
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002715 /* hba wants the size to be exact */
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002716 if (byte_count > scsi_bufflen(scsicmd)) {
2717 u32 temp = le32_to_cpu(psg->sg[i-1].count) -
2718 (byte_count - scsi_bufflen(scsicmd));
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002719 psg->sg[i-1].count = cpu_to_le32(temp);
FUJITA Tomonori727eead2007-05-26 02:00:42 +09002720 byte_count = scsi_bufflen(scsicmd);
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002721 }
2722 /* Check for command underflow */
2723 if(scsicmd->underflow && (byte_count < scsicmd->underflow)){
2724 printk(KERN_WARNING"aacraid: cmd len %08lX cmd underflow %08X\n",
2725 byte_count, scsicmd->underflow);
2726 }
2727 }
Mark Haverkamp0e68c002005-08-03 15:39:49 -07002728 return byte_count;
2729}
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731#ifdef AAC_DETAILED_STATUS_INFO
2732
2733struct aac_srb_status_info {
2734 u32 status;
2735 char *str;
2736};
2737
2738
2739static struct aac_srb_status_info srb_status_info[] = {
2740 { SRB_STATUS_PENDING, "Pending Status"},
2741 { SRB_STATUS_SUCCESS, "Success"},
2742 { SRB_STATUS_ABORTED, "Aborted Command"},
2743 { SRB_STATUS_ABORT_FAILED, "Abort Failed"},
Tobias Klauser6391a112006-06-08 22:23:48 -07002744 { SRB_STATUS_ERROR, "Error Event"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 { SRB_STATUS_BUSY, "Device Busy"},
2746 { SRB_STATUS_INVALID_REQUEST, "Invalid Request"},
2747 { SRB_STATUS_INVALID_PATH_ID, "Invalid Path ID"},
2748 { SRB_STATUS_NO_DEVICE, "No Device"},
2749 { SRB_STATUS_TIMEOUT, "Timeout"},
2750 { SRB_STATUS_SELECTION_TIMEOUT, "Selection Timeout"},
2751 { SRB_STATUS_COMMAND_TIMEOUT, "Command Timeout"},
2752 { SRB_STATUS_MESSAGE_REJECTED, "Message Rejected"},
2753 { SRB_STATUS_BUS_RESET, "Bus Reset"},
2754 { SRB_STATUS_PARITY_ERROR, "Parity Error"},
2755 { SRB_STATUS_REQUEST_SENSE_FAILED,"Request Sense Failed"},
2756 { SRB_STATUS_NO_HBA, "No HBA"},
2757 { SRB_STATUS_DATA_OVERRUN, "Data Overrun/Data Underrun"},
2758 { SRB_STATUS_UNEXPECTED_BUS_FREE,"Unexpected Bus Free"},
2759 { SRB_STATUS_PHASE_SEQUENCE_FAILURE,"Phase Error"},
2760 { SRB_STATUS_BAD_SRB_BLOCK_LENGTH,"Bad Srb Block Length"},
2761 { SRB_STATUS_REQUEST_FLUSHED, "Request Flushed"},
2762 { SRB_STATUS_DELAYED_RETRY, "Delayed Retry"},
Tobias Klauser6391a112006-06-08 22:23:48 -07002763 { SRB_STATUS_INVALID_LUN, "Invalid LUN"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 { SRB_STATUS_INVALID_TARGET_ID, "Invalid TARGET ID"},
2765 { SRB_STATUS_BAD_FUNCTION, "Bad Function"},
2766 { SRB_STATUS_ERROR_RECOVERY, "Error Recovery"},
2767 { SRB_STATUS_NOT_STARTED, "Not Started"},
2768 { SRB_STATUS_NOT_IN_USE, "Not In Use"},
Salyzyn, Mark8ce3eca2008-01-16 07:39:06 -08002769 { SRB_STATUS_FORCE_ABORT, "Force Abort"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 { SRB_STATUS_DOMAIN_VALIDATION_FAIL,"Domain Validation Failure"},
2771 { 0xff, "Unknown Error"}
2772};
2773
2774char *aac_get_status_string(u32 status)
2775{
2776 int i;
2777
Tobias Klauser6391a112006-06-08 22:23:48 -07002778 for (i = 0; i < ARRAY_SIZE(srb_status_info); i++)
2779 if (srb_status_info[i].status == status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return srb_status_info[i].str;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 return "Bad Status Code";
2783}
2784
2785#endif