2 3w-9xxx.c -- 3ware 9000 Storage Controller device driver for Linux.
4 Written By: Adam Radford <linuxraid@amcc.com>
5 Modifications By: Tom Couch <linuxraid@amcc.com>
7 Copyright (C) 2004-2007 Applied Micro Circuits Corporation.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; version 2 of the License.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
19 THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
20 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
21 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
22 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
23 solely responsible for determining the appropriateness of using and
24 distributing the Program and assumes all risks associated with its
25 exercise of rights under this Agreement, including but not limited to
26 the risks and costs of program errors, damage to or loss of data,
27 programs or equipment, and unavailability or interruption of operations.
29 DISCLAIMER OF LIABILITY
30 NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
31 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
33 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
35 USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
36 HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
38 You should have received a copy of the GNU General Public License
39 along with this program; if not, write to the Free Software
40 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
42 Bugs/Comments/Suggestions should be mailed to:
45 For more information, goto:
48 Note: This version of the driver does not contain a bundled firmware
53 2.26.02.000 - Driver cleanup for kernel submission.
54 2.26.02.001 - Replace schedule_timeout() calls with msleep().
55 2.26.02.002 - Add support for PAE mode.
57 Fix twa_remove() to free irq handler/unregister_chrdev()
58 before shutting down card.
59 Change to new 'change_queue_depth' api.
60 Fix 'handled=1' ISR usage, remove bogus IRQ check.
61 Remove un-needed eh_abort handler.
62 Add support for embedded firmware error strings.
63 2.26.02.003 - Correctly handle single sgl's with use_sg=1.
64 2.26.02.004 - Add support for 9550SX controllers.
65 2.26.02.005 - Fix use_sg == 0 mapping on systems with 4GB or higher.
66 2.26.02.006 - Fix 9550SX pchip reset timeout.
67 Add big endian support.
68 2.26.02.007 - Disable local interrupts during kmap/unmap_atomic().
69 2.26.02.008 - Free irq handler in __twa_shutdown().
71 Add support for 9650SE controllers.
72 2.26.02.009 - Fix dma mask setting to fallback to 32-bit if 64-bit fails.
73 2.26.02.010 - Add support for 9690SA controllers.
76 #include <linux/module.h>
77 #include <linux/reboot.h>
78 #include <linux/spinlock.h>
79 #include <linux/interrupt.h>
80 #include <linux/moduleparam.h>
81 #include <linux/errno.h>
82 #include <linux/types.h>
83 #include <linux/delay.h>
84 #include <linux/pci.h>
85 #include <linux/time.h>
86 #include <linux/mutex.h>
87 #include <linux/smp_lock.h>
90 #include <asm/uaccess.h>
91 #include <scsi/scsi.h>
92 #include <scsi/scsi_host.h>
93 #include <scsi/scsi_tcq.h>
94 #include <scsi/scsi_cmnd.h>
98 #define TW_DRIVER_VERSION "2.26.02.010"
99 static TW_Device_Extension *twa_device_extension_list[TW_MAX_SLOT];
100 static unsigned int twa_device_extension_count;
101 static int twa_major = -1;
102 extern struct timezone sys_tz;
104 /* Module parameters */
105 MODULE_AUTHOR ("AMCC");
106 MODULE_DESCRIPTION ("3ware 9000 Storage Controller Linux Driver");
107 MODULE_LICENSE("GPL");
108 MODULE_VERSION(TW_DRIVER_VERSION);
110 /* Function prototypes */
111 static void twa_aen_queue_event(TW_Device_Extension *tw_dev, TW_Command_Apache_Header *header);
112 static int twa_aen_read_queue(TW_Device_Extension *tw_dev, int request_id);
113 static char *twa_aen_severity_lookup(unsigned char severity_code);
114 static void twa_aen_sync_time(TW_Device_Extension *tw_dev, int request_id);
115 static int twa_chrdev_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg);
116 static int twa_chrdev_open(struct inode *inode, struct file *file);
117 static int twa_fill_sense(TW_Device_Extension *tw_dev, int request_id, int copy_sense, int print_host);
118 static void twa_free_request_id(TW_Device_Extension *tw_dev,int request_id);
119 static void twa_get_request_id(TW_Device_Extension *tw_dev, int *request_id);
120 static int twa_initconnection(TW_Device_Extension *tw_dev, int message_credits,
121 u32 set_features, unsigned short current_fw_srl,
122 unsigned short current_fw_arch_id,
123 unsigned short current_fw_branch,
124 unsigned short current_fw_build,
125 unsigned short *fw_on_ctlr_srl,
126 unsigned short *fw_on_ctlr_arch_id,
127 unsigned short *fw_on_ctlr_branch,
128 unsigned short *fw_on_ctlr_build,
129 u32 *init_connect_result);
130 static void twa_load_sgl(TW_Device_Extension *tw_dev, TW_Command_Full *full_command_packet, int request_id, dma_addr_t dma_handle, int length);
131 static int twa_poll_response(TW_Device_Extension *tw_dev, int request_id, int seconds);
132 static int twa_poll_status_gone(TW_Device_Extension *tw_dev, u32 flag, int seconds);
133 static int twa_post_command_packet(TW_Device_Extension *tw_dev, int request_id, char internal);
134 static int twa_reset_device_extension(TW_Device_Extension *tw_dev);
135 static int twa_reset_sequence(TW_Device_Extension *tw_dev, int soft_reset);
136 static int twa_scsiop_execute_scsi(TW_Device_Extension *tw_dev, int request_id, char *cdb, int use_sg, TW_SG_Entry *sglistarg);
137 static void twa_scsiop_execute_scsi_complete(TW_Device_Extension *tw_dev, int request_id);
138 static char *twa_string_lookup(twa_message_type *table, unsigned int aen_code);
139 static void twa_unmap_scsi_data(TW_Device_Extension *tw_dev, int request_id);
143 /* Show some statistics about the card */
144 static ssize_t twa_show_stats(struct device *dev,
145 struct device_attribute *attr, char *buf)
147 struct Scsi_Host *host = class_to_shost(dev);
148 TW_Device_Extension *tw_dev = (TW_Device_Extension *)host->hostdata;
149 unsigned long flags = 0;
152 spin_lock_irqsave(tw_dev->host->host_lock, flags);
153 len = snprintf(buf, PAGE_SIZE, "3w-9xxx Driver version: %s\n"
154 "Current commands posted: %4d\n"
155 "Max commands posted: %4d\n"
156 "Current pending commands: %4d\n"
157 "Max pending commands: %4d\n"
158 "Last sgl length: %4d\n"
159 "Max sgl length: %4d\n"
160 "Last sector count: %4d\n"
161 "Max sector count: %4d\n"
162 "SCSI Host Resets: %4d\n"
165 tw_dev->posted_request_count,
166 tw_dev->max_posted_request_count,
167 tw_dev->pending_request_count,
168 tw_dev->max_pending_request_count,
170 tw_dev->max_sgl_entries,
171 tw_dev->sector_count,
172 tw_dev->max_sector_count,
175 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
177 } /* End twa_show_stats() */
179 /* This function will set a devices queue depth */
180 static int twa_change_queue_depth(struct scsi_device *sdev, int queue_depth)
182 if (queue_depth > TW_Q_LENGTH-2)
183 queue_depth = TW_Q_LENGTH-2;
184 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, queue_depth);
186 } /* End twa_change_queue_depth() */
188 /* Create sysfs 'stats' entry */
189 static struct device_attribute twa_host_stats_attr = {
194 .show = twa_show_stats
197 /* Host attributes initializer */
198 static struct device_attribute *twa_host_attrs[] = {
199 &twa_host_stats_attr,
203 /* File operations struct for character device */
204 static const struct file_operations twa_fops = {
205 .owner = THIS_MODULE,
206 .ioctl = twa_chrdev_ioctl,
207 .open = twa_chrdev_open,
211 /* This function will complete an aen request from the isr */
212 static int twa_aen_complete(TW_Device_Extension *tw_dev, int request_id)
214 TW_Command_Full *full_command_packet;
215 TW_Command *command_packet;
216 TW_Command_Apache_Header *header;
220 header = (TW_Command_Apache_Header *)tw_dev->generic_buffer_virt[request_id];
221 tw_dev->posted_request_count--;
222 aen = le16_to_cpu(header->status_block.error);
223 full_command_packet = tw_dev->command_packet_virt[request_id];
224 command_packet = &full_command_packet->command.oldcommand;
226 /* First check for internal completion of set param for time sync */
227 if (TW_OP_OUT(command_packet->opcode__sgloffset) == TW_OP_SET_PARAM) {
228 /* Keep reading the queue in case there are more aen's */
229 if (twa_aen_read_queue(tw_dev, request_id))
238 case TW_AEN_QUEUE_EMPTY:
239 /* Quit reading the queue if this is the last one */
241 case TW_AEN_SYNC_TIME_WITH_HOST:
242 twa_aen_sync_time(tw_dev, request_id);
246 twa_aen_queue_event(tw_dev, header);
248 /* If there are more aen's, keep reading the queue */
249 if (twa_aen_read_queue(tw_dev, request_id))
258 tw_dev->state[request_id] = TW_S_COMPLETED;
259 twa_free_request_id(tw_dev, request_id);
260 clear_bit(TW_IN_ATTENTION_LOOP, &tw_dev->flags);
263 } /* End twa_aen_complete() */
265 /* This function will drain aen queue */
266 static int twa_aen_drain_queue(TW_Device_Extension *tw_dev, int no_check_reset)
269 char cdb[TW_MAX_CDB_LEN];
270 TW_SG_Entry sglist[1];
271 int finished = 0, count = 0;
272 TW_Command_Full *full_command_packet;
273 TW_Command_Apache_Header *header;
275 int first_reset = 0, queue = 0, retval = 1;
282 full_command_packet = tw_dev->command_packet_virt[request_id];
283 memset(full_command_packet, 0, sizeof(TW_Command_Full));
286 memset(&cdb, 0, TW_MAX_CDB_LEN);
287 cdb[0] = REQUEST_SENSE; /* opcode */
288 cdb[4] = TW_ALLOCATION_LENGTH; /* allocation length */
290 /* Initialize sglist */
291 memset(&sglist, 0, sizeof(TW_SG_Entry));
292 sglist[0].length = TW_SECTOR_SIZE;
293 sglist[0].address = tw_dev->generic_buffer_phys[request_id];
295 if (sglist[0].address & TW_ALIGNMENT_9000_SGL) {
296 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x1, "Found unaligned address during AEN drain");
300 /* Mark internal command */
301 tw_dev->srb[request_id] = NULL;
304 /* Send command to the board */
305 if (twa_scsiop_execute_scsi(tw_dev, request_id, cdb, 1, sglist)) {
306 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x2, "Error posting request sense");
310 /* Now poll for completion */
311 if (twa_poll_response(tw_dev, request_id, 30)) {
312 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x3, "No valid response while draining AEN queue");
313 tw_dev->posted_request_count--;
317 tw_dev->posted_request_count--;
318 header = (TW_Command_Apache_Header *)tw_dev->generic_buffer_virt[request_id];
319 aen = le16_to_cpu(header->status_block.error);
324 case TW_AEN_QUEUE_EMPTY:
325 if (first_reset != 1)
330 case TW_AEN_SOFT_RESET:
331 if (first_reset == 0)
336 case TW_AEN_SYNC_TIME_WITH_HOST:
342 /* Now queue an event info */
344 twa_aen_queue_event(tw_dev, header);
345 } while ((finished == 0) && (count < TW_MAX_AEN_DRAIN));
347 if (count == TW_MAX_AEN_DRAIN)
352 tw_dev->state[request_id] = TW_S_INITIAL;
354 } /* End twa_aen_drain_queue() */
356 /* This function will queue an event */
357 static void twa_aen_queue_event(TW_Device_Extension *tw_dev, TW_Command_Apache_Header *header)
368 /* Fill out event info */
369 event = tw_dev->event_queue[tw_dev->error_index];
371 /* Check for clobber */
374 sprintf(host, " scsi%d:", tw_dev->host->host_no);
375 if (event->retrieved == TW_AEN_NOT_RETRIEVED)
376 tw_dev->aen_clobber = 1;
379 aen = le16_to_cpu(header->status_block.error);
380 memset(event, 0, sizeof(TW_Event));
382 event->severity = TW_SEV_OUT(header->status_block.severity__reserved);
383 do_gettimeofday(&time);
384 local_time = (u32)(time.tv_sec - (sys_tz.tz_minuteswest * 60));
385 event->time_stamp_sec = local_time;
386 event->aen_code = aen;
387 event->retrieved = TW_AEN_NOT_RETRIEVED;
388 event->sequence_id = tw_dev->error_sequence_id;
389 tw_dev->error_sequence_id++;
391 /* Check for embedded error string */
392 error_str = &(header->err_specific_desc[strlen(header->err_specific_desc)+1]);
394 header->err_specific_desc[sizeof(header->err_specific_desc) - 1] = '\0';
395 event->parameter_len = strlen(header->err_specific_desc);
396 memcpy(event->parameter_data, header->err_specific_desc, event->parameter_len + (error_str[0] == '\0' ? 0 : (1 + strlen(error_str))));
397 if (event->severity != TW_AEN_SEVERITY_DEBUG)
398 printk(KERN_WARNING "3w-9xxx:%s AEN: %s (0x%02X:0x%04X): %s:%s.\n",
400 twa_aen_severity_lookup(TW_SEV_OUT(header->status_block.severity__reserved)),
401 TW_MESSAGE_SOURCE_CONTROLLER_EVENT, aen,
402 error_str[0] == '\0' ? twa_string_lookup(twa_aen_table, aen) : error_str,
403 header->err_specific_desc);
407 if ((tw_dev->error_index + 1) == TW_Q_LENGTH)
408 tw_dev->event_queue_wrapped = 1;
409 tw_dev->error_index = (tw_dev->error_index + 1 ) % TW_Q_LENGTH;
410 } /* End twa_aen_queue_event() */
412 /* This function will read the aen queue from the isr */
413 static int twa_aen_read_queue(TW_Device_Extension *tw_dev, int request_id)
415 char cdb[TW_MAX_CDB_LEN];
416 TW_SG_Entry sglist[1];
417 TW_Command_Full *full_command_packet;
420 full_command_packet = tw_dev->command_packet_virt[request_id];
421 memset(full_command_packet, 0, sizeof(TW_Command_Full));
424 memset(&cdb, 0, TW_MAX_CDB_LEN);
425 cdb[0] = REQUEST_SENSE; /* opcode */
426 cdb[4] = TW_ALLOCATION_LENGTH; /* allocation length */
428 /* Initialize sglist */
429 memset(&sglist, 0, sizeof(TW_SG_Entry));
430 sglist[0].length = TW_SECTOR_SIZE;
431 sglist[0].address = tw_dev->generic_buffer_phys[request_id];
433 /* Mark internal command */
434 tw_dev->srb[request_id] = NULL;
436 /* Now post the command packet */
437 if (twa_scsiop_execute_scsi(tw_dev, request_id, cdb, 1, sglist)) {
438 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x4, "Post failed while reading AEN queue");
444 } /* End twa_aen_read_queue() */
446 /* This function will look up an AEN severity string */
447 static char *twa_aen_severity_lookup(unsigned char severity_code)
451 if ((severity_code < (unsigned char) TW_AEN_SEVERITY_ERROR) ||
452 (severity_code > (unsigned char) TW_AEN_SEVERITY_DEBUG))
455 retval = twa_aen_severity_table[severity_code];
458 } /* End twa_aen_severity_lookup() */
460 /* This function will sync firmware time with the host time */
461 static void twa_aen_sync_time(TW_Device_Extension *tw_dev, int request_id)
465 TW_Command_Full *full_command_packet;
466 TW_Command *command_packet;
467 TW_Param_Apache *param;
470 /* Fill out the command packet */
471 full_command_packet = tw_dev->command_packet_virt[request_id];
472 memset(full_command_packet, 0, sizeof(TW_Command_Full));
473 command_packet = &full_command_packet->command.oldcommand;
474 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_SET_PARAM);
475 command_packet->request_id = request_id;
476 command_packet->byte8_offset.param.sgl[0].address = TW_CPU_TO_SGL(tw_dev->generic_buffer_phys[request_id]);
477 command_packet->byte8_offset.param.sgl[0].length = cpu_to_le32(TW_SECTOR_SIZE);
478 command_packet->size = TW_COMMAND_SIZE;
479 command_packet->byte6_offset.parameter_count = cpu_to_le16(1);
481 /* Setup the param */
482 param = (TW_Param_Apache *)tw_dev->generic_buffer_virt[request_id];
483 memset(param, 0, TW_SECTOR_SIZE);
484 param->table_id = cpu_to_le16(TW_TIMEKEEP_TABLE | 0x8000); /* Controller time keep table */
485 param->parameter_id = cpu_to_le16(0x3); /* SchedulerTime */
486 param->parameter_size_bytes = cpu_to_le16(4);
488 /* Convert system time in UTC to local time seconds since last
490 do_gettimeofday(&utc);
491 local_time = (u32)(utc.tv_sec - (sys_tz.tz_minuteswest * 60));
492 schedulertime = local_time - (3 * 86400);
493 schedulertime = cpu_to_le32(schedulertime % 604800);
495 memcpy(param->data, &schedulertime, sizeof(u32));
497 /* Mark internal command */
498 tw_dev->srb[request_id] = NULL;
500 /* Now post the command */
501 twa_post_command_packet(tw_dev, request_id, 1);
502 } /* End twa_aen_sync_time() */
504 /* This function will allocate memory and check if it is correctly aligned */
505 static int twa_allocate_memory(TW_Device_Extension *tw_dev, int size, int which)
508 dma_addr_t dma_handle;
509 unsigned long *cpu_addr;
512 cpu_addr = pci_alloc_consistent(tw_dev->tw_pci_dev, size*TW_Q_LENGTH, &dma_handle);
514 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x5, "Memory allocation failed");
518 if ((unsigned long)cpu_addr % (TW_ALIGNMENT_9000)) {
519 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x6, "Failed to allocate correctly aligned memory");
520 pci_free_consistent(tw_dev->tw_pci_dev, size*TW_Q_LENGTH, cpu_addr, dma_handle);
524 memset(cpu_addr, 0, size*TW_Q_LENGTH);
526 for (i = 0; i < TW_Q_LENGTH; i++) {
529 tw_dev->command_packet_phys[i] = dma_handle+(i*size);
530 tw_dev->command_packet_virt[i] = (TW_Command_Full *)((unsigned char *)cpu_addr + (i*size));
533 tw_dev->generic_buffer_phys[i] = dma_handle+(i*size);
534 tw_dev->generic_buffer_virt[i] = (unsigned long *)((unsigned char *)cpu_addr + (i*size));
541 } /* End twa_allocate_memory() */
543 /* This function will check the status register for unexpected bits */
544 static int twa_check_bits(u32 status_reg_value)
548 if ((status_reg_value & TW_STATUS_EXPECTED_BITS) != TW_STATUS_EXPECTED_BITS)
550 if ((status_reg_value & TW_STATUS_UNEXPECTED_BITS) != 0)
556 } /* End twa_check_bits() */
558 /* This function will check the srl and decide if we are compatible */
559 static int twa_check_srl(TW_Device_Extension *tw_dev, int *flashed)
562 unsigned short fw_on_ctlr_srl = 0, fw_on_ctlr_arch_id = 0;
563 unsigned short fw_on_ctlr_branch = 0, fw_on_ctlr_build = 0;
564 u32 init_connect_result = 0;
566 if (twa_initconnection(tw_dev, TW_INIT_MESSAGE_CREDITS,
567 TW_EXTENDED_INIT_CONNECT, TW_CURRENT_DRIVER_SRL,
568 TW_9000_ARCH_ID, TW_CURRENT_DRIVER_BRANCH,
569 TW_CURRENT_DRIVER_BUILD, &fw_on_ctlr_srl,
570 &fw_on_ctlr_arch_id, &fw_on_ctlr_branch,
571 &fw_on_ctlr_build, &init_connect_result)) {
572 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x7, "Initconnection failed while checking SRL");
576 tw_dev->tw_compat_info.working_srl = fw_on_ctlr_srl;
577 tw_dev->tw_compat_info.working_branch = fw_on_ctlr_branch;
578 tw_dev->tw_compat_info.working_build = fw_on_ctlr_build;
580 /* Try base mode compatibility */
581 if (!(init_connect_result & TW_CTLR_FW_COMPATIBLE)) {
582 if (twa_initconnection(tw_dev, TW_INIT_MESSAGE_CREDITS,
583 TW_EXTENDED_INIT_CONNECT,
584 TW_BASE_FW_SRL, TW_9000_ARCH_ID,
585 TW_BASE_FW_BRANCH, TW_BASE_FW_BUILD,
586 &fw_on_ctlr_srl, &fw_on_ctlr_arch_id,
587 &fw_on_ctlr_branch, &fw_on_ctlr_build,
588 &init_connect_result)) {
589 TW_PRINTK(tw_dev->host, TW_DRIVER, 0xa, "Initconnection (base mode) failed while checking SRL");
592 if (!(init_connect_result & TW_CTLR_FW_COMPATIBLE)) {
593 if (TW_CURRENT_DRIVER_SRL > fw_on_ctlr_srl) {
594 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x32, "Firmware and driver incompatibility: please upgrade firmware");
596 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x33, "Firmware and driver incompatibility: please upgrade driver");
600 tw_dev->tw_compat_info.working_srl = TW_BASE_FW_SRL;
601 tw_dev->tw_compat_info.working_branch = TW_BASE_FW_BRANCH;
602 tw_dev->tw_compat_info.working_build = TW_BASE_FW_BUILD;
605 /* Load rest of compatibility struct */
606 strncpy(tw_dev->tw_compat_info.driver_version, TW_DRIVER_VERSION, strlen(TW_DRIVER_VERSION));
607 tw_dev->tw_compat_info.driver_srl_high = TW_CURRENT_DRIVER_SRL;
608 tw_dev->tw_compat_info.driver_branch_high = TW_CURRENT_DRIVER_BRANCH;
609 tw_dev->tw_compat_info.driver_build_high = TW_CURRENT_DRIVER_BUILD;
610 tw_dev->tw_compat_info.driver_srl_low = TW_BASE_FW_SRL;
611 tw_dev->tw_compat_info.driver_branch_low = TW_BASE_FW_BRANCH;
612 tw_dev->tw_compat_info.driver_build_low = TW_BASE_FW_BUILD;
613 tw_dev->tw_compat_info.fw_on_ctlr_srl = fw_on_ctlr_srl;
614 tw_dev->tw_compat_info.fw_on_ctlr_branch = fw_on_ctlr_branch;
615 tw_dev->tw_compat_info.fw_on_ctlr_build = fw_on_ctlr_build;
620 } /* End twa_check_srl() */
622 /* This function handles ioctl for the character device */
623 static int twa_chrdev_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
626 unsigned long *cpu_addr, data_buffer_length_adjusted = 0, flags = 0;
627 dma_addr_t dma_handle;
629 unsigned int sequence_id = 0;
630 unsigned char event_index, start_index;
631 TW_Ioctl_Driver_Command driver_command;
632 TW_Ioctl_Buf_Apache *tw_ioctl;
634 TW_Command_Full *full_command_packet;
635 TW_Compatibility_Info *tw_compat_info;
637 struct timeval current_time;
639 TW_Device_Extension *tw_dev = twa_device_extension_list[iminor(inode)];
640 int retval = TW_IOCTL_ERROR_OS_EFAULT;
641 void __user *argp = (void __user *)arg;
643 /* Only let one of these through at a time */
644 if (mutex_lock_interruptible(&tw_dev->ioctl_lock)) {
645 retval = TW_IOCTL_ERROR_OS_EINTR;
649 /* First copy down the driver command */
650 if (copy_from_user(&driver_command, argp, sizeof(TW_Ioctl_Driver_Command)))
653 /* Check data buffer size */
654 if (driver_command.buffer_length > TW_MAX_SECTORS * 2048) {
655 retval = TW_IOCTL_ERROR_OS_EINVAL;
659 /* Hardware can only do multiple of 512 byte transfers */
660 data_buffer_length_adjusted = (driver_command.buffer_length + 511) & ~511;
662 /* Now allocate ioctl buf memory */
663 cpu_addr = dma_alloc_coherent(&tw_dev->tw_pci_dev->dev, data_buffer_length_adjusted+sizeof(TW_Ioctl_Buf_Apache) - 1, &dma_handle, GFP_KERNEL);
665 retval = TW_IOCTL_ERROR_OS_ENOMEM;
669 tw_ioctl = (TW_Ioctl_Buf_Apache *)cpu_addr;
671 /* Now copy down the entire ioctl */
672 if (copy_from_user(tw_ioctl, argp, driver_command.buffer_length + sizeof(TW_Ioctl_Buf_Apache) - 1))
675 /* See which ioctl we are doing */
677 case TW_IOCTL_FIRMWARE_PASS_THROUGH:
678 spin_lock_irqsave(tw_dev->host->host_lock, flags);
679 twa_get_request_id(tw_dev, &request_id);
681 /* Flag internal command */
682 tw_dev->srb[request_id] = NULL;
684 /* Flag chrdev ioctl */
685 tw_dev->chrdev_request_id = request_id;
687 full_command_packet = &tw_ioctl->firmware_command;
689 /* Load request id and sglist for both command types */
690 twa_load_sgl(tw_dev, full_command_packet, request_id, dma_handle, data_buffer_length_adjusted);
692 memcpy(tw_dev->command_packet_virt[request_id], &(tw_ioctl->firmware_command), sizeof(TW_Command_Full));
694 /* Now post the command packet to the controller */
695 twa_post_command_packet(tw_dev, request_id, 1);
696 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
698 timeout = TW_IOCTL_CHRDEV_TIMEOUT*HZ;
700 /* Now wait for command to complete */
701 timeout = wait_event_timeout(tw_dev->ioctl_wqueue, tw_dev->chrdev_request_id == TW_IOCTL_CHRDEV_FREE, timeout);
703 /* We timed out, and didn't get an interrupt */
704 if (tw_dev->chrdev_request_id != TW_IOCTL_CHRDEV_FREE) {
705 /* Now we need to reset the board */
706 printk(KERN_WARNING "3w-9xxx: scsi%d: WARNING: (0x%02X:0x%04X): Character ioctl (0x%x) timed out, resetting card.\n",
707 tw_dev->host->host_no, TW_DRIVER, 0x37,
709 retval = TW_IOCTL_ERROR_OS_EIO;
710 twa_reset_device_extension(tw_dev);
714 /* Now copy in the command packet response */
715 memcpy(&(tw_ioctl->firmware_command), tw_dev->command_packet_virt[request_id], sizeof(TW_Command_Full));
717 /* Now complete the io */
718 spin_lock_irqsave(tw_dev->host->host_lock, flags);
719 tw_dev->posted_request_count--;
720 tw_dev->state[request_id] = TW_S_COMPLETED;
721 twa_free_request_id(tw_dev, request_id);
722 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
724 case TW_IOCTL_GET_COMPATIBILITY_INFO:
725 tw_ioctl->driver_command.status = 0;
726 /* Copy compatiblity struct into ioctl data buffer */
727 tw_compat_info = (TW_Compatibility_Info *)tw_ioctl->data_buffer;
728 memcpy(tw_compat_info, &tw_dev->tw_compat_info, sizeof(TW_Compatibility_Info));
730 case TW_IOCTL_GET_LAST_EVENT:
731 if (tw_dev->event_queue_wrapped) {
732 if (tw_dev->aen_clobber) {
733 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_AEN_CLOBBER;
734 tw_dev->aen_clobber = 0;
736 tw_ioctl->driver_command.status = 0;
738 if (!tw_dev->error_index) {
739 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_NO_MORE_EVENTS;
742 tw_ioctl->driver_command.status = 0;
744 event_index = (tw_dev->error_index - 1 + TW_Q_LENGTH) % TW_Q_LENGTH;
745 memcpy(tw_ioctl->data_buffer, tw_dev->event_queue[event_index], sizeof(TW_Event));
746 tw_dev->event_queue[event_index]->retrieved = TW_AEN_RETRIEVED;
748 case TW_IOCTL_GET_FIRST_EVENT:
749 if (tw_dev->event_queue_wrapped) {
750 if (tw_dev->aen_clobber) {
751 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_AEN_CLOBBER;
752 tw_dev->aen_clobber = 0;
754 tw_ioctl->driver_command.status = 0;
755 event_index = tw_dev->error_index;
757 if (!tw_dev->error_index) {
758 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_NO_MORE_EVENTS;
761 tw_ioctl->driver_command.status = 0;
764 memcpy(tw_ioctl->data_buffer, tw_dev->event_queue[event_index], sizeof(TW_Event));
765 tw_dev->event_queue[event_index]->retrieved = TW_AEN_RETRIEVED;
767 case TW_IOCTL_GET_NEXT_EVENT:
768 event = (TW_Event *)tw_ioctl->data_buffer;
769 sequence_id = event->sequence_id;
770 tw_ioctl->driver_command.status = 0;
772 if (tw_dev->event_queue_wrapped) {
773 if (tw_dev->aen_clobber) {
774 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_AEN_CLOBBER;
775 tw_dev->aen_clobber = 0;
777 start_index = tw_dev->error_index;
779 if (!tw_dev->error_index) {
780 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_NO_MORE_EVENTS;
785 event_index = (start_index + sequence_id - tw_dev->event_queue[start_index]->sequence_id + 1) % TW_Q_LENGTH;
787 if (!(tw_dev->event_queue[event_index]->sequence_id > sequence_id)) {
788 if (tw_ioctl->driver_command.status == TW_IOCTL_ERROR_STATUS_AEN_CLOBBER)
789 tw_dev->aen_clobber = 1;
790 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_NO_MORE_EVENTS;
793 memcpy(tw_ioctl->data_buffer, tw_dev->event_queue[event_index], sizeof(TW_Event));
794 tw_dev->event_queue[event_index]->retrieved = TW_AEN_RETRIEVED;
796 case TW_IOCTL_GET_PREVIOUS_EVENT:
797 event = (TW_Event *)tw_ioctl->data_buffer;
798 sequence_id = event->sequence_id;
799 tw_ioctl->driver_command.status = 0;
801 if (tw_dev->event_queue_wrapped) {
802 if (tw_dev->aen_clobber) {
803 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_AEN_CLOBBER;
804 tw_dev->aen_clobber = 0;
806 start_index = tw_dev->error_index;
808 if (!tw_dev->error_index) {
809 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_NO_MORE_EVENTS;
814 event_index = (start_index + sequence_id - tw_dev->event_queue[start_index]->sequence_id - 1) % TW_Q_LENGTH;
816 if (!(tw_dev->event_queue[event_index]->sequence_id < sequence_id)) {
817 if (tw_ioctl->driver_command.status == TW_IOCTL_ERROR_STATUS_AEN_CLOBBER)
818 tw_dev->aen_clobber = 1;
819 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_NO_MORE_EVENTS;
822 memcpy(tw_ioctl->data_buffer, tw_dev->event_queue[event_index], sizeof(TW_Event));
823 tw_dev->event_queue[event_index]->retrieved = TW_AEN_RETRIEVED;
825 case TW_IOCTL_GET_LOCK:
826 tw_lock = (TW_Lock *)tw_ioctl->data_buffer;
827 do_gettimeofday(¤t_time);
828 current_time_ms = (current_time.tv_sec * 1000) + (current_time.tv_usec / 1000);
830 if ((tw_lock->force_flag == 1) || (tw_dev->ioctl_sem_lock == 0) || (current_time_ms >= tw_dev->ioctl_msec)) {
831 tw_dev->ioctl_sem_lock = 1;
832 tw_dev->ioctl_msec = current_time_ms + tw_lock->timeout_msec;
833 tw_ioctl->driver_command.status = 0;
834 tw_lock->time_remaining_msec = tw_lock->timeout_msec;
836 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_LOCKED;
837 tw_lock->time_remaining_msec = tw_dev->ioctl_msec - current_time_ms;
840 case TW_IOCTL_RELEASE_LOCK:
841 if (tw_dev->ioctl_sem_lock == 1) {
842 tw_dev->ioctl_sem_lock = 0;
843 tw_ioctl->driver_command.status = 0;
845 tw_ioctl->driver_command.status = TW_IOCTL_ERROR_STATUS_NOT_LOCKED;
849 retval = TW_IOCTL_ERROR_OS_ENOTTY;
853 /* Now copy the entire response to userspace */
854 if (copy_to_user(argp, tw_ioctl, sizeof(TW_Ioctl_Buf_Apache) + driver_command.buffer_length - 1) == 0)
857 /* Now free ioctl buf memory */
858 dma_free_coherent(&tw_dev->tw_pci_dev->dev, data_buffer_length_adjusted+sizeof(TW_Ioctl_Buf_Apache) - 1, cpu_addr, dma_handle);
860 mutex_unlock(&tw_dev->ioctl_lock);
863 } /* End twa_chrdev_ioctl() */
865 /* This function handles open for the character device */
866 /* NOTE that this function will race with remove. */
867 static int twa_chrdev_open(struct inode *inode, struct file *file)
869 unsigned int minor_number;
870 int retval = TW_IOCTL_ERROR_OS_ENODEV;
873 minor_number = iminor(inode);
874 if (minor_number >= twa_device_extension_count)
879 } /* End twa_chrdev_open() */
881 /* This function will print readable messages from status register errors */
882 static int twa_decode_bits(TW_Device_Extension *tw_dev, u32 status_reg_value)
886 /* Check for various error conditions and handle them appropriately */
887 if (status_reg_value & TW_STATUS_PCI_PARITY_ERROR) {
888 TW_PRINTK(tw_dev->host, TW_DRIVER, 0xc, "PCI Parity Error: clearing");
889 writel(TW_CONTROL_CLEAR_PARITY_ERROR, TW_CONTROL_REG_ADDR(tw_dev));
892 if (status_reg_value & TW_STATUS_PCI_ABORT) {
893 TW_PRINTK(tw_dev->host, TW_DRIVER, 0xd, "PCI Abort: clearing");
894 writel(TW_CONTROL_CLEAR_PCI_ABORT, TW_CONTROL_REG_ADDR(tw_dev));
895 pci_write_config_word(tw_dev->tw_pci_dev, PCI_STATUS, TW_PCI_CLEAR_PCI_ABORT);
898 if (status_reg_value & TW_STATUS_QUEUE_ERROR) {
899 if (((tw_dev->tw_pci_dev->device != PCI_DEVICE_ID_3WARE_9650SE) &&
900 (tw_dev->tw_pci_dev->device != PCI_DEVICE_ID_3WARE_9690SA)) ||
901 (!test_bit(TW_IN_RESET, &tw_dev->flags)))
902 TW_PRINTK(tw_dev->host, TW_DRIVER, 0xe, "Controller Queue Error: clearing");
903 writel(TW_CONTROL_CLEAR_QUEUE_ERROR, TW_CONTROL_REG_ADDR(tw_dev));
906 if (status_reg_value & TW_STATUS_MICROCONTROLLER_ERROR) {
907 if (tw_dev->reset_print == 0) {
908 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x10, "Microcontroller Error: clearing");
909 tw_dev->reset_print = 1;
916 } /* End twa_decode_bits() */
918 /* This function will empty the response queue */
919 static int twa_empty_response_queue(TW_Device_Extension *tw_dev)
921 u32 status_reg_value, response_que_value;
922 int count = 0, retval = 1;
924 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
926 while (((status_reg_value & TW_STATUS_RESPONSE_QUEUE_EMPTY) == 0) && (count < TW_MAX_RESPONSE_DRAIN)) {
927 response_que_value = readl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
928 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
931 if (count == TW_MAX_RESPONSE_DRAIN)
937 } /* End twa_empty_response_queue() */
939 /* This function will clear the pchip/response queue on 9550SX */
940 static int twa_empty_response_queue_large(TW_Device_Extension *tw_dev)
942 u32 response_que_value = 0;
943 unsigned long before;
946 if (tw_dev->tw_pci_dev->device != PCI_DEVICE_ID_3WARE_9000) {
948 while ((response_que_value & TW_9550SX_DRAIN_COMPLETED) != TW_9550SX_DRAIN_COMPLETED) {
949 response_que_value = readl(TW_RESPONSE_QUEUE_REG_ADDR_LARGE(tw_dev));
951 if (time_after(jiffies, before + HZ * 30))
954 /* P-chip settle time */
961 } /* End twa_empty_response_queue_large() */
963 /* This function passes sense keys from firmware to scsi layer */
964 static int twa_fill_sense(TW_Device_Extension *tw_dev, int request_id, int copy_sense, int print_host)
966 TW_Command_Full *full_command_packet;
967 unsigned short error;
971 full_command_packet = tw_dev->command_packet_virt[request_id];
973 /* Check for embedded error string */
974 error_str = &(full_command_packet->header.err_specific_desc[strlen(full_command_packet->header.err_specific_desc) + 1]);
976 /* Don't print error for Logical unit not supported during rollcall */
977 error = le16_to_cpu(full_command_packet->header.status_block.error);
978 if ((error != TW_ERROR_LOGICAL_UNIT_NOT_SUPPORTED) && (error != TW_ERROR_UNIT_OFFLINE)) {
980 printk(KERN_WARNING "3w-9xxx: scsi%d: ERROR: (0x%02X:0x%04X): %s:%s.\n",
981 tw_dev->host->host_no,
982 TW_MESSAGE_SOURCE_CONTROLLER_ERROR,
983 full_command_packet->header.status_block.error,
984 error_str[0] == '\0' ?
985 twa_string_lookup(twa_error_table,
986 full_command_packet->header.status_block.error) : error_str,
987 full_command_packet->header.err_specific_desc);
989 printk(KERN_WARNING "3w-9xxx: ERROR: (0x%02X:0x%04X): %s:%s.\n",
990 TW_MESSAGE_SOURCE_CONTROLLER_ERROR,
991 full_command_packet->header.status_block.error,
992 error_str[0] == '\0' ?
993 twa_string_lookup(twa_error_table,
994 full_command_packet->header.status_block.error) : error_str,
995 full_command_packet->header.err_specific_desc);
999 memcpy(tw_dev->srb[request_id]->sense_buffer, full_command_packet->header.sense_data, TW_SENSE_DATA_LENGTH);
1000 tw_dev->srb[request_id]->result = (full_command_packet->command.newcommand.status << 1);
1001 retval = TW_ISR_DONT_RESULT;
1007 } /* End twa_fill_sense() */
1009 /* This function will free up device extension resources */
1010 static void twa_free_device_extension(TW_Device_Extension *tw_dev)
1012 if (tw_dev->command_packet_virt[0])
1013 pci_free_consistent(tw_dev->tw_pci_dev,
1014 sizeof(TW_Command_Full)*TW_Q_LENGTH,
1015 tw_dev->command_packet_virt[0],
1016 tw_dev->command_packet_phys[0]);
1018 if (tw_dev->generic_buffer_virt[0])
1019 pci_free_consistent(tw_dev->tw_pci_dev,
1020 TW_SECTOR_SIZE*TW_Q_LENGTH,
1021 tw_dev->generic_buffer_virt[0],
1022 tw_dev->generic_buffer_phys[0]);
1024 kfree(tw_dev->event_queue[0]);
1025 } /* End twa_free_device_extension() */
1027 /* This function will free a request id */
1028 static void twa_free_request_id(TW_Device_Extension *tw_dev, int request_id)
1030 tw_dev->free_queue[tw_dev->free_tail] = request_id;
1031 tw_dev->state[request_id] = TW_S_FINISHED;
1032 tw_dev->free_tail = (tw_dev->free_tail + 1) % TW_Q_LENGTH;
1033 } /* End twa_free_request_id() */
1035 /* This function will get parameter table entries from the firmware */
1036 static void *twa_get_param(TW_Device_Extension *tw_dev, int request_id, int table_id, int parameter_id, int parameter_size_bytes)
1038 TW_Command_Full *full_command_packet;
1039 TW_Command *command_packet;
1040 TW_Param_Apache *param;
1041 unsigned long param_value;
1042 void *retval = NULL;
1044 /* Setup the command packet */
1045 full_command_packet = tw_dev->command_packet_virt[request_id];
1046 memset(full_command_packet, 0, sizeof(TW_Command_Full));
1047 command_packet = &full_command_packet->command.oldcommand;
1049 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_GET_PARAM);
1050 command_packet->size = TW_COMMAND_SIZE;
1051 command_packet->request_id = request_id;
1052 command_packet->byte6_offset.block_count = cpu_to_le16(1);
1054 /* Now setup the param */
1055 param = (TW_Param_Apache *)tw_dev->generic_buffer_virt[request_id];
1056 memset(param, 0, TW_SECTOR_SIZE);
1057 param->table_id = cpu_to_le16(table_id | 0x8000);
1058 param->parameter_id = cpu_to_le16(parameter_id);
1059 param->parameter_size_bytes = cpu_to_le16(parameter_size_bytes);
1060 param_value = tw_dev->generic_buffer_phys[request_id];
1062 command_packet->byte8_offset.param.sgl[0].address = TW_CPU_TO_SGL(param_value);
1063 command_packet->byte8_offset.param.sgl[0].length = cpu_to_le32(TW_SECTOR_SIZE);
1065 /* Post the command packet to the board */
1066 twa_post_command_packet(tw_dev, request_id, 1);
1068 /* Poll for completion */
1069 if (twa_poll_response(tw_dev, request_id, 30))
1070 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x13, "No valid response during get param")
1072 retval = (void *)&(param->data[0]);
1074 tw_dev->posted_request_count--;
1075 tw_dev->state[request_id] = TW_S_INITIAL;
1078 } /* End twa_get_param() */
1080 /* This function will assign an available request id */
1081 static void twa_get_request_id(TW_Device_Extension *tw_dev, int *request_id)
1083 *request_id = tw_dev->free_queue[tw_dev->free_head];
1084 tw_dev->free_head = (tw_dev->free_head + 1) % TW_Q_LENGTH;
1085 tw_dev->state[*request_id] = TW_S_STARTED;
1086 } /* End twa_get_request_id() */
1088 /* This function will send an initconnection command to controller */
1089 static int twa_initconnection(TW_Device_Extension *tw_dev, int message_credits,
1090 u32 set_features, unsigned short current_fw_srl,
1091 unsigned short current_fw_arch_id,
1092 unsigned short current_fw_branch,
1093 unsigned short current_fw_build,
1094 unsigned short *fw_on_ctlr_srl,
1095 unsigned short *fw_on_ctlr_arch_id,
1096 unsigned short *fw_on_ctlr_branch,
1097 unsigned short *fw_on_ctlr_build,
1098 u32 *init_connect_result)
1100 TW_Command_Full *full_command_packet;
1101 TW_Initconnect *tw_initconnect;
1102 int request_id = 0, retval = 1;
1104 /* Initialize InitConnection command packet */
1105 full_command_packet = tw_dev->command_packet_virt[request_id];
1106 memset(full_command_packet, 0, sizeof(TW_Command_Full));
1107 full_command_packet->header.header_desc.size_header = 128;
1109 tw_initconnect = (TW_Initconnect *)&full_command_packet->command.oldcommand;
1110 tw_initconnect->opcode__reserved = TW_OPRES_IN(0, TW_OP_INIT_CONNECTION);
1111 tw_initconnect->request_id = request_id;
1112 tw_initconnect->message_credits = cpu_to_le16(message_credits);
1113 tw_initconnect->features = set_features;
1115 /* Turn on 64-bit sgl support if we need to */
1116 tw_initconnect->features |= sizeof(dma_addr_t) > 4 ? 1 : 0;
1118 tw_initconnect->features = cpu_to_le32(tw_initconnect->features);
1120 if (set_features & TW_EXTENDED_INIT_CONNECT) {
1121 tw_initconnect->size = TW_INIT_COMMAND_PACKET_SIZE_EXTENDED;
1122 tw_initconnect->fw_srl = cpu_to_le16(current_fw_srl);
1123 tw_initconnect->fw_arch_id = cpu_to_le16(current_fw_arch_id);
1124 tw_initconnect->fw_branch = cpu_to_le16(current_fw_branch);
1125 tw_initconnect->fw_build = cpu_to_le16(current_fw_build);
1127 tw_initconnect->size = TW_INIT_COMMAND_PACKET_SIZE;
1129 /* Send command packet to the board */
1130 twa_post_command_packet(tw_dev, request_id, 1);
1132 /* Poll for completion */
1133 if (twa_poll_response(tw_dev, request_id, 30)) {
1134 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x15, "No valid response during init connection");
1136 if (set_features & TW_EXTENDED_INIT_CONNECT) {
1137 *fw_on_ctlr_srl = le16_to_cpu(tw_initconnect->fw_srl);
1138 *fw_on_ctlr_arch_id = le16_to_cpu(tw_initconnect->fw_arch_id);
1139 *fw_on_ctlr_branch = le16_to_cpu(tw_initconnect->fw_branch);
1140 *fw_on_ctlr_build = le16_to_cpu(tw_initconnect->fw_build);
1141 *init_connect_result = le32_to_cpu(tw_initconnect->result);
1146 tw_dev->posted_request_count--;
1147 tw_dev->state[request_id] = TW_S_INITIAL;
1150 } /* End twa_initconnection() */
1152 /* This function will initialize the fields of a device extension */
1153 static int twa_initialize_device_extension(TW_Device_Extension *tw_dev)
1157 /* Initialize command packet buffers */
1158 if (twa_allocate_memory(tw_dev, sizeof(TW_Command_Full), 0)) {
1159 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x16, "Command packet memory allocation failed");
1163 /* Initialize generic buffer */
1164 if (twa_allocate_memory(tw_dev, TW_SECTOR_SIZE, 1)) {
1165 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x17, "Generic memory allocation failed");
1169 /* Allocate event info space */
1170 tw_dev->event_queue[0] = kcalloc(TW_Q_LENGTH, sizeof(TW_Event), GFP_KERNEL);
1171 if (!tw_dev->event_queue[0]) {
1172 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x18, "Event info memory allocation failed");
1177 for (i = 0; i < TW_Q_LENGTH; i++) {
1178 tw_dev->event_queue[i] = (TW_Event *)((unsigned char *)tw_dev->event_queue[0] + (i * sizeof(TW_Event)));
1179 tw_dev->free_queue[i] = i;
1180 tw_dev->state[i] = TW_S_INITIAL;
1183 tw_dev->pending_head = TW_Q_START;
1184 tw_dev->pending_tail = TW_Q_START;
1185 tw_dev->free_head = TW_Q_START;
1186 tw_dev->free_tail = TW_Q_START;
1187 tw_dev->error_sequence_id = 1;
1188 tw_dev->chrdev_request_id = TW_IOCTL_CHRDEV_FREE;
1190 mutex_init(&tw_dev->ioctl_lock);
1191 init_waitqueue_head(&tw_dev->ioctl_wqueue);
1196 } /* End twa_initialize_device_extension() */
1198 /* This function is the interrupt service routine */
1199 static irqreturn_t twa_interrupt(int irq, void *dev_instance)
1201 int request_id, error = 0;
1202 u32 status_reg_value;
1203 TW_Response_Queue response_que;
1204 TW_Command_Full *full_command_packet;
1205 TW_Device_Extension *tw_dev = (TW_Device_Extension *)dev_instance;
1208 /* Get the per adapter lock */
1209 spin_lock(tw_dev->host->host_lock);
1211 /* Read the registers */
1212 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
1214 /* Check if this is our interrupt, otherwise bail */
1215 if (!(status_reg_value & TW_STATUS_VALID_INTERRUPT))
1216 goto twa_interrupt_bail;
1220 /* If we are resetting, bail */
1221 if (test_bit(TW_IN_RESET, &tw_dev->flags))
1222 goto twa_interrupt_bail;
1224 /* Check controller for errors */
1225 if (twa_check_bits(status_reg_value)) {
1226 if (twa_decode_bits(tw_dev, status_reg_value)) {
1227 TW_CLEAR_ALL_INTERRUPTS(tw_dev);
1228 goto twa_interrupt_bail;
1232 /* Handle host interrupt */
1233 if (status_reg_value & TW_STATUS_HOST_INTERRUPT)
1234 TW_CLEAR_HOST_INTERRUPT(tw_dev);
1236 /* Handle attention interrupt */
1237 if (status_reg_value & TW_STATUS_ATTENTION_INTERRUPT) {
1238 TW_CLEAR_ATTENTION_INTERRUPT(tw_dev);
1239 if (!(test_and_set_bit(TW_IN_ATTENTION_LOOP, &tw_dev->flags))) {
1240 twa_get_request_id(tw_dev, &request_id);
1242 error = twa_aen_read_queue(tw_dev, request_id);
1244 tw_dev->state[request_id] = TW_S_COMPLETED;
1245 twa_free_request_id(tw_dev, request_id);
1246 clear_bit(TW_IN_ATTENTION_LOOP, &tw_dev->flags);
1251 /* Handle command interrupt */
1252 if (status_reg_value & TW_STATUS_COMMAND_INTERRUPT) {
1253 TW_MASK_COMMAND_INTERRUPT(tw_dev);
1254 /* Drain as many pending commands as we can */
1255 while (tw_dev->pending_request_count > 0) {
1256 request_id = tw_dev->pending_queue[tw_dev->pending_head];
1257 if (tw_dev->state[request_id] != TW_S_PENDING) {
1258 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x19, "Found request id that wasn't pending");
1259 TW_CLEAR_ALL_INTERRUPTS(tw_dev);
1260 goto twa_interrupt_bail;
1262 if (twa_post_command_packet(tw_dev, request_id, 1)==0) {
1263 tw_dev->pending_head = (tw_dev->pending_head + 1) % TW_Q_LENGTH;
1264 tw_dev->pending_request_count--;
1266 /* If we get here, we will continue re-posting on the next command interrupt */
1272 /* Handle response interrupt */
1273 if (status_reg_value & TW_STATUS_RESPONSE_INTERRUPT) {
1275 /* Drain the response queue from the board */
1276 while ((status_reg_value & TW_STATUS_RESPONSE_QUEUE_EMPTY) == 0) {
1277 /* Complete the response */
1278 response_que.value = readl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
1279 request_id = TW_RESID_OUT(response_que.response_id);
1280 full_command_packet = tw_dev->command_packet_virt[request_id];
1282 /* Check for command packet errors */
1283 if (full_command_packet->command.newcommand.status != 0) {
1284 if (tw_dev->srb[request_id] != NULL) {
1285 error = twa_fill_sense(tw_dev, request_id, 1, 1);
1287 /* Skip ioctl error prints */
1288 if (request_id != tw_dev->chrdev_request_id) {
1289 error = twa_fill_sense(tw_dev, request_id, 0, 1);
1294 /* Check for correct state */
1295 if (tw_dev->state[request_id] != TW_S_POSTED) {
1296 if (tw_dev->srb[request_id] != NULL) {
1297 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x1a, "Received a request id that wasn't posted");
1298 TW_CLEAR_ALL_INTERRUPTS(tw_dev);
1299 goto twa_interrupt_bail;
1303 /* Check for internal command completion */
1304 if (tw_dev->srb[request_id] == NULL) {
1305 if (request_id != tw_dev->chrdev_request_id) {
1306 if (twa_aen_complete(tw_dev, request_id))
1307 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x1b, "Error completing AEN during attention interrupt");
1309 tw_dev->chrdev_request_id = TW_IOCTL_CHRDEV_FREE;
1310 wake_up(&tw_dev->ioctl_wqueue);
1313 struct scsi_cmnd *cmd;
1315 cmd = tw_dev->srb[request_id];
1317 twa_scsiop_execute_scsi_complete(tw_dev, request_id);
1318 /* If no error command was a success */
1320 cmd->result = (DID_OK << 16);
1323 /* If error, command failed */
1325 /* Ask for a host reset */
1326 cmd->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
1329 /* Report residual bytes for single sgl */
1330 if ((scsi_sg_count(cmd) <= 1) && (full_command_packet->command.newcommand.status == 0)) {
1331 if (full_command_packet->command.newcommand.sg_list[0].length < scsi_bufflen(tw_dev->srb[request_id]))
1332 scsi_set_resid(cmd, scsi_bufflen(cmd) - full_command_packet->command.newcommand.sg_list[0].length);
1335 /* Now complete the io */
1336 tw_dev->state[request_id] = TW_S_COMPLETED;
1337 twa_free_request_id(tw_dev, request_id);
1338 tw_dev->posted_request_count--;
1339 tw_dev->srb[request_id]->scsi_done(tw_dev->srb[request_id]);
1340 twa_unmap_scsi_data(tw_dev, request_id);
1343 /* Check for valid status after each drain */
1344 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
1345 if (twa_check_bits(status_reg_value)) {
1346 if (twa_decode_bits(tw_dev, status_reg_value)) {
1347 TW_CLEAR_ALL_INTERRUPTS(tw_dev);
1348 goto twa_interrupt_bail;
1355 spin_unlock(tw_dev->host->host_lock);
1356 return IRQ_RETVAL(handled);
1357 } /* End twa_interrupt() */
1359 /* This function will load the request id and various sgls for ioctls */
1360 static void twa_load_sgl(TW_Device_Extension *tw_dev, TW_Command_Full *full_command_packet, int request_id, dma_addr_t dma_handle, int length)
1362 TW_Command *oldcommand;
1363 TW_Command_Apache *newcommand;
1365 unsigned int pae = 0;
1367 if ((sizeof(long) < 8) && (sizeof(dma_addr_t) > 4))
1370 if (TW_OP_OUT(full_command_packet->command.newcommand.opcode__reserved) == TW_OP_EXECUTE_SCSI) {
1371 newcommand = &full_command_packet->command.newcommand;
1372 newcommand->request_id__lunl =
1373 cpu_to_le16(TW_REQ_LUN_IN(TW_LUN_OUT(newcommand->request_id__lunl), request_id));
1374 newcommand->sg_list[0].address = TW_CPU_TO_SGL(dma_handle + sizeof(TW_Ioctl_Buf_Apache) - 1);
1375 newcommand->sg_list[0].length = cpu_to_le32(length);
1376 newcommand->sgl_entries__lunh =
1377 cpu_to_le16(TW_REQ_LUN_IN(TW_LUN_OUT(newcommand->sgl_entries__lunh), 1));
1379 oldcommand = &full_command_packet->command.oldcommand;
1380 oldcommand->request_id = request_id;
1382 if (TW_SGL_OUT(oldcommand->opcode__sgloffset)) {
1383 /* Load the sg list */
1384 if (tw_dev->tw_pci_dev->device == PCI_DEVICE_ID_3WARE_9690SA)
1385 sgl = (TW_SG_Entry *)((u32 *)oldcommand+oldcommand->size - (sizeof(TW_SG_Entry)/4) + pae);
1387 sgl = (TW_SG_Entry *)((u32 *)oldcommand+TW_SGL_OUT(oldcommand->opcode__sgloffset));
1388 sgl->address = TW_CPU_TO_SGL(dma_handle + sizeof(TW_Ioctl_Buf_Apache) - 1);
1389 sgl->length = cpu_to_le32(length);
1391 oldcommand->size += pae;
1394 } /* End twa_load_sgl() */
1396 /* This function will perform a pci-dma mapping for a scatter gather list */
1397 static int twa_map_scsi_sg_data(TW_Device_Extension *tw_dev, int request_id)
1400 struct scsi_cmnd *cmd = tw_dev->srb[request_id];
1402 use_sg = scsi_dma_map(cmd);
1405 else if (use_sg < 0) {
1406 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x1c, "Failed to map scatter gather list");
1410 cmd->SCp.phase = TW_PHASE_SGLIST;
1411 cmd->SCp.have_data_in = use_sg;
1414 } /* End twa_map_scsi_sg_data() */
1416 /* This function will poll for a response interrupt of a request */
1417 static int twa_poll_response(TW_Device_Extension *tw_dev, int request_id, int seconds)
1419 int retval = 1, found = 0, response_request_id;
1420 TW_Response_Queue response_queue;
1421 TW_Command_Full *full_command_packet = tw_dev->command_packet_virt[request_id];
1423 if (twa_poll_status_gone(tw_dev, TW_STATUS_RESPONSE_QUEUE_EMPTY, seconds) == 0) {
1424 response_queue.value = readl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
1425 response_request_id = TW_RESID_OUT(response_queue.response_id);
1426 if (request_id != response_request_id) {
1427 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x1e, "Found unexpected request id while polling for response");
1430 if (TW_OP_OUT(full_command_packet->command.newcommand.opcode__reserved) == TW_OP_EXECUTE_SCSI) {
1431 if (full_command_packet->command.newcommand.status != 0) {
1433 twa_fill_sense(tw_dev, request_id, 0, 0);
1438 if (full_command_packet->command.oldcommand.status != 0) {
1440 twa_fill_sense(tw_dev, request_id, 0, 0);
1451 } /* End twa_poll_response() */
1453 /* This function will poll the status register for a flag */
1454 static int twa_poll_status(TW_Device_Extension *tw_dev, u32 flag, int seconds)
1456 u32 status_reg_value;
1457 unsigned long before;
1460 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
1463 if (twa_check_bits(status_reg_value))
1464 twa_decode_bits(tw_dev, status_reg_value);
1466 while ((status_reg_value & flag) != flag) {
1467 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
1469 if (twa_check_bits(status_reg_value))
1470 twa_decode_bits(tw_dev, status_reg_value);
1472 if (time_after(jiffies, before + HZ * seconds))
1480 } /* End twa_poll_status() */
1482 /* This function will poll the status register for disappearance of a flag */
1483 static int twa_poll_status_gone(TW_Device_Extension *tw_dev, u32 flag, int seconds)
1485 u32 status_reg_value;
1486 unsigned long before;
1489 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
1492 if (twa_check_bits(status_reg_value))
1493 twa_decode_bits(tw_dev, status_reg_value);
1495 while ((status_reg_value & flag) != 0) {
1496 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
1497 if (twa_check_bits(status_reg_value))
1498 twa_decode_bits(tw_dev, status_reg_value);
1500 if (time_after(jiffies, before + HZ * seconds))
1508 } /* End twa_poll_status_gone() */
1510 /* This function will attempt to post a command packet to the board */
1511 static int twa_post_command_packet(TW_Device_Extension *tw_dev, int request_id, char internal)
1513 u32 status_reg_value;
1514 dma_addr_t command_que_value;
1517 command_que_value = tw_dev->command_packet_phys[request_id];
1519 /* For 9650SE write low 4 bytes first */
1520 if ((tw_dev->tw_pci_dev->device == PCI_DEVICE_ID_3WARE_9650SE) ||
1521 (tw_dev->tw_pci_dev->device == PCI_DEVICE_ID_3WARE_9690SA)) {
1522 command_que_value += TW_COMMAND_OFFSET;
1523 writel((u32)command_que_value, TW_COMMAND_QUEUE_REG_ADDR_LARGE(tw_dev));
1526 status_reg_value = readl(TW_STATUS_REG_ADDR(tw_dev));
1528 if (twa_check_bits(status_reg_value))
1529 twa_decode_bits(tw_dev, status_reg_value);
1531 if (((tw_dev->pending_request_count > 0) && (tw_dev->state[request_id] != TW_S_PENDING)) || (status_reg_value & TW_STATUS_COMMAND_QUEUE_FULL)) {
1533 /* Only pend internal driver commands */
1535 retval = SCSI_MLQUEUE_HOST_BUSY;
1539 /* Couldn't post the command packet, so we do it later */
1540 if (tw_dev->state[request_id] != TW_S_PENDING) {
1541 tw_dev->state[request_id] = TW_S_PENDING;
1542 tw_dev->pending_request_count++;
1543 if (tw_dev->pending_request_count > tw_dev->max_pending_request_count) {
1544 tw_dev->max_pending_request_count = tw_dev->pending_request_count;
1546 tw_dev->pending_queue[tw_dev->pending_tail] = request_id;
1547 tw_dev->pending_tail = (tw_dev->pending_tail + 1) % TW_Q_LENGTH;
1549 TW_UNMASK_COMMAND_INTERRUPT(tw_dev);
1552 if ((tw_dev->tw_pci_dev->device == PCI_DEVICE_ID_3WARE_9650SE) ||
1553 (tw_dev->tw_pci_dev->device == PCI_DEVICE_ID_3WARE_9690SA)) {
1554 /* Now write upper 4 bytes */
1555 writel((u32)((u64)command_que_value >> 32), TW_COMMAND_QUEUE_REG_ADDR_LARGE(tw_dev) + 0x4);
1557 if (sizeof(dma_addr_t) > 4) {
1558 command_que_value += TW_COMMAND_OFFSET;
1559 writel((u32)command_que_value, TW_COMMAND_QUEUE_REG_ADDR(tw_dev));
1560 writel((u32)((u64)command_que_value >> 32), TW_COMMAND_QUEUE_REG_ADDR(tw_dev) + 0x4);
1562 writel(TW_COMMAND_OFFSET + command_que_value, TW_COMMAND_QUEUE_REG_ADDR(tw_dev));
1565 tw_dev->state[request_id] = TW_S_POSTED;
1566 tw_dev->posted_request_count++;
1567 if (tw_dev->posted_request_count > tw_dev->max_posted_request_count) {
1568 tw_dev->max_posted_request_count = tw_dev->posted_request_count;
1574 } /* End twa_post_command_packet() */
1576 /* This function will reset a device extension */
1577 static int twa_reset_device_extension(TW_Device_Extension *tw_dev)
1581 unsigned long flags = 0;
1583 set_bit(TW_IN_RESET, &tw_dev->flags);
1584 TW_DISABLE_INTERRUPTS(tw_dev);
1585 TW_MASK_COMMAND_INTERRUPT(tw_dev);
1586 spin_lock_irqsave(tw_dev->host->host_lock, flags);
1588 /* Abort all requests that are in progress */
1589 for (i = 0; i < TW_Q_LENGTH; i++) {
1590 if ((tw_dev->state[i] != TW_S_FINISHED) &&
1591 (tw_dev->state[i] != TW_S_INITIAL) &&
1592 (tw_dev->state[i] != TW_S_COMPLETED)) {
1593 if (tw_dev->srb[i]) {
1594 tw_dev->srb[i]->result = (DID_RESET << 16);
1595 tw_dev->srb[i]->scsi_done(tw_dev->srb[i]);
1596 twa_unmap_scsi_data(tw_dev, i);
1601 /* Reset queues and counts */
1602 for (i = 0; i < TW_Q_LENGTH; i++) {
1603 tw_dev->free_queue[i] = i;
1604 tw_dev->state[i] = TW_S_INITIAL;
1606 tw_dev->free_head = TW_Q_START;
1607 tw_dev->free_tail = TW_Q_START;
1608 tw_dev->posted_request_count = 0;
1609 tw_dev->pending_request_count = 0;
1610 tw_dev->pending_head = TW_Q_START;
1611 tw_dev->pending_tail = TW_Q_START;
1612 tw_dev->reset_print = 0;
1614 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
1616 if (twa_reset_sequence(tw_dev, 1))
1619 TW_ENABLE_AND_CLEAR_INTERRUPTS(tw_dev);
1620 clear_bit(TW_IN_RESET, &tw_dev->flags);
1621 tw_dev->chrdev_request_id = TW_IOCTL_CHRDEV_FREE;
1626 } /* End twa_reset_device_extension() */
1628 /* This function will reset a controller */
1629 static int twa_reset_sequence(TW_Device_Extension *tw_dev, int soft_reset)
1631 int tries = 0, retval = 1, flashed = 0, do_soft_reset = soft_reset;
1633 while (tries < TW_MAX_RESET_TRIES) {
1634 if (do_soft_reset) {
1635 TW_SOFT_RESET(tw_dev);
1636 /* Clear pchip/response queue on 9550SX */
1637 if (twa_empty_response_queue_large(tw_dev)) {
1638 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x36, "Response queue (large) empty failed during reset sequence");
1645 /* Make sure controller is in a good state */
1646 if (twa_poll_status(tw_dev, TW_STATUS_MICROCONTROLLER_READY | (do_soft_reset == 1 ? TW_STATUS_ATTENTION_INTERRUPT : 0), 60)) {
1647 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x1f, "Microcontroller not ready during reset sequence");
1653 /* Empty response queue */
1654 if (twa_empty_response_queue(tw_dev)) {
1655 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x20, "Response queue empty failed during reset sequence");
1663 /* Check for compatibility/flash */
1664 if (twa_check_srl(tw_dev, &flashed)) {
1665 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x21, "Compatibility check failed during reset sequence");
1676 /* Drain the AEN queue */
1677 if (twa_aen_drain_queue(tw_dev, soft_reset)) {
1678 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x22, "AEN drain failed during reset sequence");
1684 /* If we got here, controller is in a good state */
1690 } /* End twa_reset_sequence() */
1692 /* This funciton returns unit geometry in cylinders/heads/sectors */
1693 static int twa_scsi_biosparam(struct scsi_device *sdev, struct block_device *bdev, sector_t capacity, int geom[])
1695 int heads, sectors, cylinders;
1696 TW_Device_Extension *tw_dev;
1698 tw_dev = (TW_Device_Extension *)sdev->host->hostdata;
1700 if (capacity >= 0x200000) {
1703 cylinders = sector_div(capacity, heads * sectors);
1707 cylinders = sector_div(capacity, heads * sectors);
1712 geom[2] = cylinders;
1715 } /* End twa_scsi_biosparam() */
1717 /* This is the new scsi eh reset function */
1718 static int twa_scsi_eh_reset(struct scsi_cmnd *SCpnt)
1720 TW_Device_Extension *tw_dev = NULL;
1721 int retval = FAILED;
1723 tw_dev = (TW_Device_Extension *)SCpnt->device->host->hostdata;
1725 tw_dev->num_resets++;
1727 sdev_printk(KERN_WARNING, SCpnt->device,
1728 "WARNING: (0x%02X:0x%04X): Command (0x%x) timed out, resetting card.\n",
1729 TW_DRIVER, 0x2c, SCpnt->cmnd[0]);
1731 /* Make sure we are not issuing an ioctl or resetting from ioctl */
1732 mutex_lock(&tw_dev->ioctl_lock);
1734 /* Now reset the card and some of the device extension data */
1735 if (twa_reset_device_extension(tw_dev)) {
1736 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x2b, "Controller reset failed during scsi host reset");
1742 mutex_unlock(&tw_dev->ioctl_lock);
1744 } /* End twa_scsi_eh_reset() */
1746 /* This is the main scsi queue function to handle scsi opcodes */
1747 static int twa_scsi_queue(struct scsi_cmnd *SCpnt, void (*done)(struct scsi_cmnd *))
1749 int request_id, retval;
1750 TW_Device_Extension *tw_dev = (TW_Device_Extension *)SCpnt->device->host->hostdata;
1752 /* If we are resetting due to timed out ioctl, report as busy */
1753 if (test_bit(TW_IN_RESET, &tw_dev->flags)) {
1754 retval = SCSI_MLQUEUE_HOST_BUSY;
1758 /* Check if this FW supports luns */
1759 if ((SCpnt->device->lun != 0) && (tw_dev->tw_compat_info.working_srl < TW_FW_SRL_LUNS_SUPPORTED)) {
1760 SCpnt->result = (DID_BAD_TARGET << 16);
1766 /* Save done function into scsi_cmnd struct */
1767 SCpnt->scsi_done = done;
1769 /* Get a free request id */
1770 twa_get_request_id(tw_dev, &request_id);
1772 /* Save the scsi command for use by the ISR */
1773 tw_dev->srb[request_id] = SCpnt;
1775 /* Initialize phase to zero */
1776 SCpnt->SCp.phase = TW_PHASE_INITIAL;
1778 retval = twa_scsiop_execute_scsi(tw_dev, request_id, NULL, 0, NULL);
1780 case SCSI_MLQUEUE_HOST_BUSY:
1781 twa_free_request_id(tw_dev, request_id);
1784 tw_dev->state[request_id] = TW_S_COMPLETED;
1785 twa_free_request_id(tw_dev, request_id);
1786 SCpnt->result = (DID_ERROR << 16);
1792 } /* End twa_scsi_queue() */
1794 /* This function hands scsi cdb's to the firmware */
1795 static int twa_scsiop_execute_scsi(TW_Device_Extension *tw_dev, int request_id, char *cdb, int use_sg, TW_SG_Entry *sglistarg)
1797 TW_Command_Full *full_command_packet;
1798 TW_Command_Apache *command_packet;
1799 u32 num_sectors = 0x0;
1801 struct scsi_cmnd *srb = NULL;
1802 struct scatterlist *sglist = NULL, *sg;
1805 if (tw_dev->srb[request_id]) {
1806 srb = tw_dev->srb[request_id];
1807 if (scsi_sglist(srb))
1808 sglist = scsi_sglist(srb);
1811 /* Initialize command packet */
1812 full_command_packet = tw_dev->command_packet_virt[request_id];
1813 full_command_packet->header.header_desc.size_header = 128;
1814 full_command_packet->header.status_block.error = 0;
1815 full_command_packet->header.status_block.severity__reserved = 0;
1817 command_packet = &full_command_packet->command.newcommand;
1818 command_packet->status = 0;
1819 command_packet->opcode__reserved = TW_OPRES_IN(0, TW_OP_EXECUTE_SCSI);
1821 /* We forced 16 byte cdb use earlier */
1823 memcpy(command_packet->cdb, srb->cmnd, TW_MAX_CDB_LEN);
1825 memcpy(command_packet->cdb, cdb, TW_MAX_CDB_LEN);
1828 command_packet->unit = srb->device->id;
1829 command_packet->request_id__lunl =
1830 cpu_to_le16(TW_REQ_LUN_IN(srb->device->lun, request_id));
1832 command_packet->request_id__lunl =
1833 cpu_to_le16(TW_REQ_LUN_IN(0, request_id));
1834 command_packet->unit = 0;
1837 command_packet->sgl_offset = 16;
1840 /* Map sglist from scsi layer to cmd packet */
1842 if (scsi_sg_count(srb)) {
1843 if ((scsi_sg_count(srb) == 1) &&
1844 (scsi_bufflen(srb) < TW_MIN_SGL_LENGTH)) {
1845 if (srb->sc_data_direction == DMA_TO_DEVICE ||
1846 srb->sc_data_direction == DMA_BIDIRECTIONAL)
1847 scsi_sg_copy_to_buffer(srb,
1848 tw_dev->generic_buffer_virt[request_id],
1850 command_packet->sg_list[0].address = TW_CPU_TO_SGL(tw_dev->generic_buffer_phys[request_id]);
1851 command_packet->sg_list[0].length = cpu_to_le32(TW_MIN_SGL_LENGTH);
1853 sg_count = twa_map_scsi_sg_data(tw_dev, request_id);
1857 scsi_for_each_sg(srb, sg, sg_count, i) {
1858 command_packet->sg_list[i].address = TW_CPU_TO_SGL(sg_dma_address(sg));
1859 command_packet->sg_list[i].length = cpu_to_le32(sg_dma_len(sg));
1860 if (command_packet->sg_list[i].address & TW_CPU_TO_SGL(TW_ALIGNMENT_9000_SGL)) {
1861 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x2e, "Found unaligned sgl address during execute scsi");
1866 command_packet->sgl_entries__lunh = cpu_to_le16(TW_REQ_LUN_IN((srb->device->lun >> 4), scsi_sg_count(tw_dev->srb[request_id])));
1869 /* Internal cdb post */
1870 for (i = 0; i < use_sg; i++) {
1871 command_packet->sg_list[i].address = TW_CPU_TO_SGL(sglistarg[i].address);
1872 command_packet->sg_list[i].length = cpu_to_le32(sglistarg[i].length);
1873 if (command_packet->sg_list[i].address & TW_CPU_TO_SGL(TW_ALIGNMENT_9000_SGL)) {
1874 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x2f, "Found unaligned sgl address during internal post");
1878 command_packet->sgl_entries__lunh = cpu_to_le16(TW_REQ_LUN_IN(0, use_sg));
1882 if (srb->cmnd[0] == READ_6 || srb->cmnd[0] == WRITE_6)
1883 num_sectors = (u32)srb->cmnd[4];
1885 if (srb->cmnd[0] == READ_10 || srb->cmnd[0] == WRITE_10)
1886 num_sectors = (u32)srb->cmnd[8] | ((u32)srb->cmnd[7] << 8);
1889 /* Update sector statistic */
1890 tw_dev->sector_count = num_sectors;
1891 if (tw_dev->sector_count > tw_dev->max_sector_count)
1892 tw_dev->max_sector_count = tw_dev->sector_count;
1894 /* Update SG statistics */
1896 tw_dev->sgl_entries = scsi_sg_count(tw_dev->srb[request_id]);
1897 if (tw_dev->sgl_entries > tw_dev->max_sgl_entries)
1898 tw_dev->max_sgl_entries = tw_dev->sgl_entries;
1901 /* Now post the command to the board */
1903 retval = twa_post_command_packet(tw_dev, request_id, 0);
1905 twa_post_command_packet(tw_dev, request_id, 1);
1910 } /* End twa_scsiop_execute_scsi() */
1912 /* This function completes an execute scsi operation */
1913 static void twa_scsiop_execute_scsi_complete(TW_Device_Extension *tw_dev, int request_id)
1915 struct scsi_cmnd *cmd = tw_dev->srb[request_id];
1917 if (scsi_bufflen(cmd) < TW_MIN_SGL_LENGTH &&
1918 (cmd->sc_data_direction == DMA_FROM_DEVICE ||
1919 cmd->sc_data_direction == DMA_BIDIRECTIONAL)) {
1920 if (scsi_sg_count(cmd) == 1) {
1921 unsigned long flags;
1922 void *buf = tw_dev->generic_buffer_virt[request_id];
1924 local_irq_save(flags);
1925 scsi_sg_copy_from_buffer(cmd, buf, TW_SECTOR_SIZE);
1926 local_irq_restore(flags);
1929 } /* End twa_scsiop_execute_scsi_complete() */
1931 /* This function tells the controller to shut down */
1932 static void __twa_shutdown(TW_Device_Extension *tw_dev)
1934 /* Disable interrupts */
1935 TW_DISABLE_INTERRUPTS(tw_dev);
1937 /* Free up the IRQ */
1938 free_irq(tw_dev->tw_pci_dev->irq, tw_dev);
1940 printk(KERN_WARNING "3w-9xxx: Shutting down host %d.\n", tw_dev->host->host_no);
1942 /* Tell the card we are shutting down */
1943 if (twa_initconnection(tw_dev, 1, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL)) {
1944 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x31, "Connection shutdown failed");
1946 printk(KERN_WARNING "3w-9xxx: Shutdown complete.\n");
1949 /* Clear all interrupts just before exit */
1950 TW_CLEAR_ALL_INTERRUPTS(tw_dev);
1951 } /* End __twa_shutdown() */
1953 /* Wrapper for __twa_shutdown */
1954 static void twa_shutdown(struct pci_dev *pdev)
1956 struct Scsi_Host *host = pci_get_drvdata(pdev);
1957 TW_Device_Extension *tw_dev = (TW_Device_Extension *)host->hostdata;
1959 __twa_shutdown(tw_dev);
1960 } /* End twa_shutdown() */
1962 /* This function will look up a string */
1963 static char *twa_string_lookup(twa_message_type *table, unsigned int code)
1967 for (index = 0; ((code != table[index].code) &&
1968 (table[index].text != (char *)0)); index++);
1969 return(table[index].text);
1970 } /* End twa_string_lookup() */
1972 /* This function will perform a pci-dma unmap */
1973 static void twa_unmap_scsi_data(TW_Device_Extension *tw_dev, int request_id)
1975 struct scsi_cmnd *cmd = tw_dev->srb[request_id];
1977 scsi_dma_unmap(cmd);
1978 } /* End twa_unmap_scsi_data() */
1980 /* scsi_host_template initializer */
1981 static struct scsi_host_template driver_template = {
1982 .module = THIS_MODULE,
1983 .name = "3ware 9000 Storage Controller",
1984 .queuecommand = twa_scsi_queue,
1985 .eh_host_reset_handler = twa_scsi_eh_reset,
1986 .bios_param = twa_scsi_biosparam,
1987 .change_queue_depth = twa_change_queue_depth,
1988 .can_queue = TW_Q_LENGTH-2,
1990 .sg_tablesize = TW_APACHE_MAX_SGL_LENGTH,
1991 .max_sectors = TW_MAX_SECTORS,
1992 .cmd_per_lun = TW_MAX_CMDS_PER_LUN,
1993 .use_clustering = ENABLE_CLUSTERING,
1994 .shost_attrs = twa_host_attrs,
1998 /* This function will probe and initialize a card */
1999 static int __devinit twa_probe(struct pci_dev *pdev, const struct pci_device_id *dev_id)
2001 struct Scsi_Host *host = NULL;
2002 TW_Device_Extension *tw_dev;
2004 int retval = -ENODEV;
2006 retval = pci_enable_device(pdev);
2008 TW_PRINTK(host, TW_DRIVER, 0x34, "Failed to enable pci device");
2009 goto out_disable_device;
2012 pci_set_master(pdev);
2013 pci_try_set_mwi(pdev);
2015 if (pci_set_dma_mask(pdev, DMA_64BIT_MASK)
2016 || pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK))
2017 if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)
2018 || pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) {
2019 TW_PRINTK(host, TW_DRIVER, 0x23, "Failed to set dma mask");
2021 goto out_disable_device;
2024 host = scsi_host_alloc(&driver_template, sizeof(TW_Device_Extension));
2026 TW_PRINTK(host, TW_DRIVER, 0x24, "Failed to allocate memory for device extension");
2028 goto out_disable_device;
2030 tw_dev = (TW_Device_Extension *)host->hostdata;
2032 /* Save values to device extension */
2033 tw_dev->host = host;
2034 tw_dev->tw_pci_dev = pdev;
2036 if (twa_initialize_device_extension(tw_dev)) {
2037 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x25, "Failed to initialize device extension");
2038 goto out_free_device_extension;
2041 /* Request IO regions */
2042 retval = pci_request_regions(pdev, "3w-9xxx");
2044 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x26, "Failed to get mem region");
2045 goto out_free_device_extension;
2048 if (pdev->device == PCI_DEVICE_ID_3WARE_9000)
2049 mem_addr = pci_resource_start(pdev, 1);
2051 mem_addr = pci_resource_start(pdev, 2);
2053 /* Save base address */
2054 tw_dev->base_addr = ioremap(mem_addr, PAGE_SIZE);
2055 if (!tw_dev->base_addr) {
2056 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x35, "Failed to ioremap");
2057 goto out_release_mem_region;
2060 /* Disable interrupts on the card */
2061 TW_DISABLE_INTERRUPTS(tw_dev);
2063 /* Initialize the card */
2064 if (twa_reset_sequence(tw_dev, 0))
2067 /* Set host specific parameters */
2068 if ((pdev->device == PCI_DEVICE_ID_3WARE_9650SE) ||
2069 (pdev->device == PCI_DEVICE_ID_3WARE_9690SA))
2070 host->max_id = TW_MAX_UNITS_9650SE;
2072 host->max_id = TW_MAX_UNITS;
2074 host->max_cmd_len = TW_MAX_CDB_LEN;
2076 /* Channels aren't supported by adapter */
2077 host->max_lun = TW_MAX_LUNS(tw_dev->tw_compat_info.working_srl);
2078 host->max_channel = 0;
2080 /* Register the card with the kernel SCSI layer */
2081 retval = scsi_add_host(host, &pdev->dev);
2083 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x27, "scsi add host failed");
2087 pci_set_drvdata(pdev, host);
2089 printk(KERN_WARNING "3w-9xxx: scsi%d: Found a 3ware 9000 Storage Controller at 0x%x, IRQ: %d.\n",
2090 host->host_no, mem_addr, pdev->irq);
2091 printk(KERN_WARNING "3w-9xxx: scsi%d: Firmware %s, BIOS %s, Ports: %d.\n",
2093 (char *)twa_get_param(tw_dev, 0, TW_VERSION_TABLE,
2094 TW_PARAM_FWVER, TW_PARAM_FWVER_LENGTH),
2095 (char *)twa_get_param(tw_dev, 1, TW_VERSION_TABLE,
2096 TW_PARAM_BIOSVER, TW_PARAM_BIOSVER_LENGTH),
2097 le32_to_cpu(*(int *)twa_get_param(tw_dev, 2, TW_INFORMATION_TABLE,
2098 TW_PARAM_PORTCOUNT, TW_PARAM_PORTCOUNT_LENGTH)));
2100 /* Now setup the interrupt handler */
2101 retval = request_irq(pdev->irq, twa_interrupt, IRQF_SHARED, "3w-9xxx", tw_dev);
2103 TW_PRINTK(tw_dev->host, TW_DRIVER, 0x30, "Error requesting IRQ");
2104 goto out_remove_host;
2107 twa_device_extension_list[twa_device_extension_count] = tw_dev;
2108 twa_device_extension_count++;
2110 /* Re-enable interrupts on the card */
2111 TW_ENABLE_AND_CLEAR_INTERRUPTS(tw_dev);
2113 /* Finally, scan the host */
2114 scsi_scan_host(host);
2116 if (twa_major == -1) {
2117 if ((twa_major = register_chrdev (0, "twa", &twa_fops)) < 0)
2118 TW_PRINTK(host, TW_DRIVER, 0x29, "Failed to register character device");
2123 scsi_remove_host(host);
2125 iounmap(tw_dev->base_addr);
2126 out_release_mem_region:
2127 pci_release_regions(pdev);
2128 out_free_device_extension:
2129 twa_free_device_extension(tw_dev);
2130 scsi_host_put(host);
2132 pci_disable_device(pdev);
2135 } /* End twa_probe() */
2137 /* This function is called to remove a device */
2138 static void twa_remove(struct pci_dev *pdev)
2140 struct Scsi_Host *host = pci_get_drvdata(pdev);
2141 TW_Device_Extension *tw_dev = (TW_Device_Extension *)host->hostdata;
2143 scsi_remove_host(tw_dev->host);
2145 /* Unregister character device */
2146 if (twa_major >= 0) {
2147 unregister_chrdev(twa_major, "twa");
2151 /* Shutdown the card */
2152 __twa_shutdown(tw_dev);
2154 /* Free IO remapping */
2155 iounmap(tw_dev->base_addr);
2157 /* Free up the mem region */
2158 pci_release_regions(pdev);
2160 /* Free up device extension resources */
2161 twa_free_device_extension(tw_dev);
2163 scsi_host_put(tw_dev->host);
2164 pci_disable_device(pdev);
2165 twa_device_extension_count--;
2166 } /* End twa_remove() */
2168 /* PCI Devices supported by this driver */
2169 static struct pci_device_id twa_pci_tbl[] __devinitdata = {
2170 { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9000,
2171 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2172 { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9550SX,
2173 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2174 { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9650SE,
2175 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2176 { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_9690SA,
2177 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2180 MODULE_DEVICE_TABLE(pci, twa_pci_tbl);
2182 /* pci_driver initializer */
2183 static struct pci_driver twa_driver = {
2185 .id_table = twa_pci_tbl,
2187 .remove = twa_remove,
2188 .shutdown = twa_shutdown
2191 /* This function is called on driver initialization */
2192 static int __init twa_init(void)
2194 printk(KERN_WARNING "3ware 9000 Storage Controller device driver for Linux v%s.\n", TW_DRIVER_VERSION);
2196 return pci_register_driver(&twa_driver);
2197 } /* End twa_init() */
2199 /* This function is called on driver exit */
2200 static void __exit twa_exit(void)
2202 pci_unregister_driver(&twa_driver);
2203 } /* End twa_exit() */
2205 module_init(twa_init);
2206 module_exit(twa_exit);