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 void adpt_exit(void);
178 static int adpt_detect(void)
180 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(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) < 0) {
252 adpt_i2o_delete_hba(pHba);
255 pHba->initialized = TRUE;
256 pHba->state &= ~DPTI_STATE_RESET;
257 scsi_scan_host(pHba->host);
260 // Register our control device node
261 // nodes will need to be created in /dev to access this
262 // the nodes can not be created from within the driver
263 if (hba_count && register_chrdev(DPTI_I2O_MAJOR, DPT_DRIVER, &adpt_fops)) {
271 static int adpt_release(adpt_hba *pHba)
273 struct Scsi_Host *shost = pHba->host;
274 scsi_remove_host(shost);
275 // adpt_i2o_quiesce_hba(pHba);
276 adpt_i2o_delete_hba(pHba);
277 scsi_host_put(shost);
282 static void adpt_inquiry(adpt_hba* pHba)
295 memset(msg, 0, sizeof(msg));
296 buf = kmalloc(80,GFP_KERNEL|ADDR32);
298 printk(KERN_ERR"%s: Could not allocate buffer\n",pHba->name);
301 memset((void*)buf, 0, 36);
304 direction = 0x00000000;
305 scsidir =0x40000000; // DATA IN (iop<--dev)
307 reqlen = 14; // SINGLE SGE
308 /* Stick the headers on */
309 msg[0] = reqlen<<16 | SGL_OFFSET_12;
310 msg[1] = (0xff<<24|HOST_TID<<12|ADAPTER_TID);
313 // Adaptec/DPT Private stuff
314 msg[4] = I2O_CMD_SCSI_EXEC|DPT_ORGANIZATION_ID<<16;
315 msg[5] = ADAPTER_TID | 1<<16 /* Interpret*/;
316 /* Direction, disconnect ok | sense data | simple queue , CDBLen */
317 // I2O_SCB_FLAG_ENABLE_DISCONNECT |
318 // I2O_SCB_FLAG_SIMPLE_QUEUE_TAG |
319 // I2O_SCB_FLAG_SENSE_DATA_IN_MESSAGE;
320 msg[6] = scsidir|0x20a00000| 6 /* cmd len*/;
324 memset(scb, 0, sizeof(scb));
325 // Write SCSI command into the message - always 16 byte block
332 // Don't care about the rest of scb
334 memcpy(mptr, scb, sizeof(scb));
336 lenptr=mptr++; /* Remember me - fill in when we know */
338 /* Now fill in the SGList and command */
340 *mptr++ = 0xD0000000|direction|len;
341 *mptr++ = virt_to_bus(buf);
343 // Send it on it's way
344 rcode = adpt_i2o_post_wait(pHba, msg, reqlen<<2, 120);
346 sprintf(pHba->detail, "Adaptec I2O RAID");
347 printk(KERN_INFO "%s: Inquiry Error (%d)\n",pHba->name,rcode);
348 if (rcode != -ETIME && rcode != -EINTR)
351 memset(pHba->detail, 0, sizeof(pHba->detail));
352 memcpy(&(pHba->detail), "Vendor: Adaptec ", 16);
353 memcpy(&(pHba->detail[16]), " Model: ", 8);
354 memcpy(&(pHba->detail[24]), (u8*) &buf[16], 16);
355 memcpy(&(pHba->detail[40]), " FW: ", 4);
356 memcpy(&(pHba->detail[44]), (u8*) &buf[32], 4);
357 pHba->detail[48] = '\0'; /* precautionary */
360 adpt_i2o_status_get(pHba);
365 static int adpt_slave_configure(struct scsi_device * device)
367 struct Scsi_Host *host = device->host;
370 pHba = (adpt_hba *) host->hostdata[0];
372 if (host->can_queue && device->tagged_supported) {
373 scsi_adjust_queue_depth(device, MSG_SIMPLE_TAG,
374 host->can_queue - 1);
376 scsi_adjust_queue_depth(device, 0, 1);
381 static int adpt_queue(struct scsi_cmnd * cmd, void (*done) (struct scsi_cmnd *))
383 adpt_hba* pHba = NULL;
384 struct adpt_device* pDev = NULL; /* dpt per device information */
386 cmd->scsi_done = done;
388 * SCSI REQUEST_SENSE commands will be executed automatically by the
389 * Host Adapter for any errors, so they should not be executed
390 * explicitly unless the Sense Data is zero indicating that no error
394 if ((cmd->cmnd[0] == REQUEST_SENSE) && (cmd->sense_buffer[0] != 0)) {
395 cmd->result = (DID_OK << 16);
400 pHba = (adpt_hba*)cmd->device->host->hostdata[0];
407 * TODO: I need to block here if I am processing ioctl cmds
408 * but if the outstanding cmds all finish before the ioctl,
409 * the scsi-core will not know to start sending cmds to me again.
410 * I need to a way to restart the scsi-cores queues or should I block
411 * calling scsi_done on the outstanding cmds instead
412 * for now we don't set the IOCTL state
414 if(((pHba->state) & DPTI_STATE_IOCTL) || ((pHba->state) & DPTI_STATE_RESET)) {
415 pHba->host->last_reset = jiffies;
416 pHba->host->resetting = 1;
420 // TODO if the cmd->device if offline then I may need to issue a bus rescan
421 // followed by a get_lct to see if the device is there anymore
422 if((pDev = (struct adpt_device*) (cmd->device->hostdata)) == NULL) {
424 * First command request for this device. Set up a pointer
425 * to the device structure. This should be a TEST_UNIT_READY
426 * command from scan_scsis_single.
428 if ((pDev = adpt_find_device(pHba, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun)) == NULL) {
429 // TODO: if any luns are at this bus, scsi id then fake a TEST_UNIT_READY and INQUIRY response
430 // with type 7F (for all luns less than the max for this bus,id) so the lun scan will continue.
431 cmd->result = (DID_NO_CONNECT << 16);
435 cmd->device->hostdata = pDev;
437 pDev->pScsi_dev = cmd->device;
440 * If we are being called from when the device is being reset,
441 * delay processing of the command until later.
443 if (pDev->state & DPTI_DEV_RESET ) {
446 return adpt_scsi_to_i2o(pHba, cmd, pDev);
449 static int adpt_bios_param(struct scsi_device *sdev, struct block_device *dev,
450 sector_t capacity, int geom[])
456 // *** First lets set the default geometry ****
458 // If the capacity is less than ox2000
459 if (capacity < 0x2000 ) { // floppy
463 // else if between 0x2000 and 0x20000
464 else if (capacity < 0x20000) {
468 // else if between 0x20000 and 0x40000
469 else if (capacity < 0x40000) {
473 // else if between 0x4000 and 0x80000
474 else if (capacity < 0x80000) {
478 // else if greater than 0x80000
483 cylinders = sector_div(capacity, heads * sectors);
485 // Special case if CDROM
486 if(sdev->type == 5) { // CDROM
496 PDEBUG("adpt_bios_param: exit\n");
501 static const char *adpt_info(struct Scsi_Host *host)
505 pHba = (adpt_hba *) host->hostdata[0];
506 return (char *) (pHba->detail);
509 static int adpt_proc_info(struct Scsi_Host *host, char *buffer, char **start, off_t offset,
510 int length, int inout)
512 struct adpt_device* d;
524 * The user has done a write and wants us to take the
525 * data in the buffer and do something with it.
526 * proc_scsiwrite calls us with inout = 1
528 * Read data from buffer (writing to us) - NOT SUPPORTED
534 * inout = 0 means the user has done a read and wants information
535 * returned, so we write information about the cards into the buffer
536 * proc_scsiread() calls us with inout = 0
539 // Find HBA (host bus adapter) we are looking for
540 mutex_lock(&adpt_configuration_lock);
541 for (pHba = hba_chain; pHba; pHba = pHba->next) {
542 if (pHba->host == host) {
543 break; /* found adapter */
546 mutex_unlock(&adpt_configuration_lock);
552 len = sprintf(buffer , "Adaptec I2O RAID Driver Version: %s\n\n", DPT_I2O_VERSION);
553 len += sprintf(buffer+len, "%s\n", pHba->detail);
554 len += sprintf(buffer+len, "SCSI Host=scsi%d Control Node=/dev/%s irq=%d\n",
555 pHba->host->host_no, pHba->name, host->irq);
556 len += sprintf(buffer+len, "\tpost fifo size = %d\n\treply fifo size = %d\n\tsg table size = %d\n\n",
557 host->can_queue, (int) pHba->reply_fifo_size , host->sg_tablesize);
562 if(pos > offset + length) {
567 * If we haven't even written to where we last left
568 * off (the last time we were called), reset the
574 len += sprintf(buffer+len, "Devices:\n");
575 for(chan = 0; chan < MAX_CHANNEL; chan++) {
576 for(id = 0; id < MAX_ID; id++) {
577 d = pHba->channel[chan].device[id];
579 len += sprintf(buffer+len,"\t%-24.24s", d->pScsi_dev->vendor);
580 len += sprintf(buffer+len," Rev: %-8.8s\n", d->pScsi_dev->rev);
585 if(pos > offset + length) {
593 unit = d->pI2o_dev->lct_data.tid;
594 len += sprintf(buffer+len, "\tTID=%d, (Channel=%d, Target=%d, Lun=%d) (%s)\n\n",
595 unit, (int)d->scsi_channel, (int)d->scsi_id, (int)d->scsi_lun,
596 scsi_device_online(d->pScsi_dev)? "online":"offline");
600 if(pos > offset + length) {
614 * begin is where we last checked our position with regards to offset
615 * begin is always less than offset. len is relative to begin. It
616 * is the number of bytes written past begin
620 /* stop the output and calculate the correct length */
621 *(buffer + len) = '\0';
623 *start = buffer + (offset - begin); /* Start of wanted data */
624 len -= (offset - begin);
635 /*===========================================================================
636 * Error Handling routines
637 *===========================================================================
640 static int adpt_abort(struct scsi_cmnd * cmd)
642 adpt_hba* pHba = NULL; /* host bus adapter structure */
643 struct adpt_device* dptdevice; /* dpt per device information */
647 if(cmd->serial_number == 0){
650 pHba = (adpt_hba*) cmd->device->host->hostdata[0];
651 printk(KERN_INFO"%s: Trying to Abort cmd=%ld\n",pHba->name, cmd->serial_number);
652 if ((dptdevice = (void*) (cmd->device->hostdata)) == NULL) {
653 printk(KERN_ERR "%s: Unable to abort: No device in cmnd\n",pHba->name);
657 memset(msg, 0, sizeof(msg));
658 msg[0] = FIVE_WORD_MSG_SIZE|SGL_OFFSET_0;
659 msg[1] = I2O_CMD_SCSI_ABORT<<24|HOST_TID<<12|dptdevice->tid;
664 spin_lock_irq(pHba->host->host_lock);
665 rcode = adpt_i2o_post_wait(pHba, msg, sizeof(msg), FOREVER);
667 spin_unlock_irq(pHba->host->host_lock);
669 if(rcode == -EOPNOTSUPP ){
670 printk(KERN_INFO"%s: Abort cmd not supported\n",pHba->name);
673 printk(KERN_INFO"%s: Abort cmd=%ld failed.\n",pHba->name, cmd->serial_number);
676 printk(KERN_INFO"%s: Abort cmd=%ld complete.\n",pHba->name, cmd->serial_number);
681 #define I2O_DEVICE_RESET 0x27
682 // This is the same for BLK and SCSI devices
683 // NOTE this is wrong in the i2o.h definitions
684 // This is not currently supported by our adapter but we issue it anyway
685 static int adpt_device_reset(struct scsi_cmnd* cmd)
691 struct adpt_device* d = cmd->device->hostdata;
693 pHba = (void*) cmd->device->host->hostdata[0];
694 printk(KERN_INFO"%s: Trying to reset device\n",pHba->name);
696 printk(KERN_INFO"%s: Reset Device: Device Not found\n",pHba->name);
699 memset(msg, 0, sizeof(msg));
700 msg[0] = FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
701 msg[1] = (I2O_DEVICE_RESET<<24|HOST_TID<<12|d->tid);
706 spin_lock_irq(pHba->host->host_lock);
707 old_state = d->state;
708 d->state |= DPTI_DEV_RESET;
709 rcode = adpt_i2o_post_wait(pHba, msg,sizeof(msg), FOREVER);
710 d->state = old_state;
712 spin_unlock_irq(pHba->host->host_lock);
714 if(rcode == -EOPNOTSUPP ){
715 printk(KERN_INFO"%s: Device reset not supported\n",pHba->name);
718 printk(KERN_INFO"%s: Device reset failed\n",pHba->name);
721 printk(KERN_INFO"%s: Device reset successful\n",pHba->name);
727 #define I2O_HBA_BUS_RESET 0x87
728 // This version of bus reset is called by the eh_error handler
729 static int adpt_bus_reset(struct scsi_cmnd* cmd)
735 pHba = (adpt_hba*)cmd->device->host->hostdata[0];
736 memset(msg, 0, sizeof(msg));
737 printk(KERN_WARNING"%s: Bus reset: SCSI Bus %d: tid: %d\n",pHba->name, cmd->device->channel,pHba->channel[cmd->device->channel].tid );
738 msg[0] = FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
739 msg[1] = (I2O_HBA_BUS_RESET<<24|HOST_TID<<12|pHba->channel[cmd->device->channel].tid);
743 spin_lock_irq(pHba->host->host_lock);
744 rcode = adpt_i2o_post_wait(pHba, msg,sizeof(msg), FOREVER);
746 spin_unlock_irq(pHba->host->host_lock);
748 printk(KERN_WARNING"%s: Bus reset failed.\n",pHba->name);
751 printk(KERN_WARNING"%s: Bus reset success.\n",pHba->name);
756 // This version of reset is called by the eh_error_handler
757 static int __adpt_reset(struct scsi_cmnd* cmd)
761 pHba = (adpt_hba*)cmd->device->host->hostdata[0];
762 printk(KERN_WARNING"%s: Hba Reset: scsi id %d: tid: %d\n",pHba->name,cmd->device->channel,pHba->channel[cmd->device->channel].tid );
763 rcode = adpt_hba_reset(pHba);
765 printk(KERN_WARNING"%s: HBA reset complete\n",pHba->name);
768 printk(KERN_WARNING"%s: HBA reset failed (%x)\n",pHba->name, rcode);
773 static int adpt_reset(struct scsi_cmnd* cmd)
777 spin_lock_irq(cmd->device->host->host_lock);
778 rc = __adpt_reset(cmd);
779 spin_unlock_irq(cmd->device->host->host_lock);
784 // This version of reset is called by the ioctls and indirectly from eh_error_handler via adpt_reset
785 static int adpt_hba_reset(adpt_hba* pHba)
789 pHba->state |= DPTI_STATE_RESET;
791 // Activate does get status , init outbound, and get hrt
792 if ((rcode=adpt_i2o_activate_hba(pHba)) < 0) {
793 printk(KERN_ERR "%s: Could not activate\n", pHba->name);
794 adpt_i2o_delete_hba(pHba);
798 if ((rcode=adpt_i2o_build_sys_table()) < 0) {
799 adpt_i2o_delete_hba(pHba);
802 PDEBUG("%s: in HOLD state\n",pHba->name);
804 if ((rcode=adpt_i2o_online_hba(pHba)) < 0) {
805 adpt_i2o_delete_hba(pHba);
808 PDEBUG("%s: in OPERATIONAL state\n",pHba->name);
810 if ((rcode=adpt_i2o_lct_get(pHba)) < 0){
811 adpt_i2o_delete_hba(pHba);
815 if ((rcode=adpt_i2o_reparse_lct(pHba)) < 0){
816 adpt_i2o_delete_hba(pHba);
819 pHba->state &= ~DPTI_STATE_RESET;
821 adpt_fail_posted_scbs(pHba);
822 return 0; /* return success */
825 /*===========================================================================
827 *===========================================================================
831 static void adpt_i2o_sys_shutdown(void)
833 adpt_hba *pHba, *pNext;
834 struct adpt_i2o_post_wait_data *p1, *old;
836 printk(KERN_INFO"Shutting down Adaptec I2O controllers.\n");
837 printk(KERN_INFO" This could take a few minutes if there are many devices attached\n");
838 /* Delete all IOPs from the controller chain */
839 /* They should have already been released by the
842 for (pHba = hba_chain; pHba; pHba = pNext) {
844 adpt_i2o_delete_hba(pHba);
847 /* Remove any timedout entries from the wait queue. */
848 // spin_lock_irqsave(&adpt_post_wait_lock, flags);
849 /* Nothing should be outstanding at this point so just
852 for(p1 = adpt_post_wait_queue; p1;) {
857 // spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
858 adpt_post_wait_queue = NULL;
860 printk(KERN_INFO "Adaptec I2O controllers down.\n");
864 * reboot/shutdown notification.
866 * - Quiesce each IOP in the system
870 #ifdef REBOOT_NOTIFIER
871 static int adpt_reboot_event(struct notifier_block *n, ulong code, void *p)
874 if(code != SYS_RESTART && code != SYS_HALT && code != SYS_POWER_OFF)
877 adpt_i2o_sys_shutdown();
884 static int adpt_install_hba(struct pci_dev* pDev)
887 adpt_hba* pHba = NULL;
889 ulong base_addr0_phys = 0;
890 ulong base_addr1_phys = 0;
891 u32 hba_map0_area_size = 0;
892 u32 hba_map1_area_size = 0;
893 void __iomem *base_addr_virt = NULL;
894 void __iomem *msg_addr_virt = NULL;
896 int raptorFlag = FALSE;
898 if(pci_enable_device(pDev)) {
902 if (pci_request_regions(pDev, "dpt_i2o")) {
903 PERROR("dpti: adpt_config_hba: pci request region failed\n");
907 pci_set_master(pDev);
908 if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) &&
909 pci_set_dma_mask(pDev, DMA_32BIT_MASK))
912 base_addr0_phys = pci_resource_start(pDev,0);
913 hba_map0_area_size = pci_resource_len(pDev,0);
915 // Check if standard PCI card or single BAR Raptor
916 if(pDev->device == PCI_DPT_DEVICE_ID){
917 if(pDev->subsystem_device >=0xc032 && pDev->subsystem_device <= 0xc03b){
918 // Raptor card with this device id needs 4M
919 hba_map0_area_size = 0x400000;
920 } else { // Not Raptor - it is a PCI card
921 if(hba_map0_area_size > 0x100000 ){
922 hba_map0_area_size = 0x100000;
925 } else {// Raptor split BAR config
926 // Use BAR1 in this configuration
927 base_addr1_phys = pci_resource_start(pDev,1);
928 hba_map1_area_size = pci_resource_len(pDev,1);
932 base_addr_virt = ioremap(base_addr0_phys,hba_map0_area_size);
933 if (!base_addr_virt) {
934 pci_release_regions(pDev);
935 PERROR("dpti: adpt_config_hba: io remap failed\n");
939 if(raptorFlag == TRUE) {
940 msg_addr_virt = ioremap(base_addr1_phys, hba_map1_area_size );
941 if (!msg_addr_virt) {
942 PERROR("dpti: adpt_config_hba: io remap failed on BAR1\n");
943 iounmap(base_addr_virt);
944 pci_release_regions(pDev);
948 msg_addr_virt = base_addr_virt;
951 // Allocate and zero the data structure
952 pHba = kzalloc(sizeof(adpt_hba), GFP_KERNEL);
954 if (msg_addr_virt != base_addr_virt)
955 iounmap(msg_addr_virt);
956 iounmap(base_addr_virt);
957 pci_release_regions(pDev);
961 mutex_lock(&adpt_configuration_lock);
963 if(hba_chain != NULL){
964 for(p = hba_chain; p->next; p = p->next);
970 pHba->unit = hba_count;
971 sprintf(pHba->name, "dpti%d", hba_count);
974 mutex_unlock(&adpt_configuration_lock);
977 pHba->base_addr_phys = base_addr0_phys;
979 // Set up the Virtual Base Address of the I2O Device
980 pHba->base_addr_virt = base_addr_virt;
981 pHba->msg_addr_virt = msg_addr_virt;
982 pHba->irq_mask = base_addr_virt+0x30;
983 pHba->post_port = base_addr_virt+0x40;
984 pHba->reply_port = base_addr_virt+0x44;
989 pHba->status_block = NULL;
990 pHba->post_count = 0;
991 pHba->state = DPTI_STATE_RESET;
993 pHba->devices = NULL;
995 // Initializing the spinlocks
996 spin_lock_init(&pHba->state_lock);
997 spin_lock_init(&adpt_post_wait_lock);
1000 printk(KERN_INFO"Adaptec I2O RAID controller %d at %p size=%x irq=%d\n",
1001 hba_count-1, base_addr_virt, hba_map0_area_size, pDev->irq);
1003 printk(KERN_INFO"Adaptec I2O RAID controller %d irq=%d\n",hba_count-1, pDev->irq);
1004 printk(KERN_INFO" BAR0 %p - size= %x\n",base_addr_virt,hba_map0_area_size);
1005 printk(KERN_INFO" BAR1 %p - size= %x\n",msg_addr_virt,hba_map1_area_size);
1008 if (request_irq (pDev->irq, adpt_isr, IRQF_SHARED, pHba->name, pHba)) {
1009 printk(KERN_ERR"%s: Couldn't register IRQ %d\n", pHba->name, pDev->irq);
1010 adpt_i2o_delete_hba(pHba);
1018 static void adpt_i2o_delete_hba(adpt_hba* pHba)
1022 struct i2o_device* d;
1023 struct i2o_device* next;
1026 struct adpt_device* pDev;
1027 struct adpt_device* pNext;
1030 mutex_lock(&adpt_configuration_lock);
1032 free_irq(pHba->host->irq, pHba);
1035 for( p1 = hba_chain; p1; p2 = p1,p1=p1->next){
1038 p2->next = p1->next;
1040 hba_chain = p1->next;
1047 mutex_unlock(&adpt_configuration_lock);
1049 iounmap(pHba->base_addr_virt);
1050 pci_release_regions(pHba->pDev);
1051 if(pHba->msg_addr_virt != pHba->base_addr_virt){
1052 iounmap(pHba->msg_addr_virt);
1056 kfree(pHba->status_block);
1057 kfree(pHba->reply_pool);
1059 for(d = pHba->devices; d ; d = next){
1063 for(i = 0 ; i < pHba->top_scsi_channel ; i++){
1064 for(j = 0; j < MAX_ID; j++){
1065 if(pHba->channel[i].device[j] != NULL){
1066 for(pDev = pHba->channel[i].device[j]; pDev; pDev = pNext){
1067 pNext = pDev->next_lun;
1073 pci_dev_put(pHba->pDev);
1077 unregister_chrdev(DPTI_I2O_MAJOR, DPT_DRIVER);
1082 static struct adpt_device* adpt_find_device(adpt_hba* pHba, u32 chan, u32 id, u32 lun)
1084 struct adpt_device* d;
1086 if(chan < 0 || chan >= MAX_CHANNEL)
1089 if( pHba->channel[chan].device == NULL){
1090 printk(KERN_DEBUG"Adaptec I2O RAID: Trying to find device before they are allocated\n");
1094 d = pHba->channel[chan].device[id];
1095 if(!d || d->tid == 0) {
1099 /* If it is the only lun at that address then this should match*/
1100 if(d->scsi_lun == lun){
1104 /* else we need to look through all the luns */
1105 for(d=d->next_lun ; d ; d = d->next_lun){
1106 if(d->scsi_lun == lun){
1114 static int adpt_i2o_post_wait(adpt_hba* pHba, u32* msg, int len, int timeout)
1116 // I used my own version of the WAIT_QUEUE_HEAD
1117 // to handle some version differences
1118 // When embedded in the kernel this could go back to the vanilla one
1119 ADPT_DECLARE_WAIT_QUEUE_HEAD(adpt_wq_i2o_post);
1122 struct adpt_i2o_post_wait_data *p1, *p2;
1123 struct adpt_i2o_post_wait_data *wait_data =
1124 kmalloc(sizeof(struct adpt_i2o_post_wait_data),GFP_KERNEL);
1125 DECLARE_WAITQUEUE(wait, current);
1131 * The spin locking is needed to keep anyone from playing
1132 * with the queue pointers and id while we do the same
1134 spin_lock_irqsave(&adpt_post_wait_lock, flags);
1135 // TODO we need a MORE unique way of getting ids
1136 // to support async LCT get
1137 wait_data->next = adpt_post_wait_queue;
1138 adpt_post_wait_queue = wait_data;
1139 adpt_post_wait_id++;
1140 adpt_post_wait_id &= 0x7fff;
1141 wait_data->id = adpt_post_wait_id;
1142 spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
1144 wait_data->wq = &adpt_wq_i2o_post;
1145 wait_data->status = -ETIMEDOUT;
1147 add_wait_queue(&adpt_wq_i2o_post, &wait);
1149 msg[2] |= 0x80000000 | ((u32)wait_data->id);
1151 if((status = adpt_i2o_post_this(pHba, msg, len)) == 0){
1152 set_current_state(TASK_INTERRUPTIBLE);
1154 spin_unlock_irq(pHba->host->host_lock);
1158 timeout = schedule_timeout(timeout);
1160 // I/O issued, but cannot get result in
1161 // specified time. Freeing resorces is
1167 spin_lock_irq(pHba->host->host_lock);
1169 remove_wait_queue(&adpt_wq_i2o_post, &wait);
1171 if(status == -ETIMEDOUT){
1172 printk(KERN_INFO"dpti%d: POST WAIT TIMEOUT\n",pHba->unit);
1173 // We will have to free the wait_data memory during shutdown
1177 /* Remove the entry from the queue. */
1179 spin_lock_irqsave(&adpt_post_wait_lock, flags);
1180 for(p1 = adpt_post_wait_queue; p1; p2 = p1, p1 = p1->next) {
1181 if(p1 == wait_data) {
1182 if(p1->status == I2O_DETAIL_STATUS_UNSUPPORTED_FUNCTION ) {
1183 status = -EOPNOTSUPP;
1186 p2->next = p1->next;
1188 adpt_post_wait_queue = p1->next;
1193 spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
1201 static s32 adpt_i2o_post_this(adpt_hba* pHba, u32* data, int len)
1204 u32 m = EMPTY_QUEUE;
1206 ulong timeout = jiffies + 30*HZ;
1209 m = readl(pHba->post_port);
1210 if (m != EMPTY_QUEUE) {
1213 if(time_after(jiffies,timeout)){
1214 printk(KERN_WARNING"dpti%d: Timeout waiting for message frame!\n", pHba->unit);
1217 schedule_timeout_uninterruptible(1);
1218 } while(m == EMPTY_QUEUE);
1220 msg = pHba->msg_addr_virt + m;
1221 memcpy_toio(msg, data, len);
1225 writel(m, pHba->post_port);
1232 static void adpt_i2o_post_wait_complete(u32 context, int status)
1234 struct adpt_i2o_post_wait_data *p1 = NULL;
1236 * We need to search through the adpt_post_wait
1237 * queue to see if the given message is still
1238 * outstanding. If not, it means that the IOP
1239 * took longer to respond to the message than we
1240 * had allowed and timer has already expired.
1241 * Not much we can do about that except log
1242 * it for debug purposes, increase timeout, and recompile
1244 * Lock needed to keep anyone from moving queue pointers
1245 * around while we're looking through them.
1250 spin_lock(&adpt_post_wait_lock);
1251 for(p1 = adpt_post_wait_queue; p1; p1 = p1->next) {
1252 if(p1->id == context) {
1253 p1->status = status;
1254 spin_unlock(&adpt_post_wait_lock);
1255 wake_up_interruptible(p1->wq);
1259 spin_unlock(&adpt_post_wait_lock);
1260 // If this happens we lose commands that probably really completed
1261 printk(KERN_DEBUG"dpti: Could Not find task %d in wait queue\n",context);
1262 printk(KERN_DEBUG" Tasks in wait queue:\n");
1263 for(p1 = adpt_post_wait_queue; p1; p1 = p1->next) {
1264 printk(KERN_DEBUG" %d\n",p1->id);
1269 static s32 adpt_i2o_reset_hba(adpt_hba* pHba)
1273 u32 m = EMPTY_QUEUE ;
1274 ulong timeout = jiffies + (TMOUT_IOPRESET*HZ);
1276 if(pHba->initialized == FALSE) { // First time reset should be quick
1277 timeout = jiffies + (25*HZ);
1279 adpt_i2o_quiesce_hba(pHba);
1284 m = readl(pHba->post_port);
1285 if (m != EMPTY_QUEUE) {
1288 if(time_after(jiffies,timeout)){
1289 printk(KERN_WARNING"Timeout waiting for message!\n");
1292 schedule_timeout_uninterruptible(1);
1293 } while (m == EMPTY_QUEUE);
1295 status = kzalloc(4, GFP_KERNEL|ADDR32);
1296 if(status == NULL) {
1297 adpt_send_nop(pHba, m);
1298 printk(KERN_ERR"IOP reset failed - no free memory.\n");
1302 msg[0]=EIGHT_WORD_MSG_SIZE|SGL_OFFSET_0;
1303 msg[1]=I2O_CMD_ADAPTER_RESET<<24|HOST_TID<<12|ADAPTER_TID;
1308 msg[6]=virt_to_bus(status);
1311 memcpy_toio(pHba->msg_addr_virt+m, msg, sizeof(msg));
1313 writel(m, pHba->post_port);
1316 while(*status == 0){
1317 if(time_after(jiffies,timeout)){
1318 printk(KERN_WARNING"%s: IOP Reset Timeout\n",pHba->name);
1323 schedule_timeout_uninterruptible(1);
1326 if(*status == 0x01 /*I2O_EXEC_IOP_RESET_IN_PROGRESS*/) {
1327 PDEBUG("%s: Reset in progress...\n", pHba->name);
1328 // Here we wait for message frame to become available
1329 // indicated that reset has finished
1332 m = readl(pHba->post_port);
1333 if (m != EMPTY_QUEUE) {
1336 if(time_after(jiffies,timeout)){
1337 printk(KERN_ERR "%s:Timeout waiting for IOP Reset.\n",pHba->name);
1340 schedule_timeout_uninterruptible(1);
1341 } while (m == EMPTY_QUEUE);
1343 adpt_send_nop(pHba, m);
1345 adpt_i2o_status_get(pHba);
1346 if(*status == 0x02 ||
1347 pHba->status_block->iop_state != ADAPTER_STATE_RESET) {
1348 printk(KERN_WARNING"%s: Reset reject, trying to clear\n",
1351 PDEBUG("%s: Reset completed.\n", pHba->name);
1356 // This delay is to allow someone attached to the card through the debug UART to
1357 // set up the dump levels that they want before the rest of the initialization sequence
1364 static int adpt_i2o_parse_lct(adpt_hba* pHba)
1369 struct i2o_device *d;
1370 i2o_lct *lct = pHba->lct;
1374 u32 buf[10]; // larger than 7, or 8 ...
1375 struct adpt_device* pDev;
1378 printk(KERN_ERR "%s: LCT is empty???\n",pHba->name);
1382 max = lct->table_size;
1386 for(i=0;i<max;i++) {
1387 if( lct->lct_entry[i].user_tid != 0xfff){
1389 * If we have hidden devices, we need to inform the upper layers about
1390 * the possible maximum id reference to handle device access when
1391 * an array is disassembled. This code has no other purpose but to
1392 * allow us future access to devices that are currently hidden
1393 * behind arrays, hotspares or have not been configured (JBOD mode).
1395 if( lct->lct_entry[i].class_id != I2O_CLASS_RANDOM_BLOCK_STORAGE &&
1396 lct->lct_entry[i].class_id != I2O_CLASS_SCSI_PERIPHERAL &&
1397 lct->lct_entry[i].class_id != I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL ){
1400 tid = lct->lct_entry[i].tid;
1401 // I2O_DPT_DEVICE_INFO_GROUP_NO;
1402 if(adpt_i2o_query_scalar(pHba, tid, 0x8000, -1, buf, 32)<0) {
1405 bus_no = buf[0]>>16;
1407 scsi_lun = (buf[2]>>8 )&0xff;
1408 if(bus_no >= MAX_CHANNEL) { // Something wrong skip it
1409 printk(KERN_WARNING"%s: Channel number %d out of range \n", pHba->name, bus_no);
1412 if (scsi_id >= MAX_ID){
1413 printk(KERN_WARNING"%s: SCSI ID %d out of range \n", pHba->name, bus_no);
1416 if(bus_no > pHba->top_scsi_channel){
1417 pHba->top_scsi_channel = bus_no;
1419 if(scsi_id > pHba->top_scsi_id){
1420 pHba->top_scsi_id = scsi_id;
1422 if(scsi_lun > pHba->top_scsi_lun){
1423 pHba->top_scsi_lun = scsi_lun;
1427 d = kmalloc(sizeof(struct i2o_device), GFP_KERNEL);
1430 printk(KERN_CRIT"%s: Out of memory for I2O device data.\n",pHba->name);
1434 d->controller = pHba;
1437 memcpy(&d->lct_data, &lct->lct_entry[i], sizeof(i2o_lct_entry));
1440 tid = d->lct_data.tid;
1441 adpt_i2o_report_hba_unit(pHba, d);
1442 adpt_i2o_install_device(pHba, d);
1445 for(d = pHba->devices; d ; d = d->next) {
1446 if(d->lct_data.class_id == I2O_CLASS_BUS_ADAPTER_PORT ||
1447 d->lct_data.class_id == I2O_CLASS_FIBRE_CHANNEL_PORT){
1448 tid = d->lct_data.tid;
1449 // TODO get the bus_no from hrt-but for now they are in order
1451 if(bus_no > pHba->top_scsi_channel){
1452 pHba->top_scsi_channel = bus_no;
1454 pHba->channel[bus_no].type = d->lct_data.class_id;
1455 pHba->channel[bus_no].tid = tid;
1456 if(adpt_i2o_query_scalar(pHba, tid, 0x0200, -1, buf, 28)>=0)
1458 pHba->channel[bus_no].scsi_id = buf[1];
1459 PDEBUG("Bus %d - SCSI ID %d.\n", bus_no, buf[1]);
1461 // TODO remove - this is just until we get from hrt
1463 if(bus_no >= MAX_CHANNEL) { // Something wrong skip it
1464 printk(KERN_WARNING"%s: Channel number %d out of range - LCT\n", pHba->name, bus_no);
1470 // Setup adpt_device table
1471 for(d = pHba->devices; d ; d = d->next) {
1472 if(d->lct_data.class_id == I2O_CLASS_RANDOM_BLOCK_STORAGE ||
1473 d->lct_data.class_id == I2O_CLASS_SCSI_PERIPHERAL ||
1474 d->lct_data.class_id == I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL ){
1476 tid = d->lct_data.tid;
1478 // I2O_DPT_DEVICE_INFO_GROUP_NO;
1479 if(adpt_i2o_query_scalar(pHba, tid, 0x8000, -1, buf, 32)>=0) {
1480 bus_no = buf[0]>>16;
1482 scsi_lun = (buf[2]>>8 )&0xff;
1483 if(bus_no >= MAX_CHANNEL) { // Something wrong skip it
1486 if (scsi_id >= MAX_ID) {
1489 if( pHba->channel[bus_no].device[scsi_id] == NULL){
1490 pDev = kzalloc(sizeof(struct adpt_device),GFP_KERNEL);
1494 pHba->channel[bus_no].device[scsi_id] = pDev;
1496 for( pDev = pHba->channel[bus_no].device[scsi_id];
1497 pDev->next_lun; pDev = pDev->next_lun){
1499 pDev->next_lun = kzalloc(sizeof(struct adpt_device),GFP_KERNEL);
1500 if(pDev->next_lun == NULL) {
1503 pDev = pDev->next_lun;
1506 pDev->scsi_channel = bus_no;
1507 pDev->scsi_id = scsi_id;
1508 pDev->scsi_lun = scsi_lun;
1511 pDev->type = (buf[0])&0xff;
1512 pDev->flags = (buf[0]>>8)&0xff;
1513 if(scsi_id > pHba->top_scsi_id){
1514 pHba->top_scsi_id = scsi_id;
1516 if(scsi_lun > pHba->top_scsi_lun){
1517 pHba->top_scsi_lun = scsi_lun;
1521 printk(KERN_WARNING"Could not find SCSI ID for %s\n",
1522 d->lct_data.identity_tag);
1531 * Each I2O controller has a chain of devices on it - these match
1532 * the useful parts of the LCT of the board.
1535 static int adpt_i2o_install_device(adpt_hba* pHba, struct i2o_device *d)
1537 mutex_lock(&adpt_configuration_lock);
1540 d->next=pHba->devices;
1542 if (pHba->devices != NULL){
1543 pHba->devices->prev=d;
1548 mutex_unlock(&adpt_configuration_lock);
1552 static int adpt_open(struct inode *inode, struct file *file)
1557 //TODO check for root access
1559 minor = iminor(inode);
1560 if (minor >= hba_count) {
1563 mutex_lock(&adpt_configuration_lock);
1564 for (pHba = hba_chain; pHba; pHba = pHba->next) {
1565 if (pHba->unit == minor) {
1566 break; /* found adapter */
1570 mutex_unlock(&adpt_configuration_lock);
1574 // if(pHba->in_use){
1575 // mutex_unlock(&adpt_configuration_lock);
1580 mutex_unlock(&adpt_configuration_lock);
1585 static int adpt_close(struct inode *inode, struct file *file)
1590 minor = iminor(inode);
1591 if (minor >= hba_count) {
1594 mutex_lock(&adpt_configuration_lock);
1595 for (pHba = hba_chain; pHba; pHba = pHba->next) {
1596 if (pHba->unit == minor) {
1597 break; /* found adapter */
1600 mutex_unlock(&adpt_configuration_lock);
1611 static int adpt_i2o_passthru(adpt_hba* pHba, u32 __user *arg)
1613 u32 msg[MAX_MESSAGE_SIZE];
1617 u32 __user *user_msg = arg;
1618 u32 __user * user_reply = NULL;
1619 void *sg_list[pHba->sg_tablesize];
1628 memset(&msg, 0, MAX_MESSAGE_SIZE*4);
1629 // get user msg size in u32s
1630 if(get_user(size, &user_msg[0])){
1635 user_reply = &user_msg[size];
1636 if(size > MAX_MESSAGE_SIZE){
1639 size *= 4; // Convert to bytes
1641 /* Copy in the user's I2O command */
1642 if(copy_from_user(msg, user_msg, size)) {
1645 get_user(reply_size, &user_reply[0]);
1646 reply_size = reply_size>>16;
1647 if(reply_size > REPLY_FRAME_SIZE){
1648 reply_size = REPLY_FRAME_SIZE;
1651 reply = kzalloc(REPLY_FRAME_SIZE*4, GFP_KERNEL);
1653 printk(KERN_WARNING"%s: Could not allocate reply buffer\n",pHba->name);
1656 sg_offset = (msg[0]>>4)&0xf;
1657 msg[2] = 0x40000000; // IOCTL context
1658 msg[3] = (u32)reply;
1659 memset(sg_list,0, sizeof(sg_list[0])*pHba->sg_tablesize);
1662 struct sg_simple_element *sg = (struct sg_simple_element*) (msg+sg_offset);
1663 sg_count = (size - sg_offset*4) / sizeof(struct sg_simple_element);
1664 if (sg_count > pHba->sg_tablesize){
1665 printk(KERN_DEBUG"%s:IOCTL SG List too large (%u)\n", pHba->name,sg_count);
1670 for(i = 0; i < sg_count; i++) {
1673 if (!(sg[i].flag_count & 0x10000000 /*I2O_SGL_FLAGS_SIMPLE_ADDRESS_ELEMENT*/)) {
1674 printk(KERN_DEBUG"%s:Bad SG element %d - not simple (%x)\n",pHba->name,i, sg[i].flag_count);
1678 sg_size = sg[i].flag_count & 0xffffff;
1679 /* Allocate memory for the transfer */
1680 p = kmalloc(sg_size, GFP_KERNEL|ADDR32);
1682 printk(KERN_DEBUG"%s: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
1683 pHba->name,sg_size,i,sg_count);
1687 sg_list[sg_index++] = p; // sglist indexed with input frame, not our internal frame.
1688 /* Copy in the user's SG buffer if necessary */
1689 if(sg[i].flag_count & 0x04000000 /*I2O_SGL_FLAGS_DIR*/) {
1691 if (copy_from_user(p,(void __user *)sg[i].addr_bus, sg_size)) {
1692 printk(KERN_DEBUG"%s: Could not copy SG buf %d FROM user\n",pHba->name,i);
1698 sg[i].addr_bus = (u32)virt_to_bus(p);
1704 spin_lock_irqsave(pHba->host->host_lock, flags);
1705 // This state stops any new commands from enterring the
1706 // controller while processing the ioctl
1707 // pHba->state |= DPTI_STATE_IOCTL;
1708 // We can't set this now - The scsi subsystem sets host_blocked and
1709 // the queue empties and stops. We need a way to restart the queue
1710 rcode = adpt_i2o_post_wait(pHba, msg, size, FOREVER);
1712 printk("adpt_i2o_passthru: post wait failed %d %p\n",
1714 // pHba->state &= ~DPTI_STATE_IOCTL;
1716 spin_unlock_irqrestore(pHba->host->host_lock, flags);
1717 } while(rcode == -ETIMEDOUT);
1724 /* Copy back the Scatter Gather buffers back to user space */
1727 struct sg_simple_element* sg;
1730 // re-acquire the original message to handle correctly the sg copy operation
1731 memset(&msg, 0, MAX_MESSAGE_SIZE*4);
1732 // get user msg size in u32s
1733 if(get_user(size, &user_msg[0])){
1739 /* Copy in the user's I2O command */
1740 if (copy_from_user (msg, user_msg, size)) {
1744 sg_count = (size - sg_offset*4) / sizeof(struct sg_simple_element);
1747 sg = (struct sg_simple_element*)(msg + sg_offset);
1748 for (j = 0; j < sg_count; j++) {
1749 /* Copy out the SG list to user's buffer if necessary */
1750 if(! (sg[j].flag_count & 0x4000000 /*I2O_SGL_FLAGS_DIR*/)) {
1751 sg_size = sg[j].flag_count & 0xffffff;
1753 if (copy_to_user((void __user *)sg[j].addr_bus,sg_list[j], sg_size)) {
1754 printk(KERN_WARNING"%s: Could not copy %p TO user %x\n",pHba->name, sg_list[j], sg[j].addr_bus);
1762 /* Copy back the reply to user space */
1764 // we wrote our own values for context - now restore the user supplied ones
1765 if(copy_from_user(reply+2, user_msg+2, sizeof(u32)*2)) {
1766 printk(KERN_WARNING"%s: Could not copy message context FROM user\n",pHba->name);
1769 if(copy_to_user(user_reply, reply, reply_size)) {
1770 printk(KERN_WARNING"%s: Could not copy reply TO user\n",pHba->name);
1777 if (rcode != -ETIME && rcode != -EINTR)
1780 if(sg_list[--sg_index]) {
1781 if (rcode != -ETIME && rcode != -EINTR)
1782 kfree(sg_list[sg_index]);
1790 * This routine returns information about the system. This does not effect
1791 * any logic and if the info is wrong - it doesn't matter.
1794 /* Get all the info we can not get from kernel services */
1795 static int adpt_system_info(void __user *buffer)
1799 memset(&si, 0, sizeof(si));
1801 si.osType = OS_LINUX;
1802 si.osMajorVersion = 0;
1803 si.osMinorVersion = 0;
1805 si.busType = SI_PCI_BUS;
1806 si.processorFamily = DPTI_sig.dsProcessorFamily;
1808 #if defined __i386__
1809 adpt_i386_info(&si);
1810 #elif defined (__ia64__)
1811 adpt_ia64_info(&si);
1812 #elif defined(__sparc__)
1813 adpt_sparc_info(&si);
1814 #elif defined (__alpha__)
1815 adpt_alpha_info(&si);
1817 si.processorType = 0xff ;
1819 if(copy_to_user(buffer, &si, sizeof(si))){
1820 printk(KERN_WARNING"dpti: Could not copy buffer TO user\n");
1827 #if defined __ia64__
1828 static void adpt_ia64_info(sysInfo_S* si)
1830 // This is all the info we need for now
1831 // We will add more info as our new
1832 // managmenent utility requires it
1833 si->processorType = PROC_IA64;
1838 #if defined __sparc__
1839 static void adpt_sparc_info(sysInfo_S* si)
1841 // This is all the info we need for now
1842 // We will add more info as our new
1843 // managmenent utility requires it
1844 si->processorType = PROC_ULTRASPARC;
1848 #if defined __alpha__
1849 static void adpt_alpha_info(sysInfo_S* si)
1851 // This is all the info we need for now
1852 // We will add more info as our new
1853 // managmenent utility requires it
1854 si->processorType = PROC_ALPHA;
1858 #if defined __i386__
1860 static void adpt_i386_info(sysInfo_S* si)
1862 // This is all the info we need for now
1863 // We will add more info as our new
1864 // managmenent utility requires it
1865 switch (boot_cpu_data.x86) {
1867 si->processorType = PROC_386;
1870 si->processorType = PROC_486;
1873 si->processorType = PROC_PENTIUM;
1875 default: // Just in case
1876 si->processorType = PROC_PENTIUM;
1884 static int adpt_ioctl(struct inode *inode, struct file *file, uint cmd,
1891 void __user *argp = (void __user *)arg;
1893 minor = iminor(inode);
1894 if (minor >= DPTI_MAX_HBA){
1897 mutex_lock(&adpt_configuration_lock);
1898 for (pHba = hba_chain; pHba; pHba = pHba->next) {
1899 if (pHba->unit == minor) {
1900 break; /* found adapter */
1903 mutex_unlock(&adpt_configuration_lock);
1908 while((volatile u32) pHba->state & DPTI_STATE_RESET )
1909 schedule_timeout_uninterruptible(2);
1912 // TODO: handle 3 cases
1914 if (copy_to_user(argp, &DPTI_sig, sizeof(DPTI_sig))) {
1919 return adpt_i2o_passthru(pHba, argp);
1922 drvrHBAinfo_S HbaInfo;
1924 #define FLG_OSD_PCI_VALID 0x0001
1925 #define FLG_OSD_DMA 0x0002
1926 #define FLG_OSD_I2O 0x0004
1927 memset(&HbaInfo, 0, sizeof(HbaInfo));
1928 HbaInfo.drvrHBAnum = pHba->unit;
1929 HbaInfo.baseAddr = (ulong) pHba->base_addr_phys;
1930 HbaInfo.blinkState = adpt_read_blink_led(pHba);
1931 HbaInfo.pciBusNum = pHba->pDev->bus->number;
1932 HbaInfo.pciDeviceNum=PCI_SLOT(pHba->pDev->devfn);
1933 HbaInfo.Interrupt = pHba->pDev->irq;
1934 HbaInfo.hbaFlags = FLG_OSD_PCI_VALID | FLG_OSD_DMA | FLG_OSD_I2O;
1935 if(copy_to_user(argp, &HbaInfo, sizeof(HbaInfo))){
1936 printk(KERN_WARNING"%s: Could not copy HbaInfo TO user\n",pHba->name);
1942 return adpt_system_info(argp);
1945 value = (u32)adpt_read_blink_led(pHba);
1946 if (copy_to_user(argp, &value, sizeof(value))) {
1953 spin_lock_irqsave(pHba->host->host_lock, flags);
1954 adpt_hba_reset(pHba);
1956 spin_unlock_irqrestore(pHba->host->host_lock, flags);
1969 static irqreturn_t adpt_isr(int irq, void *dev_id)
1971 struct scsi_cmnd* cmd;
1972 adpt_hba* pHba = dev_id;
1974 void __iomem *reply;
1981 printk(KERN_WARNING"adpt_isr: NULL dev_id\n");
1985 spin_lock_irqsave(pHba->host->host_lock, flags);
1987 while( readl(pHba->irq_mask) & I2O_INTERRUPT_PENDING_B) {
1988 m = readl(pHba->reply_port);
1989 if(m == EMPTY_QUEUE){
1990 // Try twice then give up
1992 m = readl(pHba->reply_port);
1993 if(m == EMPTY_QUEUE){
1994 // This really should not happen
1995 printk(KERN_ERR"dpti: Could not get reply frame\n");
1999 reply = bus_to_virt(m);
2001 if (readl(reply) & MSG_FAIL) {
2002 u32 old_m = readl(reply+28);
2005 PDEBUG("%s: Failed message\n",pHba->name);
2006 if(old_m >= 0x100000){
2007 printk(KERN_ERR"%s: Bad preserved MFA (%x)- dropping frame\n",pHba->name,old_m);
2008 writel(m,pHba->reply_port);
2011 // Transaction context is 0 in failed reply frame
2012 msg = pHba->msg_addr_virt + old_m;
2013 old_context = readl(msg+12);
2014 writel(old_context, reply+12);
2015 adpt_send_nop(pHba, old_m);
2017 context = readl(reply+8);
2018 if(context & 0x40000000){ // IOCTL
2019 void *p = (void *)readl(reply+12);
2021 memcpy_fromio(p, reply, REPLY_FRAME_SIZE * 4);
2023 // All IOCTLs will also be post wait
2025 if(context & 0x80000000){ // Post wait message
2026 status = readl(reply+16);
2028 status &= 0xffff; /* Get detail status */
2030 status = I2O_POST_WAIT_OK;
2032 if(!(context & 0x40000000)) {
2033 cmd = (struct scsi_cmnd*) readl(reply+12);
2035 printk(KERN_WARNING"%s: Apparent SCSI cmd in Post Wait Context - cmd=%p context=%x\n", pHba->name, cmd, context);
2038 adpt_i2o_post_wait_complete(context, status);
2039 } else { // SCSI message
2040 cmd = (struct scsi_cmnd*) readl(reply+12);
2042 if(cmd->serial_number != 0) { // If not timedout
2043 adpt_i2o_to_scsi(reply, cmd);
2047 writel(m, pHba->reply_port);
2053 spin_unlock_irqrestore(pHba->host->host_lock, flags);
2054 return IRQ_RETVAL(handled);
2057 static s32 adpt_scsi_to_i2o(adpt_hba* pHba, struct scsi_cmnd* cmd, struct adpt_device* d)
2060 u32 msg[MAX_MESSAGE_SIZE];
2070 memset(msg, 0 , sizeof(msg));
2071 len = scsi_bufflen(cmd);
2072 direction = 0x00000000;
2074 scsidir = 0x00000000; // DATA NO XFER
2077 * Set SCBFlags to indicate if data is being transferred
2078 * in or out, or no data transfer
2079 * Note: Do not have to verify index is less than 0 since
2080 * cmd->cmnd[0] is an unsigned char
2082 switch(cmd->sc_data_direction){
2083 case DMA_FROM_DEVICE:
2084 scsidir =0x40000000; // DATA IN (iop<--dev)
2087 direction=0x04000000; // SGL OUT
2088 scsidir =0x80000000; // DATA OUT (iop-->dev)
2092 case DMA_BIDIRECTIONAL:
2093 scsidir =0x40000000; // DATA IN (iop<--dev)
2094 // Assume In - and continue;
2097 printk(KERN_WARNING"%s: scsi opcode 0x%x not supported.\n",
2098 pHba->name, cmd->cmnd[0]);
2099 cmd->result = (DID_OK <<16) | (INITIATOR_ERROR << 8);
2100 cmd->scsi_done(cmd);
2104 // msg[0] is set later
2105 // I2O_CMD_SCSI_EXEC
2106 msg[1] = ((0xff<<24)|(HOST_TID<<12)|d->tid);
2108 msg[3] = (u32)cmd; /* We want the SCSI control block back */
2109 // Our cards use the transaction context as the tag for queueing
2110 // Adaptec/DPT Private stuff
2111 msg[4] = I2O_CMD_SCSI_EXEC|(DPT_ORGANIZATION_ID<<16);
2113 /* Direction, disconnect ok | sense data | simple queue , CDBLen */
2114 // I2O_SCB_FLAG_ENABLE_DISCONNECT |
2115 // I2O_SCB_FLAG_SIMPLE_QUEUE_TAG |
2116 // I2O_SCB_FLAG_SENSE_DATA_IN_MESSAGE;
2117 msg[6] = scsidir|0x20a00000|cmd->cmd_len;
2121 // Write SCSI command into the message - always 16 byte block
2122 memset(mptr, 0, 16);
2123 memcpy(mptr, cmd->cmnd, cmd->cmd_len);
2125 lenptr=mptr++; /* Remember me - fill in when we know */
2126 reqlen = 14; // SINGLE SGE
2127 /* Now fill in the SGList and command */
2129 nseg = scsi_dma_map(cmd);
2132 struct scatterlist *sg;
2135 scsi_for_each_sg(cmd, sg, nseg, i) {
2136 *mptr++ = direction|0x10000000|sg_dma_len(sg);
2137 len+=sg_dma_len(sg);
2138 *mptr++ = sg_dma_address(sg);
2139 /* Make this an end of list */
2141 mptr[-2] = direction|0xD0000000|sg_dma_len(sg);
2143 reqlen = mptr - msg;
2146 if(cmd->underflow && len != cmd->underflow){
2147 printk(KERN_WARNING"Cmd len %08X Cmd underflow %08X\n",
2148 len, cmd->underflow);
2155 /* Stick the headers on */
2156 msg[0] = reqlen<<16 | ((reqlen > 12) ? SGL_OFFSET_12 : SGL_OFFSET_0);
2158 // Send it on it's way
2159 rcode = adpt_i2o_post_this(pHba, msg, reqlen<<2);
2167 static s32 adpt_i2o_to_scsi(void __iomem *reply, struct scsi_cmnd* cmd)
2172 u32 reply_flags = readl(reply) & 0xff00; // Leave it shifted up 8 bits
2173 // I know this would look cleaner if I just read bytes
2174 // but the model I have been using for all the rest of the
2175 // io is in 4 byte words - so I keep that model
2176 u16 detailed_status = readl(reply+16) &0xffff;
2177 dev_status = (detailed_status & 0xff);
2178 hba_status = detailed_status >> 8;
2180 // calculate resid for sg
2181 scsi_set_resid(cmd, scsi_bufflen(cmd) - readl(reply+5));
2183 pHba = (adpt_hba*) cmd->device->host->hostdata[0];
2185 cmd->sense_buffer[0] = '\0'; // initialize sense valid flag to false
2187 if(!(reply_flags & MSG_FAIL)) {
2188 switch(detailed_status & I2O_SCSI_DSC_MASK) {
2189 case I2O_SCSI_DSC_SUCCESS:
2190 cmd->result = (DID_OK << 16);
2192 if(readl(reply+5) < cmd->underflow ) {
2193 cmd->result = (DID_ERROR <<16);
2194 printk(KERN_WARNING"%s: SCSI CMD underflow\n",pHba->name);
2197 case I2O_SCSI_DSC_REQUEST_ABORTED:
2198 cmd->result = (DID_ABORT << 16);
2200 case I2O_SCSI_DSC_PATH_INVALID:
2201 case I2O_SCSI_DSC_DEVICE_NOT_PRESENT:
2202 case I2O_SCSI_DSC_SELECTION_TIMEOUT:
2203 case I2O_SCSI_DSC_COMMAND_TIMEOUT:
2204 case I2O_SCSI_DSC_NO_ADAPTER:
2205 case I2O_SCSI_DSC_RESOURCE_UNAVAILABLE:
2206 printk(KERN_WARNING"%s: SCSI Timeout-Device (%d,%d,%d) hba status=0x%x, dev status=0x%x, cmd=0x%x\n",
2207 pHba->name, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun, hba_status, dev_status, cmd->cmnd[0]);
2208 cmd->result = (DID_TIME_OUT << 16);
2210 case I2O_SCSI_DSC_ADAPTER_BUSY:
2211 case I2O_SCSI_DSC_BUS_BUSY:
2212 cmd->result = (DID_BUS_BUSY << 16);
2214 case I2O_SCSI_DSC_SCSI_BUS_RESET:
2215 case I2O_SCSI_DSC_BDR_MESSAGE_SENT:
2216 cmd->result = (DID_RESET << 16);
2218 case I2O_SCSI_DSC_PARITY_ERROR_FAILURE:
2219 printk(KERN_WARNING"%s: SCSI CMD parity error\n",pHba->name);
2220 cmd->result = (DID_PARITY << 16);
2222 case I2O_SCSI_DSC_UNABLE_TO_ABORT:
2223 case I2O_SCSI_DSC_COMPLETE_WITH_ERROR:
2224 case I2O_SCSI_DSC_UNABLE_TO_TERMINATE:
2225 case I2O_SCSI_DSC_MR_MESSAGE_RECEIVED:
2226 case I2O_SCSI_DSC_AUTOSENSE_FAILED:
2227 case I2O_SCSI_DSC_DATA_OVERRUN:
2228 case I2O_SCSI_DSC_UNEXPECTED_BUS_FREE:
2229 case I2O_SCSI_DSC_SEQUENCE_FAILURE:
2230 case I2O_SCSI_DSC_REQUEST_LENGTH_ERROR:
2231 case I2O_SCSI_DSC_PROVIDE_FAILURE:
2232 case I2O_SCSI_DSC_REQUEST_TERMINATED:
2233 case I2O_SCSI_DSC_IDE_MESSAGE_SENT:
2234 case I2O_SCSI_DSC_UNACKNOWLEDGED_EVENT:
2235 case I2O_SCSI_DSC_MESSAGE_RECEIVED:
2236 case I2O_SCSI_DSC_INVALID_CDB:
2237 case I2O_SCSI_DSC_LUN_INVALID:
2238 case I2O_SCSI_DSC_SCSI_TID_INVALID:
2239 case I2O_SCSI_DSC_FUNCTION_UNAVAILABLE:
2240 case I2O_SCSI_DSC_NO_NEXUS:
2241 case I2O_SCSI_DSC_CDB_RECEIVED:
2242 case I2O_SCSI_DSC_LUN_ALREADY_ENABLED:
2243 case I2O_SCSI_DSC_QUEUE_FROZEN:
2244 case I2O_SCSI_DSC_REQUEST_INVALID:
2246 printk(KERN_WARNING"%s: SCSI error %0x-Device(%d,%d,%d) hba_status=0x%x, dev_status=0x%x, cmd=0x%x\n",
2247 pHba->name, detailed_status & I2O_SCSI_DSC_MASK, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun,
2248 hba_status, dev_status, cmd->cmnd[0]);
2249 cmd->result = (DID_ERROR << 16);
2253 // copy over the request sense data if it was a check
2255 if(dev_status == 0x02 /*CHECK_CONDITION*/) {
2256 u32 len = sizeof(cmd->sense_buffer);
2257 len = (len > 40) ? 40 : len;
2258 // Copy over the sense data
2259 memcpy_fromio(cmd->sense_buffer, (reply+28) , len);
2260 if(cmd->sense_buffer[0] == 0x70 /* class 7 */ &&
2261 cmd->sense_buffer[2] == DATA_PROTECT ){
2262 /* This is to handle an array failed */
2263 cmd->result = (DID_TIME_OUT << 16);
2264 printk(KERN_WARNING"%s: SCSI Data Protect-Device (%d,%d,%d) hba_status=0x%x, dev_status=0x%x, cmd=0x%x\n",
2265 pHba->name, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun,
2266 hba_status, dev_status, cmd->cmnd[0]);
2271 /* In this condtion we could not talk to the tid
2272 * the card rejected it. We should signal a retry
2273 * for a limitted number of retries.
2275 cmd->result = (DID_TIME_OUT << 16);
2276 printk(KERN_WARNING"%s: I2O MSG_FAIL - Device (%d,%d,%d) tid=%d, cmd=0x%x\n",
2277 pHba->name, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun,
2278 ((struct adpt_device*)(cmd->device->hostdata))->tid, cmd->cmnd[0]);
2281 cmd->result |= (dev_status);
2283 if(cmd->scsi_done != NULL){
2284 cmd->scsi_done(cmd);
2290 static s32 adpt_rescan(adpt_hba* pHba)
2296 spin_lock_irqsave(pHba->host->host_lock, flags);
2297 if ((rcode=adpt_i2o_lct_get(pHba)) < 0)
2299 if ((rcode=adpt_i2o_reparse_lct(pHba)) < 0)
2303 spin_unlock_irqrestore(pHba->host->host_lock, flags);
2308 static s32 adpt_i2o_reparse_lct(adpt_hba* pHba)
2313 struct i2o_device *d;
2314 i2o_lct *lct = pHba->lct;
2318 u32 buf[10]; // at least 8 u32's
2319 struct adpt_device* pDev = NULL;
2320 struct i2o_device* pI2o_dev = NULL;
2323 printk(KERN_ERR "%s: LCT is empty???\n",pHba->name);
2327 max = lct->table_size;
2331 // Mark each drive as unscanned
2332 for (d = pHba->devices; d; d = d->next) {
2333 pDev =(struct adpt_device*) d->owner;
2337 pDev->state |= DPTI_DEV_UNSCANNED;
2340 printk(KERN_INFO "%s: LCT has %d entries.\n", pHba->name,max);
2342 for(i=0;i<max;i++) {
2343 if( lct->lct_entry[i].user_tid != 0xfff){
2347 if( lct->lct_entry[i].class_id == I2O_CLASS_RANDOM_BLOCK_STORAGE ||
2348 lct->lct_entry[i].class_id == I2O_CLASS_SCSI_PERIPHERAL ||
2349 lct->lct_entry[i].class_id == I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL ){
2350 tid = lct->lct_entry[i].tid;
2351 if(adpt_i2o_query_scalar(pHba, tid, 0x8000, -1, buf, 32)<0) {
2352 printk(KERN_ERR"%s: Could not query device\n",pHba->name);
2355 bus_no = buf[0]>>16;
2357 scsi_lun = (buf[2]>>8 )&0xff;
2358 pDev = pHba->channel[bus_no].device[scsi_id];
2361 if(pDev->scsi_lun == scsi_lun) {
2364 pDev = pDev->next_lun;
2366 if(!pDev ) { // Something new add it
2367 d = kmalloc(sizeof(struct i2o_device), GFP_KERNEL);
2370 printk(KERN_CRIT "Out of memory for I2O device data.\n");
2374 d->controller = pHba;
2377 memcpy(&d->lct_data, &lct->lct_entry[i], sizeof(i2o_lct_entry));
2380 adpt_i2o_report_hba_unit(pHba, d);
2381 adpt_i2o_install_device(pHba, d);
2383 if(bus_no >= MAX_CHANNEL) { // Something wrong skip it
2384 printk(KERN_WARNING"%s: Channel number %d out of range \n", pHba->name, bus_no);
2387 pDev = pHba->channel[bus_no].device[scsi_id];
2389 pDev = kzalloc(sizeof(struct adpt_device),GFP_KERNEL);
2393 pHba->channel[bus_no].device[scsi_id] = pDev;
2395 while (pDev->next_lun) {
2396 pDev = pDev->next_lun;
2398 pDev = pDev->next_lun = kzalloc(sizeof(struct adpt_device),GFP_KERNEL);
2403 pDev->tid = d->lct_data.tid;
2404 pDev->scsi_channel = bus_no;
2405 pDev->scsi_id = scsi_id;
2406 pDev->scsi_lun = scsi_lun;
2409 pDev->type = (buf[0])&0xff;
2410 pDev->flags = (buf[0]>>8)&0xff;
2411 // Too late, SCSI system has made up it's mind, but what the hey ...
2412 if(scsi_id > pHba->top_scsi_id){
2413 pHba->top_scsi_id = scsi_id;
2415 if(scsi_lun > pHba->top_scsi_lun){
2416 pHba->top_scsi_lun = scsi_lun;
2419 } // end of new i2o device
2421 // We found an old device - check it
2423 if(pDev->scsi_lun == scsi_lun) {
2424 if(!scsi_device_online(pDev->pScsi_dev)) {
2425 printk(KERN_WARNING"%s: Setting device (%d,%d,%d) back online\n",
2426 pHba->name,bus_no,scsi_id,scsi_lun);
2427 if (pDev->pScsi_dev) {
2428 scsi_device_set_state(pDev->pScsi_dev, SDEV_RUNNING);
2432 if(d->lct_data.tid != tid) { // something changed
2434 memcpy(&d->lct_data, &lct->lct_entry[i], sizeof(i2o_lct_entry));
2435 if (pDev->pScsi_dev) {
2436 pDev->pScsi_dev->changed = TRUE;
2437 pDev->pScsi_dev->removable = TRUE;
2440 // Found it - mark it scanned
2441 pDev->state = DPTI_DEV_ONLINE;
2444 pDev = pDev->next_lun;
2448 for (pI2o_dev = pHba->devices; pI2o_dev; pI2o_dev = pI2o_dev->next) {
2449 pDev =(struct adpt_device*) pI2o_dev->owner;
2453 // Drive offline drives that previously existed but could not be found
2455 if (pDev->state & DPTI_DEV_UNSCANNED){
2456 pDev->state = DPTI_DEV_OFFLINE;
2457 printk(KERN_WARNING"%s: Device (%d,%d,%d) offline\n",pHba->name,pDev->scsi_channel,pDev->scsi_id,pDev->scsi_lun);
2458 if (pDev->pScsi_dev) {
2459 scsi_device_set_state(pDev->pScsi_dev, SDEV_OFFLINE);
2466 static void adpt_fail_posted_scbs(adpt_hba* pHba)
2468 struct scsi_cmnd* cmd = NULL;
2469 struct scsi_device* d = NULL;
2471 shost_for_each_device(d, pHba->host) {
2472 unsigned long flags;
2473 spin_lock_irqsave(&d->list_lock, flags);
2474 list_for_each_entry(cmd, &d->cmd_list, list) {
2475 if(cmd->serial_number == 0){
2478 cmd->result = (DID_OK << 16) | (QUEUE_FULL <<1);
2479 cmd->scsi_done(cmd);
2481 spin_unlock_irqrestore(&d->list_lock, flags);
2486 /*============================================================================
2487 * Routines from i2o subsystem
2488 *============================================================================
2494 * Bring an I2O controller into HOLD state. See the spec.
2496 static int adpt_i2o_activate_hba(adpt_hba* pHba)
2500 if(pHba->initialized ) {
2501 if (adpt_i2o_status_get(pHba) < 0) {
2502 if((rcode = adpt_i2o_reset_hba(pHba)) != 0){
2503 printk(KERN_WARNING"%s: Could NOT reset.\n", pHba->name);
2506 if (adpt_i2o_status_get(pHba) < 0) {
2507 printk(KERN_INFO "HBA not responding.\n");
2512 if(pHba->status_block->iop_state == ADAPTER_STATE_FAULTED) {
2513 printk(KERN_CRIT "%s: hardware fault\n", pHba->name);
2517 if (pHba->status_block->iop_state == ADAPTER_STATE_READY ||
2518 pHba->status_block->iop_state == ADAPTER_STATE_OPERATIONAL ||
2519 pHba->status_block->iop_state == ADAPTER_STATE_HOLD ||
2520 pHba->status_block->iop_state == ADAPTER_STATE_FAILED) {
2521 adpt_i2o_reset_hba(pHba);
2522 if (adpt_i2o_status_get(pHba) < 0 || pHba->status_block->iop_state != ADAPTER_STATE_RESET) {
2523 printk(KERN_ERR "%s: Failed to initialize.\n", pHba->name);
2528 if((rcode = adpt_i2o_reset_hba(pHba)) != 0){
2529 printk(KERN_WARNING"%s: Could NOT reset.\n", pHba->name);
2535 if (adpt_i2o_init_outbound_q(pHba) < 0) {
2541 if (adpt_i2o_hrt_get(pHba) < 0) {
2549 * Bring a controller online into OPERATIONAL state.
2552 static int adpt_i2o_online_hba(adpt_hba* pHba)
2554 if (adpt_i2o_systab_send(pHba) < 0) {
2555 adpt_i2o_delete_hba(pHba);
2558 /* In READY state */
2560 if (adpt_i2o_enable_hba(pHba) < 0) {
2561 adpt_i2o_delete_hba(pHba);
2565 /* In OPERATIONAL state */
2569 static s32 adpt_send_nop(adpt_hba*pHba,u32 m)
2572 ulong timeout = jiffies + 5*HZ;
2574 while(m == EMPTY_QUEUE){
2576 m = readl(pHba->post_port);
2577 if(m != EMPTY_QUEUE){
2580 if(time_after(jiffies,timeout)){
2581 printk(KERN_ERR "%s: Timeout waiting for message frame!\n",pHba->name);
2584 schedule_timeout_uninterruptible(1);
2586 msg = (u32 __iomem *)(pHba->msg_addr_virt + m);
2587 writel( THREE_WORD_MSG_SIZE | SGL_OFFSET_0,&msg[0]);
2588 writel( I2O_CMD_UTIL_NOP << 24 | HOST_TID << 12 | 0,&msg[1]);
2592 writel(m, pHba->post_port);
2597 static s32 adpt_i2o_init_outbound_q(adpt_hba* pHba)
2600 u32 __iomem *msg = NULL;
2602 ulong timeout = jiffies + TMOUT_INITOUTBOUND*HZ;
2604 u32 outbound_frame; // This had to be a 32 bit address
2609 m = readl(pHba->post_port);
2610 if (m != EMPTY_QUEUE) {
2614 if(time_after(jiffies,timeout)){
2615 printk(KERN_WARNING"%s: Timeout waiting for message frame\n",pHba->name);
2618 schedule_timeout_uninterruptible(1);
2619 } while(m == EMPTY_QUEUE);
2621 msg=(u32 __iomem *)(pHba->msg_addr_virt+m);
2623 status = kzalloc(4, GFP_KERNEL|ADDR32);
2625 adpt_send_nop(pHba, m);
2626 printk(KERN_WARNING"%s: IOP reset failed - no free memory.\n",
2631 writel(EIGHT_WORD_MSG_SIZE| SGL_OFFSET_6, &msg[0]);
2632 writel(I2O_CMD_OUTBOUND_INIT<<24 | HOST_TID<<12 | ADAPTER_TID, &msg[1]);
2634 writel(0x0106, &msg[3]); /* Transaction context */
2635 writel(4096, &msg[4]); /* Host page frame size */
2636 writel((REPLY_FRAME_SIZE)<<16|0x80, &msg[5]); /* Outbound msg frame size and Initcode */
2637 writel(0xD0000004, &msg[6]); /* Simple SG LE, EOB */
2638 writel(virt_to_bus(status), &msg[7]);
2640 writel(m, pHba->post_port);
2643 // Wait for the reply status to come back
2646 if (*status != 0x01 /*I2O_EXEC_OUTBOUND_INIT_IN_PROGRESS*/) {
2651 if(time_after(jiffies,timeout)){
2652 printk(KERN_WARNING"%s: Timeout Initializing\n",pHba->name);
2655 schedule_timeout_uninterruptible(1);
2658 // If the command was successful, fill the fifo with our reply
2660 if(*status != 0x04 /*I2O_EXEC_OUTBOUND_INIT_COMPLETE*/) {
2666 kfree(pHba->reply_pool);
2668 pHba->reply_pool = kzalloc(pHba->reply_fifo_size * REPLY_FRAME_SIZE * 4, GFP_KERNEL|ADDR32);
2669 if (!pHba->reply_pool) {
2670 printk(KERN_ERR "%s: Could not allocate reply pool\n", pHba->name);
2674 ptr = pHba->reply_pool;
2675 for(i = 0; i < pHba->reply_fifo_size; i++) {
2676 outbound_frame = (u32)virt_to_bus(ptr);
2677 writel(outbound_frame, pHba->reply_port);
2679 ptr += REPLY_FRAME_SIZE;
2681 adpt_i2o_status_get(pHba);
2687 * I2O System Table. Contains information about
2688 * all the IOPs in the system. Used to inform IOPs
2689 * about each other's existence.
2691 * sys_tbl_ver is the CurrentChangeIndicator that is
2692 * used by IOPs to track changes.
2697 static s32 adpt_i2o_status_get(adpt_hba* pHba)
2702 u8 *status_block=NULL;
2703 ulong status_block_bus;
2705 if(pHba->status_block == NULL) {
2706 pHba->status_block = (i2o_status_block*)
2707 kmalloc(sizeof(i2o_status_block),GFP_KERNEL|ADDR32);
2708 if(pHba->status_block == NULL) {
2710 "dpti%d: Get Status Block failed; Out of memory. \n",
2715 memset(pHba->status_block, 0, sizeof(i2o_status_block));
2716 status_block = (u8*)(pHba->status_block);
2717 status_block_bus = virt_to_bus(pHba->status_block);
2718 timeout = jiffies+TMOUT_GETSTATUS*HZ;
2721 m = readl(pHba->post_port);
2722 if (m != EMPTY_QUEUE) {
2725 if(time_after(jiffies,timeout)){
2726 printk(KERN_ERR "%s: Timeout waiting for message !\n",
2730 schedule_timeout_uninterruptible(1);
2731 } while(m==EMPTY_QUEUE);
2734 msg=(u32 __iomem *)(pHba->msg_addr_virt+m);
2736 writel(NINE_WORD_MSG_SIZE|SGL_OFFSET_0, &msg[0]);
2737 writel(I2O_CMD_STATUS_GET<<24|HOST_TID<<12|ADAPTER_TID, &msg[1]);
2742 writel(((u32)status_block_bus)&0xffffffff, &msg[6]);
2744 writel(sizeof(i2o_status_block), &msg[8]); // 88 bytes
2747 writel(m, pHba->post_port);
2750 while(status_block[87]!=0xff){
2751 if(time_after(jiffies,timeout)){
2752 printk(KERN_ERR"dpti%d: Get status timeout.\n",
2757 schedule_timeout_uninterruptible(1);
2760 // Set up our number of outbound and inbound messages
2761 pHba->post_fifo_size = pHba->status_block->max_inbound_frames;
2762 if (pHba->post_fifo_size > MAX_TO_IOP_MESSAGES) {
2763 pHba->post_fifo_size = MAX_TO_IOP_MESSAGES;
2766 pHba->reply_fifo_size = pHba->status_block->max_outbound_frames;
2767 if (pHba->reply_fifo_size > MAX_FROM_IOP_MESSAGES) {
2768 pHba->reply_fifo_size = MAX_FROM_IOP_MESSAGES;
2771 // Calculate the Scatter Gather list size
2772 pHba->sg_tablesize = (pHba->status_block->inbound_frame_size * 4 -40)/ sizeof(struct sg_simple_element);
2773 if (pHba->sg_tablesize > SG_LIST_ELEMENTS) {
2774 pHba->sg_tablesize = SG_LIST_ELEMENTS;
2779 printk("dpti%d: State = ",pHba->unit);
2780 switch(pHba->status_block->iop_state) {
2794 printk("OPERATIONAL\n");
2800 printk("FAULTED\n");
2803 printk("%x (unknown!!)\n",pHba->status_block->iop_state);
2810 * Get the IOP's Logical Configuration Table
2812 static int adpt_i2o_lct_get(adpt_hba* pHba)
2818 if ((pHba->lct_size == 0) || (pHba->lct == NULL)){
2819 pHba->lct_size = pHba->status_block->expected_lct_size;
2822 if (pHba->lct == NULL) {
2823 pHba->lct = kmalloc(pHba->lct_size, GFP_KERNEL|ADDR32);
2824 if(pHba->lct == NULL) {
2825 printk(KERN_CRIT "%s: Lct Get failed. Out of memory.\n",
2830 memset(pHba->lct, 0, pHba->lct_size);
2832 msg[0] = EIGHT_WORD_MSG_SIZE|SGL_OFFSET_6;
2833 msg[1] = I2O_CMD_LCT_NOTIFY<<24 | HOST_TID<<12 | ADAPTER_TID;
2836 msg[4] = 0xFFFFFFFF; /* All devices */
2837 msg[5] = 0x00000000; /* Report now */
2838 msg[6] = 0xD0000000|pHba->lct_size;
2839 msg[7] = virt_to_bus(pHba->lct);
2841 if ((ret=adpt_i2o_post_wait(pHba, msg, sizeof(msg), 360))) {
2842 printk(KERN_ERR "%s: LCT Get failed (status=%#10x.\n",
2844 printk(KERN_ERR"Adaptec: Error Reading Hardware.\n");
2848 if ((pHba->lct->table_size << 2) > pHba->lct_size) {
2849 pHba->lct_size = pHba->lct->table_size << 2;
2853 } while (pHba->lct == NULL);
2855 PDEBUG("%s: Hardware resource table read.\n", pHba->name);
2858 // I2O_DPT_EXEC_IOP_BUFFERS_GROUP_NO;
2859 if(adpt_i2o_query_scalar(pHba, 0 , 0x8000, -1, buf, sizeof(buf))>=0) {
2860 pHba->FwDebugBufferSize = buf[1];
2861 pHba->FwDebugBuffer_P = pHba->base_addr_virt + buf[0];
2862 pHba->FwDebugFlags_P = pHba->FwDebugBuffer_P + FW_DEBUG_FLAGS_OFFSET;
2863 pHba->FwDebugBLEDvalue_P = pHba->FwDebugBuffer_P + FW_DEBUG_BLED_OFFSET;
2864 pHba->FwDebugBLEDflag_P = pHba->FwDebugBLEDvalue_P + 1;
2865 pHba->FwDebugStrLength_P = pHba->FwDebugBuffer_P + FW_DEBUG_STR_LENGTH_OFFSET;
2866 pHba->FwDebugBuffer_P += buf[2];
2867 pHba->FwDebugFlags = 0;
2873 static int adpt_i2o_build_sys_table(void)
2875 adpt_hba* pHba = NULL;
2878 sys_tbl_len = sizeof(struct i2o_sys_tbl) + // Header + IOPs
2879 (hba_count) * sizeof(struct i2o_sys_tbl_entry);
2883 sys_tbl = kzalloc(sys_tbl_len, GFP_KERNEL|ADDR32);
2885 printk(KERN_WARNING "SysTab Set failed. Out of memory.\n");
2889 sys_tbl->num_entries = hba_count;
2890 sys_tbl->version = I2OVERSION;
2891 sys_tbl->change_ind = sys_tbl_ind++;
2893 for(pHba = hba_chain; pHba; pHba = pHba->next) {
2894 // Get updated Status Block so we have the latest information
2895 if (adpt_i2o_status_get(pHba)) {
2896 sys_tbl->num_entries--;
2897 continue; // try next one
2900 sys_tbl->iops[count].org_id = pHba->status_block->org_id;
2901 sys_tbl->iops[count].iop_id = pHba->unit + 2;
2902 sys_tbl->iops[count].seg_num = 0;
2903 sys_tbl->iops[count].i2o_version = pHba->status_block->i2o_version;
2904 sys_tbl->iops[count].iop_state = pHba->status_block->iop_state;
2905 sys_tbl->iops[count].msg_type = pHba->status_block->msg_type;
2906 sys_tbl->iops[count].frame_size = pHba->status_block->inbound_frame_size;
2907 sys_tbl->iops[count].last_changed = sys_tbl_ind - 1; // ??
2908 sys_tbl->iops[count].iop_capabilities = pHba->status_block->iop_capabilities;
2909 sys_tbl->iops[count].inbound_low = (u32)virt_to_bus(pHba->post_port);
2910 sys_tbl->iops[count].inbound_high = (u32)((u64)virt_to_bus(pHba->post_port)>>32);
2917 u32 *table = (u32*)sys_tbl;
2918 printk(KERN_DEBUG"sys_tbl_len=%d in 32bit words\n",(sys_tbl_len >>2));
2919 for(count = 0; count < (sys_tbl_len >>2); count++) {
2920 printk(KERN_INFO "sys_tbl[%d] = %0#10x\n",
2921 count, table[count]);
2931 * Dump the information block associated with a given unit (TID)
2934 static void adpt_i2o_report_hba_unit(adpt_hba* pHba, struct i2o_device *d)
2937 int unit = d->lct_data.tid;
2939 printk(KERN_INFO "TID %3.3d ", unit);
2941 if(adpt_i2o_query_scalar(pHba, unit, 0xF100, 3, buf, 16)>=0)
2944 printk(" Vendor: %-12.12s", buf);
2946 if(adpt_i2o_query_scalar(pHba, unit, 0xF100, 4, buf, 16)>=0)
2949 printk(" Device: %-12.12s", buf);
2951 if(adpt_i2o_query_scalar(pHba, unit, 0xF100, 6, buf, 8)>=0)
2954 printk(" Rev: %-12.12s\n", buf);
2957 printk(KERN_INFO "\tClass: %.21s\n", adpt_i2o_get_class_name(d->lct_data.class_id));
2958 printk(KERN_INFO "\tSubclass: 0x%04X\n", d->lct_data.sub_class);
2959 printk(KERN_INFO "\tFlags: ");
2961 if(d->lct_data.device_flags&(1<<0))
2962 printk("C"); // ConfigDialog requested
2963 if(d->lct_data.device_flags&(1<<1))
2964 printk("U"); // Multi-user capable
2965 if(!(d->lct_data.device_flags&(1<<4)))
2966 printk("P"); // Peer service enabled!
2967 if(!(d->lct_data.device_flags&(1<<5)))
2968 printk("M"); // Mgmt service enabled!
2975 * Do i2o class name lookup
2977 static const char *adpt_i2o_get_class_name(int class)
2980 static char *i2o_class_name[] = {
2982 "Device Driver Module",
2987 "Fibre Channel Port",
2988 "Fibre Channel Device",
2992 "Floppy Controller",
2994 "Secondary Bus Port",
2995 "Peer Transport Agent",
3000 switch(class&0xFFF) {
3001 case I2O_CLASS_EXECUTIVE:
3005 case I2O_CLASS_RANDOM_BLOCK_STORAGE:
3007 case I2O_CLASS_SEQUENTIAL_STORAGE:
3013 case I2O_CLASS_FIBRE_CHANNEL_PORT:
3015 case I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL:
3017 case I2O_CLASS_SCSI_PERIPHERAL:
3019 case I2O_CLASS_ATE_PORT:
3021 case I2O_CLASS_ATE_PERIPHERAL:
3023 case I2O_CLASS_FLOPPY_CONTROLLER:
3025 case I2O_CLASS_FLOPPY_DEVICE:
3027 case I2O_CLASS_BUS_ADAPTER_PORT:
3029 case I2O_CLASS_PEER_TRANSPORT_AGENT:
3031 case I2O_CLASS_PEER_TRANSPORT:
3034 return i2o_class_name[idx];
3039 static s32 adpt_i2o_hrt_get(adpt_hba* pHba)
3042 int ret, size = sizeof(i2o_hrt);
3045 if (pHba->hrt == NULL) {
3046 pHba->hrt=kmalloc(size, GFP_KERNEL|ADDR32);
3047 if (pHba->hrt == NULL) {
3048 printk(KERN_CRIT "%s: Hrt Get failed; Out of memory.\n", pHba->name);
3053 msg[0]= SIX_WORD_MSG_SIZE| SGL_OFFSET_4;
3054 msg[1]= I2O_CMD_HRT_GET<<24 | HOST_TID<<12 | ADAPTER_TID;
3057 msg[4]= (0xD0000000 | size); /* Simple transaction */
3058 msg[5]= virt_to_bus(pHba->hrt); /* Dump it here */
3060 if ((ret = adpt_i2o_post_wait(pHba, msg, sizeof(msg),20))) {
3061 printk(KERN_ERR "%s: Unable to get HRT (status=%#10x)\n", pHba->name, ret);
3065 if (pHba->hrt->num_entries * pHba->hrt->entry_len << 2 > size) {
3066 size = pHba->hrt->num_entries * pHba->hrt->entry_len << 2;
3070 } while(pHba->hrt == NULL);
3075 * Query one scalar group value or a whole scalar group.
3077 static int adpt_i2o_query_scalar(adpt_hba* pHba, int tid,
3078 int group, int field, void *buf, int buflen)
3080 u16 opblk[] = { 1, 0, I2O_PARAMS_FIELD_GET, group, 1, field };
3085 /* 8 bytes for header */
3086 resblk = kmalloc(sizeof(u8) * (8+buflen), GFP_KERNEL|ADDR32);
3087 if (resblk == NULL) {
3088 printk(KERN_CRIT "%s: query scalar failed; Out of memory.\n", pHba->name);
3092 if (field == -1) /* whole group */
3095 size = adpt_i2o_issue_params(I2O_CMD_UTIL_PARAMS_GET, pHba, tid,
3096 opblk, sizeof(opblk), resblk, sizeof(u8)*(8+buflen));
3097 if (size == -ETIME) {
3098 printk(KERN_WARNING "%s: issue params failed; Timed out.\n", pHba->name);
3100 } else if (size == -EINTR) {
3101 printk(KERN_WARNING "%s: issue params failed; Interrupted.\n", pHba->name);
3105 memcpy(buf, resblk+8, buflen); /* cut off header */
3115 /* Issue UTIL_PARAMS_GET or UTIL_PARAMS_SET
3117 * This function can be used for all UtilParamsGet/Set operations.
3118 * The OperationBlock is given in opblk-buffer,
3119 * and results are returned in resblk-buffer.
3120 * Note that the minimum sized resblk is 8 bytes and contains
3121 * ResultCount, ErrorInfoSize, BlockStatus and BlockSize.
3123 static int adpt_i2o_issue_params(int cmd, adpt_hba* pHba, int tid,
3124 void *opblk, int oplen, void *resblk, int reslen)
3127 u32 *res = (u32 *)resblk;
3130 msg[0] = NINE_WORD_MSG_SIZE | SGL_OFFSET_5;
3131 msg[1] = cmd << 24 | HOST_TID << 12 | tid;
3135 msg[5] = 0x54000000 | oplen; /* OperationBlock */
3136 msg[6] = virt_to_bus(opblk);
3137 msg[7] = 0xD0000000 | reslen; /* ResultBlock */
3138 msg[8] = virt_to_bus(resblk);
3140 if ((wait_status = adpt_i2o_post_wait(pHba, msg, sizeof(msg), 20))) {
3141 printk("adpt_i2o_issue_params: post_wait failed (%p)\n", resblk);
3142 return wait_status; /* -DetailedStatus */
3145 if (res[1]&0x00FF0000) { /* BlockStatus != SUCCESS */
3146 printk(KERN_WARNING "%s: %s - Error:\n ErrorInfoSize = 0x%02x, "
3147 "BlockStatus = 0x%02x, BlockSize = 0x%04x\n",
3149 (cmd == I2O_CMD_UTIL_PARAMS_SET) ? "PARAMS_SET"
3151 res[1]>>24, (res[1]>>16)&0xFF, res[1]&0xFFFF);
3152 return -((res[1] >> 16) & 0xFF); /* -BlockStatus */
3155 return 4 + ((res[1] & 0x0000FFFF) << 2); /* bytes used in resblk */
3159 static s32 adpt_i2o_quiesce_hba(adpt_hba* pHba)
3164 adpt_i2o_status_get(pHba);
3166 /* SysQuiesce discarded if IOP not in READY or OPERATIONAL state */
3168 if((pHba->status_block->iop_state != ADAPTER_STATE_READY) &&
3169 (pHba->status_block->iop_state != ADAPTER_STATE_OPERATIONAL)){
3173 msg[0] = FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
3174 msg[1] = I2O_CMD_SYS_QUIESCE<<24|HOST_TID<<12|ADAPTER_TID;
3178 if((ret = adpt_i2o_post_wait(pHba, msg, sizeof(msg), 240))) {
3179 printk(KERN_INFO"dpti%d: Unable to quiesce (status=%#x).\n",
3182 printk(KERN_INFO"dpti%d: Quiesced.\n",pHba->unit);
3185 adpt_i2o_status_get(pHba);
3191 * Enable IOP. Allows the IOP to resume external operations.
3193 static int adpt_i2o_enable_hba(adpt_hba* pHba)
3198 adpt_i2o_status_get(pHba);
3199 if(!pHba->status_block){
3202 /* Enable only allowed on READY state */
3203 if(pHba->status_block->iop_state == ADAPTER_STATE_OPERATIONAL)
3206 if(pHba->status_block->iop_state != ADAPTER_STATE_READY)
3209 msg[0]=FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
3210 msg[1]=I2O_CMD_SYS_ENABLE<<24|HOST_TID<<12|ADAPTER_TID;
3214 if ((ret = adpt_i2o_post_wait(pHba, msg, sizeof(msg), 240))) {
3215 printk(KERN_WARNING"%s: Could not enable (status=%#10x).\n",
3218 PDEBUG("%s: Enabled.\n", pHba->name);
3221 adpt_i2o_status_get(pHba);
3226 static int adpt_i2o_systab_send(adpt_hba* pHba)
3231 msg[0] = I2O_MESSAGE_SIZE(12) | SGL_OFFSET_6;
3232 msg[1] = I2O_CMD_SYS_TAB_SET<<24 | HOST_TID<<12 | ADAPTER_TID;
3235 msg[4] = (0<<16) | ((pHba->unit+2) << 12); /* Host 0 IOP ID (unit + 2) */
3236 msg[5] = 0; /* Segment 0 */
3239 * Provide three SGL-elements:
3240 * System table (SysTab), Private memory space declaration and
3241 * Private i/o space declaration
3243 msg[6] = 0x54000000 | sys_tbl_len;
3244 msg[7] = virt_to_phys(sys_tbl);
3245 msg[8] = 0x54000000 | 0;
3247 msg[10] = 0xD4000000 | 0;
3250 if ((ret=adpt_i2o_post_wait(pHba, msg, sizeof(msg), 120))) {
3251 printk(KERN_INFO "%s: Unable to set SysTab (status=%#10x).\n",
3256 PINFO("%s: SysTab set.\n", pHba->name);
3264 /*============================================================================
3266 *============================================================================
3272 static static void adpt_delay(int millisec)
3275 for (i = 0; i < millisec; i++) {
3276 udelay(1000); /* delay for one millisecond */
3282 static struct scsi_host_template adpt_template = {
3284 .proc_name = "dpt_i2o",
3285 .proc_info = adpt_proc_info,
3287 .queuecommand = adpt_queue,
3288 .eh_abort_handler = adpt_abort,
3289 .eh_device_reset_handler = adpt_device_reset,
3290 .eh_bus_reset_handler = adpt_bus_reset,
3291 .eh_host_reset_handler = adpt_reset,
3292 .bios_param = adpt_bios_param,
3293 .slave_configure = adpt_slave_configure,
3294 .can_queue = MAX_TO_IOP_MESSAGES,
3297 .use_clustering = ENABLE_CLUSTERING,
3298 .use_sg_chaining = ENABLE_SG_CHAINING,
3301 static s32 adpt_scsi_register(adpt_hba* pHba)
3303 struct Scsi_Host *host;
3305 host = scsi_host_alloc(&adpt_template, sizeof(adpt_hba*));
3307 printk ("%s: scsi_host_alloc returned NULL\n",pHba->name);
3310 host->hostdata[0] = (unsigned long)pHba;
3313 host->irq = pHba->pDev->irq;
3314 /* no IO ports, so don't have to set host->io_port and
3318 host->n_io_port = 0;
3319 /* see comments in scsi_host.h */
3321 host->max_lun = 256;
3322 host->max_channel = pHba->top_scsi_channel + 1;
3323 host->cmd_per_lun = 1;
3324 host->unique_id = (uint) pHba;
3325 host->sg_tablesize = pHba->sg_tablesize;
3326 host->can_queue = pHba->post_fifo_size;
3328 if (scsi_add_host(host, &pHba->pDev->dev)) {
3329 scsi_host_put(host);
3336 static int __init adpt_init(void)
3340 printk("Loading Adaptec I2O RAID: Version " DPT_I2O_VERSION "\n");
3341 #ifdef REBOOT_NOTIFIER
3342 register_reboot_notifier(&adpt_reboot_notifier);
3345 count = adpt_detect();
3347 return count > 0 ? 0 : -ENODEV;
3350 static void adpt_exit(void)
3353 adpt_release(hba_chain);
3356 module_init(adpt_init);
3357 module_exit(adpt_exit);
3358 MODULE_LICENSE("GPL");