blob: 608f3b28b25e78e82e547517e59ee6c6d5a7dde5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 3w-xxxx.c -- 3ware Storage Controller device driver for Linux.
3
4 Written By: Adam Radford <linuxraid@amcc.com>
5 Modifications By: Joel Jacobson <linux@3ware.com>
6 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
7 Brad Strand <linux@3ware.com>
8
adam radford7b14f582009-05-11 14:55:55 -07009 Copyright (C) 1999-2009 3ware Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Dirk Hohndel06fe9fb2009-09-28 21:43:57 -040011 Kernel compatibility By: Andre Hedrick <andre@suse.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 Non-Copyright (C) 2000 Andre Hedrick <andre@suse.com>
13
14 Further tiny build fixes and trivial hoovering Alan Cox
15
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; version 2 of the License.
19
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
24
25 NO WARRANTY
26 THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
27 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
28 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
29 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
30 solely responsible for determining the appropriateness of using and
31 distributing the Program and assumes all risks associated with its
32 exercise of rights under this Agreement, including but not limited to
33 the risks and costs of program errors, damage to or loss of data,
34 programs or equipment, and unavailability or interruption of operations.
35
36 DISCLAIMER OF LIABILITY
37 NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
38 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39 DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
40 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
41 TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
42 USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
43 HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
44
45 You should have received a copy of the GNU General Public License
46 along with this program; if not, write to the Free Software
47 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
48
49 Bugs/Comments/Suggestions should be mailed to:
50 linuxraid@amcc.com
51
52 For more information, goto:
53 http://www.amcc.com
54
55 History
56 -------
57 0.1.000 - Initial release.
58 0.4.000 - Added support for Asynchronous Event Notification through
59 ioctls for 3DM.
60 1.0.000 - Added DPO & FUA bit support for WRITE_10 & WRITE_6 cdb
61 to disable drive write-cache before writes.
62 1.1.000 - Fixed performance bug with DPO & FUA not existing for WRITE_6.
63 1.2.000 - Added support for clean shutdown notification/feature table.
64 1.02.00.001 - Added support for full command packet posts through ioctls
65 for 3DM.
66 Bug fix so hot spare drives don't show up.
67 1.02.00.002 - Fix bug with tw_setfeature() call that caused oops on some
68 systems.
69 08/21/00 - release previously allocated resources on failure at
70 tw_allocate_memory (acme)
71 1.02.00.003 - Fix tw_interrupt() to report error to scsi layer when
72 controller status is non-zero.
73 Added handling of request_sense opcode.
74 Fix possible null pointer dereference in
75 tw_reset_device_extension()
76 1.02.00.004 - Add support for device id of 3ware 7000 series controllers.
77 Make tw_setfeature() call with interrupts disabled.
78 Register interrupt handler before enabling interrupts.
79 Clear attention interrupt before draining aen queue.
80 1.02.00.005 - Allocate bounce buffers and custom queue depth for raid5 for
81 6000 and 5000 series controllers.
82 Reduce polling mdelays causing problems on some systems.
83 Fix use_sg = 1 calculation bug.
84 Check for scsi_register returning NULL.
85 Add aen count to /proc/scsi/3w-xxxx.
86 Remove aen code unit masking in tw_aen_complete().
87 1.02.00.006 - Remove unit from printk in tw_scsi_eh_abort(), causing
88 possible oops.
89 Fix possible null pointer dereference in tw_scsi_queue()
90 if done function pointer was invalid.
91 1.02.00.007 - Fix possible null pointer dereferences in tw_ioctl().
92 Remove check for invalid done function pointer from
93 tw_scsi_queue().
94 1.02.00.008 - Set max sectors per io to TW_MAX_SECTORS in tw_findcards().
95 Add tw_decode_error() for printing readable error messages.
96 Print some useful information on certain aen codes.
97 Add tw_decode_bits() for interpreting status register output.
98 Make scsi_set_pci_device() for kernels >= 2.4.4
99 Fix bug where aen's could be lost before a reset.
100 Re-add spinlocks in tw_scsi_detect().
101 Fix possible null pointer dereference in tw_aen_drain_queue()
102 during initialization.
103 Clear pci parity errors during initialization and during io.
104 1.02.00.009 - Remove redundant increment in tw_state_request_start().
105 Add ioctl support for direct ATA command passthru.
106 Add entire aen code string list.
107 1.02.00.010 - Cleanup queueing code, fix jbod thoughput.
108 Fix get_param for specific units.
109 1.02.00.011 - Fix bug in tw_aen_complete() where aen's could be lost.
110 Fix tw_aen_drain_queue() to display useful info at init.
111 Set tw_host->max_id for 12 port cards.
112 Add ioctl support for raw command packet post from userspace
113 with sglist fragments (parameter and io).
114 1.02.00.012 - Fix read capacity to under report by 1 sector to fix get
115 last sector ioctl.
116 1.02.00.013 - Fix bug where more AEN codes weren't coming out during
117 driver initialization.
118 Improved handling of PCI aborts.
119 1.02.00.014 - Fix bug in tw_findcards() where AEN code could be lost.
120 Increase timeout in tw_aen_drain_queue() to 30 seconds.
121 1.02.00.015 - Re-write raw command post with data ioctl method.
122 Remove raid5 bounce buffers for raid5 for 6XXX for kernel 2.5
123 Add tw_map/unmap_scsi_sg/single_data() for kernel 2.5
124 Replace io_request_lock with host_lock for kernel 2.5
125 Set max_cmd_len to 16 for 3dm for kernel 2.5
126 1.02.00.016 - Set host->max_sectors back up to 256.
127 1.02.00.017 - Modified pci parity error handling/clearing from config space
128 during initialization.
129 1.02.00.018 - Better handling of request sense opcode and sense information
130 for failed commands. Add tw_decode_sense().
131 Replace all mdelay()'s with scsi_sleep().
132 1.02.00.019 - Revert mdelay's and scsi_sleep's, this caused problems on
133 some SMP systems.
134 1.02.00.020 - Add pci_set_dma_mask(), rewrite kmalloc()/virt_to_bus() to
135 pci_alloc/free_consistent().
136 Better alignment checking in tw_allocate_memory().
137 Cleanup tw_initialize_device_extension().
138 1.02.00.021 - Bump cmd_per_lun in SHT to 255 for better jbod performance.
139 Improve handling of errors in tw_interrupt().
140 Add handling/clearing of controller queue error.
141 Empty stale responses before draining aen queue.
142 Fix tw_scsi_eh_abort() to not reset on every io abort.
143 Set can_queue in SHT to 255 to prevent hang from AEN.
144 1.02.00.022 - Fix possible null pointer dereference in tw_scsi_release().
145 1.02.00.023 - Fix bug in tw_aen_drain_queue() where unit # was always zero.
146 1.02.00.024 - Add severity levels to AEN strings.
147 1.02.00.025 - Fix command interrupt spurious error messages.
148 Fix bug in raw command post with data ioctl method.
149 Fix bug where rollcall sometimes failed with cable errors.
150 Print unit # on all command timeouts.
151 1.02.00.026 - Fix possible infinite retry bug with power glitch induced
152 drive timeouts.
153 Cleanup some AEN severity levels.
154 1.02.00.027 - Add drive not supported AEN code for SATA controllers.
155 Remove spurious unknown ioctl error message.
156 1.02.00.028 - Fix bug where multiple controllers with no units were the
157 same card number.
158 Fix bug where cards were being shut down more than once.
159 1.02.00.029 - Add missing pci_free_consistent() in tw_allocate_memory().
160 Replace pci_map_single() with pci_map_page() for highmem.
161 Check for tw_setfeature() failure.
162 1.02.00.030 - Make driver 64-bit clean.
163 1.02.00.031 - Cleanup polling timeouts/routines in several places.
164 Add support for mode sense opcode.
165 Add support for cache mode page.
166 Add support for synchronize cache opcode.
167 1.02.00.032 - Fix small multicard rollcall bug.
168 Make driver stay loaded with no units for hot add/swap.
169 Add support for "twe" character device for ioctls.
170 Clean up request_id queueing code.
171 Fix tw_scsi_queue() spinlocks.
172 1.02.00.033 - Fix tw_aen_complete() to not queue 'queue empty' AEN's.
173 Initialize queues correctly when loading with no valid units.
174 1.02.00.034 - Fix tw_decode_bits() to handle multiple errors.
175 Add support for user configurable cmd_per_lun.
176 Add support for sht->slave_configure().
177 1.02.00.035 - Improve tw_allocate_memory() memory allocation.
178 Fix tw_chrdev_ioctl() to sleep correctly.
179 1.02.00.036 - Increase character ioctl timeout to 60 seconds.
180 1.02.00.037 - Fix tw_ioctl() to handle all non-data ATA passthru cmds
181 for 'smartmontools' support.
182 1.26.00.038 - Roll driver minor version to 26 to denote kernel 2.6.
183 Add support for cmds_per_lun module parameter.
184 1.26.00.039 - Fix bug in tw_chrdev_ioctl() polling code.
185 Fix data_buffer_length usage in tw_chrdev_ioctl().
186 Update contact information.
187 1.26.02.000 - Convert driver to pci_driver format.
188 1.26.02.001 - Increase max ioctl buffer size to 512 sectors.
189 Make tw_scsi_queue() return 0 for 'Unknown scsi opcode'.
190 Fix tw_remove() to free irq handler/unregister_chrdev()
191 before shutting down card.
192 Change to new 'change_queue_depth' api.
193 Fix 'handled=1' ISR usage, remove bogus IRQ check.
adam radford4fe48182007-01-04 18:16:56 -0800194 1.26.02.002 - Free irq handler in __tw_shutdown().
195 Turn on RCD bit for caching mode page.
196 Serialize reset code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197*/
198
199#include <linux/module.h>
200#include <linux/reboot.h>
Jonathan Corbetf2b98572008-05-18 15:32:43 -0600201#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#include <linux/spinlock.h>
203#include <linux/interrupt.h>
204#include <linux/moduleparam.h>
205#include <linux/errno.h>
206#include <linux/types.h>
207#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +0900208#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209#include <linux/pci.h>
210#include <linux/time.h>
Jes Sorensena12e25b2006-01-11 08:39:45 -0500211#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#include <asm/io.h>
213#include <asm/irq.h>
214#include <asm/uaccess.h>
215#include <scsi/scsi.h>
216#include <scsi/scsi_host.h>
217#include <scsi/scsi_tcq.h>
218#include <scsi/scsi_cmnd.h>
219#include "3w-xxxx.h"
220
221/* Globals */
adam radford4fe48182007-01-04 18:16:56 -0800222#define TW_DRIVER_VERSION "1.26.02.002"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static TW_Device_Extension *tw_device_extension_list[TW_MAX_SLOT];
224static int tw_device_extension_count = 0;
225static int twe_major = -1;
226
227/* Module parameters */
228MODULE_AUTHOR("AMCC");
229MODULE_DESCRIPTION("3ware Storage Controller Linux Driver");
230MODULE_LICENSE("GPL");
231MODULE_VERSION(TW_DRIVER_VERSION);
232
233/* Function prototypes */
adam radford4fe48182007-01-04 18:16:56 -0800234static int tw_reset_device_extension(TW_Device_Extension *tw_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/* Functions */
237
238/* This function will check the status register for unexpected bits */
239static int tw_check_bits(u32 status_reg_value)
240{
241 if ((status_reg_value & TW_STATUS_EXPECTED_BITS) != TW_STATUS_EXPECTED_BITS) {
242 dprintk(KERN_WARNING "3w-xxxx: tw_check_bits(): No expected bits (0x%x).\n", status_reg_value);
243 return 1;
244 }
245 if ((status_reg_value & TW_STATUS_UNEXPECTED_BITS) != 0) {
246 dprintk(KERN_WARNING "3w-xxxx: tw_check_bits(): Found unexpected bits (0x%x).\n", status_reg_value);
247 return 1;
248 }
249
250 return 0;
251} /* End tw_check_bits() */
252
253/* This function will print readable messages from status register errors */
254static int tw_decode_bits(TW_Device_Extension *tw_dev, u32 status_reg_value, int print_host)
255{
256 char host[16];
257
258 dprintk(KERN_WARNING "3w-xxxx: tw_decode_bits()\n");
259
260 if (print_host)
261 sprintf(host, " scsi%d:", tw_dev->host->host_no);
262 else
263 host[0] = '\0';
264
265 if (status_reg_value & TW_STATUS_PCI_PARITY_ERROR) {
266 printk(KERN_WARNING "3w-xxxx:%s PCI Parity Error: clearing.\n", host);
267 outl(TW_CONTROL_CLEAR_PARITY_ERROR, TW_CONTROL_REG_ADDR(tw_dev));
268 }
269
270 if (status_reg_value & TW_STATUS_PCI_ABORT) {
271 printk(KERN_WARNING "3w-xxxx:%s PCI Abort: clearing.\n", host);
272 outl(TW_CONTROL_CLEAR_PCI_ABORT, TW_CONTROL_REG_ADDR(tw_dev));
273 pci_write_config_word(tw_dev->tw_pci_dev, PCI_STATUS, TW_PCI_CLEAR_PCI_ABORT);
274 }
275
276 if (status_reg_value & TW_STATUS_QUEUE_ERROR) {
277 printk(KERN_WARNING "3w-xxxx:%s Controller Queue Error: clearing.\n", host);
278 outl(TW_CONTROL_CLEAR_QUEUE_ERROR, TW_CONTROL_REG_ADDR(tw_dev));
279 }
280
281 if (status_reg_value & TW_STATUS_SBUF_WRITE_ERROR) {
282 printk(KERN_WARNING "3w-xxxx:%s SBUF Write Error: clearing.\n", host);
283 outl(TW_CONTROL_CLEAR_SBUF_WRITE_ERROR, TW_CONTROL_REG_ADDR(tw_dev));
284 }
285
286 if (status_reg_value & TW_STATUS_MICROCONTROLLER_ERROR) {
287 if (tw_dev->reset_print == 0) {
288 printk(KERN_WARNING "3w-xxxx:%s Microcontroller Error: clearing.\n", host);
289 tw_dev->reset_print = 1;
290 }
291 return 1;
292 }
293
294 return 0;
295} /* End tw_decode_bits() */
296
297/* This function will poll the status register for a flag */
298static int tw_poll_status(TW_Device_Extension *tw_dev, u32 flag, int seconds)
299{
300 u32 status_reg_value;
301 unsigned long before;
302 int retval = 1;
303
304 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
305 before = jiffies;
306
307 if (tw_check_bits(status_reg_value))
308 tw_decode_bits(tw_dev, status_reg_value, 0);
309
310 while ((status_reg_value & flag) != flag) {
311 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
312
313 if (tw_check_bits(status_reg_value))
314 tw_decode_bits(tw_dev, status_reg_value, 0);
315
316 if (time_after(jiffies, before + HZ * seconds))
317 goto out;
318
319 msleep(50);
320 }
321 retval = 0;
322out:
323 return retval;
324} /* End tw_poll_status() */
325
326/* This function will poll the status register for disappearance of a flag */
327static int tw_poll_status_gone(TW_Device_Extension *tw_dev, u32 flag, int seconds)
328{
329 u32 status_reg_value;
330 unsigned long before;
331 int retval = 1;
332
333 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
334 before = jiffies;
335
336 if (tw_check_bits(status_reg_value))
337 tw_decode_bits(tw_dev, status_reg_value, 0);
338
339 while ((status_reg_value & flag) != 0) {
340 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
341
342 if (tw_check_bits(status_reg_value))
343 tw_decode_bits(tw_dev, status_reg_value, 0);
344
345 if (time_after(jiffies, before + HZ * seconds))
346 goto out;
347
348 msleep(50);
349 }
350 retval = 0;
351out:
352 return retval;
353} /* End tw_poll_status_gone() */
354
355/* This function will attempt to post a command packet to the board */
356static int tw_post_command_packet(TW_Device_Extension *tw_dev, int request_id)
357{
358 u32 status_reg_value;
359 unsigned long command_que_value;
360
361 dprintk(KERN_NOTICE "3w-xxxx: tw_post_command_packet()\n");
362 command_que_value = tw_dev->command_packet_physical_address[request_id];
363 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
364
365 if (tw_check_bits(status_reg_value)) {
366 dprintk(KERN_WARNING "3w-xxxx: tw_post_command_packet(): Unexpected bits.\n");
367 tw_decode_bits(tw_dev, status_reg_value, 1);
368 }
369
370 if ((status_reg_value & TW_STATUS_COMMAND_QUEUE_FULL) == 0) {
371 /* We successfully posted the command packet */
372 outl(command_que_value, TW_COMMAND_QUEUE_REG_ADDR(tw_dev));
373 tw_dev->state[request_id] = TW_S_POSTED;
374 tw_dev->posted_request_count++;
375 if (tw_dev->posted_request_count > tw_dev->max_posted_request_count) {
376 tw_dev->max_posted_request_count = tw_dev->posted_request_count;
377 }
378 } else {
379 /* Couldn't post the command packet, so we do it in the isr */
380 if (tw_dev->state[request_id] != TW_S_PENDING) {
381 tw_dev->state[request_id] = TW_S_PENDING;
382 tw_dev->pending_request_count++;
383 if (tw_dev->pending_request_count > tw_dev->max_pending_request_count) {
384 tw_dev->max_pending_request_count = tw_dev->pending_request_count;
385 }
386 tw_dev->pending_queue[tw_dev->pending_tail] = request_id;
387 if (tw_dev->pending_tail == TW_Q_LENGTH-1) {
388 tw_dev->pending_tail = TW_Q_START;
389 } else {
390 tw_dev->pending_tail = tw_dev->pending_tail + 1;
391 }
392 }
393 TW_UNMASK_COMMAND_INTERRUPT(tw_dev);
394 return 1;
395 }
396 return 0;
397} /* End tw_post_command_packet() */
398
399/* This function will return valid sense buffer information for failed cmds */
400static int tw_decode_sense(TW_Device_Extension *tw_dev, int request_id, int fill_sense)
401{
402 int i;
403 TW_Command *command;
404
405 dprintk(KERN_WARNING "3w-xxxx: tw_decode_sense()\n");
406 command = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
407
408 printk(KERN_WARNING "3w-xxxx: scsi%d: Command failed: status = 0x%x, flags = 0x%x, unit #%d.\n", tw_dev->host->host_no, command->status, command->flags, TW_UNIT_OUT(command->unit__hostid));
409
410 /* Attempt to return intelligent sense information */
411 if (fill_sense) {
412 if ((command->status == 0xc7) || (command->status == 0xcb)) {
Tobias Klauser6391a112006-06-08 22:23:48 -0700413 for (i = 0; i < ARRAY_SIZE(tw_sense_table); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (command->flags == tw_sense_table[i][0]) {
415
416 /* Valid bit and 'current errors' */
417 tw_dev->srb[request_id]->sense_buffer[0] = (0x1 << 7 | 0x70);
418
419 /* Sense key */
420 tw_dev->srb[request_id]->sense_buffer[2] = tw_sense_table[i][1];
421
422 /* Additional sense length */
423 tw_dev->srb[request_id]->sense_buffer[7] = 0xa; /* 10 bytes */
424
425 /* Additional sense code */
426 tw_dev->srb[request_id]->sense_buffer[12] = tw_sense_table[i][2];
427
428 /* Additional sense code qualifier */
429 tw_dev->srb[request_id]->sense_buffer[13] = tw_sense_table[i][3];
430
431 tw_dev->srb[request_id]->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
432 return TW_ISR_DONT_RESULT; /* Special case for isr to not over-write result */
433 }
434 }
435 }
436
437 /* If no table match, error so we get a reset */
438 return 1;
439 }
440
441 return 0;
442} /* End tw_decode_sense() */
443
444/* This function will report controller error status */
445static int tw_check_errors(TW_Device_Extension *tw_dev)
446{
447 u32 status_reg_value;
448
449 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
450
451 if (TW_STATUS_ERRORS(status_reg_value) || tw_check_bits(status_reg_value)) {
452 tw_decode_bits(tw_dev, status_reg_value, 0);
453 return 1;
454 }
455
456 return 0;
457} /* End tw_check_errors() */
458
459/* This function will empty the response que */
460static void tw_empty_response_que(TW_Device_Extension *tw_dev)
461{
462 u32 status_reg_value, response_que_value;
463
464 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
465
466 while ((status_reg_value & TW_STATUS_RESPONSE_QUEUE_EMPTY) == 0) {
467 response_que_value = inl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
468 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
469 }
470} /* End tw_empty_response_que() */
471
472/* This function will free a request_id */
473static void tw_state_request_finish(TW_Device_Extension *tw_dev, int request_id)
474{
475 tw_dev->free_queue[tw_dev->free_tail] = request_id;
476 tw_dev->state[request_id] = TW_S_FINISHED;
477 tw_dev->free_tail = (tw_dev->free_tail + 1) % TW_Q_LENGTH;
478} /* End tw_state_request_finish() */
479
480/* This function will assign an available request_id */
481static void tw_state_request_start(TW_Device_Extension *tw_dev, int *request_id)
482{
483 *request_id = tw_dev->free_queue[tw_dev->free_head];
484 tw_dev->free_head = (tw_dev->free_head + 1) % TW_Q_LENGTH;
485 tw_dev->state[*request_id] = TW_S_STARTED;
486} /* End tw_state_request_start() */
487
488/* Show some statistics about the card */
Tony Jonesee959b02008-02-22 00:13:36 +0100489static ssize_t tw_show_stats(struct device *dev, struct device_attribute *attr,
490 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Tony Jonesee959b02008-02-22 00:13:36 +0100492 struct Scsi_Host *host = class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 TW_Device_Extension *tw_dev = (TW_Device_Extension *)host->hostdata;
494 unsigned long flags = 0;
495 ssize_t len;
496
497 spin_lock_irqsave(tw_dev->host->host_lock, flags);
498 len = snprintf(buf, PAGE_SIZE, "3w-xxxx Driver version: %s\n"
499 "Current commands posted: %4d\n"
500 "Max commands posted: %4d\n"
501 "Current pending commands: %4d\n"
502 "Max pending commands: %4d\n"
503 "Last sgl length: %4d\n"
504 "Max sgl length: %4d\n"
505 "Last sector count: %4d\n"
506 "Max sector count: %4d\n"
507 "SCSI Host Resets: %4d\n"
508 "AEN's: %4d\n",
509 TW_DRIVER_VERSION,
510 tw_dev->posted_request_count,
511 tw_dev->max_posted_request_count,
512 tw_dev->pending_request_count,
513 tw_dev->max_pending_request_count,
514 tw_dev->sgl_entries,
515 tw_dev->max_sgl_entries,
516 tw_dev->sector_count,
517 tw_dev->max_sector_count,
518 tw_dev->num_resets,
519 tw_dev->aen_count);
520 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
521 return len;
522} /* End tw_show_stats() */
523
524/* This function will set a devices queue depth */
Mike Christiee881a172009-10-15 17:46:39 -0700525static int tw_change_queue_depth(struct scsi_device *sdev, int queue_depth,
526 int reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Mike Christiee881a172009-10-15 17:46:39 -0700528 if (reason != SCSI_QDEPTH_DEFAULT)
529 return -EOPNOTSUPP;
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (queue_depth > TW_Q_LENGTH-2)
532 queue_depth = TW_Q_LENGTH-2;
533 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, queue_depth);
534 return queue_depth;
535} /* End tw_change_queue_depth() */
536
537/* Create sysfs 'stats' entry */
Tony Jonesee959b02008-02-22 00:13:36 +0100538static struct device_attribute tw_host_stats_attr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 .attr = {
540 .name = "stats",
541 .mode = S_IRUGO,
542 },
543 .show = tw_show_stats
544};
545
546/* Host attributes initializer */
Tony Jonesee959b02008-02-22 00:13:36 +0100547static struct device_attribute *tw_host_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 &tw_host_stats_attr,
549 NULL,
550};
551
552/* This function will read the aen queue from the isr */
553static int tw_aen_read_queue(TW_Device_Extension *tw_dev, int request_id)
554{
555 TW_Command *command_packet;
556 TW_Param *param;
557 unsigned long command_que_value;
558 u32 status_reg_value;
559 unsigned long param_value = 0;
560
561 dprintk(KERN_NOTICE "3w-xxxx: tw_aen_read_queue()\n");
562
563 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
564 if (tw_check_bits(status_reg_value)) {
565 dprintk(KERN_WARNING "3w-xxxx: tw_aen_read_queue(): Unexpected bits.\n");
566 tw_decode_bits(tw_dev, status_reg_value, 1);
567 return 1;
568 }
569 if (tw_dev->command_packet_virtual_address[request_id] == NULL) {
570 printk(KERN_WARNING "3w-xxxx: tw_aen_read_queue(): Bad command packet virtual address.\n");
571 return 1;
572 }
573 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
574 memset(command_packet, 0, sizeof(TW_Sector));
575 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_GET_PARAM);
576 command_packet->size = 4;
577 command_packet->request_id = request_id;
578 command_packet->status = 0;
579 command_packet->flags = 0;
580 command_packet->byte6.parameter_count = 1;
581 command_que_value = tw_dev->command_packet_physical_address[request_id];
582 if (command_que_value == 0) {
583 printk(KERN_WARNING "3w-xxxx: tw_aen_read_queue(): Bad command packet physical address.\n");
584 return 1;
585 }
586 /* Now setup the param */
587 if (tw_dev->alignment_virtual_address[request_id] == NULL) {
588 printk(KERN_WARNING "3w-xxxx: tw_aen_read_queue(): Bad alignment virtual address.\n");
589 return 1;
590 }
591 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
592 memset(param, 0, sizeof(TW_Sector));
593 param->table_id = 0x401; /* AEN table */
594 param->parameter_id = 2; /* Unit code */
595 param->parameter_size_bytes = 2;
596 param_value = tw_dev->alignment_physical_address[request_id];
597 if (param_value == 0) {
598 printk(KERN_WARNING "3w-xxxx: tw_aen_read_queue(): Bad alignment physical address.\n");
599 return 1;
600 }
601 command_packet->byte8.param.sgl[0].address = param_value;
602 command_packet->byte8.param.sgl[0].length = sizeof(TW_Sector);
603
604 /* Now post the command packet */
605 if ((status_reg_value & TW_STATUS_COMMAND_QUEUE_FULL) == 0) {
606 dprintk(KERN_WARNING "3w-xxxx: tw_aen_read_queue(): Post succeeded.\n");
607 tw_dev->srb[request_id] = NULL; /* Flag internal command */
608 tw_dev->state[request_id] = TW_S_POSTED;
609 outl(command_que_value, TW_COMMAND_QUEUE_REG_ADDR(tw_dev));
610 } else {
611 printk(KERN_WARNING "3w-xxxx: tw_aen_read_queue(): Post failed, will retry.\n");
612 return 1;
613 }
614
615 return 0;
616} /* End tw_aen_read_queue() */
617
618/* This function will complete an aen request from the isr */
619static int tw_aen_complete(TW_Device_Extension *tw_dev, int request_id)
620{
621 TW_Param *param;
622 unsigned short aen;
623 int error = 0, table_max = 0;
624
625 dprintk(KERN_WARNING "3w-xxxx: tw_aen_complete()\n");
626 if (tw_dev->alignment_virtual_address[request_id] == NULL) {
627 printk(KERN_WARNING "3w-xxxx: tw_aen_complete(): Bad alignment virtual address.\n");
628 return 1;
629 }
630 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
631 aen = *(unsigned short *)(param->data);
632 dprintk(KERN_NOTICE "3w-xxxx: tw_aen_complete(): Queue'd code 0x%x\n", aen);
633
634 /* Print some useful info when certain aen codes come out */
635 if (aen == 0x0ff) {
636 printk(KERN_WARNING "3w-xxxx: scsi%d: AEN: INFO: AEN queue overflow.\n", tw_dev->host->host_no);
637 } else {
Tobias Klauser6391a112006-06-08 22:23:48 -0700638 table_max = ARRAY_SIZE(tw_aen_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if ((aen & 0x0ff) < table_max) {
640 if ((tw_aen_string[aen & 0xff][strlen(tw_aen_string[aen & 0xff])-1]) == '#') {
641 printk(KERN_WARNING "3w-xxxx: scsi%d: AEN: %s%d.\n", tw_dev->host->host_no, tw_aen_string[aen & 0xff], aen >> 8);
642 } else {
643 if (aen != 0x0)
644 printk(KERN_WARNING "3w-xxxx: scsi%d: AEN: %s.\n", tw_dev->host->host_no, tw_aen_string[aen & 0xff]);
645 }
646 } else {
647 printk(KERN_WARNING "3w-xxxx: scsi%d: Received AEN %d.\n", tw_dev->host->host_no, aen);
648 }
649 }
650 if (aen != TW_AEN_QUEUE_EMPTY) {
651 tw_dev->aen_count++;
652
653 /* Now queue the code */
654 tw_dev->aen_queue[tw_dev->aen_tail] = aen;
655 if (tw_dev->aen_tail == TW_Q_LENGTH - 1) {
656 tw_dev->aen_tail = TW_Q_START;
657 } else {
658 tw_dev->aen_tail = tw_dev->aen_tail + 1;
659 }
660 if (tw_dev->aen_head == tw_dev->aen_tail) {
661 if (tw_dev->aen_head == TW_Q_LENGTH - 1) {
662 tw_dev->aen_head = TW_Q_START;
663 } else {
664 tw_dev->aen_head = tw_dev->aen_head + 1;
665 }
666 }
667
668 error = tw_aen_read_queue(tw_dev, request_id);
669 if (error) {
670 printk(KERN_WARNING "3w-xxxx: scsi%d: Error completing AEN.\n", tw_dev->host->host_no);
671 tw_dev->state[request_id] = TW_S_COMPLETED;
672 tw_state_request_finish(tw_dev, request_id);
673 }
674 } else {
675 tw_dev->state[request_id] = TW_S_COMPLETED;
676 tw_state_request_finish(tw_dev, request_id);
677 }
678
679 return 0;
680} /* End tw_aen_complete() */
681
682/* This function will drain the aen queue after a soft reset */
683static int tw_aen_drain_queue(TW_Device_Extension *tw_dev)
684{
685 TW_Command *command_packet;
686 TW_Param *param;
687 int request_id = 0;
688 unsigned long command_que_value;
689 unsigned long param_value;
690 TW_Response_Queue response_queue;
691 unsigned short aen;
692 unsigned short aen_code;
693 int finished = 0;
694 int first_reset = 0;
695 int queue = 0;
696 int found = 0, table_max = 0;
697
698 dprintk(KERN_NOTICE "3w-xxxx: tw_aen_drain_queue()\n");
699
700 if (tw_poll_status(tw_dev, TW_STATUS_ATTENTION_INTERRUPT | TW_STATUS_MICROCONTROLLER_READY, 30)) {
701 dprintk(KERN_WARNING "3w-xxxx: tw_aen_drain_queue(): No attention interrupt for card %d.\n", tw_device_extension_count);
702 return 1;
703 }
704 TW_CLEAR_ATTENTION_INTERRUPT(tw_dev);
705
706 /* Empty response queue */
707 tw_empty_response_que(tw_dev);
708
709 /* Initialize command packet */
710 if (tw_dev->command_packet_virtual_address[request_id] == NULL) {
711 printk(KERN_WARNING "3w-xxxx: tw_aen_drain_queue(): Bad command packet virtual address.\n");
712 return 1;
713 }
714 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
715 memset(command_packet, 0, sizeof(TW_Sector));
716 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_GET_PARAM);
717 command_packet->size = 4;
718 command_packet->request_id = request_id;
719 command_packet->status = 0;
720 command_packet->flags = 0;
721 command_packet->byte6.parameter_count = 1;
722 command_que_value = tw_dev->command_packet_physical_address[request_id];
723 if (command_que_value == 0) {
724 printk(KERN_WARNING "3w-xxxx: tw_aen_drain_queue(): Bad command packet physical address.\n");
725 return 1;
726 }
727
728 /* Now setup the param */
729 if (tw_dev->alignment_virtual_address[request_id] == NULL) {
730 printk(KERN_WARNING "3w-xxxx: tw_aen_drain_queue(): Bad alignment virtual address.\n");
731 return 1;
732 }
733 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
734 memset(param, 0, sizeof(TW_Sector));
735 param->table_id = 0x401; /* AEN table */
736 param->parameter_id = 2; /* Unit code */
737 param->parameter_size_bytes = 2;
738 param_value = tw_dev->alignment_physical_address[request_id];
739 if (param_value == 0) {
740 printk(KERN_WARNING "3w-xxxx: tw_aen_drain_queue(): Bad alignment physical address.\n");
741 return 1;
742 }
743 command_packet->byte8.param.sgl[0].address = param_value;
744 command_packet->byte8.param.sgl[0].length = sizeof(TW_Sector);
745
746 /* Now drain the controller's aen queue */
747 do {
748 /* Post command packet */
749 outl(command_que_value, TW_COMMAND_QUEUE_REG_ADDR(tw_dev));
750
751 /* Now poll for completion */
752 if (tw_poll_status_gone(tw_dev, TW_STATUS_RESPONSE_QUEUE_EMPTY, 30) == 0) {
753 response_queue.value = inl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
754 request_id = TW_RESID_OUT(response_queue.response_id);
755
756 if (request_id != 0) {
757 /* Unexpected request id */
758 printk(KERN_WARNING "3w-xxxx: tw_aen_drain_queue(): Unexpected request id.\n");
759 return 1;
760 }
761
762 if (command_packet->status != 0) {
763 if (command_packet->flags != TW_AEN_TABLE_UNDEFINED) {
764 /* Bad response */
765 tw_decode_sense(tw_dev, request_id, 0);
766 return 1;
767 } else {
768 /* We know this is a 3w-1x00, and doesn't support aen's */
769 return 0;
770 }
771 }
772
773 /* Now check the aen */
774 aen = *(unsigned short *)(param->data);
775 aen_code = (aen & 0x0ff);
776 queue = 0;
777 switch (aen_code) {
778 case TW_AEN_QUEUE_EMPTY:
779 dprintk(KERN_WARNING "3w-xxxx: AEN: %s.\n", tw_aen_string[aen & 0xff]);
780 if (first_reset != 1) {
781 return 1;
782 } else {
783 finished = 1;
784 }
785 break;
786 case TW_AEN_SOFT_RESET:
787 if (first_reset == 0) {
788 first_reset = 1;
789 } else {
790 printk(KERN_WARNING "3w-xxxx: AEN: %s.\n", tw_aen_string[aen & 0xff]);
791 tw_dev->aen_count++;
792 queue = 1;
793 }
794 break;
795 default:
796 if (aen == 0x0ff) {
797 printk(KERN_WARNING "3w-xxxx: AEN: INFO: AEN queue overflow.\n");
798 } else {
Tobias Klauser6391a112006-06-08 22:23:48 -0700799 table_max = ARRAY_SIZE(tw_aen_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if ((aen & 0x0ff) < table_max) {
801 if ((tw_aen_string[aen & 0xff][strlen(tw_aen_string[aen & 0xff])-1]) == '#') {
802 printk(KERN_WARNING "3w-xxxx: AEN: %s%d.\n", tw_aen_string[aen & 0xff], aen >> 8);
803 } else {
804 printk(KERN_WARNING "3w-xxxx: AEN: %s.\n", tw_aen_string[aen & 0xff]);
805 }
806 } else
807 printk(KERN_WARNING "3w-xxxx: Received AEN %d.\n", aen);
808 }
809 tw_dev->aen_count++;
810 queue = 1;
811 }
812
813 /* Now put the aen on the aen_queue */
814 if (queue == 1) {
815 tw_dev->aen_queue[tw_dev->aen_tail] = aen;
816 if (tw_dev->aen_tail == TW_Q_LENGTH - 1) {
817 tw_dev->aen_tail = TW_Q_START;
818 } else {
819 tw_dev->aen_tail = tw_dev->aen_tail + 1;
820 }
821 if (tw_dev->aen_head == tw_dev->aen_tail) {
822 if (tw_dev->aen_head == TW_Q_LENGTH - 1) {
823 tw_dev->aen_head = TW_Q_START;
824 } else {
825 tw_dev->aen_head = tw_dev->aen_head + 1;
826 }
827 }
828 }
829 found = 1;
830 }
831 if (found == 0) {
832 printk(KERN_WARNING "3w-xxxx: tw_aen_drain_queue(): Response never received.\n");
833 return 1;
834 }
835 } while (finished == 0);
836
837 return 0;
838} /* End tw_aen_drain_queue() */
839
840/* This function will allocate memory */
841static int tw_allocate_memory(TW_Device_Extension *tw_dev, int size, int which)
842{
843 int i;
844 dma_addr_t dma_handle;
845 unsigned long *cpu_addr = NULL;
846
847 dprintk(KERN_NOTICE "3w-xxxx: tw_allocate_memory()\n");
848
849 cpu_addr = pci_alloc_consistent(tw_dev->tw_pci_dev, size*TW_Q_LENGTH, &dma_handle);
850 if (cpu_addr == NULL) {
851 printk(KERN_WARNING "3w-xxxx: pci_alloc_consistent() failed.\n");
852 return 1;
853 }
854
855 if ((unsigned long)cpu_addr % (tw_dev->tw_pci_dev->device == TW_DEVICE_ID ? TW_ALIGNMENT_6000 : TW_ALIGNMENT_7000)) {
856 printk(KERN_WARNING "3w-xxxx: Couldn't allocate correctly aligned memory.\n");
857 pci_free_consistent(tw_dev->tw_pci_dev, size*TW_Q_LENGTH, cpu_addr, dma_handle);
858 return 1;
859 }
860
861 memset(cpu_addr, 0, size*TW_Q_LENGTH);
862
863 for (i=0;i<TW_Q_LENGTH;i++) {
864 switch(which) {
865 case 0:
866 tw_dev->command_packet_physical_address[i] = dma_handle+(i*size);
867 tw_dev->command_packet_virtual_address[i] = (unsigned long *)((unsigned char *)cpu_addr + (i*size));
868 break;
869 case 1:
870 tw_dev->alignment_physical_address[i] = dma_handle+(i*size);
871 tw_dev->alignment_virtual_address[i] = (unsigned long *)((unsigned char *)cpu_addr + (i*size));
872 break;
873 default:
874 printk(KERN_WARNING "3w-xxxx: tw_allocate_memory(): case slip in tw_allocate_memory()\n");
875 return 1;
876 }
877 }
878
879 return 0;
880} /* End tw_allocate_memory() */
881
882/* This function handles ioctl for the character device */
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200883static long tw_chrdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
885 int request_id;
886 dma_addr_t dma_handle;
887 unsigned short tw_aen_code;
888 unsigned long flags;
889 unsigned int data_buffer_length = 0;
890 unsigned long data_buffer_length_adjusted = 0;
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200891 struct inode *inode = file->f_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 unsigned long *cpu_addr;
893 long timeout;
894 TW_New_Ioctl *tw_ioctl;
895 TW_Passthru *passthru;
896 TW_Device_Extension *tw_dev = tw_device_extension_list[iminor(inode)];
897 int retval = -EFAULT;
898 void __user *argp = (void __user *)arg;
899
900 dprintk(KERN_WARNING "3w-xxxx: tw_chrdev_ioctl()\n");
901
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200902 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /* Only let one of these through at a time */
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200904 if (mutex_lock_interruptible(&tw_dev->ioctl_lock)) {
905 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return -EINTR;
Arnd Bergmannf4927c42010-04-27 00:24:01 +0200907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 /* First copy down the buffer length */
910 if (copy_from_user(&data_buffer_length, argp, sizeof(unsigned int)))
911 goto out;
912
913 /* Check size */
914 if (data_buffer_length > TW_MAX_IOCTL_SECTORS * 512) {
915 retval = -EINVAL;
916 goto out;
917 }
918
919 /* Hardware can only do multiple of 512 byte transfers */
920 data_buffer_length_adjusted = (data_buffer_length + 511) & ~511;
921
922 /* Now allocate ioctl buf memory */
923 cpu_addr = dma_alloc_coherent(&tw_dev->tw_pci_dev->dev, data_buffer_length_adjusted+sizeof(TW_New_Ioctl) - 1, &dma_handle, GFP_KERNEL);
924 if (cpu_addr == NULL) {
925 retval = -ENOMEM;
926 goto out;
927 }
928
929 tw_ioctl = (TW_New_Ioctl *)cpu_addr;
930
931 /* Now copy down the entire ioctl */
932 if (copy_from_user(tw_ioctl, argp, data_buffer_length + sizeof(TW_New_Ioctl) - 1))
933 goto out2;
934
935 passthru = (TW_Passthru *)&tw_ioctl->firmware_command;
936
937 /* See which ioctl we are doing */
938 switch (cmd) {
939 case TW_OP_NOP:
940 dprintk(KERN_WARNING "3w-xxxx: tw_chrdev_ioctl(): caught TW_OP_NOP.\n");
941 break;
942 case TW_OP_AEN_LISTEN:
943 dprintk(KERN_WARNING "3w-xxxx: tw_chrdev_ioctl(): caught TW_AEN_LISTEN.\n");
944 memset(tw_ioctl->data_buffer, 0, data_buffer_length);
945
946 spin_lock_irqsave(tw_dev->host->host_lock, flags);
947 if (tw_dev->aen_head == tw_dev->aen_tail) {
948 tw_aen_code = TW_AEN_QUEUE_EMPTY;
949 } else {
950 tw_aen_code = tw_dev->aen_queue[tw_dev->aen_head];
951 if (tw_dev->aen_head == TW_Q_LENGTH - 1) {
952 tw_dev->aen_head = TW_Q_START;
953 } else {
954 tw_dev->aen_head = tw_dev->aen_head + 1;
955 }
956 }
957 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
958 memcpy(tw_ioctl->data_buffer, &tw_aen_code, sizeof(tw_aen_code));
959 break;
960 case TW_CMD_PACKET_WITH_DATA:
961 dprintk(KERN_WARNING "3w-xxxx: tw_chrdev_ioctl(): caught TW_CMD_PACKET_WITH_DATA.\n");
962 spin_lock_irqsave(tw_dev->host->host_lock, flags);
963
964 tw_state_request_start(tw_dev, &request_id);
965
966 /* Flag internal command */
967 tw_dev->srb[request_id] = NULL;
968
969 /* Flag chrdev ioctl */
970 tw_dev->chrdev_request_id = request_id;
971
972 tw_ioctl->firmware_command.request_id = request_id;
973
974 /* Load the sg list */
975 switch (TW_SGL_OUT(tw_ioctl->firmware_command.opcode__sgloffset)) {
976 case 2:
977 tw_ioctl->firmware_command.byte8.param.sgl[0].address = dma_handle + sizeof(TW_New_Ioctl) - 1;
978 tw_ioctl->firmware_command.byte8.param.sgl[0].length = data_buffer_length_adjusted;
979 break;
980 case 3:
981 tw_ioctl->firmware_command.byte8.io.sgl[0].address = dma_handle + sizeof(TW_New_Ioctl) - 1;
982 tw_ioctl->firmware_command.byte8.io.sgl[0].length = data_buffer_length_adjusted;
983 break;
984 case 5:
985 passthru->sg_list[0].address = dma_handle + sizeof(TW_New_Ioctl) - 1;
986 passthru->sg_list[0].length = data_buffer_length_adjusted;
987 break;
988 }
989
990 memcpy(tw_dev->command_packet_virtual_address[request_id], &(tw_ioctl->firmware_command), sizeof(TW_Command));
991
992 /* Now post the command packet to the controller */
993 tw_post_command_packet(tw_dev, request_id);
994 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
995
996 timeout = TW_IOCTL_CHRDEV_TIMEOUT*HZ;
997
998 /* Now wait for the command to complete */
999 timeout = wait_event_timeout(tw_dev->ioctl_wqueue, tw_dev->chrdev_request_id == TW_IOCTL_CHRDEV_FREE, timeout);
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /* We timed out, and didn't get an interrupt */
1002 if (tw_dev->chrdev_request_id != TW_IOCTL_CHRDEV_FREE) {
1003 /* Now we need to reset the board */
1004 printk(KERN_WARNING "3w-xxxx: scsi%d: Character ioctl (0x%x) timed out, resetting card.\n", tw_dev->host->host_no, cmd);
1005 retval = -EIO;
adam radford4fe48182007-01-04 18:16:56 -08001006 if (tw_reset_device_extension(tw_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 printk(KERN_WARNING "3w-xxxx: tw_chrdev_ioctl(): Reset failed for card %d.\n", tw_dev->host->host_no);
1008 }
1009 goto out2;
1010 }
1011
1012 /* Now copy in the command packet response */
1013 memcpy(&(tw_ioctl->firmware_command), tw_dev->command_packet_virtual_address[request_id], sizeof(TW_Command));
1014
1015 /* Now complete the io */
1016 spin_lock_irqsave(tw_dev->host->host_lock, flags);
1017 tw_dev->posted_request_count--;
1018 tw_dev->state[request_id] = TW_S_COMPLETED;
1019 tw_state_request_finish(tw_dev, request_id);
1020 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
1021 break;
1022 default:
1023 retval = -ENOTTY;
1024 goto out2;
1025 }
1026
1027 /* Now copy the response to userspace */
1028 if (copy_to_user(argp, tw_ioctl, sizeof(TW_New_Ioctl) + data_buffer_length - 1))
1029 goto out2;
1030 retval = 0;
1031out2:
1032 /* Now free ioctl buf memory */
1033 dma_free_coherent(&tw_dev->tw_pci_dev->dev, data_buffer_length_adjusted+sizeof(TW_New_Ioctl) - 1, cpu_addr, dma_handle);
1034out:
Jes Sorensena12e25b2006-01-11 08:39:45 -05001035 mutex_unlock(&tw_dev->ioctl_lock);
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001036 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return retval;
1038} /* End tw_chrdev_ioctl() */
1039
1040/* This function handles open for the character device */
Jonathan Corbetf2b98572008-05-18 15:32:43 -06001041/* NOTE that this function races with remove. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042static int tw_chrdev_open(struct inode *inode, struct file *file)
1043{
1044 unsigned int minor_number;
1045
Jonathan Corbetf2b98572008-05-18 15:32:43 -06001046 cycle_kernel_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 dprintk(KERN_WARNING "3w-xxxx: tw_ioctl_open()\n");
1048
1049 minor_number = iminor(inode);
1050 if (minor_number >= tw_device_extension_count)
1051 return -ENODEV;
1052
1053 return 0;
1054} /* End tw_chrdev_open() */
1055
1056/* File operations struct for character device */
Arjan van de Ven00977a52007-02-12 00:55:34 -08001057static const struct file_operations tw_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 .owner = THIS_MODULE,
Arnd Bergmannf4927c42010-04-27 00:24:01 +02001059 .unlocked_ioctl = tw_chrdev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 .open = tw_chrdev_open,
1061 .release = NULL
1062};
1063
1064/* This function will free up device extension resources */
1065static void tw_free_device_extension(TW_Device_Extension *tw_dev)
1066{
1067 dprintk(KERN_NOTICE "3w-xxxx: tw_free_device_extension()\n");
1068
1069 /* Free command packet and generic buffer memory */
1070 if (tw_dev->command_packet_virtual_address[0])
1071 pci_free_consistent(tw_dev->tw_pci_dev, sizeof(TW_Command)*TW_Q_LENGTH, tw_dev->command_packet_virtual_address[0], tw_dev->command_packet_physical_address[0]);
1072
1073 if (tw_dev->alignment_virtual_address[0])
1074 pci_free_consistent(tw_dev->tw_pci_dev, sizeof(TW_Sector)*TW_Q_LENGTH, tw_dev->alignment_virtual_address[0], tw_dev->alignment_physical_address[0]);
1075} /* End tw_free_device_extension() */
1076
1077/* This function will send an initconnection command to controller */
1078static int tw_initconnection(TW_Device_Extension *tw_dev, int message_credits)
1079{
1080 unsigned long command_que_value;
1081 TW_Command *command_packet;
1082 TW_Response_Queue response_queue;
1083 int request_id = 0;
1084
1085 dprintk(KERN_NOTICE "3w-xxxx: tw_initconnection()\n");
1086
1087 /* Initialize InitConnection command packet */
1088 if (tw_dev->command_packet_virtual_address[request_id] == NULL) {
1089 printk(KERN_WARNING "3w-xxxx: tw_initconnection(): Bad command packet virtual address.\n");
1090 return 1;
1091 }
1092
1093 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1094 memset(command_packet, 0, sizeof(TW_Sector));
1095 command_packet->opcode__sgloffset = TW_OPSGL_IN(0, TW_OP_INIT_CONNECTION);
1096 command_packet->size = TW_INIT_COMMAND_PACKET_SIZE;
1097 command_packet->request_id = request_id;
1098 command_packet->status = 0x0;
1099 command_packet->flags = 0x0;
1100 command_packet->byte6.message_credits = message_credits;
1101 command_packet->byte8.init_connection.response_queue_pointer = 0x0;
1102 command_que_value = tw_dev->command_packet_physical_address[request_id];
1103
1104 if (command_que_value == 0) {
1105 printk(KERN_WARNING "3w-xxxx: tw_initconnection(): Bad command packet physical address.\n");
1106 return 1;
1107 }
1108
1109 /* Send command packet to the board */
1110 outl(command_que_value, TW_COMMAND_QUEUE_REG_ADDR(tw_dev));
1111
1112 /* Poll for completion */
1113 if (tw_poll_status_gone(tw_dev, TW_STATUS_RESPONSE_QUEUE_EMPTY, 30) == 0) {
1114 response_queue.value = inl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
1115 request_id = TW_RESID_OUT(response_queue.response_id);
1116
1117 if (request_id != 0) {
1118 /* unexpected request id */
1119 printk(KERN_WARNING "3w-xxxx: tw_initconnection(): Unexpected request id.\n");
1120 return 1;
1121 }
1122 if (command_packet->status != 0) {
1123 /* bad response */
1124 tw_decode_sense(tw_dev, request_id, 0);
1125 return 1;
1126 }
1127 }
1128 return 0;
1129} /* End tw_initconnection() */
1130
1131/* Set a value in the features table */
1132static int tw_setfeature(TW_Device_Extension *tw_dev, int parm, int param_size,
1133 unsigned char *val)
1134{
1135 TW_Param *param;
1136 TW_Command *command_packet;
1137 TW_Response_Queue response_queue;
1138 int request_id = 0;
1139 unsigned long command_que_value;
1140 unsigned long param_value;
1141
1142 /* Initialize SetParam command packet */
1143 if (tw_dev->command_packet_virtual_address[request_id] == NULL) {
1144 printk(KERN_WARNING "3w-xxxx: tw_setfeature(): Bad command packet virtual address.\n");
1145 return 1;
1146 }
1147 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1148 memset(command_packet, 0, sizeof(TW_Sector));
1149 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1150
1151 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_SET_PARAM);
1152 param->table_id = 0x404; /* Features table */
1153 param->parameter_id = parm;
1154 param->parameter_size_bytes = param_size;
1155 memcpy(param->data, val, param_size);
1156
1157 param_value = tw_dev->alignment_physical_address[request_id];
1158 if (param_value == 0) {
1159 printk(KERN_WARNING "3w-xxxx: tw_setfeature(): Bad alignment physical address.\n");
1160 tw_dev->state[request_id] = TW_S_COMPLETED;
1161 tw_state_request_finish(tw_dev, request_id);
1162 tw_dev->srb[request_id]->result = (DID_OK << 16);
1163 tw_dev->srb[request_id]->scsi_done(tw_dev->srb[request_id]);
1164 }
1165 command_packet->byte8.param.sgl[0].address = param_value;
1166 command_packet->byte8.param.sgl[0].length = sizeof(TW_Sector);
1167
1168 command_packet->size = 4;
1169 command_packet->request_id = request_id;
1170 command_packet->byte6.parameter_count = 1;
1171
1172 command_que_value = tw_dev->command_packet_physical_address[request_id];
1173 if (command_que_value == 0) {
1174 printk(KERN_WARNING "3w-xxxx: tw_setfeature(): Bad command packet physical address.\n");
1175 return 1;
1176 }
1177
1178 /* Send command packet to the board */
1179 outl(command_que_value, TW_COMMAND_QUEUE_REG_ADDR(tw_dev));
1180
1181 /* Poll for completion */
1182 if (tw_poll_status_gone(tw_dev, TW_STATUS_RESPONSE_QUEUE_EMPTY, 30) == 0) {
1183 response_queue.value = inl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
1184 request_id = TW_RESID_OUT(response_queue.response_id);
1185
1186 if (request_id != 0) {
1187 /* unexpected request id */
1188 printk(KERN_WARNING "3w-xxxx: tw_setfeature(): Unexpected request id.\n");
1189 return 1;
1190 }
1191 if (command_packet->status != 0) {
1192 /* bad response */
1193 tw_decode_sense(tw_dev, request_id, 0);
1194 return 1;
1195 }
1196 }
1197
1198 return 0;
1199} /* End tw_setfeature() */
1200
1201/* This function will reset a controller */
1202static int tw_reset_sequence(TW_Device_Extension *tw_dev)
1203{
1204 int error = 0;
1205 int tries = 0;
1206 unsigned char c = 1;
1207
1208 /* Reset the board */
1209 while (tries < TW_MAX_RESET_TRIES) {
1210 TW_SOFT_RESET(tw_dev);
1211
1212 error = tw_aen_drain_queue(tw_dev);
1213 if (error) {
1214 printk(KERN_WARNING "3w-xxxx: scsi%d: AEN drain failed, retrying.\n", tw_dev->host->host_no);
1215 tries++;
1216 continue;
1217 }
1218
1219 /* Check for controller errors */
1220 if (tw_check_errors(tw_dev)) {
1221 printk(KERN_WARNING "3w-xxxx: scsi%d: Controller errors found, retrying.\n", tw_dev->host->host_no);
1222 tries++;
1223 continue;
1224 }
1225
1226 /* Now the controller is in a good state */
1227 break;
1228 }
1229
1230 if (tries >= TW_MAX_RESET_TRIES) {
1231 printk(KERN_WARNING "3w-xxxx: scsi%d: Controller errors, card not responding, check all cabling.\n", tw_dev->host->host_no);
1232 return 1;
1233 }
1234
1235 error = tw_initconnection(tw_dev, TW_INIT_MESSAGE_CREDITS);
1236 if (error) {
1237 printk(KERN_WARNING "3w-xxxx: scsi%d: Connection initialization failed.\n", tw_dev->host->host_no);
1238 return 1;
1239 }
1240
1241 error = tw_setfeature(tw_dev, 2, 1, &c);
1242 if (error) {
1243 printk(KERN_WARNING "3w-xxxx: Unable to set features for card, probable old firmware or card.\n");
1244 }
1245
1246 return 0;
1247} /* End tw_reset_sequence() */
1248
1249/* This function will initialize the fields of a device extension */
1250static int tw_initialize_device_extension(TW_Device_Extension *tw_dev)
1251{
1252 int i, error=0;
1253
1254 dprintk(KERN_NOTICE "3w-xxxx: tw_initialize_device_extension()\n");
1255
1256 /* Initialize command packet buffers */
1257 error = tw_allocate_memory(tw_dev, sizeof(TW_Command), 0);
1258 if (error) {
1259 printk(KERN_WARNING "3w-xxxx: Command packet memory allocation failed.\n");
1260 return 1;
1261 }
1262
1263 /* Initialize generic buffer */
1264 error = tw_allocate_memory(tw_dev, sizeof(TW_Sector), 1);
1265 if (error) {
1266 printk(KERN_WARNING "3w-xxxx: Generic memory allocation failed.\n");
1267 return 1;
1268 }
1269
1270 for (i=0;i<TW_Q_LENGTH;i++) {
1271 tw_dev->free_queue[i] = i;
1272 tw_dev->state[i] = TW_S_INITIAL;
1273 }
1274
1275 tw_dev->pending_head = TW_Q_START;
1276 tw_dev->pending_tail = TW_Q_START;
1277 tw_dev->chrdev_request_id = TW_IOCTL_CHRDEV_FREE;
1278
Jes Sorensena12e25b2006-01-11 08:39:45 -05001279 mutex_init(&tw_dev->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 init_waitqueue_head(&tw_dev->ioctl_wqueue);
1281
1282 return 0;
1283} /* End tw_initialize_device_extension() */
1284
1285static int tw_map_scsi_sg_data(struct pci_dev *pdev, struct scsi_cmnd *cmd)
1286{
1287 int use_sg;
1288
1289 dprintk(KERN_WARNING "3w-xxxx: tw_map_scsi_sg_data()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001291 use_sg = scsi_dma_map(cmd);
1292 if (use_sg < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 printk(KERN_WARNING "3w-xxxx: tw_map_scsi_sg_data(): pci_map_sg() failed.\n");
1294 return 0;
1295 }
1296
1297 cmd->SCp.phase = TW_PHASE_SGLIST;
1298 cmd->SCp.have_data_in = use_sg;
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return use_sg;
1301} /* End tw_map_scsi_sg_data() */
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303static void tw_unmap_scsi_data(struct pci_dev *pdev, struct scsi_cmnd *cmd)
1304{
1305 dprintk(KERN_WARNING "3w-xxxx: tw_unmap_scsi_data()\n");
1306
adam radford7b14f582009-05-11 14:55:55 -07001307 if (cmd->SCp.phase == TW_PHASE_SGLIST)
1308 scsi_dma_unmap(cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309} /* End tw_unmap_scsi_data() */
1310
1311/* This function will reset a device extension */
adam radford4fe48182007-01-04 18:16:56 -08001312static int tw_reset_device_extension(TW_Device_Extension *tw_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 int i = 0;
1315 struct scsi_cmnd *srb;
1316 unsigned long flags = 0;
1317
1318 dprintk(KERN_NOTICE "3w-xxxx: tw_reset_device_extension()\n");
1319
1320 set_bit(TW_IN_RESET, &tw_dev->flags);
1321 TW_DISABLE_INTERRUPTS(tw_dev);
1322 TW_MASK_COMMAND_INTERRUPT(tw_dev);
1323 spin_lock_irqsave(tw_dev->host->host_lock, flags);
1324
1325 /* Abort all requests that are in progress */
1326 for (i=0;i<TW_Q_LENGTH;i++) {
1327 if ((tw_dev->state[i] != TW_S_FINISHED) &&
1328 (tw_dev->state[i] != TW_S_INITIAL) &&
1329 (tw_dev->state[i] != TW_S_COMPLETED)) {
1330 srb = tw_dev->srb[i];
1331 if (srb != NULL) {
1332 srb->result = (DID_RESET << 16);
1333 tw_dev->srb[i]->scsi_done(tw_dev->srb[i]);
1334 tw_unmap_scsi_data(tw_dev->tw_pci_dev, tw_dev->srb[i]);
1335 }
1336 }
1337 }
1338
1339 /* Reset queues and counts */
1340 for (i=0;i<TW_Q_LENGTH;i++) {
1341 tw_dev->free_queue[i] = i;
1342 tw_dev->state[i] = TW_S_INITIAL;
1343 }
1344 tw_dev->free_head = TW_Q_START;
1345 tw_dev->free_tail = TW_Q_START;
1346 tw_dev->posted_request_count = 0;
1347 tw_dev->pending_request_count = 0;
1348 tw_dev->pending_head = TW_Q_START;
1349 tw_dev->pending_tail = TW_Q_START;
1350 tw_dev->reset_print = 0;
1351
1352 spin_unlock_irqrestore(tw_dev->host->host_lock, flags);
1353
1354 if (tw_reset_sequence(tw_dev)) {
1355 printk(KERN_WARNING "3w-xxxx: scsi%d: Reset sequence failed.\n", tw_dev->host->host_no);
1356 return 1;
1357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
adam radford4fe48182007-01-04 18:16:56 -08001359 TW_ENABLE_AND_CLEAR_INTERRUPTS(tw_dev);
1360 clear_bit(TW_IN_RESET, &tw_dev->flags);
1361 tw_dev->chrdev_request_id = TW_IOCTL_CHRDEV_FREE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 return 0;
1364} /* End tw_reset_device_extension() */
1365
1366/* This funciton returns unit geometry in cylinders/heads/sectors */
1367static int tw_scsi_biosparam(struct scsi_device *sdev, struct block_device *bdev,
1368 sector_t capacity, int geom[])
1369{
1370 int heads, sectors, cylinders;
1371 TW_Device_Extension *tw_dev;
1372
1373 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_biosparam()\n");
1374 tw_dev = (TW_Device_Extension *)sdev->host->hostdata;
1375
1376 heads = 64;
1377 sectors = 32;
1378 cylinders = sector_div(capacity, heads * sectors);
1379
1380 if (capacity >= 0x200000) {
1381 heads = 255;
1382 sectors = 63;
1383 cylinders = sector_div(capacity, heads * sectors);
1384 }
1385
1386 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_biosparam(): heads = %d, sectors = %d, cylinders = %d\n", heads, sectors, cylinders);
1387 geom[0] = heads;
1388 geom[1] = sectors;
1389 geom[2] = cylinders;
1390
1391 return 0;
1392} /* End tw_scsi_biosparam() */
1393
1394/* This is the new scsi eh reset function */
1395static int tw_scsi_eh_reset(struct scsi_cmnd *SCpnt)
1396{
1397 TW_Device_Extension *tw_dev=NULL;
1398 int retval = FAILED;
1399
1400 tw_dev = (TW_Device_Extension *)SCpnt->device->host->hostdata;
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 tw_dev->num_resets++;
1403
Jeff Garzik017560f2005-10-24 18:04:36 -04001404 sdev_printk(KERN_WARNING, SCpnt->device,
1405 "WARNING: Command (0x%x) timed out, resetting card.\n",
1406 SCpnt->cmnd[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
adam radford4fe48182007-01-04 18:16:56 -08001408 /* Make sure we are not issuing an ioctl or resetting from ioctl */
1409 mutex_lock(&tw_dev->ioctl_lock);
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 /* Now reset the card and some of the device extension data */
adam radford4fe48182007-01-04 18:16:56 -08001412 if (tw_reset_device_extension(tw_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 printk(KERN_WARNING "3w-xxxx: scsi%d: Reset failed.\n", tw_dev->host->host_no);
1414 goto out;
1415 }
1416
1417 retval = SUCCESS;
1418out:
adam radford4fe48182007-01-04 18:16:56 -08001419 mutex_unlock(&tw_dev->ioctl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return retval;
1421} /* End tw_scsi_eh_reset() */
1422
1423/* This function handles scsi inquiry commands */
1424static int tw_scsiop_inquiry(TW_Device_Extension *tw_dev, int request_id)
1425{
1426 TW_Param *param;
1427 TW_Command *command_packet;
1428 unsigned long command_que_value;
1429 unsigned long param_value;
1430
1431 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_inquiry()\n");
1432
1433 /* Initialize command packet */
1434 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1435 if (command_packet == NULL) {
1436 printk(KERN_WARNING "3w-xxxx: tw_scsiop_inquiry(): Bad command packet virtual address.\n");
1437 return 1;
1438 }
1439 memset(command_packet, 0, sizeof(TW_Sector));
1440 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_GET_PARAM);
1441 command_packet->size = 4;
1442 command_packet->request_id = request_id;
1443 command_packet->status = 0;
1444 command_packet->flags = 0;
1445 command_packet->byte6.parameter_count = 1;
1446
1447 /* Now setup the param */
1448 if (tw_dev->alignment_virtual_address[request_id] == NULL) {
1449 printk(KERN_WARNING "3w-xxxx: tw_scsiop_inquiry(): Bad alignment virtual address.\n");
1450 return 1;
1451 }
1452 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1453 memset(param, 0, sizeof(TW_Sector));
1454 param->table_id = 3; /* unit summary table */
1455 param->parameter_id = 3; /* unitsstatus parameter */
1456 param->parameter_size_bytes = TW_MAX_UNITS;
1457 param_value = tw_dev->alignment_physical_address[request_id];
1458 if (param_value == 0) {
1459 printk(KERN_WARNING "3w-xxxx: tw_scsiop_inquiry(): Bad alignment physical address.\n");
1460 return 1;
1461 }
1462
1463 command_packet->byte8.param.sgl[0].address = param_value;
1464 command_packet->byte8.param.sgl[0].length = sizeof(TW_Sector);
1465 command_que_value = tw_dev->command_packet_physical_address[request_id];
1466 if (command_que_value == 0) {
1467 printk(KERN_WARNING "3w-xxxx: tw_scsiop_inquiry(): Bad command packet physical address.\n");
1468 return 1;
1469 }
1470
1471 /* Now try to post the command packet */
1472 tw_post_command_packet(tw_dev, request_id);
1473
1474 return 0;
1475} /* End tw_scsiop_inquiry() */
1476
James Bottomleyc9d297c2005-06-28 09:18:21 -05001477static void tw_transfer_internal(TW_Device_Extension *tw_dev, int request_id,
1478 void *data, unsigned int len)
1479{
FUJITA Tomonori0723d4a2008-10-09 11:25:42 +09001480 scsi_sg_copy_from_buffer(tw_dev->srb[request_id], data, len);
James Bottomleyc9d297c2005-06-28 09:18:21 -05001481}
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483/* This function is called by the isr to complete an inquiry command */
1484static int tw_scsiop_inquiry_complete(TW_Device_Extension *tw_dev, int request_id)
1485{
1486 unsigned char *is_unit_present;
James Bottomleyc9d297c2005-06-28 09:18:21 -05001487 unsigned char request_buffer[36];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 TW_Param *param;
1489
1490 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_inquiry_complete()\n");
1491
James Bottomleyc9d297c2005-06-28 09:18:21 -05001492 memset(request_buffer, 0, sizeof(request_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 request_buffer[0] = TYPE_DISK; /* Peripheral device type */
1494 request_buffer[1] = 0; /* Device type modifier */
1495 request_buffer[2] = 0; /* No ansi/iso compliance */
1496 request_buffer[4] = 31; /* Additional length */
1497 memcpy(&request_buffer[8], "3ware ", 8); /* Vendor ID */
1498 sprintf(&request_buffer[16], "Logical Disk %-2d ", tw_dev->srb[request_id]->device->id);
1499 memcpy(&request_buffer[32], TW_DRIVER_VERSION, 3);
James Bottomleyc9d297c2005-06-28 09:18:21 -05001500 tw_transfer_internal(tw_dev, request_id, request_buffer,
1501 sizeof(request_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1504 if (param == NULL) {
1505 printk(KERN_WARNING "3w-xxxx: tw_scsiop_inquiry_complete(): Bad alignment virtual address.\n");
1506 return 1;
1507 }
1508 is_unit_present = &(param->data[0]);
1509
1510 if (is_unit_present[tw_dev->srb[request_id]->device->id] & TW_UNIT_ONLINE) {
1511 tw_dev->is_unit_present[tw_dev->srb[request_id]->device->id] = 1;
1512 } else {
1513 tw_dev->is_unit_present[tw_dev->srb[request_id]->device->id] = 0;
1514 tw_dev->srb[request_id]->result = (DID_BAD_TARGET << 16);
1515 return TW_ISR_DONT_RESULT;
1516 }
1517
1518 return 0;
1519} /* End tw_scsiop_inquiry_complete() */
1520
1521/* This function handles scsi mode_sense commands */
1522static int tw_scsiop_mode_sense(TW_Device_Extension *tw_dev, int request_id)
1523{
1524 TW_Param *param;
1525 TW_Command *command_packet;
1526 unsigned long command_que_value;
1527 unsigned long param_value;
1528
1529 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_mode_sense()\n");
1530
1531 /* Only page control = 0, page code = 0x8 (cache page) supported */
1532 if (tw_dev->srb[request_id]->cmnd[2] != 0x8) {
1533 tw_dev->state[request_id] = TW_S_COMPLETED;
1534 tw_state_request_finish(tw_dev, request_id);
1535 tw_dev->srb[request_id]->result = (DID_OK << 16);
1536 tw_dev->srb[request_id]->scsi_done(tw_dev->srb[request_id]);
1537 return 0;
1538 }
1539
1540 /* Now read firmware cache setting for this unit */
1541 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1542 if (command_packet == NULL) {
1543 printk(KERN_WARNING "3w-xxxx: tw_scsiop_mode_sense(): Bad command packet virtual address.\n");
1544 return 1;
1545 }
1546
1547 /* Setup the command packet */
1548 memset(command_packet, 0, sizeof(TW_Sector));
1549 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_GET_PARAM);
1550 command_packet->size = 4;
1551 command_packet->request_id = request_id;
1552 command_packet->status = 0;
1553 command_packet->flags = 0;
1554 command_packet->byte6.parameter_count = 1;
1555
1556 /* Setup the param */
1557 if (tw_dev->alignment_virtual_address[request_id] == NULL) {
1558 printk(KERN_WARNING "3w-xxxx: tw_scsiop_mode_sense(): Bad alignment virtual address.\n");
1559 return 1;
1560 }
1561
1562 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1563 memset(param, 0, sizeof(TW_Sector));
1564 param->table_id = TW_UNIT_INFORMATION_TABLE_BASE + tw_dev->srb[request_id]->device->id;
1565 param->parameter_id = 7; /* unit flags */
1566 param->parameter_size_bytes = 1;
1567 param_value = tw_dev->alignment_physical_address[request_id];
1568 if (param_value == 0) {
1569 printk(KERN_WARNING "3w-xxxx: tw_scsiop_mode_sense(): Bad alignment physical address.\n");
1570 return 1;
1571 }
1572
1573 command_packet->byte8.param.sgl[0].address = param_value;
1574 command_packet->byte8.param.sgl[0].length = sizeof(TW_Sector);
1575 command_que_value = tw_dev->command_packet_physical_address[request_id];
1576 if (command_que_value == 0) {
1577 printk(KERN_WARNING "3w-xxxx: tw_scsiop_mode_sense(): Bad command packet physical address.\n");
1578 return 1;
1579 }
1580
1581 /* Now try to post the command packet */
1582 tw_post_command_packet(tw_dev, request_id);
1583
1584 return 0;
1585} /* End tw_scsiop_mode_sense() */
1586
1587/* This function is called by the isr to complete a mode sense command */
1588static int tw_scsiop_mode_sense_complete(TW_Device_Extension *tw_dev, int request_id)
1589{
1590 TW_Param *param;
1591 unsigned char *flags;
James Bottomleyc9d297c2005-06-28 09:18:21 -05001592 unsigned char request_buffer[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_mode_sense_complete()\n");
1595
1596 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1597 if (param == NULL) {
1598 printk(KERN_WARNING "3w-xxxx: tw_scsiop_mode_sense_complete(): Bad alignment virtual address.\n");
1599 return 1;
1600 }
1601 flags = (char *)&(param->data[0]);
James Bottomleyc9d297c2005-06-28 09:18:21 -05001602 memset(request_buffer, 0, sizeof(request_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 request_buffer[0] = 0xf; /* mode data length */
1605 request_buffer[1] = 0; /* default medium type */
1606 request_buffer[2] = 0x10; /* dpo/fua support on */
1607 request_buffer[3] = 0; /* no block descriptors */
1608 request_buffer[4] = 0x8; /* caching page */
1609 request_buffer[5] = 0xa; /* page length */
1610 if (*flags & 0x1)
adam radford4fe48182007-01-04 18:16:56 -08001611 request_buffer[6] = 0x5; /* WCE on, RCD on */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 else
adam radford4fe48182007-01-04 18:16:56 -08001613 request_buffer[6] = 0x1; /* WCE off, RCD on */
James Bottomleyc9d297c2005-06-28 09:18:21 -05001614 tw_transfer_internal(tw_dev, request_id, request_buffer,
1615 sizeof(request_buffer));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 return 0;
1618} /* End tw_scsiop_mode_sense_complete() */
1619
1620/* This function handles scsi read_capacity commands */
1621static int tw_scsiop_read_capacity(TW_Device_Extension *tw_dev, int request_id)
1622{
1623 TW_Param *param;
1624 TW_Command *command_packet;
1625 unsigned long command_que_value;
1626 unsigned long param_value;
1627
1628 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_capacity()\n");
1629
1630 /* Initialize command packet */
1631 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1632
1633 if (command_packet == NULL) {
1634 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_capacity(): Bad command packet virtual address.\n");
1635 return 1;
1636 }
1637 memset(command_packet, 0, sizeof(TW_Sector));
1638 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_GET_PARAM);
1639 command_packet->size = 4;
1640 command_packet->request_id = request_id;
1641 command_packet->unit__hostid = TW_UNITHOST_IN(0, tw_dev->srb[request_id]->device->id);
1642 command_packet->status = 0;
1643 command_packet->flags = 0;
1644 command_packet->byte6.block_count = 1;
1645
1646 /* Now setup the param */
1647 if (tw_dev->alignment_virtual_address[request_id] == NULL) {
1648 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_capacity(): Bad alignment virtual address.\n");
1649 return 1;
1650 }
1651 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1652 memset(param, 0, sizeof(TW_Sector));
1653 param->table_id = TW_UNIT_INFORMATION_TABLE_BASE +
1654 tw_dev->srb[request_id]->device->id;
1655 param->parameter_id = 4; /* unitcapacity parameter */
1656 param->parameter_size_bytes = 4;
1657 param_value = tw_dev->alignment_physical_address[request_id];
1658 if (param_value == 0) {
1659 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_capacity(): Bad alignment physical address.\n");
1660 return 1;
1661 }
1662
1663 command_packet->byte8.param.sgl[0].address = param_value;
1664 command_packet->byte8.param.sgl[0].length = sizeof(TW_Sector);
1665 command_que_value = tw_dev->command_packet_physical_address[request_id];
1666 if (command_que_value == 0) {
1667 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_capacity(): Bad command packet physical address.\n");
1668 return 1;
1669 }
1670
1671 /* Now try to post the command to the board */
1672 tw_post_command_packet(tw_dev, request_id);
1673
1674 return 0;
1675} /* End tw_scsiop_read_capacity() */
1676
1677/* This function is called by the isr to complete a readcapacity command */
1678static int tw_scsiop_read_capacity_complete(TW_Device_Extension *tw_dev, int request_id)
1679{
1680 unsigned char *param_data;
1681 u32 capacity;
James Bottomleyc9d297c2005-06-28 09:18:21 -05001682 char buff[8];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 TW_Param *param;
1684
1685 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_capacity_complete()\n");
1686
James Bottomleyc9d297c2005-06-28 09:18:21 -05001687 memset(buff, 0, sizeof(buff));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1689 if (param == NULL) {
1690 printk(KERN_WARNING "3w-xxxx: tw_scsiop_read_capacity_complete(): Bad alignment virtual address.\n");
1691 return 1;
1692 }
1693 param_data = &(param->data[0]);
1694
1695 capacity = (param_data[3] << 24) | (param_data[2] << 16) |
1696 (param_data[1] << 8) | param_data[0];
1697
1698 /* Subtract one sector to fix get last sector ioctl */
1699 capacity -= 1;
1700
1701 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_capacity_complete(): Capacity = 0x%x.\n", capacity);
1702
1703 /* Number of LBA's */
1704 buff[0] = (capacity >> 24);
1705 buff[1] = (capacity >> 16) & 0xff;
1706 buff[2] = (capacity >> 8) & 0xff;
1707 buff[3] = capacity & 0xff;
1708
1709 /* Block size in bytes (512) */
1710 buff[4] = (TW_BLOCK_SIZE >> 24);
1711 buff[5] = (TW_BLOCK_SIZE >> 16) & 0xff;
1712 buff[6] = (TW_BLOCK_SIZE >> 8) & 0xff;
1713 buff[7] = TW_BLOCK_SIZE & 0xff;
1714
James Bottomleyc9d297c2005-06-28 09:18:21 -05001715 tw_transfer_internal(tw_dev, request_id, buff, sizeof(buff));
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return 0;
1718} /* End tw_scsiop_read_capacity_complete() */
1719
1720/* This function handles scsi read or write commands */
1721static int tw_scsiop_read_write(TW_Device_Extension *tw_dev, int request_id)
1722{
1723 TW_Command *command_packet;
1724 unsigned long command_que_value;
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001725 u32 lba = 0x0, num_sectors = 0x0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 int i, use_sg;
1727 struct scsi_cmnd *srb;
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001728 struct scatterlist *sglist, *sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
1730 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_write()\n");
1731
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001732 srb = tw_dev->srb[request_id];
1733
1734 sglist = scsi_sglist(srb);
1735 if (!sglist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 printk(KERN_WARNING "3w-xxxx: tw_scsiop_read_write(): Request buffer NULL.\n");
1737 return 1;
1738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 /* Initialize command packet */
1741 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1742 if (command_packet == NULL) {
1743 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_write(): Bad command packet virtual address.\n");
1744 return 1;
1745 }
1746
1747 if (srb->cmnd[0] == READ_6 || srb->cmnd[0] == READ_10) {
1748 command_packet->opcode__sgloffset = TW_OPSGL_IN(3, TW_OP_READ);
1749 } else {
1750 command_packet->opcode__sgloffset = TW_OPSGL_IN(3, TW_OP_WRITE);
1751 }
1752
1753 command_packet->size = 3;
1754 command_packet->request_id = request_id;
1755 command_packet->unit__hostid = TW_UNITHOST_IN(0, srb->device->id);
1756 command_packet->status = 0;
1757 command_packet->flags = 0;
1758
1759 if (srb->cmnd[0] == WRITE_10) {
1760 if ((srb->cmnd[1] & 0x8) || (srb->cmnd[1] & 0x10))
1761 command_packet->flags = 1;
1762 }
1763
1764 if (srb->cmnd[0] == READ_6 || srb->cmnd[0] == WRITE_6) {
1765 lba = ((u32)srb->cmnd[1] << 16) | ((u32)srb->cmnd[2] << 8) | (u32)srb->cmnd[3];
1766 num_sectors = (u32)srb->cmnd[4];
1767 } else {
1768 lba = ((u32)srb->cmnd[2] << 24) | ((u32)srb->cmnd[3] << 16) | ((u32)srb->cmnd[4] << 8) | (u32)srb->cmnd[5];
1769 num_sectors = (u32)srb->cmnd[8] | ((u32)srb->cmnd[7] << 8);
1770 }
1771
1772 /* Update sector statistic */
1773 tw_dev->sector_count = num_sectors;
1774 if (tw_dev->sector_count > tw_dev->max_sector_count)
1775 tw_dev->max_sector_count = tw_dev->sector_count;
1776
1777 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_read_write(): lba = 0x%x num_sectors = 0x%x\n", lba, num_sectors);
1778 command_packet->byte8.io.lba = lba;
1779 command_packet->byte6.block_count = num_sectors;
1780
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001781 use_sg = tw_map_scsi_sg_data(tw_dev->tw_pci_dev, tw_dev->srb[request_id]);
1782 if (!use_sg)
1783 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001785 scsi_for_each_sg(tw_dev->srb[request_id], sg, use_sg, i) {
1786 command_packet->byte8.io.sgl[i].address = sg_dma_address(sg);
1787 command_packet->byte8.io.sgl[i].length = sg_dma_len(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 command_packet->size+=2;
1789 }
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 /* Update SG statistics */
FUJITA Tomonori6edae702007-05-14 20:20:27 +09001792 tw_dev->sgl_entries = scsi_sg_count(tw_dev->srb[request_id]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (tw_dev->sgl_entries > tw_dev->max_sgl_entries)
1794 tw_dev->max_sgl_entries = tw_dev->sgl_entries;
1795
1796 command_que_value = tw_dev->command_packet_physical_address[request_id];
1797 if (command_que_value == 0) {
1798 dprintk(KERN_WARNING "3w-xxxx: tw_scsiop_read_write(): Bad command packet physical address.\n");
1799 return 1;
1800 }
1801
1802 /* Now try to post the command to the board */
1803 tw_post_command_packet(tw_dev, request_id);
1804
1805 return 0;
1806} /* End tw_scsiop_read_write() */
1807
1808/* This function will handle the request sense scsi command */
1809static int tw_scsiop_request_sense(TW_Device_Extension *tw_dev, int request_id)
1810{
James Bottomley6e3b2bb2007-04-06 11:14:56 -05001811 char request_buffer[18];
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_request_sense()\n");
1814
James Bottomley6e3b2bb2007-04-06 11:14:56 -05001815 memset(request_buffer, 0, sizeof(request_buffer));
1816 request_buffer[0] = 0x70; /* Immediate fixed format */
1817 request_buffer[7] = 10; /* minimum size per SPC: 18 bytes */
1818 /* leave all other fields zero, giving effectively NO_SENSE return */
1819 tw_transfer_internal(tw_dev, request_id, request_buffer,
1820 sizeof(request_buffer));
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 tw_dev->state[request_id] = TW_S_COMPLETED;
1823 tw_state_request_finish(tw_dev, request_id);
1824
1825 /* If we got a request_sense, we probably want a reset, return error */
1826 tw_dev->srb[request_id]->result = (DID_ERROR << 16);
1827 tw_dev->srb[request_id]->scsi_done(tw_dev->srb[request_id]);
1828
1829 return 0;
1830} /* End tw_scsiop_request_sense() */
1831
1832/* This function will handle synchronize cache scsi command */
1833static int tw_scsiop_synchronize_cache(TW_Device_Extension *tw_dev, int request_id)
1834{
1835 TW_Command *command_packet;
1836 unsigned long command_que_value;
1837
1838 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_synchronize_cache()\n");
1839
1840 /* Send firmware flush command for this unit */
1841 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1842 if (command_packet == NULL) {
1843 printk(KERN_WARNING "3w-xxxx: tw_scsiop_synchronize_cache(): Bad command packet virtual address.\n");
1844 return 1;
1845 }
1846
1847 /* Setup the command packet */
1848 memset(command_packet, 0, sizeof(TW_Sector));
1849 command_packet->opcode__sgloffset = TW_OPSGL_IN(0, TW_OP_FLUSH_CACHE);
1850 command_packet->size = 2;
1851 command_packet->request_id = request_id;
1852 command_packet->unit__hostid = TW_UNITHOST_IN(0, tw_dev->srb[request_id]->device->id);
1853 command_packet->status = 0;
1854 command_packet->flags = 0;
1855 command_packet->byte6.parameter_count = 1;
1856 command_que_value = tw_dev->command_packet_physical_address[request_id];
1857 if (command_que_value == 0) {
1858 printk(KERN_WARNING "3w-xxxx: tw_scsiop_synchronize_cache(): Bad command packet physical address.\n");
1859 return 1;
1860 }
1861
1862 /* Now try to post the command packet */
1863 tw_post_command_packet(tw_dev, request_id);
1864
1865 return 0;
1866} /* End tw_scsiop_synchronize_cache() */
1867
1868/* This function will handle test unit ready scsi command */
1869static int tw_scsiop_test_unit_ready(TW_Device_Extension *tw_dev, int request_id)
1870{
1871 TW_Param *param;
1872 TW_Command *command_packet;
1873 unsigned long command_que_value;
1874 unsigned long param_value;
1875
1876 dprintk(KERN_NOTICE "3w-xxxx: tw_scsiop_test_unit_ready()\n");
1877
1878 /* Initialize command packet */
1879 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
1880 if (command_packet == NULL) {
1881 printk(KERN_WARNING "3w-xxxx: tw_scsiop_test_unit_ready(): Bad command packet virtual address.\n");
1882 return 1;
1883 }
1884 memset(command_packet, 0, sizeof(TW_Sector));
1885 command_packet->opcode__sgloffset = TW_OPSGL_IN(2, TW_OP_GET_PARAM);
1886 command_packet->size = 4;
1887 command_packet->request_id = request_id;
1888 command_packet->status = 0;
1889 command_packet->flags = 0;
1890 command_packet->byte6.parameter_count = 1;
1891
1892 /* Now setup the param */
1893 if (tw_dev->alignment_virtual_address[request_id] == NULL) {
1894 printk(KERN_WARNING "3w-xxxx: tw_scsiop_test_unit_ready(): Bad alignment virtual address.\n");
1895 return 1;
1896 }
1897 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1898 memset(param, 0, sizeof(TW_Sector));
1899 param->table_id = 3; /* unit summary table */
1900 param->parameter_id = 3; /* unitsstatus parameter */
1901 param->parameter_size_bytes = TW_MAX_UNITS;
1902 param_value = tw_dev->alignment_physical_address[request_id];
1903 if (param_value == 0) {
1904 printk(KERN_WARNING "3w-xxxx: tw_scsiop_test_unit_ready(): Bad alignment physical address.\n");
1905 return 1;
1906 }
1907
1908 command_packet->byte8.param.sgl[0].address = param_value;
1909 command_packet->byte8.param.sgl[0].length = sizeof(TW_Sector);
1910 command_que_value = tw_dev->command_packet_physical_address[request_id];
1911 if (command_que_value == 0) {
1912 printk(KERN_WARNING "3w-xxxx: tw_scsiop_test_unit_ready(): Bad command packet physical address.\n");
1913 return 1;
1914 }
1915
1916 /* Now try to post the command packet */
1917 tw_post_command_packet(tw_dev, request_id);
1918
1919 return 0;
1920} /* End tw_scsiop_test_unit_ready() */
1921
1922/* This function is called by the isr to complete a testunitready command */
1923static int tw_scsiop_test_unit_ready_complete(TW_Device_Extension *tw_dev, int request_id)
1924{
1925 unsigned char *is_unit_present;
1926 TW_Param *param;
1927
1928 dprintk(KERN_WARNING "3w-xxxx: tw_scsiop_test_unit_ready_complete()\n");
1929
1930 param = (TW_Param *)tw_dev->alignment_virtual_address[request_id];
1931 if (param == NULL) {
1932 printk(KERN_WARNING "3w-xxxx: tw_scsiop_test_unit_ready_complete(): Bad alignment virtual address.\n");
1933 return 1;
1934 }
1935 is_unit_present = &(param->data[0]);
1936
1937 if (is_unit_present[tw_dev->srb[request_id]->device->id] & TW_UNIT_ONLINE) {
1938 tw_dev->is_unit_present[tw_dev->srb[request_id]->device->id] = 1;
1939 } else {
1940 tw_dev->is_unit_present[tw_dev->srb[request_id]->device->id] = 0;
1941 tw_dev->srb[request_id]->result = (DID_BAD_TARGET << 16);
1942 return TW_ISR_DONT_RESULT;
1943 }
1944
1945 return 0;
1946} /* End tw_scsiop_test_unit_ready_complete() */
1947
1948/* This is the main scsi queue function to handle scsi opcodes */
1949static int tw_scsi_queue(struct scsi_cmnd *SCpnt, void (*done)(struct scsi_cmnd *))
1950{
1951 unsigned char *command = SCpnt->cmnd;
1952 int request_id = 0;
1953 int retval = 1;
1954 TW_Device_Extension *tw_dev = (TW_Device_Extension *)SCpnt->device->host->hostdata;
1955
adam radford4fe48182007-01-04 18:16:56 -08001956 /* If we are resetting due to timed out ioctl, report as busy */
1957 if (test_bit(TW_IN_RESET, &tw_dev->flags))
1958 return SCSI_MLQUEUE_HOST_BUSY;
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 /* Save done function into Scsi_Cmnd struct */
1961 SCpnt->scsi_done = done;
1962
1963 /* Queue the command and get a request id */
1964 tw_state_request_start(tw_dev, &request_id);
1965
1966 /* Save the scsi command for use by the ISR */
1967 tw_dev->srb[request_id] = SCpnt;
1968
1969 /* Initialize phase to zero */
1970 SCpnt->SCp.phase = TW_PHASE_INITIAL;
1971
1972 switch (*command) {
1973 case READ_10:
1974 case READ_6:
1975 case WRITE_10:
1976 case WRITE_6:
1977 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_queue(): caught READ/WRITE.\n");
1978 retval = tw_scsiop_read_write(tw_dev, request_id);
1979 break;
1980 case TEST_UNIT_READY:
1981 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_queue(): caught TEST_UNIT_READY.\n");
1982 retval = tw_scsiop_test_unit_ready(tw_dev, request_id);
1983 break;
1984 case INQUIRY:
1985 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_queue(): caught INQUIRY.\n");
1986 retval = tw_scsiop_inquiry(tw_dev, request_id);
1987 break;
1988 case READ_CAPACITY:
1989 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_queue(): caught READ_CAPACITY.\n");
1990 retval = tw_scsiop_read_capacity(tw_dev, request_id);
1991 break;
1992 case REQUEST_SENSE:
1993 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_queue(): caught REQUEST_SENSE.\n");
1994 retval = tw_scsiop_request_sense(tw_dev, request_id);
1995 break;
1996 case MODE_SENSE:
1997 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_queue(): caught MODE_SENSE.\n");
1998 retval = tw_scsiop_mode_sense(tw_dev, request_id);
1999 break;
2000 case SYNCHRONIZE_CACHE:
2001 dprintk(KERN_NOTICE "3w-xxxx: tw_scsi_queue(): caught SYNCHRONIZE_CACHE.\n");
2002 retval = tw_scsiop_synchronize_cache(tw_dev, request_id);
2003 break;
2004 case TW_IOCTL:
2005 printk(KERN_WARNING "3w-xxxx: SCSI_IOCTL_SEND_COMMAND deprecated, please update your 3ware tools.\n");
2006 break;
2007 default:
2008 printk(KERN_NOTICE "3w-xxxx: scsi%d: Unknown scsi opcode: 0x%x\n", tw_dev->host->host_no, *command);
2009 tw_dev->state[request_id] = TW_S_COMPLETED;
2010 tw_state_request_finish(tw_dev, request_id);
2011 SCpnt->result = (DID_BAD_TARGET << 16);
2012 done(SCpnt);
2013 retval = 0;
2014 }
2015 if (retval) {
2016 tw_dev->state[request_id] = TW_S_COMPLETED;
2017 tw_state_request_finish(tw_dev, request_id);
2018 SCpnt->result = (DID_ERROR << 16);
2019 done(SCpnt);
2020 retval = 0;
2021 }
2022 return retval;
2023} /* End tw_scsi_queue() */
2024
2025/* This function is the interrupt service routine */
David Howells7d12e782006-10-05 14:55:46 +01002026static irqreturn_t tw_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
2028 int request_id;
2029 u32 status_reg_value;
2030 TW_Device_Extension *tw_dev = (TW_Device_Extension *)dev_instance;
2031 TW_Response_Queue response_que;
2032 int error = 0, retval = 0;
2033 TW_Command *command_packet;
2034 int handled = 0;
2035
2036 /* Get the host lock for io completions */
2037 spin_lock(tw_dev->host->host_lock);
2038
2039 /* Read the registers */
2040 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
2041
2042 /* Check if this is our interrupt, otherwise bail */
2043 if (!(status_reg_value & TW_STATUS_VALID_INTERRUPT))
2044 goto tw_interrupt_bail;
2045
2046 handled = 1;
2047
adam radford4fe48182007-01-04 18:16:56 -08002048 /* If we are resetting, bail */
2049 if (test_bit(TW_IN_RESET, &tw_dev->flags))
2050 goto tw_interrupt_bail;
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /* Check controller for errors */
2053 if (tw_check_bits(status_reg_value)) {
2054 dprintk(KERN_WARNING "3w-xxxx: tw_interrupt(): Unexpected bits.\n");
2055 if (tw_decode_bits(tw_dev, status_reg_value, 1)) {
2056 TW_CLEAR_ALL_INTERRUPTS(tw_dev);
2057 goto tw_interrupt_bail;
2058 }
2059 }
2060
2061 /* Handle host interrupt */
2062 if (status_reg_value & TW_STATUS_HOST_INTERRUPT) {
2063 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): Received host interrupt.\n");
2064 TW_CLEAR_HOST_INTERRUPT(tw_dev);
2065 }
2066
2067 /* Handle attention interrupt */
2068 if (status_reg_value & TW_STATUS_ATTENTION_INTERRUPT) {
2069 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): Received attention interrupt.\n");
2070 TW_CLEAR_ATTENTION_INTERRUPT(tw_dev);
2071 tw_state_request_start(tw_dev, &request_id);
2072 error = tw_aen_read_queue(tw_dev, request_id);
2073 if (error) {
2074 printk(KERN_WARNING "3w-xxxx: scsi%d: Error reading aen queue.\n", tw_dev->host->host_no);
2075 tw_dev->state[request_id] = TW_S_COMPLETED;
2076 tw_state_request_finish(tw_dev, request_id);
2077 }
2078 }
2079
2080 /* Handle command interrupt */
2081 if (status_reg_value & TW_STATUS_COMMAND_INTERRUPT) {
2082 /* Drain as many pending commands as we can */
2083 while (tw_dev->pending_request_count > 0) {
2084 request_id = tw_dev->pending_queue[tw_dev->pending_head];
2085 if (tw_dev->state[request_id] != TW_S_PENDING) {
2086 printk(KERN_WARNING "3w-xxxx: scsi%d: Found request id that wasn't pending.\n", tw_dev->host->host_no);
2087 break;
2088 }
2089 if (tw_post_command_packet(tw_dev, request_id)==0) {
2090 if (tw_dev->pending_head == TW_Q_LENGTH-1) {
2091 tw_dev->pending_head = TW_Q_START;
2092 } else {
2093 tw_dev->pending_head = tw_dev->pending_head + 1;
2094 }
2095 tw_dev->pending_request_count--;
2096 } else {
2097 /* If we get here, we will continue re-posting on the next command interrupt */
2098 break;
2099 }
2100 }
2101 /* If there are no more pending requests, we mask command interrupt */
2102 if (tw_dev->pending_request_count == 0)
2103 TW_MASK_COMMAND_INTERRUPT(tw_dev);
2104 }
2105
2106 /* Handle response interrupt */
2107 if (status_reg_value & TW_STATUS_RESPONSE_INTERRUPT) {
2108 /* Drain the response queue from the board */
2109 while ((status_reg_value & TW_STATUS_RESPONSE_QUEUE_EMPTY) == 0) {
2110 /* Read response queue register */
2111 response_que.value = inl(TW_RESPONSE_QUEUE_REG_ADDR(tw_dev));
2112 request_id = TW_RESID_OUT(response_que.response_id);
2113 command_packet = (TW_Command *)tw_dev->command_packet_virtual_address[request_id];
2114 error = 0;
2115
2116 /* Check for bad response */
2117 if (command_packet->status != 0) {
2118 /* If internal command, don't error, don't fill sense */
2119 if (tw_dev->srb[request_id] == NULL) {
2120 tw_decode_sense(tw_dev, request_id, 0);
2121 } else {
2122 error = tw_decode_sense(tw_dev, request_id, 1);
2123 }
2124 }
2125
2126 /* Check for correct state */
2127 if (tw_dev->state[request_id] != TW_S_POSTED) {
2128 if (tw_dev->srb[request_id] != NULL) {
2129 printk(KERN_WARNING "3w-xxxx: scsi%d: Received a request id that wasn't posted.\n", tw_dev->host->host_no);
2130 error = 1;
2131 }
2132 }
2133
2134 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): Response queue request id: %d.\n", request_id);
2135
2136 /* Check for internal command completion */
2137 if (tw_dev->srb[request_id] == NULL) {
2138 dprintk(KERN_WARNING "3w-xxxx: tw_interrupt(): Found internally posted command.\n");
2139 /* Check for chrdev ioctl completion */
2140 if (request_id != tw_dev->chrdev_request_id) {
2141 retval = tw_aen_complete(tw_dev, request_id);
2142 if (retval) {
2143 printk(KERN_WARNING "3w-xxxx: scsi%d: Error completing aen.\n", tw_dev->host->host_no);
2144 }
2145 } else {
2146 tw_dev->chrdev_request_id = TW_IOCTL_CHRDEV_FREE;
2147 wake_up(&tw_dev->ioctl_wqueue);
2148 }
2149 } else {
2150 switch (tw_dev->srb[request_id]->cmnd[0]) {
2151 case READ_10:
2152 case READ_6:
2153 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): caught READ_10/READ_6\n");
2154 break;
2155 case WRITE_10:
2156 case WRITE_6:
2157 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): caught WRITE_10/WRITE_6\n");
2158 break;
2159 case TEST_UNIT_READY:
2160 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): caught TEST_UNIT_READY\n");
2161 error = tw_scsiop_test_unit_ready_complete(tw_dev, request_id);
2162 break;
2163 case INQUIRY:
2164 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): caught INQUIRY\n");
2165 error = tw_scsiop_inquiry_complete(tw_dev, request_id);
2166 break;
2167 case READ_CAPACITY:
2168 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): caught READ_CAPACITY\n");
2169 error = tw_scsiop_read_capacity_complete(tw_dev, request_id);
2170 break;
2171 case MODE_SENSE:
2172 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): caught MODE_SENSE\n");
2173 error = tw_scsiop_mode_sense_complete(tw_dev, request_id);
2174 break;
2175 case SYNCHRONIZE_CACHE:
2176 dprintk(KERN_NOTICE "3w-xxxx: tw_interrupt(): caught SYNCHRONIZE_CACHE\n");
2177 break;
2178 default:
2179 printk(KERN_WARNING "3w-xxxx: case slip in tw_interrupt()\n");
2180 error = 1;
2181 }
2182
2183 /* If no error command was a success */
2184 if (error == 0) {
2185 tw_dev->srb[request_id]->result = (DID_OK << 16);
2186 }
2187
2188 /* If error, command failed */
2189 if (error == 1) {
2190 /* Ask for a host reset */
2191 tw_dev->srb[request_id]->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
2192 }
2193
2194 /* Now complete the io */
2195 if ((error != TW_ISR_DONT_COMPLETE)) {
2196 tw_dev->state[request_id] = TW_S_COMPLETED;
2197 tw_state_request_finish(tw_dev, request_id);
2198 tw_dev->posted_request_count--;
2199 tw_dev->srb[request_id]->scsi_done(tw_dev->srb[request_id]);
2200
2201 tw_unmap_scsi_data(tw_dev->tw_pci_dev, tw_dev->srb[request_id]);
2202 }
2203 }
2204
2205 /* Check for valid status after each drain */
2206 status_reg_value = inl(TW_STATUS_REG_ADDR(tw_dev));
2207 if (tw_check_bits(status_reg_value)) {
2208 dprintk(KERN_WARNING "3w-xxxx: tw_interrupt(): Unexpected bits.\n");
2209 if (tw_decode_bits(tw_dev, status_reg_value, 1)) {
2210 TW_CLEAR_ALL_INTERRUPTS(tw_dev);
2211 goto tw_interrupt_bail;
2212 }
2213 }
2214 }
2215 }
2216
2217tw_interrupt_bail:
2218 spin_unlock(tw_dev->host->host_lock);
2219 return IRQ_RETVAL(handled);
2220} /* End tw_interrupt() */
2221
2222/* This function tells the controller to shut down */
2223static void __tw_shutdown(TW_Device_Extension *tw_dev)
2224{
2225 /* Disable interrupts */
2226 TW_DISABLE_INTERRUPTS(tw_dev);
2227
adam radford4fe48182007-01-04 18:16:56 -08002228 /* Free up the IRQ */
2229 free_irq(tw_dev->tw_pci_dev->irq, tw_dev);
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 printk(KERN_WARNING "3w-xxxx: Shutting down host %d.\n", tw_dev->host->host_no);
2232
2233 /* Tell the card we are shutting down */
2234 if (tw_initconnection(tw_dev, 1)) {
2235 printk(KERN_WARNING "3w-xxxx: Connection shutdown failed.\n");
2236 } else {
2237 printk(KERN_WARNING "3w-xxxx: Shutdown complete.\n");
2238 }
2239
2240 /* Clear all interrupts just before exit */
2241 TW_ENABLE_AND_CLEAR_INTERRUPTS(tw_dev);
2242} /* End __tw_shutdown() */
2243
2244/* Wrapper for __tw_shutdown */
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07002245static void tw_shutdown(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07002247 struct Scsi_Host *host = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 TW_Device_Extension *tw_dev = (TW_Device_Extension *)host->hostdata;
2249
2250 __tw_shutdown(tw_dev);
2251} /* End tw_shutdown() */
2252
2253static struct scsi_host_template driver_template = {
2254 .module = THIS_MODULE,
2255 .name = "3ware Storage Controller",
2256 .queuecommand = tw_scsi_queue,
2257 .eh_host_reset_handler = tw_scsi_eh_reset,
2258 .bios_param = tw_scsi_biosparam,
2259 .change_queue_depth = tw_change_queue_depth,
2260 .can_queue = TW_Q_LENGTH-2,
2261 .this_id = -1,
2262 .sg_tablesize = TW_MAX_SGL_LENGTH,
2263 .max_sectors = TW_MAX_SECTORS,
2264 .cmd_per_lun = TW_MAX_CMDS_PER_LUN,
2265 .use_clustering = ENABLE_CLUSTERING,
2266 .shost_attrs = tw_host_attrs,
2267 .emulated = 1
2268};
2269
2270/* This function will probe and initialize a card */
2271static int __devinit tw_probe(struct pci_dev *pdev, const struct pci_device_id *dev_id)
2272{
2273 struct Scsi_Host *host = NULL;
2274 TW_Device_Extension *tw_dev;
2275 int retval = -ENODEV;
2276
2277 retval = pci_enable_device(pdev);
2278 if (retval) {
2279 printk(KERN_WARNING "3w-xxxx: Failed to enable pci device.");
2280 goto out_disable_device;
2281 }
2282
2283 pci_set_master(pdev);
2284
2285 retval = pci_set_dma_mask(pdev, TW_DMA_MASK);
2286 if (retval) {
2287 printk(KERN_WARNING "3w-xxxx: Failed to set dma mask.");
2288 goto out_disable_device;
2289 }
2290
2291 host = scsi_host_alloc(&driver_template, sizeof(TW_Device_Extension));
2292 if (!host) {
2293 printk(KERN_WARNING "3w-xxxx: Failed to allocate memory for device extension.");
2294 retval = -ENOMEM;
2295 goto out_disable_device;
2296 }
2297 tw_dev = (TW_Device_Extension *)host->hostdata;
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 /* Save values to device extension */
2300 tw_dev->host = host;
2301 tw_dev->tw_pci_dev = pdev;
2302
2303 if (tw_initialize_device_extension(tw_dev)) {
2304 printk(KERN_WARNING "3w-xxxx: Failed to initialize device extension.");
2305 goto out_free_device_extension;
2306 }
2307
2308 /* Request IO regions */
2309 retval = pci_request_regions(pdev, "3w-xxxx");
2310 if (retval) {
2311 printk(KERN_WARNING "3w-xxxx: Failed to get mem region.");
2312 goto out_free_device_extension;
2313 }
2314
2315 /* Save base address */
2316 tw_dev->base_addr = pci_resource_start(pdev, 0);
2317 if (!tw_dev->base_addr) {
2318 printk(KERN_WARNING "3w-xxxx: Failed to get io address.");
2319 goto out_release_mem_region;
2320 }
2321
2322 /* Disable interrupts on the card */
2323 TW_DISABLE_INTERRUPTS(tw_dev);
2324
2325 /* Initialize the card */
2326 if (tw_reset_sequence(tw_dev))
2327 goto out_release_mem_region;
2328
2329 /* Set host specific parameters */
2330 host->max_id = TW_MAX_UNITS;
2331 host->max_cmd_len = TW_MAX_CDB_LEN;
2332
2333 /* Luns and channels aren't supported by adapter */
2334 host->max_lun = 0;
2335 host->max_channel = 0;
2336
2337 /* Register the card with the kernel SCSI layer */
2338 retval = scsi_add_host(host, &pdev->dev);
2339 if (retval) {
2340 printk(KERN_WARNING "3w-xxxx: scsi add host failed");
2341 goto out_release_mem_region;
2342 }
2343
2344 pci_set_drvdata(pdev, host);
2345
2346 printk(KERN_WARNING "3w-xxxx: scsi%d: Found a 3ware Storage Controller at 0x%x, IRQ: %d.\n", host->host_no, tw_dev->base_addr, pdev->irq);
2347
2348 /* Now setup the interrupt handler */
Thomas Gleixner1d6f3592006-07-01 19:29:42 -07002349 retval = request_irq(pdev->irq, tw_interrupt, IRQF_SHARED, "3w-xxxx", tw_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if (retval) {
2351 printk(KERN_WARNING "3w-xxxx: Error requesting IRQ.");
2352 goto out_remove_host;
2353 }
2354
2355 tw_device_extension_list[tw_device_extension_count] = tw_dev;
2356 tw_device_extension_count++;
2357
2358 /* Re-enable interrupts on the card */
2359 TW_ENABLE_AND_CLEAR_INTERRUPTS(tw_dev);
2360
2361 /* Finally, scan the host */
2362 scsi_scan_host(host);
2363
2364 if (twe_major == -1) {
2365 if ((twe_major = register_chrdev (0, "twe", &tw_fops)) < 0)
2366 printk(KERN_WARNING "3w-xxxx: Failed to register character device.");
2367 }
2368 return 0;
2369
2370out_remove_host:
2371 scsi_remove_host(host);
2372out_release_mem_region:
2373 pci_release_regions(pdev);
2374out_free_device_extension:
2375 tw_free_device_extension(tw_dev);
2376 scsi_host_put(host);
2377out_disable_device:
2378 pci_disable_device(pdev);
2379
2380 return retval;
2381} /* End tw_probe() */
2382
2383/* This function is called to remove a device */
2384static void tw_remove(struct pci_dev *pdev)
2385{
2386 struct Scsi_Host *host = pci_get_drvdata(pdev);
2387 TW_Device_Extension *tw_dev = (TW_Device_Extension *)host->hostdata;
2388
2389 scsi_remove_host(tw_dev->host);
2390
2391 /* Unregister character device */
2392 if (twe_major >= 0) {
2393 unregister_chrdev(twe_major, "twe");
2394 twe_major = -1;
2395 }
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 /* Shutdown the card */
2398 __tw_shutdown(tw_dev);
2399
2400 /* Free up the mem region */
2401 pci_release_regions(pdev);
2402
2403 /* Free up device extension resources */
2404 tw_free_device_extension(tw_dev);
2405
2406 scsi_host_put(tw_dev->host);
2407 pci_disable_device(pdev);
2408 tw_device_extension_count--;
2409} /* End tw_remove() */
2410
2411/* PCI Devices supported by this driver */
2412static struct pci_device_id tw_pci_tbl[] __devinitdata = {
2413 { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_1000,
2414 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2415 { PCI_VENDOR_ID_3WARE, PCI_DEVICE_ID_3WARE_7000,
2416 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2417 { }
2418};
2419MODULE_DEVICE_TABLE(pci, tw_pci_tbl);
2420
2421/* pci_driver initializer */
2422static struct pci_driver tw_driver = {
2423 .name = "3w-xxxx",
2424 .id_table = tw_pci_tbl,
2425 .probe = tw_probe,
2426 .remove = tw_remove,
Greg Kroah-Hartmand18c3db2005-06-23 17:35:56 -07002427 .shutdown = tw_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428};
2429
2430/* This function is called on driver initialization */
2431static int __init tw_init(void)
2432{
2433 printk(KERN_WARNING "3ware Storage Controller device driver for Linux v%s.\n", TW_DRIVER_VERSION);
2434
Henrik Kretzschmardcbccbde2006-09-25 16:58:58 -07002435 return pci_register_driver(&tw_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436} /* End tw_init() */
2437
2438/* This function is called on driver exit */
2439static void __exit tw_exit(void)
2440{
2441 pci_unregister_driver(&tw_driver);
2442} /* End tw_exit() */
2443
2444module_init(tw_init);
2445module_exit(tw_exit);
2446