1 /***************************************************************************
5 copyright : (C) 2000 by Adaptec
7 July 30, 2001 First version being submitted
8 for inclusion in the kernel. V2.4
10 See Documentation/scsi/dpti.txt for history, notes, license info
12 ***************************************************************************/
14 /***************************************************************************
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; either version 2 of the License, or *
19 * (at your option) any later version. *
21 ***************************************************************************/
22 /***************************************************************************
23 * Sat Dec 20 2003 Go Taniguchi <go@turbolinux.co.jp>
24 - Support 2.6 kernel and DMA-mapping
25 - ioctl fix for raid tools
26 - use schedule_timeout in long long loop
27 **************************************************************************/
30 /*#define UARTDELAY 1 */
32 /* On the real kernel ADDR32 should always be zero for 2.4. GFP_HIGH allocates
33 high pages. Keep the macro around because of the broken unmerged ia64 tree */
37 #include <linux/module.h>
39 MODULE_AUTHOR("Deanna Bonds, with _lots_ of help from Mark Salyzyn");
40 MODULE_DESCRIPTION("Adaptec I2O RAID Driver");
42 ////////////////////////////////////////////////////////////////
44 #include <linux/ioctl.h> /* For SCSI-Passthrough */
45 #include <asm/uaccess.h>
47 #include <linux/stat.h>
48 #include <linux/slab.h> /* for kmalloc() */
49 #include <linux/pci.h> /* for PCI support */
50 #include <linux/proc_fs.h>
51 #include <linux/blkdev.h>
52 #include <linux/delay.h> /* for udelay */
53 #include <linux/interrupt.h>
54 #include <linux/kernel.h> /* for printk */
55 #include <linux/sched.h>
56 #include <linux/reboot.h>
57 #include <linux/spinlock.h>
58 #include <linux/dma-mapping.h>
60 #include <linux/timer.h>
61 #include <linux/string.h>
62 #include <linux/ioport.h>
63 #include <linux/mutex.h>
65 #include <asm/processor.h> /* for boot_cpu_data */
66 #include <asm/pgtable.h>
67 #include <asm/io.h> /* for virt_to_bus, etc. */
69 #include <scsi/scsi.h>
70 #include <scsi/scsi_cmnd.h>
71 #include <scsi/scsi_device.h>
72 #include <scsi/scsi_host.h>
73 #include <scsi/scsi_tcq.h>
75 #include "dpt/dptsig.h"
78 /*============================================================================
79 * Create a binary signature - this is read by dptsig
80 * Needed for our management apps
81 *============================================================================
83 static dpt_sig_S DPTI_sig
= {
84 {'d', 'P', 't', 'S', 'i', 'G'}, SIG_VERSION
,
86 PROC_INTEL
, PROC_386
| PROC_486
| PROC_PENTIUM
| PROC_SEXIUM
,
87 #elif defined(__ia64__)
88 PROC_INTEL
, PROC_IA64
,
89 #elif defined(__sparc__)
90 PROC_ULTRASPARC
, PROC_ULTRASPARC
,
91 #elif defined(__alpha__)
92 PROC_ALPHA
, PROC_ALPHA
,
96 FT_HBADRVR
, 0, OEM_DPT
, OS_LINUX
, CAP_OVERLAP
, DEV_ALL
,
97 ADF_ALL_SC5
, 0, 0, DPT_VERSION
, DPT_REVISION
, DPT_SUBREVISION
,
98 DPT_MONTH
, DPT_DAY
, DPT_YEAR
, "Adaptec Linux I2O RAID Driver"
104 /*============================================================================
106 *============================================================================
109 static DEFINE_MUTEX(adpt_configuration_lock
);
111 static struct i2o_sys_tbl
*sys_tbl
= NULL
;
112 static int sys_tbl_ind
= 0;
113 static int sys_tbl_len
= 0;
115 static adpt_hba
* hba_chain
= NULL
;
116 static int hba_count
= 0;
118 static const struct file_operations adpt_fops
= {
121 .release
= adpt_close
124 #ifdef REBOOT_NOTIFIER
125 static struct notifier_block adpt_reboot_notifier
=
133 /* Structures and definitions for synchronous message posting.
134 * See adpt_i2o_post_wait() for description
136 struct adpt_i2o_post_wait_data
140 adpt_wait_queue_head_t
*wq
;
141 struct adpt_i2o_post_wait_data
*next
;
144 static struct adpt_i2o_post_wait_data
*adpt_post_wait_queue
= NULL
;
145 static u32 adpt_post_wait_id
= 0;
146 static DEFINE_SPINLOCK(adpt_post_wait_lock
);
149 /*============================================================================
151 *============================================================================
154 static u8
adpt_read_blink_led(adpt_hba
* host
)
156 if(host
->FwDebugBLEDflag_P
!= 0) {
157 if( readb(host
->FwDebugBLEDflag_P
) == 0xbc ){
158 return readb(host
->FwDebugBLEDvalue_P
);
164 /*============================================================================
165 * Scsi host template interface functions
166 *============================================================================
169 static struct pci_device_id dptids
[] = {
170 { PCI_DPT_VENDOR_ID
, PCI_DPT_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
171 { PCI_DPT_VENDOR_ID
, PCI_DPT_RAPTOR_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
174 MODULE_DEVICE_TABLE(pci
,dptids
);
176 static int adpt_detect(struct scsi_host_template
* sht
)
178 struct pci_dev
*pDev
= NULL
;
183 PINFO("Detecting Adaptec I2O RAID controllers...\n");
185 /* search for all Adatpec I2O RAID cards */
186 while ((pDev
= pci_get_device( PCI_DPT_VENDOR_ID
, PCI_ANY_ID
, pDev
))) {
187 if(pDev
->device
== PCI_DPT_DEVICE_ID
||
188 pDev
->device
== PCI_DPT_RAPTOR_DEVICE_ID
){
189 if(adpt_install_hba(sht
, pDev
) ){
190 PERROR("Could not Init an I2O RAID device\n");
191 PERROR("Will not try to detect others.\n");
198 /* In INIT state, Activate IOPs */
199 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
200 // Activate does get status , init outbound, and get hrt
201 if (adpt_i2o_activate_hba(pHba
) < 0) {
202 adpt_i2o_delete_hba(pHba
);
207 /* Active IOPs in HOLD state */
210 if (hba_chain
== NULL
)
214 * If build_sys_table fails, we kill everything and bail
215 * as we can't init the IOPs w/o a system table
217 if (adpt_i2o_build_sys_table() < 0) {
218 adpt_i2o_sys_shutdown();
222 PDEBUG("HBA's in HOLD state\n");
224 /* If IOP don't get online, we need to rebuild the System table */
225 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
226 if (adpt_i2o_online_hba(pHba
) < 0) {
227 adpt_i2o_delete_hba(pHba
);
228 goto rebuild_sys_tab
;
232 /* Active IOPs now in OPERATIONAL state */
233 PDEBUG("HBA's in OPERATIONAL state\n");
235 printk("dpti: If you have a lot of devices this could take a few minutes.\n");
236 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
237 printk(KERN_INFO
"%s: Reading the hardware resource table.\n", pHba
->name
);
238 if (adpt_i2o_lct_get(pHba
) < 0){
239 adpt_i2o_delete_hba(pHba
);
243 if (adpt_i2o_parse_lct(pHba
) < 0){
244 adpt_i2o_delete_hba(pHba
);
250 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
251 if( adpt_scsi_register(pHba
,sht
) < 0){
252 adpt_i2o_delete_hba(pHba
);
255 pHba
->initialized
= TRUE
;
256 pHba
->state
&= ~DPTI_STATE_RESET
;
259 // Register our control device node
260 // nodes will need to be created in /dev to access this
261 // the nodes can not be created from within the driver
262 if (hba_count
&& register_chrdev(DPTI_I2O_MAJOR
, DPT_DRIVER
, &adpt_fops
)) {
263 adpt_i2o_sys_shutdown();
271 * scsi_unregister will be called AFTER we return.
273 static int adpt_release(struct Scsi_Host
*host
)
275 adpt_hba
* pHba
= (adpt_hba
*) host
->hostdata
[0];
276 // adpt_i2o_quiesce_hba(pHba);
277 adpt_i2o_delete_hba(pHba
);
278 scsi_unregister(host
);
283 static void adpt_inquiry(adpt_hba
* pHba
)
296 memset(msg
, 0, sizeof(msg
));
297 buf
= kmalloc(80,GFP_KERNEL
|ADDR32
);
299 printk(KERN_ERR
"%s: Could not allocate buffer\n",pHba
->name
);
302 memset((void*)buf
, 0, 36);
305 direction
= 0x00000000;
306 scsidir
=0x40000000; // DATA IN (iop<--dev)
308 reqlen
= 14; // SINGLE SGE
309 /* Stick the headers on */
310 msg
[0] = reqlen
<<16 | SGL_OFFSET_12
;
311 msg
[1] = (0xff<<24|HOST_TID
<<12|ADAPTER_TID
);
314 // Adaptec/DPT Private stuff
315 msg
[4] = I2O_CMD_SCSI_EXEC
|DPT_ORGANIZATION_ID
<<16;
316 msg
[5] = ADAPTER_TID
| 1<<16 /* Interpret*/;
317 /* Direction, disconnect ok | sense data | simple queue , CDBLen */
318 // I2O_SCB_FLAG_ENABLE_DISCONNECT |
319 // I2O_SCB_FLAG_SIMPLE_QUEUE_TAG |
320 // I2O_SCB_FLAG_SENSE_DATA_IN_MESSAGE;
321 msg
[6] = scsidir
|0x20a00000| 6 /* cmd len*/;
325 memset(scb
, 0, sizeof(scb
));
326 // Write SCSI command into the message - always 16 byte block
333 // Don't care about the rest of scb
335 memcpy(mptr
, scb
, sizeof(scb
));
337 lenptr
=mptr
++; /* Remember me - fill in when we know */
339 /* Now fill in the SGList and command */
341 *mptr
++ = 0xD0000000|direction
|len
;
342 *mptr
++ = virt_to_bus(buf
);
344 // Send it on it's way
345 rcode
= adpt_i2o_post_wait(pHba
, msg
, reqlen
<<2, 120);
347 sprintf(pHba
->detail
, "Adaptec I2O RAID");
348 printk(KERN_INFO
"%s: Inquiry Error (%d)\n",pHba
->name
,rcode
);
349 if (rcode
!= -ETIME
&& rcode
!= -EINTR
)
352 memset(pHba
->detail
, 0, sizeof(pHba
->detail
));
353 memcpy(&(pHba
->detail
), "Vendor: Adaptec ", 16);
354 memcpy(&(pHba
->detail
[16]), " Model: ", 8);
355 memcpy(&(pHba
->detail
[24]), (u8
*) &buf
[16], 16);
356 memcpy(&(pHba
->detail
[40]), " FW: ", 4);
357 memcpy(&(pHba
->detail
[44]), (u8
*) &buf
[32], 4);
358 pHba
->detail
[48] = '\0'; /* precautionary */
361 adpt_i2o_status_get(pHba
);
366 static int adpt_slave_configure(struct scsi_device
* device
)
368 struct Scsi_Host
*host
= device
->host
;
371 pHba
= (adpt_hba
*) host
->hostdata
[0];
373 if (host
->can_queue
&& device
->tagged_supported
) {
374 scsi_adjust_queue_depth(device
, MSG_SIMPLE_TAG
,
375 host
->can_queue
- 1);
377 scsi_adjust_queue_depth(device
, 0, 1);
382 static int adpt_queue(struct scsi_cmnd
* cmd
, void (*done
) (struct scsi_cmnd
*))
384 adpt_hba
* pHba
= NULL
;
385 struct adpt_device
* pDev
= NULL
; /* dpt per device information */
387 cmd
->scsi_done
= done
;
389 * SCSI REQUEST_SENSE commands will be executed automatically by the
390 * Host Adapter for any errors, so they should not be executed
391 * explicitly unless the Sense Data is zero indicating that no error
395 if ((cmd
->cmnd
[0] == REQUEST_SENSE
) && (cmd
->sense_buffer
[0] != 0)) {
396 cmd
->result
= (DID_OK
<< 16);
401 pHba
= (adpt_hba
*)cmd
->device
->host
->hostdata
[0];
408 * TODO: I need to block here if I am processing ioctl cmds
409 * but if the outstanding cmds all finish before the ioctl,
410 * the scsi-core will not know to start sending cmds to me again.
411 * I need to a way to restart the scsi-cores queues or should I block
412 * calling scsi_done on the outstanding cmds instead
413 * for now we don't set the IOCTL state
415 if(((pHba
->state
) & DPTI_STATE_IOCTL
) || ((pHba
->state
) & DPTI_STATE_RESET
)) {
416 pHba
->host
->last_reset
= jiffies
;
417 pHba
->host
->resetting
= 1;
421 // TODO if the cmd->device if offline then I may need to issue a bus rescan
422 // followed by a get_lct to see if the device is there anymore
423 if((pDev
= (struct adpt_device
*) (cmd
->device
->hostdata
)) == NULL
) {
425 * First command request for this device. Set up a pointer
426 * to the device structure. This should be a TEST_UNIT_READY
427 * command from scan_scsis_single.
429 if ((pDev
= adpt_find_device(pHba
, (u32
)cmd
->device
->channel
, (u32
)cmd
->device
->id
, (u32
)cmd
->device
->lun
)) == NULL
) {
430 // TODO: if any luns are at this bus, scsi id then fake a TEST_UNIT_READY and INQUIRY response
431 // with type 7F (for all luns less than the max for this bus,id) so the lun scan will continue.
432 cmd
->result
= (DID_NO_CONNECT
<< 16);
436 cmd
->device
->hostdata
= pDev
;
438 pDev
->pScsi_dev
= cmd
->device
;
441 * If we are being called from when the device is being reset,
442 * delay processing of the command until later.
444 if (pDev
->state
& DPTI_DEV_RESET
) {
447 return adpt_scsi_to_i2o(pHba
, cmd
, pDev
);
450 static int adpt_bios_param(struct scsi_device
*sdev
, struct block_device
*dev
,
451 sector_t capacity
, int geom
[])
457 // *** First lets set the default geometry ****
459 // If the capacity is less than ox2000
460 if (capacity
< 0x2000 ) { // floppy
464 // else if between 0x2000 and 0x20000
465 else if (capacity
< 0x20000) {
469 // else if between 0x20000 and 0x40000
470 else if (capacity
< 0x40000) {
474 // else if between 0x4000 and 0x80000
475 else if (capacity
< 0x80000) {
479 // else if greater than 0x80000
484 cylinders
= sector_div(capacity
, heads
* sectors
);
486 // Special case if CDROM
487 if(sdev
->type
== 5) { // CDROM
497 PDEBUG("adpt_bios_param: exit\n");
502 static const char *adpt_info(struct Scsi_Host
*host
)
506 pHba
= (adpt_hba
*) host
->hostdata
[0];
507 return (char *) (pHba
->detail
);
510 static int adpt_proc_info(struct Scsi_Host
*host
, char *buffer
, char **start
, off_t offset
,
511 int length
, int inout
)
513 struct adpt_device
* d
;
525 * The user has done a write and wants us to take the
526 * data in the buffer and do something with it.
527 * proc_scsiwrite calls us with inout = 1
529 * Read data from buffer (writing to us) - NOT SUPPORTED
535 * inout = 0 means the user has done a read and wants information
536 * returned, so we write information about the cards into the buffer
537 * proc_scsiread() calls us with inout = 0
540 // Find HBA (host bus adapter) we are looking for
541 mutex_lock(&adpt_configuration_lock
);
542 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
543 if (pHba
->host
== host
) {
544 break; /* found adapter */
547 mutex_unlock(&adpt_configuration_lock
);
553 len
= sprintf(buffer
, "Adaptec I2O RAID Driver Version: %s\n\n", DPT_I2O_VERSION
);
554 len
+= sprintf(buffer
+len
, "%s\n", pHba
->detail
);
555 len
+= sprintf(buffer
+len
, "SCSI Host=scsi%d Control Node=/dev/%s irq=%d\n",
556 pHba
->host
->host_no
, pHba
->name
, host
->irq
);
557 len
+= sprintf(buffer
+len
, "\tpost fifo size = %d\n\treply fifo size = %d\n\tsg table size = %d\n\n",
558 host
->can_queue
, (int) pHba
->reply_fifo_size
, host
->sg_tablesize
);
563 if(pos
> offset
+ length
) {
568 * If we haven't even written to where we last left
569 * off (the last time we were called), reset the
575 len
+= sprintf(buffer
+len
, "Devices:\n");
576 for(chan
= 0; chan
< MAX_CHANNEL
; chan
++) {
577 for(id
= 0; id
< MAX_ID
; id
++) {
578 d
= pHba
->channel
[chan
].device
[id
];
580 len
+= sprintf(buffer
+len
,"\t%-24.24s", d
->pScsi_dev
->vendor
);
581 len
+= sprintf(buffer
+len
," Rev: %-8.8s\n", d
->pScsi_dev
->rev
);
586 if(pos
> offset
+ length
) {
594 unit
= d
->pI2o_dev
->lct_data
.tid
;
595 len
+= sprintf(buffer
+len
, "\tTID=%d, (Channel=%d, Target=%d, Lun=%d) (%s)\n\n",
596 unit
, (int)d
->scsi_channel
, (int)d
->scsi_id
, (int)d
->scsi_lun
,
597 scsi_device_online(d
->pScsi_dev
)? "online":"offline");
601 if(pos
> offset
+ length
) {
615 * begin is where we last checked our position with regards to offset
616 * begin is always less than offset. len is relative to begin. It
617 * is the number of bytes written past begin
621 /* stop the output and calculate the correct length */
622 *(buffer
+ len
) = '\0';
624 *start
= buffer
+ (offset
- begin
); /* Start of wanted data */
625 len
-= (offset
- begin
);
636 /*===========================================================================
637 * Error Handling routines
638 *===========================================================================
641 static int adpt_abort(struct scsi_cmnd
* cmd
)
643 adpt_hba
* pHba
= NULL
; /* host bus adapter structure */
644 struct adpt_device
* dptdevice
; /* dpt per device information */
648 if(cmd
->serial_number
== 0){
651 pHba
= (adpt_hba
*) cmd
->device
->host
->hostdata
[0];
652 printk(KERN_INFO
"%s: Trying to Abort cmd=%ld\n",pHba
->name
, cmd
->serial_number
);
653 if ((dptdevice
= (void*) (cmd
->device
->hostdata
)) == NULL
) {
654 printk(KERN_ERR
"%s: Unable to abort: No device in cmnd\n",pHba
->name
);
658 memset(msg
, 0, sizeof(msg
));
659 msg
[0] = FIVE_WORD_MSG_SIZE
|SGL_OFFSET_0
;
660 msg
[1] = I2O_CMD_SCSI_ABORT
<<24|HOST_TID
<<12|dptdevice
->tid
;
665 spin_lock_irq(pHba
->host
->host_lock
);
666 rcode
= adpt_i2o_post_wait(pHba
, msg
, sizeof(msg
), FOREVER
);
668 spin_unlock_irq(pHba
->host
->host_lock
);
670 if(rcode
== -EOPNOTSUPP
){
671 printk(KERN_INFO
"%s: Abort cmd not supported\n",pHba
->name
);
674 printk(KERN_INFO
"%s: Abort cmd=%ld failed.\n",pHba
->name
, cmd
->serial_number
);
677 printk(KERN_INFO
"%s: Abort cmd=%ld complete.\n",pHba
->name
, cmd
->serial_number
);
682 #define I2O_DEVICE_RESET 0x27
683 // This is the same for BLK and SCSI devices
684 // NOTE this is wrong in the i2o.h definitions
685 // This is not currently supported by our adapter but we issue it anyway
686 static int adpt_device_reset(struct scsi_cmnd
* cmd
)
692 struct adpt_device
* d
= cmd
->device
->hostdata
;
694 pHba
= (void*) cmd
->device
->host
->hostdata
[0];
695 printk(KERN_INFO
"%s: Trying to reset device\n",pHba
->name
);
697 printk(KERN_INFO
"%s: Reset Device: Device Not found\n",pHba
->name
);
700 memset(msg
, 0, sizeof(msg
));
701 msg
[0] = FOUR_WORD_MSG_SIZE
|SGL_OFFSET_0
;
702 msg
[1] = (I2O_DEVICE_RESET
<<24|HOST_TID
<<12|d
->tid
);
707 spin_lock_irq(pHba
->host
->host_lock
);
708 old_state
= d
->state
;
709 d
->state
|= DPTI_DEV_RESET
;
710 rcode
= adpt_i2o_post_wait(pHba
, msg
,sizeof(msg
), FOREVER
);
711 d
->state
= old_state
;
713 spin_unlock_irq(pHba
->host
->host_lock
);
715 if(rcode
== -EOPNOTSUPP
){
716 printk(KERN_INFO
"%s: Device reset not supported\n",pHba
->name
);
719 printk(KERN_INFO
"%s: Device reset failed\n",pHba
->name
);
722 printk(KERN_INFO
"%s: Device reset successful\n",pHba
->name
);
728 #define I2O_HBA_BUS_RESET 0x87
729 // This version of bus reset is called by the eh_error handler
730 static int adpt_bus_reset(struct scsi_cmnd
* cmd
)
736 pHba
= (adpt_hba
*)cmd
->device
->host
->hostdata
[0];
737 memset(msg
, 0, sizeof(msg
));
738 printk(KERN_WARNING
"%s: Bus reset: SCSI Bus %d: tid: %d\n",pHba
->name
, cmd
->device
->channel
,pHba
->channel
[cmd
->device
->channel
].tid
);
739 msg
[0] = FOUR_WORD_MSG_SIZE
|SGL_OFFSET_0
;
740 msg
[1] = (I2O_HBA_BUS_RESET
<<24|HOST_TID
<<12|pHba
->channel
[cmd
->device
->channel
].tid
);
744 spin_lock_irq(pHba
->host
->host_lock
);
745 rcode
= adpt_i2o_post_wait(pHba
, msg
,sizeof(msg
), FOREVER
);
747 spin_unlock_irq(pHba
->host
->host_lock
);
749 printk(KERN_WARNING
"%s: Bus reset failed.\n",pHba
->name
);
752 printk(KERN_WARNING
"%s: Bus reset success.\n",pHba
->name
);
757 // This version of reset is called by the eh_error_handler
758 static int __adpt_reset(struct scsi_cmnd
* cmd
)
762 pHba
= (adpt_hba
*)cmd
->device
->host
->hostdata
[0];
763 printk(KERN_WARNING
"%s: Hba Reset: scsi id %d: tid: %d\n",pHba
->name
,cmd
->device
->channel
,pHba
->channel
[cmd
->device
->channel
].tid
);
764 rcode
= adpt_hba_reset(pHba
);
766 printk(KERN_WARNING
"%s: HBA reset complete\n",pHba
->name
);
769 printk(KERN_WARNING
"%s: HBA reset failed (%x)\n",pHba
->name
, rcode
);
774 static int adpt_reset(struct scsi_cmnd
* cmd
)
778 spin_lock_irq(cmd
->device
->host
->host_lock
);
779 rc
= __adpt_reset(cmd
);
780 spin_unlock_irq(cmd
->device
->host
->host_lock
);
785 // This version of reset is called by the ioctls and indirectly from eh_error_handler via adpt_reset
786 static int adpt_hba_reset(adpt_hba
* pHba
)
790 pHba
->state
|= DPTI_STATE_RESET
;
792 // Activate does get status , init outbound, and get hrt
793 if ((rcode
=adpt_i2o_activate_hba(pHba
)) < 0) {
794 printk(KERN_ERR
"%s: Could not activate\n", pHba
->name
);
795 adpt_i2o_delete_hba(pHba
);
799 if ((rcode
=adpt_i2o_build_sys_table()) < 0) {
800 adpt_i2o_delete_hba(pHba
);
803 PDEBUG("%s: in HOLD state\n",pHba
->name
);
805 if ((rcode
=adpt_i2o_online_hba(pHba
)) < 0) {
806 adpt_i2o_delete_hba(pHba
);
809 PDEBUG("%s: in OPERATIONAL state\n",pHba
->name
);
811 if ((rcode
=adpt_i2o_lct_get(pHba
)) < 0){
812 adpt_i2o_delete_hba(pHba
);
816 if ((rcode
=adpt_i2o_reparse_lct(pHba
)) < 0){
817 adpt_i2o_delete_hba(pHba
);
820 pHba
->state
&= ~DPTI_STATE_RESET
;
822 adpt_fail_posted_scbs(pHba
);
823 return 0; /* return success */
826 /*===========================================================================
828 *===========================================================================
832 static void adpt_i2o_sys_shutdown(void)
834 adpt_hba
*pHba
, *pNext
;
835 struct adpt_i2o_post_wait_data
*p1
, *old
;
837 printk(KERN_INFO
"Shutting down Adaptec I2O controllers.\n");
838 printk(KERN_INFO
" This could take a few minutes if there are many devices attached\n");
839 /* Delete all IOPs from the controller chain */
840 /* They should have already been released by the
843 for (pHba
= hba_chain
; pHba
; pHba
= pNext
) {
845 adpt_i2o_delete_hba(pHba
);
848 /* Remove any timedout entries from the wait queue. */
849 // spin_lock_irqsave(&adpt_post_wait_lock, flags);
850 /* Nothing should be outstanding at this point so just
853 for(p1
= adpt_post_wait_queue
; p1
;) {
858 // spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
859 adpt_post_wait_queue
= NULL
;
861 printk(KERN_INFO
"Adaptec I2O controllers down.\n");
865 * reboot/shutdown notification.
867 * - Quiesce each IOP in the system
871 #ifdef REBOOT_NOTIFIER
872 static int adpt_reboot_event(struct notifier_block
*n
, ulong code
, void *p
)
875 if(code
!= SYS_RESTART
&& code
!= SYS_HALT
&& code
!= SYS_POWER_OFF
)
878 adpt_i2o_sys_shutdown();
885 static int adpt_install_hba(struct scsi_host_template
* sht
, struct pci_dev
* pDev
)
888 adpt_hba
* pHba
= NULL
;
890 ulong base_addr0_phys
= 0;
891 ulong base_addr1_phys
= 0;
892 u32 hba_map0_area_size
= 0;
893 u32 hba_map1_area_size
= 0;
894 void __iomem
*base_addr_virt
= NULL
;
895 void __iomem
*msg_addr_virt
= NULL
;
897 int raptorFlag
= FALSE
;
899 if(pci_enable_device(pDev
)) {
903 if (pci_request_regions(pDev
, "dpt_i2o")) {
904 PERROR("dpti: adpt_config_hba: pci request region failed\n");
908 pci_set_master(pDev
);
909 if (pci_set_dma_mask(pDev
, DMA_64BIT_MASK
) &&
910 pci_set_dma_mask(pDev
, DMA_32BIT_MASK
))
913 base_addr0_phys
= pci_resource_start(pDev
,0);
914 hba_map0_area_size
= pci_resource_len(pDev
,0);
916 // Check if standard PCI card or single BAR Raptor
917 if(pDev
->device
== PCI_DPT_DEVICE_ID
){
918 if(pDev
->subsystem_device
>=0xc032 && pDev
->subsystem_device
<= 0xc03b){
919 // Raptor card with this device id needs 4M
920 hba_map0_area_size
= 0x400000;
921 } else { // Not Raptor - it is a PCI card
922 if(hba_map0_area_size
> 0x100000 ){
923 hba_map0_area_size
= 0x100000;
926 } else {// Raptor split BAR config
927 // Use BAR1 in this configuration
928 base_addr1_phys
= pci_resource_start(pDev
,1);
929 hba_map1_area_size
= pci_resource_len(pDev
,1);
933 base_addr_virt
= ioremap(base_addr0_phys
,hba_map0_area_size
);
934 if (!base_addr_virt
) {
935 pci_release_regions(pDev
);
936 PERROR("dpti: adpt_config_hba: io remap failed\n");
940 if(raptorFlag
== TRUE
) {
941 msg_addr_virt
= ioremap(base_addr1_phys
, hba_map1_area_size
);
942 if (!msg_addr_virt
) {
943 PERROR("dpti: adpt_config_hba: io remap failed on BAR1\n");
944 iounmap(base_addr_virt
);
945 pci_release_regions(pDev
);
949 msg_addr_virt
= base_addr_virt
;
952 // Allocate and zero the data structure
953 pHba
= kmalloc(sizeof(adpt_hba
), GFP_KERNEL
);
955 if(msg_addr_virt
!= base_addr_virt
){
956 iounmap(msg_addr_virt
);
958 iounmap(base_addr_virt
);
959 pci_release_regions(pDev
);
962 memset(pHba
, 0, sizeof(adpt_hba
));
964 mutex_lock(&adpt_configuration_lock
);
966 if(hba_chain
!= NULL
){
967 for(p
= hba_chain
; p
->next
; p
= p
->next
);
973 pHba
->unit
= hba_count
;
974 sprintf(pHba
->name
, "dpti%d", hba_count
);
977 mutex_unlock(&adpt_configuration_lock
);
980 pHba
->base_addr_phys
= base_addr0_phys
;
982 // Set up the Virtual Base Address of the I2O Device
983 pHba
->base_addr_virt
= base_addr_virt
;
984 pHba
->msg_addr_virt
= msg_addr_virt
;
985 pHba
->irq_mask
= base_addr_virt
+0x30;
986 pHba
->post_port
= base_addr_virt
+0x40;
987 pHba
->reply_port
= base_addr_virt
+0x44;
992 pHba
->status_block
= NULL
;
993 pHba
->post_count
= 0;
994 pHba
->state
= DPTI_STATE_RESET
;
996 pHba
->devices
= NULL
;
998 // Initializing the spinlocks
999 spin_lock_init(&pHba
->state_lock
);
1000 spin_lock_init(&adpt_post_wait_lock
);
1002 if(raptorFlag
== 0){
1003 printk(KERN_INFO
"Adaptec I2O RAID controller %d at %p size=%x irq=%d\n",
1004 hba_count
-1, base_addr_virt
, hba_map0_area_size
, pDev
->irq
);
1006 printk(KERN_INFO
"Adaptec I2O RAID controller %d irq=%d\n",hba_count
-1, pDev
->irq
);
1007 printk(KERN_INFO
" BAR0 %p - size= %x\n",base_addr_virt
,hba_map0_area_size
);
1008 printk(KERN_INFO
" BAR1 %p - size= %x\n",msg_addr_virt
,hba_map1_area_size
);
1011 if (request_irq (pDev
->irq
, adpt_isr
, IRQF_SHARED
, pHba
->name
, pHba
)) {
1012 printk(KERN_ERR
"%s: Couldn't register IRQ %d\n", pHba
->name
, pDev
->irq
);
1013 adpt_i2o_delete_hba(pHba
);
1021 static void adpt_i2o_delete_hba(adpt_hba
* pHba
)
1025 struct i2o_device
* d
;
1026 struct i2o_device
* next
;
1029 struct adpt_device
* pDev
;
1030 struct adpt_device
* pNext
;
1033 mutex_lock(&adpt_configuration_lock
);
1034 // scsi_unregister calls our adpt_release which
1037 free_irq(pHba
->host
->irq
, pHba
);
1040 for( p1
= hba_chain
; p1
; p2
= p1
,p1
=p1
->next
){
1043 p2
->next
= p1
->next
;
1045 hba_chain
= p1
->next
;
1052 mutex_unlock(&adpt_configuration_lock
);
1054 iounmap(pHba
->base_addr_virt
);
1055 pci_release_regions(pHba
->pDev
);
1056 if(pHba
->msg_addr_virt
!= pHba
->base_addr_virt
){
1057 iounmap(pHba
->msg_addr_virt
);
1061 kfree(pHba
->status_block
);
1062 kfree(pHba
->reply_pool
);
1064 for(d
= pHba
->devices
; d
; d
= next
){
1068 for(i
= 0 ; i
< pHba
->top_scsi_channel
; i
++){
1069 for(j
= 0; j
< MAX_ID
; j
++){
1070 if(pHba
->channel
[i
].device
[j
] != NULL
){
1071 for(pDev
= pHba
->channel
[i
].device
[j
]; pDev
; pDev
= pNext
){
1072 pNext
= pDev
->next_lun
;
1078 pci_dev_put(pHba
->pDev
);
1082 unregister_chrdev(DPTI_I2O_MAJOR
, DPT_DRIVER
);
1087 static int adpt_init(void)
1089 printk("Loading Adaptec I2O RAID: Version " DPT_I2O_VERSION
"\n");
1090 #ifdef REBOOT_NOTIFIER
1091 register_reboot_notifier(&adpt_reboot_notifier
);
1098 static struct adpt_device
* adpt_find_device(adpt_hba
* pHba
, u32 chan
, u32 id
, u32 lun
)
1100 struct adpt_device
* d
;
1102 if(chan
< 0 || chan
>= MAX_CHANNEL
)
1105 if( pHba
->channel
[chan
].device
== NULL
){
1106 printk(KERN_DEBUG
"Adaptec I2O RAID: Trying to find device before they are allocated\n");
1110 d
= pHba
->channel
[chan
].device
[id
];
1111 if(!d
|| d
->tid
== 0) {
1115 /* If it is the only lun at that address then this should match*/
1116 if(d
->scsi_lun
== lun
){
1120 /* else we need to look through all the luns */
1121 for(d
=d
->next_lun
; d
; d
= d
->next_lun
){
1122 if(d
->scsi_lun
== lun
){
1130 static int adpt_i2o_post_wait(adpt_hba
* pHba
, u32
* msg
, int len
, int timeout
)
1132 // I used my own version of the WAIT_QUEUE_HEAD
1133 // to handle some version differences
1134 // When embedded in the kernel this could go back to the vanilla one
1135 ADPT_DECLARE_WAIT_QUEUE_HEAD(adpt_wq_i2o_post
);
1138 struct adpt_i2o_post_wait_data
*p1
, *p2
;
1139 struct adpt_i2o_post_wait_data
*wait_data
=
1140 kmalloc(sizeof(struct adpt_i2o_post_wait_data
),GFP_KERNEL
);
1141 DECLARE_WAITQUEUE(wait
, current
);
1147 * The spin locking is needed to keep anyone from playing
1148 * with the queue pointers and id while we do the same
1150 spin_lock_irqsave(&adpt_post_wait_lock
, flags
);
1151 // TODO we need a MORE unique way of getting ids
1152 // to support async LCT get
1153 wait_data
->next
= adpt_post_wait_queue
;
1154 adpt_post_wait_queue
= wait_data
;
1155 adpt_post_wait_id
++;
1156 adpt_post_wait_id
&= 0x7fff;
1157 wait_data
->id
= adpt_post_wait_id
;
1158 spin_unlock_irqrestore(&adpt_post_wait_lock
, flags
);
1160 wait_data
->wq
= &adpt_wq_i2o_post
;
1161 wait_data
->status
= -ETIMEDOUT
;
1163 add_wait_queue(&adpt_wq_i2o_post
, &wait
);
1165 msg
[2] |= 0x80000000 | ((u32
)wait_data
->id
);
1167 if((status
= adpt_i2o_post_this(pHba
, msg
, len
)) == 0){
1168 set_current_state(TASK_INTERRUPTIBLE
);
1170 spin_unlock_irq(pHba
->host
->host_lock
);
1174 timeout
= schedule_timeout(timeout
);
1176 // I/O issued, but cannot get result in
1177 // specified time. Freeing resorces is
1183 spin_lock_irq(pHba
->host
->host_lock
);
1185 remove_wait_queue(&adpt_wq_i2o_post
, &wait
);
1187 if(status
== -ETIMEDOUT
){
1188 printk(KERN_INFO
"dpti%d: POST WAIT TIMEOUT\n",pHba
->unit
);
1189 // We will have to free the wait_data memory during shutdown
1193 /* Remove the entry from the queue. */
1195 spin_lock_irqsave(&adpt_post_wait_lock
, flags
);
1196 for(p1
= adpt_post_wait_queue
; p1
; p2
= p1
, p1
= p1
->next
) {
1197 if(p1
== wait_data
) {
1198 if(p1
->status
== I2O_DETAIL_STATUS_UNSUPPORTED_FUNCTION
) {
1199 status
= -EOPNOTSUPP
;
1202 p2
->next
= p1
->next
;
1204 adpt_post_wait_queue
= p1
->next
;
1209 spin_unlock_irqrestore(&adpt_post_wait_lock
, flags
);
1217 static s32
adpt_i2o_post_this(adpt_hba
* pHba
, u32
* data
, int len
)
1220 u32 m
= EMPTY_QUEUE
;
1222 ulong timeout
= jiffies
+ 30*HZ
;
1225 m
= readl(pHba
->post_port
);
1226 if (m
!= EMPTY_QUEUE
) {
1229 if(time_after(jiffies
,timeout
)){
1230 printk(KERN_WARNING
"dpti%d: Timeout waiting for message frame!\n", pHba
->unit
);
1233 schedule_timeout_uninterruptible(1);
1234 } while(m
== EMPTY_QUEUE
);
1236 msg
= pHba
->msg_addr_virt
+ m
;
1237 memcpy_toio(msg
, data
, len
);
1241 writel(m
, pHba
->post_port
);
1248 static void adpt_i2o_post_wait_complete(u32 context
, int status
)
1250 struct adpt_i2o_post_wait_data
*p1
= NULL
;
1252 * We need to search through the adpt_post_wait
1253 * queue to see if the given message is still
1254 * outstanding. If not, it means that the IOP
1255 * took longer to respond to the message than we
1256 * had allowed and timer has already expired.
1257 * Not much we can do about that except log
1258 * it for debug purposes, increase timeout, and recompile
1260 * Lock needed to keep anyone from moving queue pointers
1261 * around while we're looking through them.
1266 spin_lock(&adpt_post_wait_lock
);
1267 for(p1
= adpt_post_wait_queue
; p1
; p1
= p1
->next
) {
1268 if(p1
->id
== context
) {
1269 p1
->status
= status
;
1270 spin_unlock(&adpt_post_wait_lock
);
1271 wake_up_interruptible(p1
->wq
);
1275 spin_unlock(&adpt_post_wait_lock
);
1276 // If this happens we lose commands that probably really completed
1277 printk(KERN_DEBUG
"dpti: Could Not find task %d in wait queue\n",context
);
1278 printk(KERN_DEBUG
" Tasks in wait queue:\n");
1279 for(p1
= adpt_post_wait_queue
; p1
; p1
= p1
->next
) {
1280 printk(KERN_DEBUG
" %d\n",p1
->id
);
1285 static s32
adpt_i2o_reset_hba(adpt_hba
* pHba
)
1289 u32 m
= EMPTY_QUEUE
;
1290 ulong timeout
= jiffies
+ (TMOUT_IOPRESET
*HZ
);
1292 if(pHba
->initialized
== FALSE
) { // First time reset should be quick
1293 timeout
= jiffies
+ (25*HZ
);
1295 adpt_i2o_quiesce_hba(pHba
);
1300 m
= readl(pHba
->post_port
);
1301 if (m
!= EMPTY_QUEUE
) {
1304 if(time_after(jiffies
,timeout
)){
1305 printk(KERN_WARNING
"Timeout waiting for message!\n");
1308 schedule_timeout_uninterruptible(1);
1309 } while (m
== EMPTY_QUEUE
);
1311 status
= kzalloc(4, GFP_KERNEL
|ADDR32
);
1312 if(status
== NULL
) {
1313 adpt_send_nop(pHba
, m
);
1314 printk(KERN_ERR
"IOP reset failed - no free memory.\n");
1318 msg
[0]=EIGHT_WORD_MSG_SIZE
|SGL_OFFSET_0
;
1319 msg
[1]=I2O_CMD_ADAPTER_RESET
<<24|HOST_TID
<<12|ADAPTER_TID
;
1324 msg
[6]=virt_to_bus(status
);
1327 memcpy_toio(pHba
->msg_addr_virt
+m
, msg
, sizeof(msg
));
1329 writel(m
, pHba
->post_port
);
1332 while(*status
== 0){
1333 if(time_after(jiffies
,timeout
)){
1334 printk(KERN_WARNING
"%s: IOP Reset Timeout\n",pHba
->name
);
1339 schedule_timeout_uninterruptible(1);
1342 if(*status
== 0x01 /*I2O_EXEC_IOP_RESET_IN_PROGRESS*/) {
1343 PDEBUG("%s: Reset in progress...\n", pHba
->name
);
1344 // Here we wait for message frame to become available
1345 // indicated that reset has finished
1348 m
= readl(pHba
->post_port
);
1349 if (m
!= EMPTY_QUEUE
) {
1352 if(time_after(jiffies
,timeout
)){
1353 printk(KERN_ERR
"%s:Timeout waiting for IOP Reset.\n",pHba
->name
);
1356 schedule_timeout_uninterruptible(1);
1357 } while (m
== EMPTY_QUEUE
);
1359 adpt_send_nop(pHba
, m
);
1361 adpt_i2o_status_get(pHba
);
1362 if(*status
== 0x02 ||
1363 pHba
->status_block
->iop_state
!= ADAPTER_STATE_RESET
) {
1364 printk(KERN_WARNING
"%s: Reset reject, trying to clear\n",
1367 PDEBUG("%s: Reset completed.\n", pHba
->name
);
1372 // This delay is to allow someone attached to the card through the debug UART to
1373 // set up the dump levels that they want before the rest of the initialization sequence
1380 static int adpt_i2o_parse_lct(adpt_hba
* pHba
)
1385 struct i2o_device
*d
;
1386 i2o_lct
*lct
= pHba
->lct
;
1390 u32 buf
[10]; // larger than 7, or 8 ...
1391 struct adpt_device
* pDev
;
1394 printk(KERN_ERR
"%s: LCT is empty???\n",pHba
->name
);
1398 max
= lct
->table_size
;
1402 for(i
=0;i
<max
;i
++) {
1403 if( lct
->lct_entry
[i
].user_tid
!= 0xfff){
1405 * If we have hidden devices, we need to inform the upper layers about
1406 * the possible maximum id reference to handle device access when
1407 * an array is disassembled. This code has no other purpose but to
1408 * allow us future access to devices that are currently hidden
1409 * behind arrays, hotspares or have not been configured (JBOD mode).
1411 if( lct
->lct_entry
[i
].class_id
!= I2O_CLASS_RANDOM_BLOCK_STORAGE
&&
1412 lct
->lct_entry
[i
].class_id
!= I2O_CLASS_SCSI_PERIPHERAL
&&
1413 lct
->lct_entry
[i
].class_id
!= I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL
){
1416 tid
= lct
->lct_entry
[i
].tid
;
1417 // I2O_DPT_DEVICE_INFO_GROUP_NO;
1418 if(adpt_i2o_query_scalar(pHba
, tid
, 0x8000, -1, buf
, 32)<0) {
1421 bus_no
= buf
[0]>>16;
1423 scsi_lun
= (buf
[2]>>8 )&0xff;
1424 if(bus_no
>= MAX_CHANNEL
) { // Something wrong skip it
1425 printk(KERN_WARNING
"%s: Channel number %d out of range \n", pHba
->name
, bus_no
);
1428 if (scsi_id
>= MAX_ID
){
1429 printk(KERN_WARNING
"%s: SCSI ID %d out of range \n", pHba
->name
, bus_no
);
1432 if(bus_no
> pHba
->top_scsi_channel
){
1433 pHba
->top_scsi_channel
= bus_no
;
1435 if(scsi_id
> pHba
->top_scsi_id
){
1436 pHba
->top_scsi_id
= scsi_id
;
1438 if(scsi_lun
> pHba
->top_scsi_lun
){
1439 pHba
->top_scsi_lun
= scsi_lun
;
1443 d
= kmalloc(sizeof(struct i2o_device
), GFP_KERNEL
);
1446 printk(KERN_CRIT
"%s: Out of memory for I2O device data.\n",pHba
->name
);
1450 d
->controller
= pHba
;
1453 memcpy(&d
->lct_data
, &lct
->lct_entry
[i
], sizeof(i2o_lct_entry
));
1456 tid
= d
->lct_data
.tid
;
1457 adpt_i2o_report_hba_unit(pHba
, d
);
1458 adpt_i2o_install_device(pHba
, d
);
1461 for(d
= pHba
->devices
; d
; d
= d
->next
) {
1462 if(d
->lct_data
.class_id
== I2O_CLASS_BUS_ADAPTER_PORT
||
1463 d
->lct_data
.class_id
== I2O_CLASS_FIBRE_CHANNEL_PORT
){
1464 tid
= d
->lct_data
.tid
;
1465 // TODO get the bus_no from hrt-but for now they are in order
1467 if(bus_no
> pHba
->top_scsi_channel
){
1468 pHba
->top_scsi_channel
= bus_no
;
1470 pHba
->channel
[bus_no
].type
= d
->lct_data
.class_id
;
1471 pHba
->channel
[bus_no
].tid
= tid
;
1472 if(adpt_i2o_query_scalar(pHba
, tid
, 0x0200, -1, buf
, 28)>=0)
1474 pHba
->channel
[bus_no
].scsi_id
= buf
[1];
1475 PDEBUG("Bus %d - SCSI ID %d.\n", bus_no
, buf
[1]);
1477 // TODO remove - this is just until we get from hrt
1479 if(bus_no
>= MAX_CHANNEL
) { // Something wrong skip it
1480 printk(KERN_WARNING
"%s: Channel number %d out of range - LCT\n", pHba
->name
, bus_no
);
1486 // Setup adpt_device table
1487 for(d
= pHba
->devices
; d
; d
= d
->next
) {
1488 if(d
->lct_data
.class_id
== I2O_CLASS_RANDOM_BLOCK_STORAGE
||
1489 d
->lct_data
.class_id
== I2O_CLASS_SCSI_PERIPHERAL
||
1490 d
->lct_data
.class_id
== I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL
){
1492 tid
= d
->lct_data
.tid
;
1494 // I2O_DPT_DEVICE_INFO_GROUP_NO;
1495 if(adpt_i2o_query_scalar(pHba
, tid
, 0x8000, -1, buf
, 32)>=0) {
1496 bus_no
= buf
[0]>>16;
1498 scsi_lun
= (buf
[2]>>8 )&0xff;
1499 if(bus_no
>= MAX_CHANNEL
) { // Something wrong skip it
1502 if (scsi_id
>= MAX_ID
) {
1505 if( pHba
->channel
[bus_no
].device
[scsi_id
] == NULL
){
1506 pDev
= kzalloc(sizeof(struct adpt_device
),GFP_KERNEL
);
1510 pHba
->channel
[bus_no
].device
[scsi_id
] = pDev
;
1512 for( pDev
= pHba
->channel
[bus_no
].device
[scsi_id
];
1513 pDev
->next_lun
; pDev
= pDev
->next_lun
){
1515 pDev
->next_lun
= kzalloc(sizeof(struct adpt_device
),GFP_KERNEL
);
1516 if(pDev
->next_lun
== NULL
) {
1519 pDev
= pDev
->next_lun
;
1522 pDev
->scsi_channel
= bus_no
;
1523 pDev
->scsi_id
= scsi_id
;
1524 pDev
->scsi_lun
= scsi_lun
;
1527 pDev
->type
= (buf
[0])&0xff;
1528 pDev
->flags
= (buf
[0]>>8)&0xff;
1529 if(scsi_id
> pHba
->top_scsi_id
){
1530 pHba
->top_scsi_id
= scsi_id
;
1532 if(scsi_lun
> pHba
->top_scsi_lun
){
1533 pHba
->top_scsi_lun
= scsi_lun
;
1537 printk(KERN_WARNING
"Could not find SCSI ID for %s\n",
1538 d
->lct_data
.identity_tag
);
1547 * Each I2O controller has a chain of devices on it - these match
1548 * the useful parts of the LCT of the board.
1551 static int adpt_i2o_install_device(adpt_hba
* pHba
, struct i2o_device
*d
)
1553 mutex_lock(&adpt_configuration_lock
);
1556 d
->next
=pHba
->devices
;
1558 if (pHba
->devices
!= NULL
){
1559 pHba
->devices
->prev
=d
;
1564 mutex_unlock(&adpt_configuration_lock
);
1568 static int adpt_open(struct inode
*inode
, struct file
*file
)
1573 //TODO check for root access
1575 minor
= iminor(inode
);
1576 if (minor
>= hba_count
) {
1579 mutex_lock(&adpt_configuration_lock
);
1580 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
1581 if (pHba
->unit
== minor
) {
1582 break; /* found adapter */
1586 mutex_unlock(&adpt_configuration_lock
);
1590 // if(pHba->in_use){
1591 // mutex_unlock(&adpt_configuration_lock);
1596 mutex_unlock(&adpt_configuration_lock
);
1601 static int adpt_close(struct inode
*inode
, struct file
*file
)
1606 minor
= iminor(inode
);
1607 if (minor
>= hba_count
) {
1610 mutex_lock(&adpt_configuration_lock
);
1611 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
1612 if (pHba
->unit
== minor
) {
1613 break; /* found adapter */
1616 mutex_unlock(&adpt_configuration_lock
);
1627 static int adpt_i2o_passthru(adpt_hba
* pHba
, u32 __user
*arg
)
1629 u32 msg
[MAX_MESSAGE_SIZE
];
1633 u32 __user
*user_msg
= arg
;
1634 u32 __user
* user_reply
= NULL
;
1635 void *sg_list
[pHba
->sg_tablesize
];
1644 memset(&msg
, 0, MAX_MESSAGE_SIZE
*4);
1645 // get user msg size in u32s
1646 if(get_user(size
, &user_msg
[0])){
1651 user_reply
= &user_msg
[size
];
1652 if(size
> MAX_MESSAGE_SIZE
){
1655 size
*= 4; // Convert to bytes
1657 /* Copy in the user's I2O command */
1658 if(copy_from_user(msg
, user_msg
, size
)) {
1661 get_user(reply_size
, &user_reply
[0]);
1662 reply_size
= reply_size
>>16;
1663 if(reply_size
> REPLY_FRAME_SIZE
){
1664 reply_size
= REPLY_FRAME_SIZE
;
1667 reply
= kzalloc(REPLY_FRAME_SIZE
*4, GFP_KERNEL
);
1669 printk(KERN_WARNING
"%s: Could not allocate reply buffer\n",pHba
->name
);
1672 sg_offset
= (msg
[0]>>4)&0xf;
1673 msg
[2] = 0x40000000; // IOCTL context
1674 msg
[3] = (u32
)reply
;
1675 memset(sg_list
,0, sizeof(sg_list
[0])*pHba
->sg_tablesize
);
1678 struct sg_simple_element
*sg
= (struct sg_simple_element
*) (msg
+sg_offset
);
1679 sg_count
= (size
- sg_offset
*4) / sizeof(struct sg_simple_element
);
1680 if (sg_count
> pHba
->sg_tablesize
){
1681 printk(KERN_DEBUG
"%s:IOCTL SG List too large (%u)\n", pHba
->name
,sg_count
);
1686 for(i
= 0; i
< sg_count
; i
++) {
1689 if (!(sg
[i
].flag_count
& 0x10000000 /*I2O_SGL_FLAGS_SIMPLE_ADDRESS_ELEMENT*/)) {
1690 printk(KERN_DEBUG
"%s:Bad SG element %d - not simple (%x)\n",pHba
->name
,i
, sg
[i
].flag_count
);
1694 sg_size
= sg
[i
].flag_count
& 0xffffff;
1695 /* Allocate memory for the transfer */
1696 p
= kmalloc(sg_size
, GFP_KERNEL
|ADDR32
);
1698 printk(KERN_DEBUG
"%s: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
1699 pHba
->name
,sg_size
,i
,sg_count
);
1703 sg_list
[sg_index
++] = p
; // sglist indexed with input frame, not our internal frame.
1704 /* Copy in the user's SG buffer if necessary */
1705 if(sg
[i
].flag_count
& 0x04000000 /*I2O_SGL_FLAGS_DIR*/) {
1707 if (copy_from_user(p
,(void __user
*)sg
[i
].addr_bus
, sg_size
)) {
1708 printk(KERN_DEBUG
"%s: Could not copy SG buf %d FROM user\n",pHba
->name
,i
);
1714 sg
[i
].addr_bus
= (u32
)virt_to_bus(p
);
1720 spin_lock_irqsave(pHba
->host
->host_lock
, flags
);
1721 // This state stops any new commands from enterring the
1722 // controller while processing the ioctl
1723 // pHba->state |= DPTI_STATE_IOCTL;
1724 // We can't set this now - The scsi subsystem sets host_blocked and
1725 // the queue empties and stops. We need a way to restart the queue
1726 rcode
= adpt_i2o_post_wait(pHba
, msg
, size
, FOREVER
);
1728 printk("adpt_i2o_passthru: post wait failed %d %p\n",
1730 // pHba->state &= ~DPTI_STATE_IOCTL;
1732 spin_unlock_irqrestore(pHba
->host
->host_lock
, flags
);
1733 } while(rcode
== -ETIMEDOUT
);
1740 /* Copy back the Scatter Gather buffers back to user space */
1743 struct sg_simple_element
* sg
;
1746 // re-acquire the original message to handle correctly the sg copy operation
1747 memset(&msg
, 0, MAX_MESSAGE_SIZE
*4);
1748 // get user msg size in u32s
1749 if(get_user(size
, &user_msg
[0])){
1755 /* Copy in the user's I2O command */
1756 if (copy_from_user (msg
, user_msg
, size
)) {
1760 sg_count
= (size
- sg_offset
*4) / sizeof(struct sg_simple_element
);
1763 sg
= (struct sg_simple_element
*)(msg
+ sg_offset
);
1764 for (j
= 0; j
< sg_count
; j
++) {
1765 /* Copy out the SG list to user's buffer if necessary */
1766 if(! (sg
[j
].flag_count
& 0x4000000 /*I2O_SGL_FLAGS_DIR*/)) {
1767 sg_size
= sg
[j
].flag_count
& 0xffffff;
1769 if (copy_to_user((void __user
*)sg
[j
].addr_bus
,sg_list
[j
], sg_size
)) {
1770 printk(KERN_WARNING
"%s: Could not copy %p TO user %x\n",pHba
->name
, sg_list
[j
], sg
[j
].addr_bus
);
1778 /* Copy back the reply to user space */
1780 // we wrote our own values for context - now restore the user supplied ones
1781 if(copy_from_user(reply
+2, user_msg
+2, sizeof(u32
)*2)) {
1782 printk(KERN_WARNING
"%s: Could not copy message context FROM user\n",pHba
->name
);
1785 if(copy_to_user(user_reply
, reply
, reply_size
)) {
1786 printk(KERN_WARNING
"%s: Could not copy reply TO user\n",pHba
->name
);
1793 if (rcode
!= -ETIME
&& rcode
!= -EINTR
)
1796 if(sg_list
[--sg_index
]) {
1797 if (rcode
!= -ETIME
&& rcode
!= -EINTR
)
1798 kfree(sg_list
[sg_index
]);
1806 * This routine returns information about the system. This does not effect
1807 * any logic and if the info is wrong - it doesn't matter.
1810 /* Get all the info we can not get from kernel services */
1811 static int adpt_system_info(void __user
*buffer
)
1815 memset(&si
, 0, sizeof(si
));
1817 si
.osType
= OS_LINUX
;
1818 si
.osMajorVersion
= 0;
1819 si
.osMinorVersion
= 0;
1821 si
.busType
= SI_PCI_BUS
;
1822 si
.processorFamily
= DPTI_sig
.dsProcessorFamily
;
1824 #if defined __i386__
1825 adpt_i386_info(&si
);
1826 #elif defined (__ia64__)
1827 adpt_ia64_info(&si
);
1828 #elif defined(__sparc__)
1829 adpt_sparc_info(&si
);
1830 #elif defined (__alpha__)
1831 adpt_alpha_info(&si
);
1833 si
.processorType
= 0xff ;
1835 if(copy_to_user(buffer
, &si
, sizeof(si
))){
1836 printk(KERN_WARNING
"dpti: Could not copy buffer TO user\n");
1843 #if defined __ia64__
1844 static void adpt_ia64_info(sysInfo_S
* si
)
1846 // This is all the info we need for now
1847 // We will add more info as our new
1848 // managmenent utility requires it
1849 si
->processorType
= PROC_IA64
;
1854 #if defined __sparc__
1855 static void adpt_sparc_info(sysInfo_S
* si
)
1857 // This is all the info we need for now
1858 // We will add more info as our new
1859 // managmenent utility requires it
1860 si
->processorType
= PROC_ULTRASPARC
;
1864 #if defined __alpha__
1865 static void adpt_alpha_info(sysInfo_S
* si
)
1867 // This is all the info we need for now
1868 // We will add more info as our new
1869 // managmenent utility requires it
1870 si
->processorType
= PROC_ALPHA
;
1874 #if defined __i386__
1876 static void adpt_i386_info(sysInfo_S
* si
)
1878 // This is all the info we need for now
1879 // We will add more info as our new
1880 // managmenent utility requires it
1881 switch (boot_cpu_data
.x86
) {
1883 si
->processorType
= PROC_386
;
1886 si
->processorType
= PROC_486
;
1889 si
->processorType
= PROC_PENTIUM
;
1891 default: // Just in case
1892 si
->processorType
= PROC_PENTIUM
;
1900 static int adpt_ioctl(struct inode
*inode
, struct file
*file
, uint cmd
,
1907 void __user
*argp
= (void __user
*)arg
;
1909 minor
= iminor(inode
);
1910 if (minor
>= DPTI_MAX_HBA
){
1913 mutex_lock(&adpt_configuration_lock
);
1914 for (pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
1915 if (pHba
->unit
== minor
) {
1916 break; /* found adapter */
1919 mutex_unlock(&adpt_configuration_lock
);
1924 while((volatile u32
) pHba
->state
& DPTI_STATE_RESET
)
1925 schedule_timeout_uninterruptible(2);
1928 // TODO: handle 3 cases
1930 if (copy_to_user(argp
, &DPTI_sig
, sizeof(DPTI_sig
))) {
1935 return adpt_i2o_passthru(pHba
, argp
);
1938 drvrHBAinfo_S HbaInfo
;
1940 #define FLG_OSD_PCI_VALID 0x0001
1941 #define FLG_OSD_DMA 0x0002
1942 #define FLG_OSD_I2O 0x0004
1943 memset(&HbaInfo
, 0, sizeof(HbaInfo
));
1944 HbaInfo
.drvrHBAnum
= pHba
->unit
;
1945 HbaInfo
.baseAddr
= (ulong
) pHba
->base_addr_phys
;
1946 HbaInfo
.blinkState
= adpt_read_blink_led(pHba
);
1947 HbaInfo
.pciBusNum
= pHba
->pDev
->bus
->number
;
1948 HbaInfo
.pciDeviceNum
=PCI_SLOT(pHba
->pDev
->devfn
);
1949 HbaInfo
.Interrupt
= pHba
->pDev
->irq
;
1950 HbaInfo
.hbaFlags
= FLG_OSD_PCI_VALID
| FLG_OSD_DMA
| FLG_OSD_I2O
;
1951 if(copy_to_user(argp
, &HbaInfo
, sizeof(HbaInfo
))){
1952 printk(KERN_WARNING
"%s: Could not copy HbaInfo TO user\n",pHba
->name
);
1958 return adpt_system_info(argp
);
1961 value
= (u32
)adpt_read_blink_led(pHba
);
1962 if (copy_to_user(argp
, &value
, sizeof(value
))) {
1969 spin_lock_irqsave(pHba
->host
->host_lock
, flags
);
1970 adpt_hba_reset(pHba
);
1972 spin_unlock_irqrestore(pHba
->host
->host_lock
, flags
);
1985 static irqreturn_t
adpt_isr(int irq
, void *dev_id
)
1987 struct scsi_cmnd
* cmd
;
1988 adpt_hba
* pHba
= dev_id
;
1990 void __iomem
*reply
;
1997 printk(KERN_WARNING
"adpt_isr: NULL dev_id\n");
2001 spin_lock_irqsave(pHba
->host
->host_lock
, flags
);
2003 while( readl(pHba
->irq_mask
) & I2O_INTERRUPT_PENDING_B
) {
2004 m
= readl(pHba
->reply_port
);
2005 if(m
== EMPTY_QUEUE
){
2006 // Try twice then give up
2008 m
= readl(pHba
->reply_port
);
2009 if(m
== EMPTY_QUEUE
){
2010 // This really should not happen
2011 printk(KERN_ERR
"dpti: Could not get reply frame\n");
2015 reply
= bus_to_virt(m
);
2017 if (readl(reply
) & MSG_FAIL
) {
2018 u32 old_m
= readl(reply
+28);
2021 PDEBUG("%s: Failed message\n",pHba
->name
);
2022 if(old_m
>= 0x100000){
2023 printk(KERN_ERR
"%s: Bad preserved MFA (%x)- dropping frame\n",pHba
->name
,old_m
);
2024 writel(m
,pHba
->reply_port
);
2027 // Transaction context is 0 in failed reply frame
2028 msg
= pHba
->msg_addr_virt
+ old_m
;
2029 old_context
= readl(msg
+12);
2030 writel(old_context
, reply
+12);
2031 adpt_send_nop(pHba
, old_m
);
2033 context
= readl(reply
+8);
2034 if(context
& 0x40000000){ // IOCTL
2035 void *p
= (void *)readl(reply
+12);
2037 memcpy_fromio(p
, reply
, REPLY_FRAME_SIZE
* 4);
2039 // All IOCTLs will also be post wait
2041 if(context
& 0x80000000){ // Post wait message
2042 status
= readl(reply
+16);
2044 status
&= 0xffff; /* Get detail status */
2046 status
= I2O_POST_WAIT_OK
;
2048 if(!(context
& 0x40000000)) {
2049 cmd
= (struct scsi_cmnd
*) readl(reply
+12);
2051 printk(KERN_WARNING
"%s: Apparent SCSI cmd in Post Wait Context - cmd=%p context=%x\n", pHba
->name
, cmd
, context
);
2054 adpt_i2o_post_wait_complete(context
, status
);
2055 } else { // SCSI message
2056 cmd
= (struct scsi_cmnd
*) readl(reply
+12);
2058 if(cmd
->serial_number
!= 0) { // If not timedout
2059 adpt_i2o_to_scsi(reply
, cmd
);
2063 writel(m
, pHba
->reply_port
);
2069 spin_unlock_irqrestore(pHba
->host
->host_lock
, flags
);
2070 return IRQ_RETVAL(handled
);
2073 static s32
adpt_scsi_to_i2o(adpt_hba
* pHba
, struct scsi_cmnd
* cmd
, struct adpt_device
* d
)
2076 u32 msg
[MAX_MESSAGE_SIZE
];
2086 memset(msg
, 0 , sizeof(msg
));
2087 len
= scsi_bufflen(cmd
);
2088 direction
= 0x00000000;
2090 scsidir
= 0x00000000; // DATA NO XFER
2093 * Set SCBFlags to indicate if data is being transferred
2094 * in or out, or no data transfer
2095 * Note: Do not have to verify index is less than 0 since
2096 * cmd->cmnd[0] is an unsigned char
2098 switch(cmd
->sc_data_direction
){
2099 case DMA_FROM_DEVICE
:
2100 scsidir
=0x40000000; // DATA IN (iop<--dev)
2103 direction
=0x04000000; // SGL OUT
2104 scsidir
=0x80000000; // DATA OUT (iop-->dev)
2108 case DMA_BIDIRECTIONAL
:
2109 scsidir
=0x40000000; // DATA IN (iop<--dev)
2110 // Assume In - and continue;
2113 printk(KERN_WARNING
"%s: scsi opcode 0x%x not supported.\n",
2114 pHba
->name
, cmd
->cmnd
[0]);
2115 cmd
->result
= (DID_OK
<<16) | (INITIATOR_ERROR
<< 8);
2116 cmd
->scsi_done(cmd
);
2120 // msg[0] is set later
2121 // I2O_CMD_SCSI_EXEC
2122 msg
[1] = ((0xff<<24)|(HOST_TID
<<12)|d
->tid
);
2124 msg
[3] = (u32
)cmd
; /* We want the SCSI control block back */
2125 // Our cards use the transaction context as the tag for queueing
2126 // Adaptec/DPT Private stuff
2127 msg
[4] = I2O_CMD_SCSI_EXEC
|(DPT_ORGANIZATION_ID
<<16);
2129 /* Direction, disconnect ok | sense data | simple queue , CDBLen */
2130 // I2O_SCB_FLAG_ENABLE_DISCONNECT |
2131 // I2O_SCB_FLAG_SIMPLE_QUEUE_TAG |
2132 // I2O_SCB_FLAG_SENSE_DATA_IN_MESSAGE;
2133 msg
[6] = scsidir
|0x20a00000|cmd
->cmd_len
;
2137 // Write SCSI command into the message - always 16 byte block
2138 memset(mptr
, 0, 16);
2139 memcpy(mptr
, cmd
->cmnd
, cmd
->cmd_len
);
2141 lenptr
=mptr
++; /* Remember me - fill in when we know */
2142 reqlen
= 14; // SINGLE SGE
2143 /* Now fill in the SGList and command */
2145 nseg
= scsi_dma_map(cmd
);
2148 struct scatterlist
*sg
;
2151 scsi_for_each_sg(cmd
, sg
, nseg
, i
) {
2152 *mptr
++ = direction
|0x10000000|sg_dma_len(sg
);
2153 len
+=sg_dma_len(sg
);
2154 *mptr
++ = sg_dma_address(sg
);
2155 /* Make this an end of list */
2157 mptr
[-2] = direction
|0xD0000000|sg_dma_len(sg
);
2159 reqlen
= mptr
- msg
;
2162 if(cmd
->underflow
&& len
!= cmd
->underflow
){
2163 printk(KERN_WARNING
"Cmd len %08X Cmd underflow %08X\n",
2164 len
, cmd
->underflow
);
2171 /* Stick the headers on */
2172 msg
[0] = reqlen
<<16 | ((reqlen
> 12) ? SGL_OFFSET_12
: SGL_OFFSET_0
);
2174 // Send it on it's way
2175 rcode
= adpt_i2o_post_this(pHba
, msg
, reqlen
<<2);
2183 static s32
adpt_scsi_register(adpt_hba
* pHba
,struct scsi_host_template
* sht
)
2185 struct Scsi_Host
*host
= NULL
;
2187 host
= scsi_register(sht
, sizeof(adpt_hba
*));
2189 printk ("%s: scsi_register returned NULL\n",pHba
->name
);
2192 host
->hostdata
[0] = (unsigned long)pHba
;
2195 host
->irq
= pHba
->pDev
->irq
;
2196 /* no IO ports, so don't have to set host->io_port and
2200 host
->n_io_port
= 0;
2201 /* see comments in scsi_host.h */
2203 host
->max_lun
= 256;
2204 host
->max_channel
= pHba
->top_scsi_channel
+ 1;
2205 host
->cmd_per_lun
= 1;
2206 host
->unique_id
= (uint
) pHba
;
2207 host
->sg_tablesize
= pHba
->sg_tablesize
;
2208 host
->can_queue
= pHba
->post_fifo_size
;
2214 static s32
adpt_i2o_to_scsi(void __iomem
*reply
, struct scsi_cmnd
* cmd
)
2219 u32 reply_flags
= readl(reply
) & 0xff00; // Leave it shifted up 8 bits
2220 // I know this would look cleaner if I just read bytes
2221 // but the model I have been using for all the rest of the
2222 // io is in 4 byte words - so I keep that model
2223 u16 detailed_status
= readl(reply
+16) &0xffff;
2224 dev_status
= (detailed_status
& 0xff);
2225 hba_status
= detailed_status
>> 8;
2227 // calculate resid for sg
2228 scsi_set_resid(cmd
, scsi_bufflen(cmd
) - readl(reply
+5));
2230 pHba
= (adpt_hba
*) cmd
->device
->host
->hostdata
[0];
2232 cmd
->sense_buffer
[0] = '\0'; // initialize sense valid flag to false
2234 if(!(reply_flags
& MSG_FAIL
)) {
2235 switch(detailed_status
& I2O_SCSI_DSC_MASK
) {
2236 case I2O_SCSI_DSC_SUCCESS
:
2237 cmd
->result
= (DID_OK
<< 16);
2239 if(readl(reply
+5) < cmd
->underflow
) {
2240 cmd
->result
= (DID_ERROR
<<16);
2241 printk(KERN_WARNING
"%s: SCSI CMD underflow\n",pHba
->name
);
2244 case I2O_SCSI_DSC_REQUEST_ABORTED
:
2245 cmd
->result
= (DID_ABORT
<< 16);
2247 case I2O_SCSI_DSC_PATH_INVALID
:
2248 case I2O_SCSI_DSC_DEVICE_NOT_PRESENT
:
2249 case I2O_SCSI_DSC_SELECTION_TIMEOUT
:
2250 case I2O_SCSI_DSC_COMMAND_TIMEOUT
:
2251 case I2O_SCSI_DSC_NO_ADAPTER
:
2252 case I2O_SCSI_DSC_RESOURCE_UNAVAILABLE
:
2253 printk(KERN_WARNING
"%s: SCSI Timeout-Device (%d,%d,%d) hba status=0x%x, dev status=0x%x, cmd=0x%x\n",
2254 pHba
->name
, (u32
)cmd
->device
->channel
, (u32
)cmd
->device
->id
, (u32
)cmd
->device
->lun
, hba_status
, dev_status
, cmd
->cmnd
[0]);
2255 cmd
->result
= (DID_TIME_OUT
<< 16);
2257 case I2O_SCSI_DSC_ADAPTER_BUSY
:
2258 case I2O_SCSI_DSC_BUS_BUSY
:
2259 cmd
->result
= (DID_BUS_BUSY
<< 16);
2261 case I2O_SCSI_DSC_SCSI_BUS_RESET
:
2262 case I2O_SCSI_DSC_BDR_MESSAGE_SENT
:
2263 cmd
->result
= (DID_RESET
<< 16);
2265 case I2O_SCSI_DSC_PARITY_ERROR_FAILURE
:
2266 printk(KERN_WARNING
"%s: SCSI CMD parity error\n",pHba
->name
);
2267 cmd
->result
= (DID_PARITY
<< 16);
2269 case I2O_SCSI_DSC_UNABLE_TO_ABORT
:
2270 case I2O_SCSI_DSC_COMPLETE_WITH_ERROR
:
2271 case I2O_SCSI_DSC_UNABLE_TO_TERMINATE
:
2272 case I2O_SCSI_DSC_MR_MESSAGE_RECEIVED
:
2273 case I2O_SCSI_DSC_AUTOSENSE_FAILED
:
2274 case I2O_SCSI_DSC_DATA_OVERRUN
:
2275 case I2O_SCSI_DSC_UNEXPECTED_BUS_FREE
:
2276 case I2O_SCSI_DSC_SEQUENCE_FAILURE
:
2277 case I2O_SCSI_DSC_REQUEST_LENGTH_ERROR
:
2278 case I2O_SCSI_DSC_PROVIDE_FAILURE
:
2279 case I2O_SCSI_DSC_REQUEST_TERMINATED
:
2280 case I2O_SCSI_DSC_IDE_MESSAGE_SENT
:
2281 case I2O_SCSI_DSC_UNACKNOWLEDGED_EVENT
:
2282 case I2O_SCSI_DSC_MESSAGE_RECEIVED
:
2283 case I2O_SCSI_DSC_INVALID_CDB
:
2284 case I2O_SCSI_DSC_LUN_INVALID
:
2285 case I2O_SCSI_DSC_SCSI_TID_INVALID
:
2286 case I2O_SCSI_DSC_FUNCTION_UNAVAILABLE
:
2287 case I2O_SCSI_DSC_NO_NEXUS
:
2288 case I2O_SCSI_DSC_CDB_RECEIVED
:
2289 case I2O_SCSI_DSC_LUN_ALREADY_ENABLED
:
2290 case I2O_SCSI_DSC_QUEUE_FROZEN
:
2291 case I2O_SCSI_DSC_REQUEST_INVALID
:
2293 printk(KERN_WARNING
"%s: SCSI error %0x-Device(%d,%d,%d) hba_status=0x%x, dev_status=0x%x, cmd=0x%x\n",
2294 pHba
->name
, detailed_status
& I2O_SCSI_DSC_MASK
, (u32
)cmd
->device
->channel
, (u32
)cmd
->device
->id
, (u32
)cmd
->device
->lun
,
2295 hba_status
, dev_status
, cmd
->cmnd
[0]);
2296 cmd
->result
= (DID_ERROR
<< 16);
2300 // copy over the request sense data if it was a check
2302 if(dev_status
== 0x02 /*CHECK_CONDITION*/) {
2303 u32 len
= sizeof(cmd
->sense_buffer
);
2304 len
= (len
> 40) ? 40 : len
;
2305 // Copy over the sense data
2306 memcpy_fromio(cmd
->sense_buffer
, (reply
+28) , len
);
2307 if(cmd
->sense_buffer
[0] == 0x70 /* class 7 */ &&
2308 cmd
->sense_buffer
[2] == DATA_PROTECT
){
2309 /* This is to handle an array failed */
2310 cmd
->result
= (DID_TIME_OUT
<< 16);
2311 printk(KERN_WARNING
"%s: SCSI Data Protect-Device (%d,%d,%d) hba_status=0x%x, dev_status=0x%x, cmd=0x%x\n",
2312 pHba
->name
, (u32
)cmd
->device
->channel
, (u32
)cmd
->device
->id
, (u32
)cmd
->device
->lun
,
2313 hba_status
, dev_status
, cmd
->cmnd
[0]);
2318 /* In this condtion we could not talk to the tid
2319 * the card rejected it. We should signal a retry
2320 * for a limitted number of retries.
2322 cmd
->result
= (DID_TIME_OUT
<< 16);
2323 printk(KERN_WARNING
"%s: I2O MSG_FAIL - Device (%d,%d,%d) tid=%d, cmd=0x%x\n",
2324 pHba
->name
, (u32
)cmd
->device
->channel
, (u32
)cmd
->device
->id
, (u32
)cmd
->device
->lun
,
2325 ((struct adpt_device
*)(cmd
->device
->hostdata
))->tid
, cmd
->cmnd
[0]);
2328 cmd
->result
|= (dev_status
);
2330 if(cmd
->scsi_done
!= NULL
){
2331 cmd
->scsi_done(cmd
);
2337 static s32
adpt_rescan(adpt_hba
* pHba
)
2343 spin_lock_irqsave(pHba
->host
->host_lock
, flags
);
2344 if ((rcode
=adpt_i2o_lct_get(pHba
)) < 0)
2346 if ((rcode
=adpt_i2o_reparse_lct(pHba
)) < 0)
2350 spin_unlock_irqrestore(pHba
->host
->host_lock
, flags
);
2355 static s32
adpt_i2o_reparse_lct(adpt_hba
* pHba
)
2360 struct i2o_device
*d
;
2361 i2o_lct
*lct
= pHba
->lct
;
2365 u32 buf
[10]; // at least 8 u32's
2366 struct adpt_device
* pDev
= NULL
;
2367 struct i2o_device
* pI2o_dev
= NULL
;
2370 printk(KERN_ERR
"%s: LCT is empty???\n",pHba
->name
);
2374 max
= lct
->table_size
;
2378 // Mark each drive as unscanned
2379 for (d
= pHba
->devices
; d
; d
= d
->next
) {
2380 pDev
=(struct adpt_device
*) d
->owner
;
2384 pDev
->state
|= DPTI_DEV_UNSCANNED
;
2387 printk(KERN_INFO
"%s: LCT has %d entries.\n", pHba
->name
,max
);
2389 for(i
=0;i
<max
;i
++) {
2390 if( lct
->lct_entry
[i
].user_tid
!= 0xfff){
2394 if( lct
->lct_entry
[i
].class_id
== I2O_CLASS_RANDOM_BLOCK_STORAGE
||
2395 lct
->lct_entry
[i
].class_id
== I2O_CLASS_SCSI_PERIPHERAL
||
2396 lct
->lct_entry
[i
].class_id
== I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL
){
2397 tid
= lct
->lct_entry
[i
].tid
;
2398 if(adpt_i2o_query_scalar(pHba
, tid
, 0x8000, -1, buf
, 32)<0) {
2399 printk(KERN_ERR
"%s: Could not query device\n",pHba
->name
);
2402 bus_no
= buf
[0]>>16;
2404 scsi_lun
= (buf
[2]>>8 )&0xff;
2405 pDev
= pHba
->channel
[bus_no
].device
[scsi_id
];
2408 if(pDev
->scsi_lun
== scsi_lun
) {
2411 pDev
= pDev
->next_lun
;
2413 if(!pDev
) { // Something new add it
2414 d
= kmalloc(sizeof(struct i2o_device
), GFP_KERNEL
);
2417 printk(KERN_CRIT
"Out of memory for I2O device data.\n");
2421 d
->controller
= pHba
;
2424 memcpy(&d
->lct_data
, &lct
->lct_entry
[i
], sizeof(i2o_lct_entry
));
2427 adpt_i2o_report_hba_unit(pHba
, d
);
2428 adpt_i2o_install_device(pHba
, d
);
2430 if(bus_no
>= MAX_CHANNEL
) { // Something wrong skip it
2431 printk(KERN_WARNING
"%s: Channel number %d out of range \n", pHba
->name
, bus_no
);
2434 pDev
= pHba
->channel
[bus_no
].device
[scsi_id
];
2436 pDev
= kzalloc(sizeof(struct adpt_device
),GFP_KERNEL
);
2440 pHba
->channel
[bus_no
].device
[scsi_id
] = pDev
;
2442 while (pDev
->next_lun
) {
2443 pDev
= pDev
->next_lun
;
2445 pDev
= pDev
->next_lun
= kzalloc(sizeof(struct adpt_device
),GFP_KERNEL
);
2450 pDev
->tid
= d
->lct_data
.tid
;
2451 pDev
->scsi_channel
= bus_no
;
2452 pDev
->scsi_id
= scsi_id
;
2453 pDev
->scsi_lun
= scsi_lun
;
2456 pDev
->type
= (buf
[0])&0xff;
2457 pDev
->flags
= (buf
[0]>>8)&0xff;
2458 // Too late, SCSI system has made up it's mind, but what the hey ...
2459 if(scsi_id
> pHba
->top_scsi_id
){
2460 pHba
->top_scsi_id
= scsi_id
;
2462 if(scsi_lun
> pHba
->top_scsi_lun
){
2463 pHba
->top_scsi_lun
= scsi_lun
;
2466 } // end of new i2o device
2468 // We found an old device - check it
2470 if(pDev
->scsi_lun
== scsi_lun
) {
2471 if(!scsi_device_online(pDev
->pScsi_dev
)) {
2472 printk(KERN_WARNING
"%s: Setting device (%d,%d,%d) back online\n",
2473 pHba
->name
,bus_no
,scsi_id
,scsi_lun
);
2474 if (pDev
->pScsi_dev
) {
2475 scsi_device_set_state(pDev
->pScsi_dev
, SDEV_RUNNING
);
2479 if(d
->lct_data
.tid
!= tid
) { // something changed
2481 memcpy(&d
->lct_data
, &lct
->lct_entry
[i
], sizeof(i2o_lct_entry
));
2482 if (pDev
->pScsi_dev
) {
2483 pDev
->pScsi_dev
->changed
= TRUE
;
2484 pDev
->pScsi_dev
->removable
= TRUE
;
2487 // Found it - mark it scanned
2488 pDev
->state
= DPTI_DEV_ONLINE
;
2491 pDev
= pDev
->next_lun
;
2495 for (pI2o_dev
= pHba
->devices
; pI2o_dev
; pI2o_dev
= pI2o_dev
->next
) {
2496 pDev
=(struct adpt_device
*) pI2o_dev
->owner
;
2500 // Drive offline drives that previously existed but could not be found
2502 if (pDev
->state
& DPTI_DEV_UNSCANNED
){
2503 pDev
->state
= DPTI_DEV_OFFLINE
;
2504 printk(KERN_WARNING
"%s: Device (%d,%d,%d) offline\n",pHba
->name
,pDev
->scsi_channel
,pDev
->scsi_id
,pDev
->scsi_lun
);
2505 if (pDev
->pScsi_dev
) {
2506 scsi_device_set_state(pDev
->pScsi_dev
, SDEV_OFFLINE
);
2513 static void adpt_fail_posted_scbs(adpt_hba
* pHba
)
2515 struct scsi_cmnd
* cmd
= NULL
;
2516 struct scsi_device
* d
= NULL
;
2518 shost_for_each_device(d
, pHba
->host
) {
2519 unsigned long flags
;
2520 spin_lock_irqsave(&d
->list_lock
, flags
);
2521 list_for_each_entry(cmd
, &d
->cmd_list
, list
) {
2522 if(cmd
->serial_number
== 0){
2525 cmd
->result
= (DID_OK
<< 16) | (QUEUE_FULL
<<1);
2526 cmd
->scsi_done(cmd
);
2528 spin_unlock_irqrestore(&d
->list_lock
, flags
);
2533 /*============================================================================
2534 * Routines from i2o subsystem
2535 *============================================================================
2541 * Bring an I2O controller into HOLD state. See the spec.
2543 static int adpt_i2o_activate_hba(adpt_hba
* pHba
)
2547 if(pHba
->initialized
) {
2548 if (adpt_i2o_status_get(pHba
) < 0) {
2549 if((rcode
= adpt_i2o_reset_hba(pHba
)) != 0){
2550 printk(KERN_WARNING
"%s: Could NOT reset.\n", pHba
->name
);
2553 if (adpt_i2o_status_get(pHba
) < 0) {
2554 printk(KERN_INFO
"HBA not responding.\n");
2559 if(pHba
->status_block
->iop_state
== ADAPTER_STATE_FAULTED
) {
2560 printk(KERN_CRIT
"%s: hardware fault\n", pHba
->name
);
2564 if (pHba
->status_block
->iop_state
== ADAPTER_STATE_READY
||
2565 pHba
->status_block
->iop_state
== ADAPTER_STATE_OPERATIONAL
||
2566 pHba
->status_block
->iop_state
== ADAPTER_STATE_HOLD
||
2567 pHba
->status_block
->iop_state
== ADAPTER_STATE_FAILED
) {
2568 adpt_i2o_reset_hba(pHba
);
2569 if (adpt_i2o_status_get(pHba
) < 0 || pHba
->status_block
->iop_state
!= ADAPTER_STATE_RESET
) {
2570 printk(KERN_ERR
"%s: Failed to initialize.\n", pHba
->name
);
2575 if((rcode
= adpt_i2o_reset_hba(pHba
)) != 0){
2576 printk(KERN_WARNING
"%s: Could NOT reset.\n", pHba
->name
);
2582 if (adpt_i2o_init_outbound_q(pHba
) < 0) {
2588 if (adpt_i2o_hrt_get(pHba
) < 0) {
2596 * Bring a controller online into OPERATIONAL state.
2599 static int adpt_i2o_online_hba(adpt_hba
* pHba
)
2601 if (adpt_i2o_systab_send(pHba
) < 0) {
2602 adpt_i2o_delete_hba(pHba
);
2605 /* In READY state */
2607 if (adpt_i2o_enable_hba(pHba
) < 0) {
2608 adpt_i2o_delete_hba(pHba
);
2612 /* In OPERATIONAL state */
2616 static s32
adpt_send_nop(adpt_hba
*pHba
,u32 m
)
2619 ulong timeout
= jiffies
+ 5*HZ
;
2621 while(m
== EMPTY_QUEUE
){
2623 m
= readl(pHba
->post_port
);
2624 if(m
!= EMPTY_QUEUE
){
2627 if(time_after(jiffies
,timeout
)){
2628 printk(KERN_ERR
"%s: Timeout waiting for message frame!\n",pHba
->name
);
2631 schedule_timeout_uninterruptible(1);
2633 msg
= (u32 __iomem
*)(pHba
->msg_addr_virt
+ m
);
2634 writel( THREE_WORD_MSG_SIZE
| SGL_OFFSET_0
,&msg
[0]);
2635 writel( I2O_CMD_UTIL_NOP
<< 24 | HOST_TID
<< 12 | 0,&msg
[1]);
2639 writel(m
, pHba
->post_port
);
2644 static s32
adpt_i2o_init_outbound_q(adpt_hba
* pHba
)
2647 u32 __iomem
*msg
= NULL
;
2649 ulong timeout
= jiffies
+ TMOUT_INITOUTBOUND
*HZ
;
2651 u32 outbound_frame
; // This had to be a 32 bit address
2656 m
= readl(pHba
->post_port
);
2657 if (m
!= EMPTY_QUEUE
) {
2661 if(time_after(jiffies
,timeout
)){
2662 printk(KERN_WARNING
"%s: Timeout waiting for message frame\n",pHba
->name
);
2665 schedule_timeout_uninterruptible(1);
2666 } while(m
== EMPTY_QUEUE
);
2668 msg
=(u32 __iomem
*)(pHba
->msg_addr_virt
+m
);
2670 status
= kmalloc(4,GFP_KERNEL
|ADDR32
);
2672 adpt_send_nop(pHba
, m
);
2673 printk(KERN_WARNING
"%s: IOP reset failed - no free memory.\n",
2677 memset(status
, 0, 4);
2679 writel(EIGHT_WORD_MSG_SIZE
| SGL_OFFSET_6
, &msg
[0]);
2680 writel(I2O_CMD_OUTBOUND_INIT
<<24 | HOST_TID
<<12 | ADAPTER_TID
, &msg
[1]);
2682 writel(0x0106, &msg
[3]); /* Transaction context */
2683 writel(4096, &msg
[4]); /* Host page frame size */
2684 writel((REPLY_FRAME_SIZE
)<<16|0x80, &msg
[5]); /* Outbound msg frame size and Initcode */
2685 writel(0xD0000004, &msg
[6]); /* Simple SG LE, EOB */
2686 writel(virt_to_bus(status
), &msg
[7]);
2688 writel(m
, pHba
->post_port
);
2691 // Wait for the reply status to come back
2694 if (*status
!= 0x01 /*I2O_EXEC_OUTBOUND_INIT_IN_PROGRESS*/) {
2699 if(time_after(jiffies
,timeout
)){
2700 printk(KERN_WARNING
"%s: Timeout Initializing\n",pHba
->name
);
2703 schedule_timeout_uninterruptible(1);
2706 // If the command was successful, fill the fifo with our reply
2708 if(*status
!= 0x04 /*I2O_EXEC_OUTBOUND_INIT_COMPLETE*/) {
2714 kfree(pHba
->reply_pool
);
2716 pHba
->reply_pool
= kmalloc(pHba
->reply_fifo_size
* REPLY_FRAME_SIZE
* 4, GFP_KERNEL
|ADDR32
);
2717 if(!pHba
->reply_pool
){
2718 printk(KERN_ERR
"%s: Could not allocate reply pool\n",pHba
->name
);
2721 memset(pHba
->reply_pool
, 0 , pHba
->reply_fifo_size
* REPLY_FRAME_SIZE
* 4);
2723 ptr
= pHba
->reply_pool
;
2724 for(i
= 0; i
< pHba
->reply_fifo_size
; i
++) {
2725 outbound_frame
= (u32
)virt_to_bus(ptr
);
2726 writel(outbound_frame
, pHba
->reply_port
);
2728 ptr
+= REPLY_FRAME_SIZE
;
2730 adpt_i2o_status_get(pHba
);
2736 * I2O System Table. Contains information about
2737 * all the IOPs in the system. Used to inform IOPs
2738 * about each other's existence.
2740 * sys_tbl_ver is the CurrentChangeIndicator that is
2741 * used by IOPs to track changes.
2746 static s32
adpt_i2o_status_get(adpt_hba
* pHba
)
2751 u8
*status_block
=NULL
;
2752 ulong status_block_bus
;
2754 if(pHba
->status_block
== NULL
) {
2755 pHba
->status_block
= (i2o_status_block
*)
2756 kmalloc(sizeof(i2o_status_block
),GFP_KERNEL
|ADDR32
);
2757 if(pHba
->status_block
== NULL
) {
2759 "dpti%d: Get Status Block failed; Out of memory. \n",
2764 memset(pHba
->status_block
, 0, sizeof(i2o_status_block
));
2765 status_block
= (u8
*)(pHba
->status_block
);
2766 status_block_bus
= virt_to_bus(pHba
->status_block
);
2767 timeout
= jiffies
+TMOUT_GETSTATUS
*HZ
;
2770 m
= readl(pHba
->post_port
);
2771 if (m
!= EMPTY_QUEUE
) {
2774 if(time_after(jiffies
,timeout
)){
2775 printk(KERN_ERR
"%s: Timeout waiting for message !\n",
2779 schedule_timeout_uninterruptible(1);
2780 } while(m
==EMPTY_QUEUE
);
2783 msg
=(u32 __iomem
*)(pHba
->msg_addr_virt
+m
);
2785 writel(NINE_WORD_MSG_SIZE
|SGL_OFFSET_0
, &msg
[0]);
2786 writel(I2O_CMD_STATUS_GET
<<24|HOST_TID
<<12|ADAPTER_TID
, &msg
[1]);
2791 writel(((u32
)status_block_bus
)&0xffffffff, &msg
[6]);
2793 writel(sizeof(i2o_status_block
), &msg
[8]); // 88 bytes
2796 writel(m
, pHba
->post_port
);
2799 while(status_block
[87]!=0xff){
2800 if(time_after(jiffies
,timeout
)){
2801 printk(KERN_ERR
"dpti%d: Get status timeout.\n",
2806 schedule_timeout_uninterruptible(1);
2809 // Set up our number of outbound and inbound messages
2810 pHba
->post_fifo_size
= pHba
->status_block
->max_inbound_frames
;
2811 if (pHba
->post_fifo_size
> MAX_TO_IOP_MESSAGES
) {
2812 pHba
->post_fifo_size
= MAX_TO_IOP_MESSAGES
;
2815 pHba
->reply_fifo_size
= pHba
->status_block
->max_outbound_frames
;
2816 if (pHba
->reply_fifo_size
> MAX_FROM_IOP_MESSAGES
) {
2817 pHba
->reply_fifo_size
= MAX_FROM_IOP_MESSAGES
;
2820 // Calculate the Scatter Gather list size
2821 pHba
->sg_tablesize
= (pHba
->status_block
->inbound_frame_size
* 4 -40)/ sizeof(struct sg_simple_element
);
2822 if (pHba
->sg_tablesize
> SG_LIST_ELEMENTS
) {
2823 pHba
->sg_tablesize
= SG_LIST_ELEMENTS
;
2828 printk("dpti%d: State = ",pHba
->unit
);
2829 switch(pHba
->status_block
->iop_state
) {
2843 printk("OPERATIONAL\n");
2849 printk("FAULTED\n");
2852 printk("%x (unknown!!)\n",pHba
->status_block
->iop_state
);
2859 * Get the IOP's Logical Configuration Table
2861 static int adpt_i2o_lct_get(adpt_hba
* pHba
)
2867 if ((pHba
->lct_size
== 0) || (pHba
->lct
== NULL
)){
2868 pHba
->lct_size
= pHba
->status_block
->expected_lct_size
;
2871 if (pHba
->lct
== NULL
) {
2872 pHba
->lct
= kmalloc(pHba
->lct_size
, GFP_KERNEL
|ADDR32
);
2873 if(pHba
->lct
== NULL
) {
2874 printk(KERN_CRIT
"%s: Lct Get failed. Out of memory.\n",
2879 memset(pHba
->lct
, 0, pHba
->lct_size
);
2881 msg
[0] = EIGHT_WORD_MSG_SIZE
|SGL_OFFSET_6
;
2882 msg
[1] = I2O_CMD_LCT_NOTIFY
<<24 | HOST_TID
<<12 | ADAPTER_TID
;
2885 msg
[4] = 0xFFFFFFFF; /* All devices */
2886 msg
[5] = 0x00000000; /* Report now */
2887 msg
[6] = 0xD0000000|pHba
->lct_size
;
2888 msg
[7] = virt_to_bus(pHba
->lct
);
2890 if ((ret
=adpt_i2o_post_wait(pHba
, msg
, sizeof(msg
), 360))) {
2891 printk(KERN_ERR
"%s: LCT Get failed (status=%#10x.\n",
2893 printk(KERN_ERR
"Adaptec: Error Reading Hardware.\n");
2897 if ((pHba
->lct
->table_size
<< 2) > pHba
->lct_size
) {
2898 pHba
->lct_size
= pHba
->lct
->table_size
<< 2;
2902 } while (pHba
->lct
== NULL
);
2904 PDEBUG("%s: Hardware resource table read.\n", pHba
->name
);
2907 // I2O_DPT_EXEC_IOP_BUFFERS_GROUP_NO;
2908 if(adpt_i2o_query_scalar(pHba
, 0 , 0x8000, -1, buf
, sizeof(buf
))>=0) {
2909 pHba
->FwDebugBufferSize
= buf
[1];
2910 pHba
->FwDebugBuffer_P
= pHba
->base_addr_virt
+ buf
[0];
2911 pHba
->FwDebugFlags_P
= pHba
->FwDebugBuffer_P
+ FW_DEBUG_FLAGS_OFFSET
;
2912 pHba
->FwDebugBLEDvalue_P
= pHba
->FwDebugBuffer_P
+ FW_DEBUG_BLED_OFFSET
;
2913 pHba
->FwDebugBLEDflag_P
= pHba
->FwDebugBLEDvalue_P
+ 1;
2914 pHba
->FwDebugStrLength_P
= pHba
->FwDebugBuffer_P
+ FW_DEBUG_STR_LENGTH_OFFSET
;
2915 pHba
->FwDebugBuffer_P
+= buf
[2];
2916 pHba
->FwDebugFlags
= 0;
2922 static int adpt_i2o_build_sys_table(void)
2924 adpt_hba
* pHba
= NULL
;
2927 sys_tbl_len
= sizeof(struct i2o_sys_tbl
) + // Header + IOPs
2928 (hba_count
) * sizeof(struct i2o_sys_tbl_entry
);
2932 sys_tbl
= kmalloc(sys_tbl_len
, GFP_KERNEL
|ADDR32
);
2934 printk(KERN_WARNING
"SysTab Set failed. Out of memory.\n");
2937 memset(sys_tbl
, 0, sys_tbl_len
);
2939 sys_tbl
->num_entries
= hba_count
;
2940 sys_tbl
->version
= I2OVERSION
;
2941 sys_tbl
->change_ind
= sys_tbl_ind
++;
2943 for(pHba
= hba_chain
; pHba
; pHba
= pHba
->next
) {
2944 // Get updated Status Block so we have the latest information
2945 if (adpt_i2o_status_get(pHba
)) {
2946 sys_tbl
->num_entries
--;
2947 continue; // try next one
2950 sys_tbl
->iops
[count
].org_id
= pHba
->status_block
->org_id
;
2951 sys_tbl
->iops
[count
].iop_id
= pHba
->unit
+ 2;
2952 sys_tbl
->iops
[count
].seg_num
= 0;
2953 sys_tbl
->iops
[count
].i2o_version
= pHba
->status_block
->i2o_version
;
2954 sys_tbl
->iops
[count
].iop_state
= pHba
->status_block
->iop_state
;
2955 sys_tbl
->iops
[count
].msg_type
= pHba
->status_block
->msg_type
;
2956 sys_tbl
->iops
[count
].frame_size
= pHba
->status_block
->inbound_frame_size
;
2957 sys_tbl
->iops
[count
].last_changed
= sys_tbl_ind
- 1; // ??
2958 sys_tbl
->iops
[count
].iop_capabilities
= pHba
->status_block
->iop_capabilities
;
2959 sys_tbl
->iops
[count
].inbound_low
= (u32
)virt_to_bus(pHba
->post_port
);
2960 sys_tbl
->iops
[count
].inbound_high
= (u32
)((u64
)virt_to_bus(pHba
->post_port
)>>32);
2967 u32
*table
= (u32
*)sys_tbl
;
2968 printk(KERN_DEBUG
"sys_tbl_len=%d in 32bit words\n",(sys_tbl_len
>>2));
2969 for(count
= 0; count
< (sys_tbl_len
>>2); count
++) {
2970 printk(KERN_INFO
"sys_tbl[%d] = %0#10x\n",
2971 count
, table
[count
]);
2981 * Dump the information block associated with a given unit (TID)
2984 static void adpt_i2o_report_hba_unit(adpt_hba
* pHba
, struct i2o_device
*d
)
2987 int unit
= d
->lct_data
.tid
;
2989 printk(KERN_INFO
"TID %3.3d ", unit
);
2991 if(adpt_i2o_query_scalar(pHba
, unit
, 0xF100, 3, buf
, 16)>=0)
2994 printk(" Vendor: %-12.12s", buf
);
2996 if(adpt_i2o_query_scalar(pHba
, unit
, 0xF100, 4, buf
, 16)>=0)
2999 printk(" Device: %-12.12s", buf
);
3001 if(adpt_i2o_query_scalar(pHba
, unit
, 0xF100, 6, buf
, 8)>=0)
3004 printk(" Rev: %-12.12s\n", buf
);
3007 printk(KERN_INFO
"\tClass: %.21s\n", adpt_i2o_get_class_name(d
->lct_data
.class_id
));
3008 printk(KERN_INFO
"\tSubclass: 0x%04X\n", d
->lct_data
.sub_class
);
3009 printk(KERN_INFO
"\tFlags: ");
3011 if(d
->lct_data
.device_flags
&(1<<0))
3012 printk("C"); // ConfigDialog requested
3013 if(d
->lct_data
.device_flags
&(1<<1))
3014 printk("U"); // Multi-user capable
3015 if(!(d
->lct_data
.device_flags
&(1<<4)))
3016 printk("P"); // Peer service enabled!
3017 if(!(d
->lct_data
.device_flags
&(1<<5)))
3018 printk("M"); // Mgmt service enabled!
3025 * Do i2o class name lookup
3027 static const char *adpt_i2o_get_class_name(int class)
3030 static char *i2o_class_name
[] = {
3032 "Device Driver Module",
3037 "Fibre Channel Port",
3038 "Fibre Channel Device",
3042 "Floppy Controller",
3044 "Secondary Bus Port",
3045 "Peer Transport Agent",
3050 switch(class&0xFFF) {
3051 case I2O_CLASS_EXECUTIVE
:
3055 case I2O_CLASS_RANDOM_BLOCK_STORAGE
:
3057 case I2O_CLASS_SEQUENTIAL_STORAGE
:
3063 case I2O_CLASS_FIBRE_CHANNEL_PORT
:
3065 case I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL
:
3067 case I2O_CLASS_SCSI_PERIPHERAL
:
3069 case I2O_CLASS_ATE_PORT
:
3071 case I2O_CLASS_ATE_PERIPHERAL
:
3073 case I2O_CLASS_FLOPPY_CONTROLLER
:
3075 case I2O_CLASS_FLOPPY_DEVICE
:
3077 case I2O_CLASS_BUS_ADAPTER_PORT
:
3079 case I2O_CLASS_PEER_TRANSPORT_AGENT
:
3081 case I2O_CLASS_PEER_TRANSPORT
:
3084 return i2o_class_name
[idx
];
3089 static s32
adpt_i2o_hrt_get(adpt_hba
* pHba
)
3092 int ret
, size
= sizeof(i2o_hrt
);
3095 if (pHba
->hrt
== NULL
) {
3096 pHba
->hrt
=kmalloc(size
, GFP_KERNEL
|ADDR32
);
3097 if (pHba
->hrt
== NULL
) {
3098 printk(KERN_CRIT
"%s: Hrt Get failed; Out of memory.\n", pHba
->name
);
3103 msg
[0]= SIX_WORD_MSG_SIZE
| SGL_OFFSET_4
;
3104 msg
[1]= I2O_CMD_HRT_GET
<<24 | HOST_TID
<<12 | ADAPTER_TID
;
3107 msg
[4]= (0xD0000000 | size
); /* Simple transaction */
3108 msg
[5]= virt_to_bus(pHba
->hrt
); /* Dump it here */
3110 if ((ret
= adpt_i2o_post_wait(pHba
, msg
, sizeof(msg
),20))) {
3111 printk(KERN_ERR
"%s: Unable to get HRT (status=%#10x)\n", pHba
->name
, ret
);
3115 if (pHba
->hrt
->num_entries
* pHba
->hrt
->entry_len
<< 2 > size
) {
3116 size
= pHba
->hrt
->num_entries
* pHba
->hrt
->entry_len
<< 2;
3120 } while(pHba
->hrt
== NULL
);
3125 * Query one scalar group value or a whole scalar group.
3127 static int adpt_i2o_query_scalar(adpt_hba
* pHba
, int tid
,
3128 int group
, int field
, void *buf
, int buflen
)
3130 u16 opblk
[] = { 1, 0, I2O_PARAMS_FIELD_GET
, group
, 1, field
};
3135 /* 8 bytes for header */
3136 resblk
= kmalloc(sizeof(u8
) * (8+buflen
), GFP_KERNEL
|ADDR32
);
3137 if (resblk
== NULL
) {
3138 printk(KERN_CRIT
"%s: query scalar failed; Out of memory.\n", pHba
->name
);
3142 if (field
== -1) /* whole group */
3145 size
= adpt_i2o_issue_params(I2O_CMD_UTIL_PARAMS_GET
, pHba
, tid
,
3146 opblk
, sizeof(opblk
), resblk
, sizeof(u8
)*(8+buflen
));
3147 if (size
== -ETIME
) {
3148 printk(KERN_WARNING
"%s: issue params failed; Timed out.\n", pHba
->name
);
3150 } else if (size
== -EINTR
) {
3151 printk(KERN_WARNING
"%s: issue params failed; Interrupted.\n", pHba
->name
);
3155 memcpy(buf
, resblk
+8, buflen
); /* cut off header */
3165 /* Issue UTIL_PARAMS_GET or UTIL_PARAMS_SET
3167 * This function can be used for all UtilParamsGet/Set operations.
3168 * The OperationBlock is given in opblk-buffer,
3169 * and results are returned in resblk-buffer.
3170 * Note that the minimum sized resblk is 8 bytes and contains
3171 * ResultCount, ErrorInfoSize, BlockStatus and BlockSize.
3173 static int adpt_i2o_issue_params(int cmd
, adpt_hba
* pHba
, int tid
,
3174 void *opblk
, int oplen
, void *resblk
, int reslen
)
3177 u32
*res
= (u32
*)resblk
;
3180 msg
[0] = NINE_WORD_MSG_SIZE
| SGL_OFFSET_5
;
3181 msg
[1] = cmd
<< 24 | HOST_TID
<< 12 | tid
;
3185 msg
[5] = 0x54000000 | oplen
; /* OperationBlock */
3186 msg
[6] = virt_to_bus(opblk
);
3187 msg
[7] = 0xD0000000 | reslen
; /* ResultBlock */
3188 msg
[8] = virt_to_bus(resblk
);
3190 if ((wait_status
= adpt_i2o_post_wait(pHba
, msg
, sizeof(msg
), 20))) {
3191 printk("adpt_i2o_issue_params: post_wait failed (%p)\n", resblk
);
3192 return wait_status
; /* -DetailedStatus */
3195 if (res
[1]&0x00FF0000) { /* BlockStatus != SUCCESS */
3196 printk(KERN_WARNING
"%s: %s - Error:\n ErrorInfoSize = 0x%02x, "
3197 "BlockStatus = 0x%02x, BlockSize = 0x%04x\n",
3199 (cmd
== I2O_CMD_UTIL_PARAMS_SET
) ? "PARAMS_SET"
3201 res
[1]>>24, (res
[1]>>16)&0xFF, res
[1]&0xFFFF);
3202 return -((res
[1] >> 16) & 0xFF); /* -BlockStatus */
3205 return 4 + ((res
[1] & 0x0000FFFF) << 2); /* bytes used in resblk */
3209 static s32
adpt_i2o_quiesce_hba(adpt_hba
* pHba
)
3214 adpt_i2o_status_get(pHba
);
3216 /* SysQuiesce discarded if IOP not in READY or OPERATIONAL state */
3218 if((pHba
->status_block
->iop_state
!= ADAPTER_STATE_READY
) &&
3219 (pHba
->status_block
->iop_state
!= ADAPTER_STATE_OPERATIONAL
)){
3223 msg
[0] = FOUR_WORD_MSG_SIZE
|SGL_OFFSET_0
;
3224 msg
[1] = I2O_CMD_SYS_QUIESCE
<<24|HOST_TID
<<12|ADAPTER_TID
;
3228 if((ret
= adpt_i2o_post_wait(pHba
, msg
, sizeof(msg
), 240))) {
3229 printk(KERN_INFO
"dpti%d: Unable to quiesce (status=%#x).\n",
3232 printk(KERN_INFO
"dpti%d: Quiesced.\n",pHba
->unit
);
3235 adpt_i2o_status_get(pHba
);
3241 * Enable IOP. Allows the IOP to resume external operations.
3243 static int adpt_i2o_enable_hba(adpt_hba
* pHba
)
3248 adpt_i2o_status_get(pHba
);
3249 if(!pHba
->status_block
){
3252 /* Enable only allowed on READY state */
3253 if(pHba
->status_block
->iop_state
== ADAPTER_STATE_OPERATIONAL
)
3256 if(pHba
->status_block
->iop_state
!= ADAPTER_STATE_READY
)
3259 msg
[0]=FOUR_WORD_MSG_SIZE
|SGL_OFFSET_0
;
3260 msg
[1]=I2O_CMD_SYS_ENABLE
<<24|HOST_TID
<<12|ADAPTER_TID
;
3264 if ((ret
= adpt_i2o_post_wait(pHba
, msg
, sizeof(msg
), 240))) {
3265 printk(KERN_WARNING
"%s: Could not enable (status=%#10x).\n",
3268 PDEBUG("%s: Enabled.\n", pHba
->name
);
3271 adpt_i2o_status_get(pHba
);
3276 static int adpt_i2o_systab_send(adpt_hba
* pHba
)
3281 msg
[0] = I2O_MESSAGE_SIZE(12) | SGL_OFFSET_6
;
3282 msg
[1] = I2O_CMD_SYS_TAB_SET
<<24 | HOST_TID
<<12 | ADAPTER_TID
;
3285 msg
[4] = (0<<16) | ((pHba
->unit
+2) << 12); /* Host 0 IOP ID (unit + 2) */
3286 msg
[5] = 0; /* Segment 0 */
3289 * Provide three SGL-elements:
3290 * System table (SysTab), Private memory space declaration and
3291 * Private i/o space declaration
3293 msg
[6] = 0x54000000 | sys_tbl_len
;
3294 msg
[7] = virt_to_phys(sys_tbl
);
3295 msg
[8] = 0x54000000 | 0;
3297 msg
[10] = 0xD4000000 | 0;
3300 if ((ret
=adpt_i2o_post_wait(pHba
, msg
, sizeof(msg
), 120))) {
3301 printk(KERN_INFO
"%s: Unable to set SysTab (status=%#10x).\n",
3306 PINFO("%s: SysTab set.\n", pHba
->name
);
3314 /*============================================================================
3316 *============================================================================
3322 static static void adpt_delay(int millisec
)
3325 for (i
= 0; i
< millisec
; i
++) {
3326 udelay(1000); /* delay for one millisecond */
3332 static struct scsi_host_template driver_template
= {
3334 .proc_name
= "dpt_i2o",
3335 .proc_info
= adpt_proc_info
,
3336 .detect
= adpt_detect
,
3337 .release
= adpt_release
,
3339 .queuecommand
= adpt_queue
,
3340 .eh_abort_handler
= adpt_abort
,
3341 .eh_device_reset_handler
= adpt_device_reset
,
3342 .eh_bus_reset_handler
= adpt_bus_reset
,
3343 .eh_host_reset_handler
= adpt_reset
,
3344 .bios_param
= adpt_bios_param
,
3345 .slave_configure
= adpt_slave_configure
,
3346 .can_queue
= MAX_TO_IOP_MESSAGES
,
3349 .use_clustering
= ENABLE_CLUSTERING
,
3351 #include "scsi_module.c"
3352 MODULE_LICENSE("GPL");