2 * QLogic ISP1020 Intelligent SCSI Processor Driver (PCI)
3 * Written by Erik H. Moe, ehm@cris.com
4 * Copyright 1995, Erik H. Moe
5 * Copyright 1996, 1997 Michael A. Griffith <grif@acm.org>
6 * Copyright 2000, Jayson C. Vantuyl <vantuyl@csc.smsu.edu>
7 * and Bryon W. Roche <bryon@csc.smsu.edu>
9 * 64-bit addressing added by Kanoj Sarcar <kanoj@sgi.com>
10 * and Leo Dagum <dagum@sgi.com>
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2, or (at your option) any
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
23 #include <linux/blkdev.h>
24 #include <linux/config.h>
25 #include <linux/kernel.h>
26 #include <linux/string.h>
27 #include <linux/ioport.h>
28 #include <linux/sched.h>
29 #include <linux/types.h>
30 #include <linux/pci.h>
31 #include <linux/delay.h>
32 #include <linux/unistd.h>
33 #include <linux/spinlock.h>
34 #include <linux/interrupt.h>
37 #include <asm/byteorder.h>
39 #include <scsi/scsi_host.h>
42 * With the qlogic interface, every queue slot can hold a SCSI
43 * command with up to 4 scatter/gather entries. If we need more
44 * than 4 entries, continuation entries can be used that hold
45 * another 7 entries each. Unlike for other drivers, this means
46 * that the maximum number of scatter/gather entries we can
47 * support at any given time is a function of the number of queue
48 * slots available. That is, host->can_queue and host->sg_tablesize
49 * are dynamic and _not_ independent. This all works fine because
50 * requests are queued serially and the scatter/gather limit is
51 * determined for each queue request anew.
53 #define QLOGICISP_REQ_QUEUE_LEN 63 /* must be power of two - 1 */
54 #define QLOGICISP_MAX_SG(ql) (4 + ((ql) > 0) ? 7*((ql) - 1) : 0)
56 /* Configuration section *****************************************************/
58 /* Set the following macro to 1 to reload the ISP1020's firmware. This is
59 the latest firmware provided by QLogic. This may be an earlier/later
60 revision than supplied by your board. */
62 #define RELOAD_FIRMWARE 1
64 /* Set the following macro to 1 to reload the ISP1020's defaults from nvram.
65 If you are not sure of your settings, leave this alone, the driver will
66 use a set of 'safe' defaults */
68 #define USE_NVRAM_DEFAULTS 0
70 /* Macros used for debugging */
72 #define DEBUG_ISP1020 0
73 #define DEBUG_ISP1020_INTR 0
74 #define DEBUG_ISP1020_SETUP 0
77 #define DEFAULT_LOOP_COUNT 1000000
79 /* End Configuration section *************************************************/
81 #include <linux/module.h>
85 # define TRACE_BUF_LEN (32*1024)
97 #define TRACE(w, i, a) \
99 unsigned long flags; \
101 trace.buf[trace.next].name = (w); \
102 trace.buf[trace.next].time = jiffies; \
103 trace.buf[trace.next].index = (i); \
104 trace.buf[trace.next].addr = (long) (a); \
105 trace.next = (trace.next + 1) & (TRACE_BUF_LEN - 1); \
109 # define TRACE(w, i, a)
113 #define ENTER(x) printk("isp1020 : entering %s()\n", x);
114 #define LEAVE(x) printk("isp1020 : leaving %s()\n", x);
120 #endif /* DEBUG_ISP1020 */
122 #if DEBUG_ISP1020_INTR
123 #define ENTER_INTR(x) printk("isp1020 : entering %s()\n", x);
124 #define LEAVE_INTR(x) printk("isp1020 : leaving %s()\n", x);
125 #define DEBUG_INTR(x) x
127 #define ENTER_INTR(x)
128 #define LEAVE_INTR(x)
129 #define DEBUG_INTR(x)
130 #endif /* DEBUG ISP1020_INTR */
132 #define ISP1020_REV_ID 1
134 #define MAX_TARGETS 16
137 /* host configuration and control registers */
138 #define HOST_HCCR 0xc0 /* host command and control */
140 /* pci bus interface registers */
141 #define PCI_ID_LOW 0x00 /* vendor id */
142 #define PCI_ID_HIGH 0x02 /* device id */
143 #define ISP_CFG0 0x04 /* configuration register #0 */
144 #define ISP_CFG0_HWMSK 0x000f /* Hardware revision mask */
145 #define ISP_CFG0_1020 0x0001 /* ISP1020 */
146 #define ISP_CFG0_1020A 0x0002 /* ISP1020A */
147 #define ISP_CFG0_1040 0x0003 /* ISP1040 */
148 #define ISP_CFG0_1040A 0x0004 /* ISP1040A */
149 #define ISP_CFG0_1040B 0x0005 /* ISP1040B */
150 #define ISP_CFG0_1040C 0x0006 /* ISP1040C */
151 #define ISP_CFG1 0x06 /* configuration register #1 */
152 #define ISP_CFG1_F128 0x0040 /* 128-byte FIFO threshold */
153 #define ISP_CFG1_F64 0x0030 /* 128-byte FIFO threshold */
154 #define ISP_CFG1_F32 0x0020 /* 128-byte FIFO threshold */
155 #define ISP_CFG1_F16 0x0010 /* 128-byte FIFO threshold */
156 #define ISP_CFG1_BENAB 0x0004 /* Global Bus burst enable */
157 #define ISP_CFG1_SXP 0x0001 /* SXP register select */
158 #define PCI_INTF_CTL 0x08 /* pci interface control */
159 #define PCI_INTF_STS 0x0a /* pci interface status */
160 #define PCI_SEMAPHORE 0x0c /* pci semaphore */
161 #define PCI_NVRAM 0x0e /* pci nvram interface */
162 #define CDMA_CONF 0x20 /* Command DMA Config */
163 #define DDMA_CONF 0x40 /* Data DMA Config */
164 #define DMA_CONF_SENAB 0x0008 /* SXP to DMA Data enable */
165 #define DMA_CONF_RIRQ 0x0004 /* RISC interrupt enable */
166 #define DMA_CONF_BENAB 0x0002 /* Bus burst enable */
167 #define DMA_CONF_DIR 0x0001 /* DMA direction (0=fifo->host 1=host->fifo) */
169 /* mailbox registers */
170 #define MBOX0 0x70 /* mailbox 0 */
171 #define MBOX1 0x72 /* mailbox 1 */
172 #define MBOX2 0x74 /* mailbox 2 */
173 #define MBOX3 0x76 /* mailbox 3 */
174 #define MBOX4 0x78 /* mailbox 4 */
175 #define MBOX5 0x7a /* mailbox 5 */
176 #define MBOX6 0x7c /* mailbox 6 */
177 #define MBOX7 0x7e /* mailbox 7 */
179 /* mailbox command complete status codes */
180 #define MBOX_COMMAND_COMPLETE 0x4000
181 #define INVALID_COMMAND 0x4001
182 #define HOST_INTERFACE_ERROR 0x4002
183 #define TEST_FAILED 0x4003
184 #define COMMAND_ERROR 0x4005
185 #define COMMAND_PARAM_ERROR 0x4006
187 /* async event status codes */
188 #define ASYNC_SCSI_BUS_RESET 0x8001
189 #define SYSTEM_ERROR 0x8002
190 #define REQUEST_TRANSFER_ERROR 0x8003
191 #define RESPONSE_TRANSFER_ERROR 0x8004
192 #define REQUEST_QUEUE_WAKEUP 0x8005
193 #define EXECUTION_TIMEOUT_RESET 0x8006
195 #ifdef CONFIG_QL_ISP_A64
197 #define CONTINUATION_SEGS 5
198 #define MAX_CONTINUATION_ENTRIES 254
201 #define CONTINUATION_SEGS 7
202 #endif /* CONFIG_QL_ISP_A64 */
204 struct Entry_header
{
211 /* entry header type commands */
212 #ifdef CONFIG_QL_ISP_A64
213 #define ENTRY_COMMAND 9
214 #define ENTRY_CONTINUATION 0xa
216 #define ENTRY_COMMAND 1
217 #define ENTRY_CONTINUATION 2
218 #endif /* CONFIG_QL_ISP_A64 */
220 #define ENTRY_STATUS 3
221 #define ENTRY_MARKER 4
222 #define ENTRY_EXTENDED_COMMAND 5
224 /* entry header flag definitions */
225 #define EFLAG_CONTINUATION 1
227 #define EFLAG_BAD_HEADER 4
228 #define EFLAG_BAD_PAYLOAD 8
232 #ifdef CONFIG_QL_ISP_A64
238 struct Command_Entry
{
239 struct Entry_header hdr
;
244 u_short control_flags
;
249 #ifdef CONFIG_QL_ISP_A64
253 struct dataseg dataseg
[IOCB_SEGS
];
256 /* command entry control flag definitions */
257 #define CFLAG_NODISC 0x01
258 #define CFLAG_HEAD_TAG 0x02
259 #define CFLAG_ORDERED_TAG 0x04
260 #define CFLAG_SIMPLE_TAG 0x08
261 #define CFLAG_TAR_RTN 0x10
262 #define CFLAG_READ 0x20
263 #define CFLAG_WRITE 0x40
265 struct Ext_Command_Entry
{
266 struct Entry_header hdr
;
271 u_short control_flags
;
278 struct Continuation_Entry
{
279 struct Entry_header hdr
;
280 #ifndef CONFIG_QL_ISP_A64
283 struct dataseg dataseg
[CONTINUATION_SEGS
];
286 struct Marker_Entry
{
287 struct Entry_header hdr
;
296 /* marker entry modifier definitions */
297 #define SYNC_DEVICE 0
298 #define SYNC_TARGET 1
301 struct Status_Entry
{
302 struct Entry_header hdr
;
305 u_short completion_status
;
307 u_short status_flags
;
309 u_short req_sense_len
;
312 u_char req_sense_data
[32];
315 /* status entry completion status definitions */
316 #define CS_COMPLETE 0x0000
317 #define CS_INCOMPLETE 0x0001
318 #define CS_DMA_ERROR 0x0002
319 #define CS_TRANSPORT_ERROR 0x0003
320 #define CS_RESET_OCCURRED 0x0004
321 #define CS_ABORTED 0x0005
322 #define CS_TIMEOUT 0x0006
323 #define CS_DATA_OVERRUN 0x0007
324 #define CS_COMMAND_OVERRUN 0x0008
325 #define CS_STATUS_OVERRUN 0x0009
326 #define CS_BAD_MESSAGE 0x000a
327 #define CS_NO_MESSAGE_OUT 0x000b
328 #define CS_EXT_ID_FAILED 0x000c
329 #define CS_IDE_MSG_FAILED 0x000d
330 #define CS_ABORT_MSG_FAILED 0x000e
331 #define CS_REJECT_MSG_FAILED 0x000f
332 #define CS_NOP_MSG_FAILED 0x0010
333 #define CS_PARITY_ERROR_MSG_FAILED 0x0011
334 #define CS_DEVICE_RESET_MSG_FAILED 0x0012
335 #define CS_ID_MSG_FAILED 0x0013
336 #define CS_UNEXP_BUS_FREE 0x0014
337 #define CS_DATA_UNDERRUN 0x0015
339 /* status entry state flag definitions */
340 #define SF_GOT_BUS 0x0100
341 #define SF_GOT_TARGET 0x0200
342 #define SF_SENT_CDB 0x0400
343 #define SF_TRANSFERRED_DATA 0x0800
344 #define SF_GOT_STATUS 0x1000
345 #define SF_GOT_SENSE 0x2000
347 /* status entry status flag definitions */
348 #define STF_DISCONNECT 0x0001
349 #define STF_SYNCHRONOUS 0x0002
350 #define STF_PARITY_ERROR 0x0004
351 #define STF_BUS_RESET 0x0008
352 #define STF_DEVICE_RESET 0x0010
353 #define STF_ABORTED 0x0020
354 #define STF_TIMEOUT 0x0040
355 #define STF_NEGOTIATION 0x0080
357 /* interface control commands */
358 #define ISP_RESET 0x0001
359 #define ISP_EN_INT 0x0002
360 #define ISP_EN_RISC 0x0004
362 /* host control commands */
363 #define HCCR_NOP 0x0000
364 #define HCCR_RESET 0x1000
365 #define HCCR_PAUSE 0x2000
366 #define HCCR_RELEASE 0x3000
367 #define HCCR_SINGLE_STEP 0x4000
368 #define HCCR_SET_HOST_INTR 0x5000
369 #define HCCR_CLEAR_HOST_INTR 0x6000
370 #define HCCR_CLEAR_RISC_INTR 0x7000
371 #define HCCR_BP_ENABLE 0x8000
372 #define HCCR_BIOS_DISABLE 0x9000
373 #define HCCR_TEST_MODE 0xf000
375 #define RISC_BUSY 0x0004
377 /* mailbox commands */
378 #define MBOX_NO_OP 0x0000
379 #define MBOX_LOAD_RAM 0x0001
380 #define MBOX_EXEC_FIRMWARE 0x0002
381 #define MBOX_DUMP_RAM 0x0003
382 #define MBOX_WRITE_RAM_WORD 0x0004
383 #define MBOX_READ_RAM_WORD 0x0005
384 #define MBOX_MAILBOX_REG_TEST 0x0006
385 #define MBOX_VERIFY_CHECKSUM 0x0007
386 #define MBOX_ABOUT_FIRMWARE 0x0008
387 #define MBOX_CHECK_FIRMWARE 0x000e
388 #define MBOX_INIT_REQ_QUEUE 0x0010
389 #define MBOX_INIT_RES_QUEUE 0x0011
390 #define MBOX_EXECUTE_IOCB 0x0012
391 #define MBOX_WAKE_UP 0x0013
392 #define MBOX_STOP_FIRMWARE 0x0014
393 #define MBOX_ABORT 0x0015
394 #define MBOX_ABORT_DEVICE 0x0016
395 #define MBOX_ABORT_TARGET 0x0017
396 #define MBOX_BUS_RESET 0x0018
397 #define MBOX_STOP_QUEUE 0x0019
398 #define MBOX_START_QUEUE 0x001a
399 #define MBOX_SINGLE_STEP_QUEUE 0x001b
400 #define MBOX_ABORT_QUEUE 0x001c
401 #define MBOX_GET_DEV_QUEUE_STATUS 0x001d
402 #define MBOX_GET_FIRMWARE_STATUS 0x001f
403 #define MBOX_GET_INIT_SCSI_ID 0x0020
404 #define MBOX_GET_SELECT_TIMEOUT 0x0021
405 #define MBOX_GET_RETRY_COUNT 0x0022
406 #define MBOX_GET_TAG_AGE_LIMIT 0x0023
407 #define MBOX_GET_CLOCK_RATE 0x0024
408 #define MBOX_GET_ACT_NEG_STATE 0x0025
409 #define MBOX_GET_ASYNC_DATA_SETUP_TIME 0x0026
410 #define MBOX_GET_PCI_PARAMS 0x0027
411 #define MBOX_GET_TARGET_PARAMS 0x0028
412 #define MBOX_GET_DEV_QUEUE_PARAMS 0x0029
413 #define MBOX_SET_INIT_SCSI_ID 0x0030
414 #define MBOX_SET_SELECT_TIMEOUT 0x0031
415 #define MBOX_SET_RETRY_COUNT 0x0032
416 #define MBOX_SET_TAG_AGE_LIMIT 0x0033
417 #define MBOX_SET_CLOCK_RATE 0x0034
418 #define MBOX_SET_ACTIVE_NEG_STATE 0x0035
419 #define MBOX_SET_ASYNC_DATA_SETUP_TIME 0x0036
420 #define MBOX_SET_PCI_CONTROL_PARAMS 0x0037
421 #define MBOX_SET_TARGET_PARAMS 0x0038
422 #define MBOX_SET_DEV_QUEUE_PARAMS 0x0039
423 #define MBOX_RETURN_BIOS_BLOCK_ADDR 0x0040
424 #define MBOX_WRITE_FOUR_RAM_WORDS 0x0041
425 #define MBOX_EXEC_BIOS_IOCB 0x0042
427 #ifdef CONFIG_QL_ISP_A64
428 #define MBOX_CMD_INIT_REQUEST_QUEUE_64 0x0052
429 #define MBOX_CMD_INIT_RESPONSE_QUEUE_64 0x0053
430 #endif /* CONFIG_QL_ISP_A64 */
432 #include "qlogicisp_asm.c"
434 #define PACKB(a, b) (((a)<<4)|(b))
436 static const u_char mbox_param
[] = {
437 PACKB(1, 1), /* MBOX_NO_OP */
438 PACKB(5, 5), /* MBOX_LOAD_RAM */
439 PACKB(2, 0), /* MBOX_EXEC_FIRMWARE */
440 PACKB(5, 5), /* MBOX_DUMP_RAM */
441 PACKB(3, 3), /* MBOX_WRITE_RAM_WORD */
442 PACKB(2, 3), /* MBOX_READ_RAM_WORD */
443 PACKB(6, 6), /* MBOX_MAILBOX_REG_TEST */
444 PACKB(2, 3), /* MBOX_VERIFY_CHECKSUM */
445 PACKB(1, 3), /* MBOX_ABOUT_FIRMWARE */
446 PACKB(0, 0), /* 0x0009 */
447 PACKB(0, 0), /* 0x000a */
448 PACKB(0, 0), /* 0x000b */
449 PACKB(0, 0), /* 0x000c */
450 PACKB(0, 0), /* 0x000d */
451 PACKB(1, 2), /* MBOX_CHECK_FIRMWARE */
452 PACKB(0, 0), /* 0x000f */
453 PACKB(5, 5), /* MBOX_INIT_REQ_QUEUE */
454 PACKB(6, 6), /* MBOX_INIT_RES_QUEUE */
455 PACKB(4, 4), /* MBOX_EXECUTE_IOCB */
456 PACKB(2, 2), /* MBOX_WAKE_UP */
457 PACKB(1, 6), /* MBOX_STOP_FIRMWARE */
458 PACKB(4, 4), /* MBOX_ABORT */
459 PACKB(2, 2), /* MBOX_ABORT_DEVICE */
460 PACKB(3, 3), /* MBOX_ABORT_TARGET */
461 PACKB(2, 2), /* MBOX_BUS_RESET */
462 PACKB(2, 3), /* MBOX_STOP_QUEUE */
463 PACKB(2, 3), /* MBOX_START_QUEUE */
464 PACKB(2, 3), /* MBOX_SINGLE_STEP_QUEUE */
465 PACKB(2, 3), /* MBOX_ABORT_QUEUE */
466 PACKB(2, 4), /* MBOX_GET_DEV_QUEUE_STATUS */
467 PACKB(0, 0), /* 0x001e */
468 PACKB(1, 3), /* MBOX_GET_FIRMWARE_STATUS */
469 PACKB(1, 2), /* MBOX_GET_INIT_SCSI_ID */
470 PACKB(1, 2), /* MBOX_GET_SELECT_TIMEOUT */
471 PACKB(1, 3), /* MBOX_GET_RETRY_COUNT */
472 PACKB(1, 2), /* MBOX_GET_TAG_AGE_LIMIT */
473 PACKB(1, 2), /* MBOX_GET_CLOCK_RATE */
474 PACKB(1, 2), /* MBOX_GET_ACT_NEG_STATE */
475 PACKB(1, 2), /* MBOX_GET_ASYNC_DATA_SETUP_TIME */
476 PACKB(1, 3), /* MBOX_GET_PCI_PARAMS */
477 PACKB(2, 4), /* MBOX_GET_TARGET_PARAMS */
478 PACKB(2, 4), /* MBOX_GET_DEV_QUEUE_PARAMS */
479 PACKB(0, 0), /* 0x002a */
480 PACKB(0, 0), /* 0x002b */
481 PACKB(0, 0), /* 0x002c */
482 PACKB(0, 0), /* 0x002d */
483 PACKB(0, 0), /* 0x002e */
484 PACKB(0, 0), /* 0x002f */
485 PACKB(2, 2), /* MBOX_SET_INIT_SCSI_ID */
486 PACKB(2, 2), /* MBOX_SET_SELECT_TIMEOUT */
487 PACKB(3, 3), /* MBOX_SET_RETRY_COUNT */
488 PACKB(2, 2), /* MBOX_SET_TAG_AGE_LIMIT */
489 PACKB(2, 2), /* MBOX_SET_CLOCK_RATE */
490 PACKB(2, 2), /* MBOX_SET_ACTIVE_NEG_STATE */
491 PACKB(2, 2), /* MBOX_SET_ASYNC_DATA_SETUP_TIME */
492 PACKB(3, 3), /* MBOX_SET_PCI_CONTROL_PARAMS */
493 PACKB(4, 4), /* MBOX_SET_TARGET_PARAMS */
494 PACKB(4, 4), /* MBOX_SET_DEV_QUEUE_PARAMS */
495 PACKB(0, 0), /* 0x003a */
496 PACKB(0, 0), /* 0x003b */
497 PACKB(0, 0), /* 0x003c */
498 PACKB(0, 0), /* 0x003d */
499 PACKB(0, 0), /* 0x003e */
500 PACKB(0, 0), /* 0x003f */
501 PACKB(1, 2), /* MBOX_RETURN_BIOS_BLOCK_ADDR */
502 PACKB(6, 1), /* MBOX_WRITE_FOUR_RAM_WORDS */
503 PACKB(2, 3) /* MBOX_EXEC_BIOS_IOCB */
504 #ifdef CONFIG_QL_ISP_A64
505 ,PACKB(0, 0), /* 0x0043 */
506 PACKB(0, 0), /* 0x0044 */
507 PACKB(0, 0), /* 0x0045 */
508 PACKB(0, 0), /* 0x0046 */
509 PACKB(0, 0), /* 0x0047 */
510 PACKB(0, 0), /* 0x0048 */
511 PACKB(0, 0), /* 0x0049 */
512 PACKB(0, 0), /* 0x004a */
513 PACKB(0, 0), /* 0x004b */
514 PACKB(0, 0), /* 0x004c */
515 PACKB(0, 0), /* 0x004d */
516 PACKB(0, 0), /* 0x004e */
517 PACKB(0, 0), /* 0x004f */
518 PACKB(0, 0), /* 0x0050 */
519 PACKB(0, 0), /* 0x0051 */
520 PACKB(8, 8), /* MBOX_CMD_INIT_REQUEST_QUEUE_64 (0x0052) */
521 PACKB(8, 8) /* MBOX_CMD_INIT_RESPONSE_QUEUE_64 (0x0053) */
522 #endif /* CONFIG_QL_ISP_A64 */
525 #define MAX_MBOX_COMMAND (sizeof(mbox_param)/sizeof(u_short))
528 u_short fifo_threshold
;
529 u_short host_adapter_enable
;
530 u_short initiator_scsi_id
;
531 u_short bus_reset_delay
;
534 u_short async_data_setup_time
;
535 u_short req_ack_active_negation
;
536 u_short data_line_active_negation
;
537 u_short data_dma_burst_enable
;
538 u_short command_dma_burst_enable
;
540 u_short selection_timeout
;
541 u_short max_queue_depth
;
549 * 7 Disconnect Privilege
551 * 5 Wide Data Transfers
552 * 4 Synchronous Data Transfers
554 * 2 Automatic Request Sense
555 * 1 Stop Queue on Check Condition
556 * 0 Renegotiate on Error
560 u_short device_flags
;
561 u_short execution_throttle
;
562 u_short synchronous_period
;
563 u_short synchronous_offset
;
564 u_short device_enable
;
565 u_short reserved
; /* pad */
569 * The result queue can be quite a bit smaller since continuation entries
570 * do not show up there:
572 #define RES_QUEUE_LEN ((QLOGICISP_REQ_QUEUE_LEN + 1) / 8 - 1)
573 #define QUEUE_ENTRY_LEN 64
574 #define QSIZE(entries) (((entries) + 1) * QUEUE_ENTRY_LEN)
576 struct isp_queue_entry
{
577 char __opaque
[QUEUE_ENTRY_LEN
];
580 struct isp1020_hostdata
{
581 void __iomem
*memaddr
;
583 struct host_param host_param
;
584 struct dev_param dev_param
[MAX_TARGETS
];
585 struct pci_dev
*pci_dev
;
587 struct isp_queue_entry
*res_cpu
; /* CPU-side address of response queue. */
588 struct isp_queue_entry
*req_cpu
; /* CPU-size address of request queue. */
590 /* result and request queues (shared with isp1020): */
591 u_int req_in_ptr
; /* index of next request slot */
592 u_int res_out_ptr
; /* index of next result slot */
594 /* this is here so the queues are nicely aligned */
595 long send_marker
; /* do we need to send a marker? */
597 /* The cmd->handle has a fixed size, and is only 32-bits. We
598 * need to take care to handle 64-bit systems correctly thus what
599 * we actually place in cmd->handle is an index to the following
600 * table. Kudos to Matt Jacob for the technique. -DaveM
602 Scsi_Cmnd
*cmd_slots
[QLOGICISP_REQ_QUEUE_LEN
+ 1];
604 dma_addr_t res_dma
; /* PCI side view of response queue */
605 dma_addr_t req_dma
; /* PCI side view of request queue */
608 /* queue length's _must_ be power of two: */
609 #define QUEUE_DEPTH(in, out, ql) ((in - out) & (ql))
610 #define REQ_QUEUE_DEPTH(in, out) QUEUE_DEPTH(in, out, \
611 QLOGICISP_REQ_QUEUE_LEN)
612 #define RES_QUEUE_DEPTH(in, out) QUEUE_DEPTH(in, out, RES_QUEUE_LEN)
614 static void isp1020_enable_irqs(struct Scsi_Host
*);
615 static void isp1020_disable_irqs(struct Scsi_Host
*);
616 static int isp1020_init(struct Scsi_Host
*);
617 static int isp1020_reset_hardware(struct Scsi_Host
*);
618 static int isp1020_set_defaults(struct Scsi_Host
*);
619 static int isp1020_load_parameters(struct Scsi_Host
*);
620 static int isp1020_mbox_command(struct Scsi_Host
*, u_short
[]);
621 static int isp1020_return_status(struct Status_Entry
*);
622 static void isp1020_intr_handler(int, void *, struct pt_regs
*);
623 static irqreturn_t
do_isp1020_intr_handler(int, void *, struct pt_regs
*);
625 #if USE_NVRAM_DEFAULTS
626 static int isp1020_get_defaults(struct Scsi_Host
*);
627 static int isp1020_verify_nvram(struct Scsi_Host
*);
628 static u_short
isp1020_read_nvram_word(struct Scsi_Host
*, u_short
);
632 static void isp1020_print_scsi_cmd(Scsi_Cmnd
*);
634 #if DEBUG_ISP1020_INTR
635 static void isp1020_print_status_entry(struct Status_Entry
*);
638 /* memaddr should be used to determine if memmapped port i/o is being used
639 * non-null memaddr == mmap'd
642 static inline u_short
isp_inw(struct Scsi_Host
*host
, long offset
)
644 struct isp1020_hostdata
*h
= (struct isp1020_hostdata
*)host
->hostdata
;
646 return readw(h
->memaddr
+ offset
);
648 return inw(host
->io_port
+ offset
);
651 static inline void isp_outw(u_short val
, struct Scsi_Host
*host
, long offset
)
653 struct isp1020_hostdata
*h
= (struct isp1020_hostdata
*)host
->hostdata
;
655 writew(val
, h
->memaddr
+ offset
);
657 outw(val
, host
->io_port
+ offset
);
660 static inline void isp1020_enable_irqs(struct Scsi_Host
*host
)
662 isp_outw(ISP_EN_INT
|ISP_EN_RISC
, host
, PCI_INTF_CTL
);
666 static inline void isp1020_disable_irqs(struct Scsi_Host
*host
)
668 isp_outw(0x0, host
, PCI_INTF_CTL
);
672 static int isp1020_detect(Scsi_Host_Template
*tmpt
)
675 struct Scsi_Host
*host
;
676 struct isp1020_hostdata
*hostdata
;
677 struct pci_dev
*pdev
= NULL
;
679 ENTER("isp1020_detect");
681 tmpt
->proc_name
= "isp1020";
683 while ((pdev
= pci_find_device(PCI_VENDOR_ID_QLOGIC
, PCI_DEVICE_ID_QLOGIC_ISP1020
, pdev
)))
685 if (pci_enable_device(pdev
))
688 host
= scsi_register(tmpt
, sizeof(struct isp1020_hostdata
));
692 hostdata
= (struct isp1020_hostdata
*) host
->hostdata
;
694 memset(hostdata
, 0, sizeof(struct isp1020_hostdata
));
696 hostdata
->pci_dev
= pdev
;
697 scsi_set_device(host
, &pdev
->dev
);
699 if (isp1020_init(host
))
700 goto fail_and_unregister
;
702 if (isp1020_reset_hardware(host
)
703 #if USE_NVRAM_DEFAULTS
704 || isp1020_get_defaults(host
)
706 || isp1020_set_defaults(host
)
707 #endif /* USE_NVRAM_DEFAULTS */
708 || isp1020_load_parameters(host
)) {
712 host
->this_id
= hostdata
->host_param
.initiator_scsi_id
;
713 host
->max_sectors
= 64;
715 if (request_irq(host
->irq
, do_isp1020_intr_handler
, SA_INTERRUPT
| SA_SHIRQ
,
718 printk("qlogicisp : interrupt %d already in use\n",
723 isp_outw(0x0, host
, PCI_SEMAPHORE
);
724 isp_outw(HCCR_CLEAR_RISC_INTR
, host
, HOST_HCCR
);
725 isp1020_enable_irqs(host
);
731 iounmap(hostdata
->memaddr
);
732 release_region(host
->io_port
, 0xff);
734 if (hostdata
->res_cpu
)
735 pci_free_consistent(hostdata
->pci_dev
,
736 QSIZE(RES_QUEUE_LEN
),
739 if (hostdata
->req_cpu
)
740 pci_free_consistent(hostdata
->pci_dev
,
741 QSIZE(QLOGICISP_REQ_QUEUE_LEN
),
744 scsi_unregister(host
);
747 LEAVE("isp1020_detect");
753 static int isp1020_release(struct Scsi_Host
*host
)
755 struct isp1020_hostdata
*hostdata
;
757 ENTER("isp1020_release");
759 hostdata
= (struct isp1020_hostdata
*) host
->hostdata
;
761 isp_outw(0x0, host
, PCI_INTF_CTL
);
762 free_irq(host
->irq
, host
);
764 iounmap(hostdata
->memaddr
);
766 release_region(host
->io_port
, 0xff);
768 LEAVE("isp1020_release");
774 static const char *isp1020_info(struct Scsi_Host
*host
)
777 struct isp1020_hostdata
*hostdata
;
779 ENTER("isp1020_info");
781 hostdata
= (struct isp1020_hostdata
*) host
->hostdata
;
783 "QLogic ISP1020 SCSI on PCI bus %02x device %02x irq %d %s base 0x%lx",
784 hostdata
->pci_dev
->bus
->number
, hostdata
->pci_dev
->devfn
, host
->irq
,
785 (hostdata
->memaddr
? "MEM" : "I/O"),
786 (hostdata
->memaddr
? (unsigned long)hostdata
->memaddr
: host
->io_port
));
788 LEAVE("isp1020_info");
795 * The middle SCSI layer ensures that queuecommand never gets invoked
796 * concurrently with itself or the interrupt handler (though the
797 * interrupt handler may call this routine as part of
798 * request-completion handling).
800 static int isp1020_queuecommand(Scsi_Cmnd
*Cmnd
, void (*done
)(Scsi_Cmnd
*))
803 u_int in_ptr
, out_ptr
;
805 struct scatterlist
*sg
;
806 struct Command_Entry
*cmd
;
807 struct Continuation_Entry
*cont
;
808 struct Scsi_Host
*host
;
809 struct isp1020_hostdata
*hostdata
;
812 ENTER("isp1020_queuecommand");
814 host
= Cmnd
->device
->host
;
815 hostdata
= (struct isp1020_hostdata
*) host
->hostdata
;
816 Cmnd
->scsi_done
= done
;
818 DEBUG(isp1020_print_scsi_cmd(Cmnd
));
820 out_ptr
= isp_inw(host
, + MBOX4
);
821 in_ptr
= hostdata
->req_in_ptr
;
823 DEBUG(printk("qlogicisp : request queue depth %d\n",
824 REQ_QUEUE_DEPTH(in_ptr
, out_ptr
)));
826 cmd
= (struct Command_Entry
*) &hostdata
->req_cpu
[in_ptr
];
827 in_ptr
= (in_ptr
+ 1) & QLOGICISP_REQ_QUEUE_LEN
;
828 if (in_ptr
== out_ptr
) {
829 printk("qlogicisp : request queue overflow\n");
833 if (hostdata
->send_marker
) {
834 struct Marker_Entry
*marker
;
836 TRACE("queue marker", in_ptr
, 0);
838 DEBUG(printk("qlogicisp : adding marker entry\n"));
839 marker
= (struct Marker_Entry
*) cmd
;
840 memset(marker
, 0, sizeof(struct Marker_Entry
));
842 marker
->hdr
.entry_type
= ENTRY_MARKER
;
843 marker
->hdr
.entry_cnt
= 1;
844 marker
->modifier
= SYNC_ALL
;
846 hostdata
->send_marker
= 0;
848 if (((in_ptr
+ 1) & QLOGICISP_REQ_QUEUE_LEN
) == out_ptr
) {
849 isp_outw(in_ptr
, host
, MBOX4
);
850 hostdata
->req_in_ptr
= in_ptr
;
851 printk("qlogicisp : request queue overflow\n");
854 cmd
= (struct Command_Entry
*) &hostdata
->req_cpu
[in_ptr
];
855 in_ptr
= (in_ptr
+ 1) & QLOGICISP_REQ_QUEUE_LEN
;
858 TRACE("queue command", in_ptr
, Cmnd
);
860 memset(cmd
, 0, sizeof(struct Command_Entry
));
862 cmd
->hdr
.entry_type
= ENTRY_COMMAND
;
863 cmd
->hdr
.entry_cnt
= 1;
865 cmd
->target_lun
= Cmnd
->device
->lun
;
866 cmd
->target_id
= Cmnd
->device
->id
;
867 cmd
->cdb_length
= cpu_to_le16(Cmnd
->cmd_len
);
868 cmd
->control_flags
= cpu_to_le16(CFLAG_READ
| CFLAG_WRITE
);
869 cmd
->time_out
= cpu_to_le16(30);
871 memcpy(cmd
->cdb
, Cmnd
->cmnd
, Cmnd
->cmd_len
);
876 sg
= (struct scatterlist
*) Cmnd
->request_buffer
;
879 sg_count
= pci_map_sg(hostdata
->pci_dev
, sg
, Cmnd
->use_sg
,
880 Cmnd
->sc_data_direction
);
882 cmd
->segment_cnt
= cpu_to_le16(sg_count
);
884 /* fill in first four sg entries: */
888 for (i
= 0; i
< n
; i
++) {
889 dma_addr
= sg_dma_address(sg
);
890 ds
[i
].d_base
= cpu_to_le32((u32
) dma_addr
);
891 #ifdef CONFIG_QL_ISP_A64
892 ds
[i
].d_base_hi
= cpu_to_le32((u32
) (dma_addr
>>32));
893 #endif /* CONFIG_QL_ISP_A64 */
894 ds
[i
].d_count
= cpu_to_le32(sg_dma_len(sg
));
897 sg_count
-= IOCB_SEGS
;
899 while (sg_count
> 0) {
900 ++cmd
->hdr
.entry_cnt
;
901 cont
= (struct Continuation_Entry
*)
902 &hostdata
->req_cpu
[in_ptr
];
903 in_ptr
= (in_ptr
+ 1) & QLOGICISP_REQ_QUEUE_LEN
;
904 if (in_ptr
== out_ptr
) {
905 printk("isp1020: unexpected request queue "
909 TRACE("queue continuation", in_ptr
, 0);
910 cont
->hdr
.entry_type
= ENTRY_CONTINUATION
;
911 cont
->hdr
.entry_cnt
= 0;
912 cont
->hdr
.sys_def_1
= 0;
914 #ifndef CONFIG_QL_ISP_A64
919 if (n
> CONTINUATION_SEGS
)
920 n
= CONTINUATION_SEGS
;
921 for (i
= 0; i
< n
; ++i
) {
922 dma_addr
= sg_dma_address(sg
);
923 ds
[i
].d_base
= cpu_to_le32((u32
) dma_addr
);
924 #ifdef CONFIG_QL_ISP_A64
925 ds
[i
].d_base_hi
= cpu_to_le32((u32
)(dma_addr
>>32));
926 #endif /* CONFIG_QL_ISP_A64 */
927 ds
[i
].d_count
= cpu_to_le32(sg_dma_len(sg
));
932 } else if (Cmnd
->request_bufflen
) {
933 /*Cmnd->SCp.ptr = (char *)(unsigned long)*/
934 dma_addr
= pci_map_single(hostdata
->pci_dev
,
935 Cmnd
->request_buffer
,
936 Cmnd
->request_bufflen
,
937 Cmnd
->sc_data_direction
);
938 Cmnd
->SCp
.ptr
= (char *)(unsigned long) dma_addr
;
940 cmd
->dataseg
[0].d_base
=
941 cpu_to_le32((u32
) dma_addr
);
942 #ifdef CONFIG_QL_ISP_A64
943 cmd
->dataseg
[0].d_base_hi
=
944 cpu_to_le32((u32
) (dma_addr
>>32));
945 #endif /* CONFIG_QL_ISP_A64 */
946 cmd
->dataseg
[0].d_count
=
947 cpu_to_le32((u32
)Cmnd
->request_bufflen
);
948 cmd
->segment_cnt
= cpu_to_le16(1);
950 cmd
->dataseg
[0].d_base
= 0;
951 #ifdef CONFIG_QL_ISP_A64
952 cmd
->dataseg
[0].d_base_hi
= 0;
953 #endif /* CONFIG_QL_ISP_A64 */
954 cmd
->dataseg
[0].d_count
= 0;
955 cmd
->segment_cnt
= cpu_to_le16(1); /* Shouldn't this be 0? */
958 /* Committed, record Scsi_Cmd so we can find it later. */
959 cmd
->handle
= in_ptr
;
960 hostdata
->cmd_slots
[in_ptr
] = Cmnd
;
962 isp_outw(in_ptr
, host
, MBOX4
);
963 hostdata
->req_in_ptr
= in_ptr
;
965 num_free
= QLOGICISP_REQ_QUEUE_LEN
- REQ_QUEUE_DEPTH(in_ptr
, out_ptr
);
966 host
->can_queue
= host
->host_busy
+ num_free
;
967 host
->sg_tablesize
= QLOGICISP_MAX_SG(num_free
);
969 LEAVE("isp1020_queuecommand");
975 #define ASYNC_EVENT_INTERRUPT 0x01
977 irqreturn_t
do_isp1020_intr_handler(int irq
, void *dev_id
, struct pt_regs
*regs
)
979 struct Scsi_Host
*host
= dev_id
;
982 spin_lock_irqsave(host
->host_lock
, flags
);
983 isp1020_intr_handler(irq
, dev_id
, regs
);
984 spin_unlock_irqrestore(host
->host_lock
, flags
);
989 void isp1020_intr_handler(int irq
, void *dev_id
, struct pt_regs
*regs
)
992 struct Status_Entry
*sts
;
993 struct Scsi_Host
*host
= dev_id
;
994 struct isp1020_hostdata
*hostdata
;
995 u_int in_ptr
, out_ptr
;
998 ENTER_INTR("isp1020_intr_handler");
1000 hostdata
= (struct isp1020_hostdata
*) host
->hostdata
;
1002 DEBUG_INTR(printk("qlogicisp : interrupt on line %d\n", irq
));
1004 if (!(isp_inw(host
, PCI_INTF_STS
) & 0x04)) {
1005 /* spurious interrupts can happen legally */
1006 DEBUG_INTR(printk("qlogicisp: got spurious interrupt\n"));
1009 in_ptr
= isp_inw(host
, MBOX5
);
1010 isp_outw(HCCR_CLEAR_RISC_INTR
, host
, HOST_HCCR
);
1012 if ((isp_inw(host
, PCI_SEMAPHORE
) & ASYNC_EVENT_INTERRUPT
)) {
1013 status
= isp_inw(host
, MBOX0
);
1015 DEBUG_INTR(printk("qlogicisp : mbox completion status: %x\n",
1019 case ASYNC_SCSI_BUS_RESET
:
1020 case EXECUTION_TIMEOUT_RESET
:
1021 hostdata
->send_marker
= 1;
1023 case INVALID_COMMAND
:
1024 case HOST_INTERFACE_ERROR
:
1026 case COMMAND_PARAM_ERROR
:
1027 printk("qlogicisp : bad mailbox return status\n");
1030 isp_outw(0x0, host
, PCI_SEMAPHORE
);
1032 out_ptr
= hostdata
->res_out_ptr
;
1034 DEBUG_INTR(printk("qlogicisp : response queue update\n"));
1035 DEBUG_INTR(printk("qlogicisp : response queue depth %d\n",
1036 QUEUE_DEPTH(in_ptr
, out_ptr
, RES_QUEUE_LEN
)));
1038 while (out_ptr
!= in_ptr
) {
1041 sts
= (struct Status_Entry
*) &hostdata
->res_cpu
[out_ptr
];
1042 out_ptr
= (out_ptr
+ 1) & RES_QUEUE_LEN
;
1044 cmd_slot
= sts
->handle
;
1045 Cmnd
= hostdata
->cmd_slots
[cmd_slot
];
1046 hostdata
->cmd_slots
[cmd_slot
] = NULL
;
1048 TRACE("done", out_ptr
, Cmnd
);
1050 if (le16_to_cpu(sts
->completion_status
) == CS_RESET_OCCURRED
1051 || le16_to_cpu(sts
->completion_status
) == CS_ABORTED
1052 || (le16_to_cpu(sts
->status_flags
) & STF_BUS_RESET
))
1053 hostdata
->send_marker
= 1;
1055 if (le16_to_cpu(sts
->state_flags
) & SF_GOT_SENSE
)
1056 memcpy(Cmnd
->sense_buffer
, sts
->req_sense_data
,
1057 sizeof(Cmnd
->sense_buffer
));
1059 DEBUG_INTR(isp1020_print_status_entry(sts
));
1061 if (sts
->hdr
.entry_type
== ENTRY_STATUS
)
1062 Cmnd
->result
= isp1020_return_status(sts
);
1064 Cmnd
->result
= DID_ERROR
<< 16;
1067 pci_unmap_sg(hostdata
->pci_dev
,
1068 (struct scatterlist
*)Cmnd
->buffer
,
1070 Cmnd
->sc_data_direction
);
1071 else if (Cmnd
->request_bufflen
)
1072 pci_unmap_single(hostdata
->pci_dev
,
1073 #ifdef CONFIG_QL_ISP_A64
1074 (dma_addr_t
)((long)Cmnd
->SCp
.ptr
),
1076 (u32
)((long)Cmnd
->SCp
.ptr
),
1078 Cmnd
->request_bufflen
,
1079 Cmnd
->sc_data_direction
);
1081 isp_outw(out_ptr
, host
, MBOX5
);
1082 (*Cmnd
->scsi_done
)(Cmnd
);
1084 hostdata
->res_out_ptr
= out_ptr
;
1086 LEAVE_INTR("isp1020_intr_handler");
1090 static int isp1020_return_status(struct Status_Entry
*sts
)
1092 int host_status
= DID_ERROR
;
1093 #if DEBUG_ISP1020_INTR
1094 static char *reason
[] = {
1106 #endif /* DEBUG_ISP1020_INTR */
1108 ENTER("isp1020_return_status");
1110 DEBUG(printk("qlogicisp : completion status = 0x%04x\n",
1111 le16_to_cpu(sts
->completion_status
)));
1113 switch(le16_to_cpu(sts
->completion_status
)) {
1115 host_status
= DID_OK
;
1118 if (!(le16_to_cpu(sts
->state_flags
) & SF_GOT_BUS
))
1119 host_status
= DID_NO_CONNECT
;
1120 else if (!(le16_to_cpu(sts
->state_flags
) & SF_GOT_TARGET
))
1121 host_status
= DID_BAD_TARGET
;
1122 else if (!(le16_to_cpu(sts
->state_flags
) & SF_SENT_CDB
))
1123 host_status
= DID_ERROR
;
1124 else if (!(le16_to_cpu(sts
->state_flags
) & SF_TRANSFERRED_DATA
))
1125 host_status
= DID_ERROR
;
1126 else if (!(le16_to_cpu(sts
->state_flags
) & SF_GOT_STATUS
))
1127 host_status
= DID_ERROR
;
1128 else if (!(le16_to_cpu(sts
->state_flags
) & SF_GOT_SENSE
))
1129 host_status
= DID_ERROR
;
1132 case CS_TRANSPORT_ERROR
:
1133 host_status
= DID_ERROR
;
1135 case CS_RESET_OCCURRED
:
1136 host_status
= DID_RESET
;
1139 host_status
= DID_ABORT
;
1142 host_status
= DID_TIME_OUT
;
1144 case CS_DATA_OVERRUN
:
1145 case CS_COMMAND_OVERRUN
:
1146 case CS_STATUS_OVERRUN
:
1147 case CS_BAD_MESSAGE
:
1148 case CS_NO_MESSAGE_OUT
:
1149 case CS_EXT_ID_FAILED
:
1150 case CS_IDE_MSG_FAILED
:
1151 case CS_ABORT_MSG_FAILED
:
1152 case CS_NOP_MSG_FAILED
:
1153 case CS_PARITY_ERROR_MSG_FAILED
:
1154 case CS_DEVICE_RESET_MSG_FAILED
:
1155 case CS_ID_MSG_FAILED
:
1156 case CS_UNEXP_BUS_FREE
:
1157 host_status
= DID_ERROR
;
1159 case CS_DATA_UNDERRUN
:
1160 host_status
= DID_OK
;
1163 printk("qlogicisp : unknown completion status 0x%04x\n",
1164 le16_to_cpu(sts
->completion_status
));
1165 host_status
= DID_ERROR
;
1169 DEBUG_INTR(printk("qlogicisp : host status (%s) scsi status %x\n",
1170 reason
[host_status
], le16_to_cpu(sts
->scsi_status
)));
1172 LEAVE("isp1020_return_status");
1174 return (le16_to_cpu(sts
->scsi_status
) & STATUS_MASK
) | (host_status
<< 16);
1178 static int isp1020_biosparam(struct scsi_device
*sdev
, struct block_device
*n
,
1179 sector_t capacity
, int ip
[])
1181 int size
= capacity
;
1183 ENTER("isp1020_biosparam");
1191 ip
[2] = size
/ (ip
[0] * ip
[1]);
1198 LEAVE("isp1020_biosparam");
1204 static int isp1020_reset_hardware(struct Scsi_Host
*host
)
1209 ENTER("isp1020_reset_hardware");
1211 isp_outw(ISP_RESET
, host
, PCI_INTF_CTL
);
1213 isp_outw(HCCR_RESET
, host
, HOST_HCCR
);
1215 isp_outw(HCCR_RELEASE
, host
, HOST_HCCR
);
1216 isp_outw(HCCR_BIOS_DISABLE
, host
, HOST_HCCR
);
1218 loop_count
= DEFAULT_LOOP_COUNT
;
1219 while (--loop_count
&& isp_inw(host
, HOST_HCCR
) == RISC_BUSY
) {
1224 printk("qlogicisp: reset_hardware loop timeout\n");
1226 isp_outw(0, host
, ISP_CFG1
);
1229 printk("qlogicisp : mbox 0 0x%04x \n", isp_inw(host
, MBOX0
));
1230 printk("qlogicisp : mbox 1 0x%04x \n", isp_inw(host
, MBOX1
));
1231 printk("qlogicisp : mbox 2 0x%04x \n", isp_inw(host
, MBOX2
));
1232 printk("qlogicisp : mbox 3 0x%04x \n", isp_inw(host
, MBOX3
));
1233 printk("qlogicisp : mbox 4 0x%04x \n", isp_inw(host
, MBOX4
));
1234 printk("qlogicisp : mbox 5 0x%04x \n", isp_inw(host
, MBOX5
));
1235 #endif /* DEBUG_ISP1020 */
1237 param
[0] = MBOX_NO_OP
;
1238 isp1020_mbox_command(host
, param
);
1239 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1240 printk("qlogicisp : NOP test failed\n");
1244 DEBUG(printk("qlogicisp : loading risc ram\n"));
1247 for (loop_count
= 0; loop_count
< risc_code_length01
; loop_count
++) {
1248 param
[0] = MBOX_WRITE_RAM_WORD
;
1249 param
[1] = risc_code_addr01
+ loop_count
;
1250 param
[2] = risc_code01
[loop_count
];
1251 isp1020_mbox_command(host
, param
);
1252 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1253 printk("qlogicisp : firmware load failure at %d\n",
1258 #endif /* RELOAD_FIRMWARE */
1260 DEBUG(printk("qlogicisp : verifying checksum\n"));
1262 param
[0] = MBOX_VERIFY_CHECKSUM
;
1263 param
[1] = risc_code_addr01
;
1265 isp1020_mbox_command(host
, param
);
1267 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1268 printk("qlogicisp : ram checksum failure\n");
1272 DEBUG(printk("qlogicisp : executing firmware\n"));
1274 param
[0] = MBOX_EXEC_FIRMWARE
;
1275 param
[1] = risc_code_addr01
;
1277 isp1020_mbox_command(host
, param
);
1279 param
[0] = MBOX_ABOUT_FIRMWARE
;
1281 isp1020_mbox_command(host
, param
);
1283 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1284 printk("qlogicisp : about firmware failure\n");
1288 DEBUG(printk("qlogicisp : firmware major revision %d\n", param
[1]));
1289 DEBUG(printk("qlogicisp : firmware minor revision %d\n", param
[2]));
1291 LEAVE("isp1020_reset_hardware");
1297 static int isp1020_init(struct Scsi_Host
*sh
)
1299 u_long io_base
, mem_base
, io_flags
, mem_flags
;
1300 struct isp1020_hostdata
*hostdata
;
1304 struct pci_dev
*pdev
;
1306 ENTER("isp1020_init");
1308 hostdata
= (struct isp1020_hostdata
*) sh
->hostdata
;
1309 pdev
= hostdata
->pci_dev
;
1311 if (pci_read_config_word(pdev
, PCI_COMMAND
, &command
)
1312 || pci_read_config_byte(pdev
, PCI_CLASS_REVISION
, &revision
))
1314 printk("qlogicisp : error reading PCI configuration\n");
1318 io_base
= pci_resource_start(pdev
, 0);
1319 mem_base
= pci_resource_start(pdev
, 1);
1320 io_flags
= pci_resource_flags(pdev
, 0);
1321 mem_flags
= pci_resource_flags(pdev
, 1);
1324 if (pdev
->vendor
!= PCI_VENDOR_ID_QLOGIC
) {
1325 printk("qlogicisp : 0x%04x is not QLogic vendor ID\n",
1330 if (pdev
->device
!= PCI_DEVICE_ID_QLOGIC_ISP1020
) {
1331 printk("qlogicisp : 0x%04x does not match ISP1020 device id\n",
1337 /* Force ALPHA to use bus I/O and not bus MEM.
1338 This is to avoid having to use HAE_MEM registers,
1339 which is broken on some platforms and with SMP. */
1340 command
&= ~PCI_COMMAND_MEMORY
;
1343 sh
->io_port
= io_base
;
1345 if (!request_region(sh
->io_port
, 0xff, "qlogicisp")) {
1346 printk("qlogicisp : i/o region 0x%lx-0x%lx already "
1348 sh
->io_port
, sh
->io_port
+ 0xff);
1352 if ((command
& PCI_COMMAND_MEMORY
) &&
1353 ((mem_flags
& 1) == 0)) {
1354 hostdata
->memaddr
= ioremap(mem_base
, PAGE_SIZE
);
1355 if (!hostdata
->memaddr
) {
1356 printk("qlogicisp : i/o remapping failed.\n");
1360 if (command
& PCI_COMMAND_IO
&& (io_flags
& 3) != 1) {
1361 printk("qlogicisp : i/o mapping is disabled\n");
1364 hostdata
->memaddr
= NULL
; /* zero to signify no i/o mapping */
1368 if (revision
!= ISP1020_REV_ID
)
1369 printk("qlogicisp : new isp1020 revision ID (%d)\n", revision
);
1371 if (isp_inw(sh
, PCI_ID_LOW
) != PCI_VENDOR_ID_QLOGIC
1372 || isp_inw(sh
, PCI_ID_HIGH
) != PCI_DEVICE_ID_QLOGIC_ISP1020
)
1374 printk("qlogicisp : can't decode %s address space 0x%lx\n",
1375 (io_base
? "I/O" : "MEM"),
1376 (io_base
? io_base
: mem_base
));
1380 hostdata
->revision
= revision
;
1383 sh
->max_id
= MAX_TARGETS
;
1384 sh
->max_lun
= MAX_LUNS
;
1386 hostdata
->res_cpu
= pci_alloc_consistent(hostdata
->pci_dev
,
1387 QSIZE(RES_QUEUE_LEN
),
1388 &hostdata
->res_dma
);
1389 if (hostdata
->res_cpu
== NULL
) {
1390 printk("qlogicisp : can't allocate response queue\n");
1394 hostdata
->req_cpu
= pci_alloc_consistent(hostdata
->pci_dev
,
1395 QSIZE(QLOGICISP_REQ_QUEUE_LEN
),
1396 &hostdata
->req_dma
);
1397 if (hostdata
->req_cpu
== NULL
) {
1398 pci_free_consistent(hostdata
->pci_dev
,
1399 QSIZE(RES_QUEUE_LEN
),
1402 printk("qlogicisp : can't allocate request queue\n");
1406 pci_set_master(pdev
);
1408 LEAVE("isp1020_init");
1413 iounmap(hostdata
->memaddr
);
1415 release_region(sh
->io_port
, 0xff);
1420 #if USE_NVRAM_DEFAULTS
1422 static int isp1020_get_defaults(struct Scsi_Host
*host
)
1426 struct isp1020_hostdata
*hostdata
=
1427 (struct isp1020_hostdata
*) host
->hostdata
;
1429 ENTER("isp1020_get_defaults");
1431 if (!isp1020_verify_nvram(host
)) {
1432 printk("qlogicisp : nvram checksum failure\n");
1433 printk("qlogicisp : attempting to use default parameters\n");
1434 return isp1020_set_defaults(host
);
1437 value
= isp1020_read_nvram_word(host
, 2);
1438 hostdata
->host_param
.fifo_threshold
= (value
>> 8) & 0x03;
1439 hostdata
->host_param
.host_adapter_enable
= (value
>> 11) & 0x01;
1440 hostdata
->host_param
.initiator_scsi_id
= (value
>> 12) & 0x0f;
1442 value
= isp1020_read_nvram_word(host
, 3);
1443 hostdata
->host_param
.bus_reset_delay
= value
& 0xff;
1444 hostdata
->host_param
.retry_count
= value
>> 8;
1446 value
= isp1020_read_nvram_word(host
, 4);
1447 hostdata
->host_param
.retry_delay
= value
& 0xff;
1448 hostdata
->host_param
.async_data_setup_time
= (value
>> 8) & 0x0f;
1449 hostdata
->host_param
.req_ack_active_negation
= (value
>> 12) & 0x01;
1450 hostdata
->host_param
.data_line_active_negation
= (value
>> 13) & 0x01;
1451 hostdata
->host_param
.data_dma_burst_enable
= (value
>> 14) & 0x01;
1452 hostdata
->host_param
.command_dma_burst_enable
= (value
>> 15);
1454 value
= isp1020_read_nvram_word(host
, 5);
1455 hostdata
->host_param
.tag_aging
= value
& 0xff;
1457 value
= isp1020_read_nvram_word(host
, 6);
1458 hostdata
->host_param
.selection_timeout
= value
& 0xffff;
1460 value
= isp1020_read_nvram_word(host
, 7);
1461 hostdata
->host_param
.max_queue_depth
= value
& 0xffff;
1463 #if DEBUG_ISP1020_SETUP
1464 printk("qlogicisp : fifo threshold=%d\n",
1465 hostdata
->host_param
.fifo_threshold
);
1466 printk("qlogicisp : initiator scsi id=%d\n",
1467 hostdata
->host_param
.initiator_scsi_id
);
1468 printk("qlogicisp : bus reset delay=%d\n",
1469 hostdata
->host_param
.bus_reset_delay
);
1470 printk("qlogicisp : retry count=%d\n",
1471 hostdata
->host_param
.retry_count
);
1472 printk("qlogicisp : retry delay=%d\n",
1473 hostdata
->host_param
.retry_delay
);
1474 printk("qlogicisp : async data setup time=%d\n",
1475 hostdata
->host_param
.async_data_setup_time
);
1476 printk("qlogicisp : req/ack active negation=%d\n",
1477 hostdata
->host_param
.req_ack_active_negation
);
1478 printk("qlogicisp : data line active negation=%d\n",
1479 hostdata
->host_param
.data_line_active_negation
);
1480 printk("qlogicisp : data DMA burst enable=%d\n",
1481 hostdata
->host_param
.data_dma_burst_enable
);
1482 printk("qlogicisp : command DMA burst enable=%d\n",
1483 hostdata
->host_param
.command_dma_burst_enable
);
1484 printk("qlogicisp : tag age limit=%d\n",
1485 hostdata
->host_param
.tag_aging
);
1486 printk("qlogicisp : selection timeout limit=%d\n",
1487 hostdata
->host_param
.selection_timeout
);
1488 printk("qlogicisp : max queue depth=%d\n",
1489 hostdata
->host_param
.max_queue_depth
);
1490 #endif /* DEBUG_ISP1020_SETUP */
1492 for (i
= 0; i
< MAX_TARGETS
; i
++) {
1494 value
= isp1020_read_nvram_word(host
, 14 + i
* 3);
1495 hostdata
->dev_param
[i
].device_flags
= value
& 0xff;
1496 hostdata
->dev_param
[i
].execution_throttle
= value
>> 8;
1498 value
= isp1020_read_nvram_word(host
, 15 + i
* 3);
1499 hostdata
->dev_param
[i
].synchronous_period
= value
& 0xff;
1500 hostdata
->dev_param
[i
].synchronous_offset
= (value
>> 8) & 0x0f;
1501 hostdata
->dev_param
[i
].device_enable
= (value
>> 12) & 0x01;
1503 #if DEBUG_ISP1020_SETUP
1504 printk("qlogicisp : target 0x%02x\n", i
);
1505 printk("qlogicisp : device flags=0x%02x\n",
1506 hostdata
->dev_param
[i
].device_flags
);
1507 printk("qlogicisp : execution throttle=%d\n",
1508 hostdata
->dev_param
[i
].execution_throttle
);
1509 printk("qlogicisp : synchronous period=%d\n",
1510 hostdata
->dev_param
[i
].synchronous_period
);
1511 printk("qlogicisp : synchronous offset=%d\n",
1512 hostdata
->dev_param
[i
].synchronous_offset
);
1513 printk("qlogicisp : device enable=%d\n",
1514 hostdata
->dev_param
[i
].device_enable
);
1515 #endif /* DEBUG_ISP1020_SETUP */
1518 LEAVE("isp1020_get_defaults");
1524 #define ISP1020_NVRAM_LEN 0x40
1525 #define ISP1020_NVRAM_SIG1 0x5349
1526 #define ISP1020_NVRAM_SIG2 0x2050
1528 static int isp1020_verify_nvram(struct Scsi_Host
*host
)
1532 u_char checksum
= 0;
1534 for (i
= 0; i
< ISP1020_NVRAM_LEN
; i
++) {
1535 value
= isp1020_read_nvram_word(host
, i
);
1539 if (value
!= ISP1020_NVRAM_SIG1
) return 0;
1542 if (value
!= ISP1020_NVRAM_SIG2
) return 0;
1545 if ((value
& 0xff) != 0x02) return 0;
1548 checksum
+= value
& 0xff;
1549 checksum
+= value
>> 8;
1552 return (checksum
== 0);
1555 #define NVRAM_DELAY() udelay(2) /* 2 microsecond delay */
1558 u_short
isp1020_read_nvram_word(struct Scsi_Host
*host
, u_short byte
)
1561 u_short value
, output
, input
;
1563 byte
&= 0x3f; byte
|= 0x0180;
1565 for (i
= 8; i
>= 0; i
--) {
1566 output
= ((byte
>> i
) & 0x1) ? 0x4 : 0x0;
1567 isp_outw(output
| 0x2, host
, PCI_NVRAM
); NVRAM_DELAY();
1568 isp_outw(output
| 0x3, host
, PCI_NVRAM
); NVRAM_DELAY();
1569 isp_outw(output
| 0x2, host
, PCI_NVRAM
); NVRAM_DELAY();
1572 for (i
= 0xf, value
= 0; i
>= 0; i
--) {
1574 isp_outw(0x3, host
, PCI_NVRAM
); NVRAM_DELAY();
1575 input
= isp_inw(host
, PCI_NVRAM
); NVRAM_DELAY();
1576 isp_outw(0x2, host
, PCI_NVRAM
); NVRAM_DELAY();
1577 if (input
& 0x8) value
|= 1;
1580 isp_outw(0x0, host
, PCI_NVRAM
); NVRAM_DELAY();
1585 #endif /* USE_NVRAM_DEFAULTS */
1588 static int isp1020_set_defaults(struct Scsi_Host
*host
)
1590 struct isp1020_hostdata
*hostdata
=
1591 (struct isp1020_hostdata
*) host
->hostdata
;
1594 ENTER("isp1020_set_defaults");
1596 hostdata
->host_param
.fifo_threshold
= 2;
1597 hostdata
->host_param
.host_adapter_enable
= 1;
1598 hostdata
->host_param
.initiator_scsi_id
= 7;
1599 hostdata
->host_param
.bus_reset_delay
= 3;
1600 hostdata
->host_param
.retry_count
= 0;
1601 hostdata
->host_param
.retry_delay
= 1;
1602 hostdata
->host_param
.async_data_setup_time
= 6;
1603 hostdata
->host_param
.req_ack_active_negation
= 1;
1604 hostdata
->host_param
.data_line_active_negation
= 1;
1605 hostdata
->host_param
.data_dma_burst_enable
= 1;
1606 hostdata
->host_param
.command_dma_burst_enable
= 1;
1607 hostdata
->host_param
.tag_aging
= 8;
1608 hostdata
->host_param
.selection_timeout
= 250;
1609 hostdata
->host_param
.max_queue_depth
= 256;
1611 for (i
= 0; i
< MAX_TARGETS
; i
++) {
1612 hostdata
->dev_param
[i
].device_flags
= 0xfd;
1613 hostdata
->dev_param
[i
].execution_throttle
= 16;
1614 hostdata
->dev_param
[i
].synchronous_period
= 25;
1615 hostdata
->dev_param
[i
].synchronous_offset
= 12;
1616 hostdata
->dev_param
[i
].device_enable
= 1;
1619 LEAVE("isp1020_set_defaults");
1625 static int isp1020_load_parameters(struct Scsi_Host
*host
)
1628 #ifdef CONFIG_QL_ISP_A64
1635 u_short isp_cfg1
, hwrev
;
1636 struct isp1020_hostdata
*hostdata
=
1637 (struct isp1020_hostdata
*) host
->hostdata
;
1639 ENTER("isp1020_load_parameters");
1641 hwrev
= isp_inw(host
, ISP_CFG0
) & ISP_CFG0_HWMSK
;
1642 isp_cfg1
= ISP_CFG1_F64
| ISP_CFG1_BENAB
;
1643 if (hwrev
== ISP_CFG0_1040A
) {
1644 /* Busted fifo, says mjacob. */
1645 isp_cfg1
&= ISP_CFG1_BENAB
;
1648 isp_outw(isp_inw(host
, ISP_CFG1
) | isp_cfg1
, host
, ISP_CFG1
);
1649 isp_outw(isp_inw(host
, CDMA_CONF
) | DMA_CONF_BENAB
, host
, CDMA_CONF
);
1650 isp_outw(isp_inw(host
, DDMA_CONF
) | DMA_CONF_BENAB
, host
, DDMA_CONF
);
1652 param
[0] = MBOX_SET_INIT_SCSI_ID
;
1653 param
[1] = hostdata
->host_param
.initiator_scsi_id
;
1655 isp1020_mbox_command(host
, param
);
1657 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1658 printk("qlogicisp : set initiator id failure\n");
1662 param
[0] = MBOX_SET_RETRY_COUNT
;
1663 param
[1] = hostdata
->host_param
.retry_count
;
1664 param
[2] = hostdata
->host_param
.retry_delay
;
1666 isp1020_mbox_command(host
, param
);
1668 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1669 printk("qlogicisp : set retry count failure\n");
1673 param
[0] = MBOX_SET_ASYNC_DATA_SETUP_TIME
;
1674 param
[1] = hostdata
->host_param
.async_data_setup_time
;
1676 isp1020_mbox_command(host
, param
);
1678 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1679 printk("qlogicisp : async data setup time failure\n");
1683 param
[0] = MBOX_SET_ACTIVE_NEG_STATE
;
1684 param
[1] = (hostdata
->host_param
.req_ack_active_negation
<< 4)
1685 | (hostdata
->host_param
.data_line_active_negation
<< 5);
1687 isp1020_mbox_command(host
, param
);
1689 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1690 printk("qlogicisp : set active negation state failure\n");
1694 param
[0] = MBOX_SET_PCI_CONTROL_PARAMS
;
1695 param
[1] = hostdata
->host_param
.data_dma_burst_enable
<< 1;
1696 param
[2] = hostdata
->host_param
.command_dma_burst_enable
<< 1;
1698 isp1020_mbox_command(host
, param
);
1700 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1701 printk("qlogicisp : set pci control parameter failure\n");
1705 param
[0] = MBOX_SET_TAG_AGE_LIMIT
;
1706 param
[1] = hostdata
->host_param
.tag_aging
;
1708 isp1020_mbox_command(host
, param
);
1710 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1711 printk("qlogicisp : set tag age limit failure\n");
1715 param
[0] = MBOX_SET_SELECT_TIMEOUT
;
1716 param
[1] = hostdata
->host_param
.selection_timeout
;
1718 isp1020_mbox_command(host
, param
);
1720 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1721 printk("qlogicisp : set selection timeout failure\n");
1725 for (i
= 0; i
< MAX_TARGETS
; i
++) {
1727 if (!hostdata
->dev_param
[i
].device_enable
)
1730 param
[0] = MBOX_SET_TARGET_PARAMS
;
1732 param
[2] = hostdata
->dev_param
[i
].device_flags
<< 8;
1733 param
[3] = (hostdata
->dev_param
[i
].synchronous_offset
<< 8)
1734 | hostdata
->dev_param
[i
].synchronous_period
;
1736 isp1020_mbox_command(host
, param
);
1738 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1739 printk("qlogicisp : set target parameter failure\n");
1743 for (k
= 0; k
< MAX_LUNS
; k
++) {
1745 param
[0] = MBOX_SET_DEV_QUEUE_PARAMS
;
1746 param
[1] = (i
<< 8) | k
;
1747 param
[2] = hostdata
->host_param
.max_queue_depth
;
1748 param
[3] = hostdata
->dev_param
[i
].execution_throttle
;
1750 isp1020_mbox_command(host
, param
);
1752 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1753 printk("qlogicisp : set device queue "
1754 "parameter failure\n");
1760 queue_addr
= hostdata
->res_dma
;
1761 #ifdef CONFIG_QL_ISP_A64
1762 param
[0] = MBOX_CMD_INIT_RESPONSE_QUEUE_64
;
1764 param
[0] = MBOX_INIT_RES_QUEUE
;
1766 param
[1] = RES_QUEUE_LEN
+ 1;
1767 param
[2] = (u_short
) (queue_addr
>> 16);
1768 param
[3] = (u_short
) (queue_addr
& 0xffff);
1771 #ifdef CONFIG_QL_ISP_A64
1772 param
[6] = (u_short
) (queue_addr
>> 48);
1773 param
[7] = (u_short
) (queue_addr
>> 32);
1776 isp1020_mbox_command(host
, param
);
1778 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1779 printk("qlogicisp : set response queue failure\n");
1783 queue_addr
= hostdata
->req_dma
;
1784 #ifdef CONFIG_QL_ISP_A64
1785 param
[0] = MBOX_CMD_INIT_REQUEST_QUEUE_64
;
1787 param
[0] = MBOX_INIT_REQ_QUEUE
;
1789 param
[1] = QLOGICISP_REQ_QUEUE_LEN
+ 1;
1790 param
[2] = (u_short
) (queue_addr
>> 16);
1791 param
[3] = (u_short
) (queue_addr
& 0xffff);
1794 #ifdef CONFIG_QL_ISP_A64
1796 param
[6] = (u_short
) (queue_addr
>> 48);
1797 param
[7] = (u_short
) (queue_addr
>> 32);
1800 isp1020_mbox_command(host
, param
);
1802 if (param
[0] != MBOX_COMMAND_COMPLETE
) {
1803 printk("qlogicisp : set request queue failure\n");
1807 LEAVE("isp1020_load_parameters");
1814 * currently, this is only called during initialization or abort/reset,
1815 * at which times interrupts are disabled, so polling is OK, I guess...
1817 static int isp1020_mbox_command(struct Scsi_Host
*host
, u_short param
[])
1821 if (mbox_param
[param
[0]] == 0)
1824 loop_count
= DEFAULT_LOOP_COUNT
;
1825 while (--loop_count
&& isp_inw(host
, HOST_HCCR
) & 0x0080) {
1830 printk("qlogicisp: mbox_command loop timeout #1\n");
1832 switch(mbox_param
[param
[0]] >> 4) {
1833 case 8: isp_outw(param
[7], host
, MBOX7
);
1834 case 7: isp_outw(param
[6], host
, MBOX6
);
1835 case 6: isp_outw(param
[5], host
, MBOX5
);
1836 case 5: isp_outw(param
[4], host
, MBOX4
);
1837 case 4: isp_outw(param
[3], host
, MBOX3
);
1838 case 3: isp_outw(param
[2], host
, MBOX2
);
1839 case 2: isp_outw(param
[1], host
, MBOX1
);
1840 case 1: isp_outw(param
[0], host
, MBOX0
);
1843 isp_outw(0x0, host
, PCI_SEMAPHORE
);
1844 isp_outw(HCCR_CLEAR_RISC_INTR
, host
, HOST_HCCR
);
1845 isp_outw(HCCR_SET_HOST_INTR
, host
, HOST_HCCR
);
1847 loop_count
= DEFAULT_LOOP_COUNT
;
1848 while (--loop_count
&& !(isp_inw(host
, PCI_INTF_STS
) & 0x04)) {
1853 printk("qlogicisp: mbox_command loop timeout #2\n");
1855 loop_count
= DEFAULT_LOOP_COUNT
;
1856 while (--loop_count
&& isp_inw(host
, MBOX0
) == 0x04) {
1861 printk("qlogicisp: mbox_command loop timeout #3\n");
1863 switch(mbox_param
[param
[0]] & 0xf) {
1864 case 8: param
[7] = isp_inw(host
, MBOX7
);
1865 case 7: param
[6] = isp_inw(host
, MBOX6
);
1866 case 6: param
[5] = isp_inw(host
, MBOX5
);
1867 case 5: param
[4] = isp_inw(host
, MBOX4
);
1868 case 4: param
[3] = isp_inw(host
, MBOX3
);
1869 case 3: param
[2] = isp_inw(host
, MBOX2
);
1870 case 2: param
[1] = isp_inw(host
, MBOX1
);
1871 case 1: param
[0] = isp_inw(host
, MBOX0
);
1874 isp_outw(0x0, host
, PCI_SEMAPHORE
);
1875 isp_outw(HCCR_CLEAR_RISC_INTR
, host
, HOST_HCCR
);
1881 #if DEBUG_ISP1020_INTR
1883 void isp1020_print_status_entry(struct Status_Entry
*status
)
1887 printk("qlogicisp : entry count = 0x%02x, type = 0x%02x, flags = 0x%02x\n",
1888 status
->hdr
.entry_cnt
, status
->hdr
.entry_type
, status
->hdr
.flags
);
1889 printk("qlogicisp : scsi status = 0x%04x, completion status = 0x%04x\n",
1890 le16_to_cpu(status
->scsi_status
), le16_to_cpu(status
->completion_status
));
1891 printk("qlogicisp : state flags = 0x%04x, status flags = 0x%04x\n",
1892 le16_to_cpu(status
->state_flags
), le16_to_cpu(status
->status_flags
));
1893 printk("qlogicisp : time = 0x%04x, request sense length = 0x%04x\n",
1894 le16_to_cpu(status
->time
), le16_to_cpu(status
->req_sense_len
));
1895 printk("qlogicisp : residual transfer length = 0x%08x\n",
1896 le32_to_cpu(status
->residual
));
1898 for (i
= 0; i
< le16_to_cpu(status
->req_sense_len
); i
++)
1899 printk("qlogicisp : sense data = 0x%02x\n", status
->req_sense_data
[i
]);
1902 #endif /* DEBUG_ISP1020_INTR */
1907 void isp1020_print_scsi_cmd(Scsi_Cmnd
*cmd
)
1911 printk("qlogicisp : target = 0x%02x, lun = 0x%02x, cmd_len = 0x%02x\n",
1912 cmd
->target
, cmd
->lun
, cmd
->cmd_len
);
1913 printk("qlogicisp : command = ");
1914 for (i
= 0; i
< cmd
->cmd_len
; i
++)
1915 printk("0x%02x ", cmd
->cmnd
[i
]);
1919 #endif /* DEBUG_ISP1020 */
1921 MODULE_LICENSE("GPL");
1923 static Scsi_Host_Template driver_template
= {
1924 .detect
= isp1020_detect
,
1925 .release
= isp1020_release
,
1926 .info
= isp1020_info
,
1927 .queuecommand
= isp1020_queuecommand
,
1928 .bios_param
= isp1020_biosparam
,
1929 .can_queue
= QLOGICISP_REQ_QUEUE_LEN
,
1931 .sg_tablesize
= QLOGICISP_MAX_SG(QLOGICISP_REQ_QUEUE_LEN
),
1933 .use_clustering
= DISABLE_CLUSTERING
,
1935 #include "scsi_module.c"