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 #include <linux/module.h>
34 MODULE_AUTHOR("Deanna Bonds, with _lots_ of help from Mark Salyzyn");
35 MODULE_DESCRIPTION("Adaptec I2O RAID Driver");
37 ////////////////////////////////////////////////////////////////
39 #include <linux/ioctl.h> /* For SCSI-Passthrough */
40 #include <asm/uaccess.h>
42 #include <linux/stat.h>
43 #include <linux/slab.h> /* for kmalloc() */
44 #include <linux/pci.h> /* for PCI support */
45 #include <linux/proc_fs.h>
46 #include <linux/blkdev.h>
47 #include <linux/delay.h> /* for udelay */
48 #include <linux/interrupt.h>
49 #include <linux/kernel.h> /* for printk */
50 #include <linux/sched.h>
51 #include <linux/reboot.h>
52 #include <linux/spinlock.h>
53 #include <linux/dma-mapping.h>
55 #include <linux/timer.h>
56 #include <linux/string.h>
57 #include <linux/ioport.h>
58 #include <linux/mutex.h>
60 #include <asm/processor.h> /* for boot_cpu_data */
61 #include <asm/pgtable.h>
62 #include <asm/io.h> /* for virt_to_bus, etc. */
64 #include <scsi/scsi.h>
65 #include <scsi/scsi_cmnd.h>
66 #include <scsi/scsi_device.h>
67 #include <scsi/scsi_host.h>
68 #include <scsi/scsi_tcq.h>
70 #include "dpt/dptsig.h"
73 /*============================================================================
74 * Create a binary signature - this is read by dptsig
75 * Needed for our management apps
76 *============================================================================
78 static DEFINE_MUTEX(adpt_mutex);
79 static dpt_sig_S DPTI_sig = {
80 {'d', 'P', 't', 'S', 'i', 'G'}, SIG_VERSION,
82 PROC_INTEL, PROC_386 | PROC_486 | PROC_PENTIUM | PROC_SEXIUM,
83 #elif defined(__ia64__)
84 PROC_INTEL, PROC_IA64,
85 #elif defined(__sparc__)
86 PROC_ULTRASPARC, PROC_ULTRASPARC,
87 #elif defined(__alpha__)
88 PROC_ALPHA, PROC_ALPHA,
92 FT_HBADRVR, 0, OEM_DPT, OS_LINUX, CAP_OVERLAP, DEV_ALL,
93 ADF_ALL_SC5, 0, 0, DPT_VERSION, DPT_REVISION, DPT_SUBREVISION,
94 DPT_MONTH, DPT_DAY, DPT_YEAR, "Adaptec Linux I2O RAID Driver"
100 /*============================================================================
102 *============================================================================
105 static DEFINE_MUTEX(adpt_configuration_lock);
107 static struct i2o_sys_tbl *sys_tbl;
108 static dma_addr_t sys_tbl_pa;
109 static int sys_tbl_ind;
110 static int sys_tbl_len;
112 static adpt_hba* hba_chain = NULL;
113 static int hba_count = 0;
115 static struct class *adpt_sysfs_class;
117 static long adpt_unlocked_ioctl(struct file *, unsigned int, unsigned long);
119 static long compat_adpt_ioctl(struct file *, unsigned int, unsigned long);
122 static const struct file_operations adpt_fops = {
123 .unlocked_ioctl = adpt_unlocked_ioctl,
125 .release = adpt_close,
127 .compat_ioctl = compat_adpt_ioctl,
129 .llseek = noop_llseek,
132 /* Structures and definitions for synchronous message posting.
133 * See adpt_i2o_post_wait() for description
135 struct adpt_i2o_post_wait_data
139 adpt_wait_queue_head_t *wq;
140 struct adpt_i2o_post_wait_data *next;
143 static struct adpt_i2o_post_wait_data *adpt_post_wait_queue = NULL;
144 static u32 adpt_post_wait_id = 0;
145 static DEFINE_SPINLOCK(adpt_post_wait_lock);
148 /*============================================================================
150 *============================================================================
153 static inline int dpt_dma64(adpt_hba *pHba)
155 return (sizeof(dma_addr_t) > 4 && (pHba)->dma64);
158 static inline u32 dma_high(dma_addr_t addr)
160 return upper_32_bits(addr);
163 static inline u32 dma_low(dma_addr_t addr)
168 static u8 adpt_read_blink_led(adpt_hba* host)
170 if (host->FwDebugBLEDflag_P) {
171 if( readb(host->FwDebugBLEDflag_P) == 0xbc ){
172 return readb(host->FwDebugBLEDvalue_P);
178 /*============================================================================
179 * Scsi host template interface functions
180 *============================================================================
183 static struct pci_device_id dptids[] = {
184 { PCI_DPT_VENDOR_ID, PCI_DPT_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
185 { PCI_DPT_VENDOR_ID, PCI_DPT_RAPTOR_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
188 MODULE_DEVICE_TABLE(pci,dptids);
190 static int adpt_detect(struct scsi_host_template* sht)
192 struct pci_dev *pDev = NULL;
196 PINFO("Detecting Adaptec I2O RAID controllers...\n");
198 /* search for all Adatpec I2O RAID cards */
199 while ((pDev = pci_get_device( PCI_DPT_VENDOR_ID, PCI_ANY_ID, pDev))) {
200 if(pDev->device == PCI_DPT_DEVICE_ID ||
201 pDev->device == PCI_DPT_RAPTOR_DEVICE_ID){
202 if(adpt_install_hba(sht, pDev) ){
203 PERROR("Could not Init an I2O RAID device\n");
204 PERROR("Will not try to detect others.\n");
211 /* In INIT state, Activate IOPs */
212 for (pHba = hba_chain; pHba; pHba = next) {
214 // Activate does get status , init outbound, and get hrt
215 if (adpt_i2o_activate_hba(pHba) < 0) {
216 adpt_i2o_delete_hba(pHba);
221 /* Active IOPs in HOLD state */
224 if (hba_chain == NULL)
228 * If build_sys_table fails, we kill everything and bail
229 * as we can't init the IOPs w/o a system table
231 if (adpt_i2o_build_sys_table() < 0) {
232 adpt_i2o_sys_shutdown();
236 PDEBUG("HBA's in HOLD state\n");
238 /* If IOP don't get online, we need to rebuild the System table */
239 for (pHba = hba_chain; pHba; pHba = pHba->next) {
240 if (adpt_i2o_online_hba(pHba) < 0) {
241 adpt_i2o_delete_hba(pHba);
242 goto rebuild_sys_tab;
246 /* Active IOPs now in OPERATIONAL state */
247 PDEBUG("HBA's in OPERATIONAL state\n");
249 printk("dpti: If you have a lot of devices this could take a few minutes.\n");
250 for (pHba = hba_chain; pHba; pHba = next) {
252 printk(KERN_INFO"%s: Reading the hardware resource table.\n", pHba->name);
253 if (adpt_i2o_lct_get(pHba) < 0){
254 adpt_i2o_delete_hba(pHba);
258 if (adpt_i2o_parse_lct(pHba) < 0){
259 adpt_i2o_delete_hba(pHba);
265 adpt_sysfs_class = class_create(THIS_MODULE, "dpt_i2o");
266 if (IS_ERR(adpt_sysfs_class)) {
267 printk(KERN_WARNING"dpti: unable to create dpt_i2o class\n");
268 adpt_sysfs_class = NULL;
271 for (pHba = hba_chain; pHba; pHba = next) {
273 if (adpt_scsi_host_alloc(pHba, sht) < 0){
274 adpt_i2o_delete_hba(pHba);
277 pHba->initialized = TRUE;
278 pHba->state &= ~DPTI_STATE_RESET;
279 if (adpt_sysfs_class) {
280 struct device *dev = device_create(adpt_sysfs_class,
281 NULL, MKDEV(DPTI_I2O_MAJOR, pHba->unit), NULL,
282 "dpti%d", pHba->unit);
284 printk(KERN_WARNING"dpti%d: unable to "
285 "create device in dpt_i2o class\n",
291 // Register our control device node
292 // nodes will need to be created in /dev to access this
293 // the nodes can not be created from within the driver
294 if (hba_count && register_chrdev(DPTI_I2O_MAJOR, DPT_DRIVER, &adpt_fops)) {
295 adpt_i2o_sys_shutdown();
303 * scsi_unregister will be called AFTER we return.
305 static int adpt_release(struct Scsi_Host *host)
307 adpt_hba* pHba = (adpt_hba*) host->hostdata[0];
308 // adpt_i2o_quiesce_hba(pHba);
309 adpt_i2o_delete_hba(pHba);
310 scsi_unregister(host);
315 static void adpt_inquiry(adpt_hba* pHba)
329 memset(msg, 0, sizeof(msg));
330 buf = dma_alloc_coherent(&pHba->pDev->dev, 80, &addr, GFP_KERNEL);
332 printk(KERN_ERR"%s: Could not allocate buffer\n",pHba->name);
335 memset((void*)buf, 0, 36);
338 direction = 0x00000000;
339 scsidir =0x40000000; // DATA IN (iop<--dev)
342 reqlen = 17; // SINGLE SGE, 64 bit
344 reqlen = 14; // SINGLE SGE, 32 bit
345 /* Stick the headers on */
346 msg[0] = reqlen<<16 | SGL_OFFSET_12;
347 msg[1] = (0xff<<24|HOST_TID<<12|ADAPTER_TID);
350 // Adaptec/DPT Private stuff
351 msg[4] = I2O_CMD_SCSI_EXEC|DPT_ORGANIZATION_ID<<16;
352 msg[5] = ADAPTER_TID | 1<<16 /* Interpret*/;
353 /* Direction, disconnect ok | sense data | simple queue , CDBLen */
354 // I2O_SCB_FLAG_ENABLE_DISCONNECT |
355 // I2O_SCB_FLAG_SIMPLE_QUEUE_TAG |
356 // I2O_SCB_FLAG_SENSE_DATA_IN_MESSAGE;
357 msg[6] = scsidir|0x20a00000| 6 /* cmd len*/;
361 memset(scb, 0, sizeof(scb));
362 // Write SCSI command into the message - always 16 byte block
369 // Don't care about the rest of scb
371 memcpy(mptr, scb, sizeof(scb));
373 lenptr=mptr++; /* Remember me - fill in when we know */
375 /* Now fill in the SGList and command */
377 if (dpt_dma64(pHba)) {
378 *mptr++ = (0x7C<<24)+(2<<16)+0x02; /* Enable 64 bit */
379 *mptr++ = 1 << PAGE_SHIFT;
380 *mptr++ = 0xD0000000|direction|len;
381 *mptr++ = dma_low(addr);
382 *mptr++ = dma_high(addr);
384 *mptr++ = 0xD0000000|direction|len;
388 // Send it on it's way
389 rcode = adpt_i2o_post_wait(pHba, msg, reqlen<<2, 120);
391 sprintf(pHba->detail, "Adaptec I2O RAID");
392 printk(KERN_INFO "%s: Inquiry Error (%d)\n",pHba->name,rcode);
393 if (rcode != -ETIME && rcode != -EINTR)
394 dma_free_coherent(&pHba->pDev->dev, 80, buf, addr);
396 memset(pHba->detail, 0, sizeof(pHba->detail));
397 memcpy(&(pHba->detail), "Vendor: Adaptec ", 16);
398 memcpy(&(pHba->detail[16]), " Model: ", 8);
399 memcpy(&(pHba->detail[24]), (u8*) &buf[16], 16);
400 memcpy(&(pHba->detail[40]), " FW: ", 4);
401 memcpy(&(pHba->detail[44]), (u8*) &buf[32], 4);
402 pHba->detail[48] = '\0'; /* precautionary */
403 dma_free_coherent(&pHba->pDev->dev, 80, buf, addr);
405 adpt_i2o_status_get(pHba);
410 static int adpt_slave_configure(struct scsi_device * device)
412 struct Scsi_Host *host = device->host;
415 pHba = (adpt_hba *) host->hostdata[0];
417 if (host->can_queue && device->tagged_supported) {
418 scsi_adjust_queue_depth(device, MSG_SIMPLE_TAG,
419 host->can_queue - 1);
421 scsi_adjust_queue_depth(device, 0, 1);
426 static int adpt_queue_lck(struct scsi_cmnd * cmd, void (*done) (struct scsi_cmnd *))
428 adpt_hba* pHba = NULL;
429 struct adpt_device* pDev = NULL; /* dpt per device information */
431 cmd->scsi_done = done;
433 * SCSI REQUEST_SENSE commands will be executed automatically by the
434 * Host Adapter for any errors, so they should not be executed
435 * explicitly unless the Sense Data is zero indicating that no error
439 if ((cmd->cmnd[0] == REQUEST_SENSE) && (cmd->sense_buffer[0] != 0)) {
440 cmd->result = (DID_OK << 16);
445 pHba = (adpt_hba*)cmd->device->host->hostdata[0];
452 * TODO: I need to block here if I am processing ioctl cmds
453 * but if the outstanding cmds all finish before the ioctl,
454 * the scsi-core will not know to start sending cmds to me again.
455 * I need to a way to restart the scsi-cores queues or should I block
456 * calling scsi_done on the outstanding cmds instead
457 * for now we don't set the IOCTL state
459 if(((pHba->state) & DPTI_STATE_IOCTL) || ((pHba->state) & DPTI_STATE_RESET)) {
460 pHba->host->last_reset = jiffies;
461 pHba->host->resetting = 1;
465 // TODO if the cmd->device if offline then I may need to issue a bus rescan
466 // followed by a get_lct to see if the device is there anymore
467 if((pDev = (struct adpt_device*) (cmd->device->hostdata)) == NULL) {
469 * First command request for this device. Set up a pointer
470 * to the device structure. This should be a TEST_UNIT_READY
471 * command from scan_scsis_single.
473 if ((pDev = adpt_find_device(pHba, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun)) == NULL) {
474 // TODO: if any luns are at this bus, scsi id then fake a TEST_UNIT_READY and INQUIRY response
475 // with type 7F (for all luns less than the max for this bus,id) so the lun scan will continue.
476 cmd->result = (DID_NO_CONNECT << 16);
480 cmd->device->hostdata = pDev;
482 pDev->pScsi_dev = cmd->device;
485 * If we are being called from when the device is being reset,
486 * delay processing of the command until later.
488 if (pDev->state & DPTI_DEV_RESET ) {
491 return adpt_scsi_to_i2o(pHba, cmd, pDev);
494 static DEF_SCSI_QCMD(adpt_queue)
496 static int adpt_bios_param(struct scsi_device *sdev, struct block_device *dev,
497 sector_t capacity, int geom[])
503 // *** First lets set the default geometry ****
505 // If the capacity is less than ox2000
506 if (capacity < 0x2000 ) { // floppy
510 // else if between 0x2000 and 0x20000
511 else if (capacity < 0x20000) {
515 // else if between 0x20000 and 0x40000
516 else if (capacity < 0x40000) {
520 // else if between 0x4000 and 0x80000
521 else if (capacity < 0x80000) {
525 // else if greater than 0x80000
530 cylinders = sector_div(capacity, heads * sectors);
532 // Special case if CDROM
533 if(sdev->type == 5) { // CDROM
543 PDEBUG("adpt_bios_param: exit\n");
548 static const char *adpt_info(struct Scsi_Host *host)
552 pHba = (adpt_hba *) host->hostdata[0];
553 return (char *) (pHba->detail);
556 static int adpt_show_info(struct seq_file *m, struct Scsi_Host *host)
558 struct adpt_device* d;
564 // Find HBA (host bus adapter) we are looking for
565 mutex_lock(&adpt_configuration_lock);
566 for (pHba = hba_chain; pHba; pHba = pHba->next) {
567 if (pHba->host == host) {
568 break; /* found adapter */
571 mutex_unlock(&adpt_configuration_lock);
577 seq_printf(m, "Adaptec I2O RAID Driver Version: %s\n\n", DPT_I2O_VERSION);
578 seq_printf(m, "%s\n", pHba->detail);
579 seq_printf(m, "SCSI Host=scsi%d Control Node=/dev/%s irq=%d\n",
580 pHba->host->host_no, pHba->name, host->irq);
581 seq_printf(m, "\tpost fifo size = %d\n\treply fifo size = %d\n\tsg table size = %d\n\n",
582 host->can_queue, (int) pHba->reply_fifo_size , host->sg_tablesize);
584 seq_printf(m, "Devices:\n");
585 for(chan = 0; chan < MAX_CHANNEL; chan++) {
586 for(id = 0; id < MAX_ID; id++) {
587 d = pHba->channel[chan].device[id];
589 seq_printf(m,"\t%-24.24s", d->pScsi_dev->vendor);
590 seq_printf(m," Rev: %-8.8s\n", d->pScsi_dev->rev);
592 unit = d->pI2o_dev->lct_data.tid;
593 seq_printf(m, "\tTID=%d, (Channel=%d, Target=%d, Lun=%d) (%s)\n\n",
594 unit, (int)d->scsi_channel, (int)d->scsi_id, (int)d->scsi_lun,
595 scsi_device_online(d->pScsi_dev)? "online":"offline");
604 * Turn a struct scsi_cmnd * into a unique 32 bit 'context'.
606 static u32 adpt_cmd_to_context(struct scsi_cmnd *cmd)
608 return (u32)cmd->serial_number;
612 * Go from a u32 'context' to a struct scsi_cmnd * .
613 * This could probably be made more efficient.
615 static struct scsi_cmnd *
616 adpt_cmd_from_context(adpt_hba * pHba, u32 context)
618 struct scsi_cmnd * cmd;
619 struct scsi_device * d;
624 spin_unlock(pHba->host->host_lock);
625 shost_for_each_device(d, pHba->host) {
627 spin_lock_irqsave(&d->list_lock, flags);
628 list_for_each_entry(cmd, &d->cmd_list, list) {
629 if (((u32)cmd->serial_number == context)) {
630 spin_unlock_irqrestore(&d->list_lock, flags);
632 spin_lock(pHba->host->host_lock);
636 spin_unlock_irqrestore(&d->list_lock, flags);
638 spin_lock(pHba->host->host_lock);
644 * Turn a pointer to ioctl reply data into an u32 'context'
646 static u32 adpt_ioctl_to_context(adpt_hba * pHba, void *reply)
648 #if BITS_PER_LONG == 32
649 return (u32)(unsigned long)reply;
654 spin_lock_irqsave(pHba->host->host_lock, flags);
655 nr = ARRAY_SIZE(pHba->ioctl_reply_context);
656 for (i = 0; i < nr; i++) {
657 if (pHba->ioctl_reply_context[i] == NULL) {
658 pHba->ioctl_reply_context[i] = reply;
662 spin_unlock_irqrestore(pHba->host->host_lock, flags);
665 printk(KERN_WARNING"%s: Too many outstanding "
666 "ioctl commands\n", pHba->name);
675 * Go from an u32 'context' to a pointer to ioctl reply data.
677 static void *adpt_ioctl_from_context(adpt_hba *pHba, u32 context)
679 #if BITS_PER_LONG == 32
680 return (void *)(unsigned long)context;
682 void *p = pHba->ioctl_reply_context[context];
683 pHba->ioctl_reply_context[context] = NULL;
689 /*===========================================================================
690 * Error Handling routines
691 *===========================================================================
694 static int adpt_abort(struct scsi_cmnd * cmd)
696 adpt_hba* pHba = NULL; /* host bus adapter structure */
697 struct adpt_device* dptdevice; /* dpt per device information */
701 if(cmd->serial_number == 0){
704 pHba = (adpt_hba*) cmd->device->host->hostdata[0];
705 printk(KERN_INFO"%s: Trying to Abort\n",pHba->name);
706 if ((dptdevice = (void*) (cmd->device->hostdata)) == NULL) {
707 printk(KERN_ERR "%s: Unable to abort: No device in cmnd\n",pHba->name);
711 memset(msg, 0, sizeof(msg));
712 msg[0] = FIVE_WORD_MSG_SIZE|SGL_OFFSET_0;
713 msg[1] = I2O_CMD_SCSI_ABORT<<24|HOST_TID<<12|dptdevice->tid;
716 msg[4] = adpt_cmd_to_context(cmd);
718 spin_lock_irq(pHba->host->host_lock);
719 rcode = adpt_i2o_post_wait(pHba, msg, sizeof(msg), FOREVER);
721 spin_unlock_irq(pHba->host->host_lock);
723 if(rcode == -EOPNOTSUPP ){
724 printk(KERN_INFO"%s: Abort cmd not supported\n",pHba->name);
727 printk(KERN_INFO"%s: Abort failed.\n",pHba->name);
730 printk(KERN_INFO"%s: Abort complete.\n",pHba->name);
735 #define I2O_DEVICE_RESET 0x27
736 // This is the same for BLK and SCSI devices
737 // NOTE this is wrong in the i2o.h definitions
738 // This is not currently supported by our adapter but we issue it anyway
739 static int adpt_device_reset(struct scsi_cmnd* cmd)
745 struct adpt_device* d = cmd->device->hostdata;
747 pHba = (void*) cmd->device->host->hostdata[0];
748 printk(KERN_INFO"%s: Trying to reset device\n",pHba->name);
750 printk(KERN_INFO"%s: Reset Device: Device Not found\n",pHba->name);
753 memset(msg, 0, sizeof(msg));
754 msg[0] = FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
755 msg[1] = (I2O_DEVICE_RESET<<24|HOST_TID<<12|d->tid);
760 spin_lock_irq(pHba->host->host_lock);
761 old_state = d->state;
762 d->state |= DPTI_DEV_RESET;
763 rcode = adpt_i2o_post_wait(pHba, msg,sizeof(msg), FOREVER);
764 d->state = old_state;
766 spin_unlock_irq(pHba->host->host_lock);
768 if(rcode == -EOPNOTSUPP ){
769 printk(KERN_INFO"%s: Device reset not supported\n",pHba->name);
772 printk(KERN_INFO"%s: Device reset failed\n",pHba->name);
775 printk(KERN_INFO"%s: Device reset successful\n",pHba->name);
781 #define I2O_HBA_BUS_RESET 0x87
782 // This version of bus reset is called by the eh_error handler
783 static int adpt_bus_reset(struct scsi_cmnd* cmd)
789 pHba = (adpt_hba*)cmd->device->host->hostdata[0];
790 memset(msg, 0, sizeof(msg));
791 printk(KERN_WARNING"%s: Bus reset: SCSI Bus %d: tid: %d\n",pHba->name, cmd->device->channel,pHba->channel[cmd->device->channel].tid );
792 msg[0] = FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
793 msg[1] = (I2O_HBA_BUS_RESET<<24|HOST_TID<<12|pHba->channel[cmd->device->channel].tid);
797 spin_lock_irq(pHba->host->host_lock);
798 rcode = adpt_i2o_post_wait(pHba, msg,sizeof(msg), FOREVER);
800 spin_unlock_irq(pHba->host->host_lock);
802 printk(KERN_WARNING"%s: Bus reset failed.\n",pHba->name);
805 printk(KERN_WARNING"%s: Bus reset success.\n",pHba->name);
810 // This version of reset is called by the eh_error_handler
811 static int __adpt_reset(struct scsi_cmnd* cmd)
815 pHba = (adpt_hba*)cmd->device->host->hostdata[0];
816 printk(KERN_WARNING"%s: Hba Reset: scsi id %d: tid: %d\n",pHba->name,cmd->device->channel,pHba->channel[cmd->device->channel].tid );
817 rcode = adpt_hba_reset(pHba);
819 printk(KERN_WARNING"%s: HBA reset complete\n",pHba->name);
822 printk(KERN_WARNING"%s: HBA reset failed (%x)\n",pHba->name, rcode);
827 static int adpt_reset(struct scsi_cmnd* cmd)
831 spin_lock_irq(cmd->device->host->host_lock);
832 rc = __adpt_reset(cmd);
833 spin_unlock_irq(cmd->device->host->host_lock);
838 // This version of reset is called by the ioctls and indirectly from eh_error_handler via adpt_reset
839 static int adpt_hba_reset(adpt_hba* pHba)
843 pHba->state |= DPTI_STATE_RESET;
845 // Activate does get status , init outbound, and get hrt
846 if ((rcode=adpt_i2o_activate_hba(pHba)) < 0) {
847 printk(KERN_ERR "%s: Could not activate\n", pHba->name);
848 adpt_i2o_delete_hba(pHba);
852 if ((rcode=adpt_i2o_build_sys_table()) < 0) {
853 adpt_i2o_delete_hba(pHba);
856 PDEBUG("%s: in HOLD state\n",pHba->name);
858 if ((rcode=adpt_i2o_online_hba(pHba)) < 0) {
859 adpt_i2o_delete_hba(pHba);
862 PDEBUG("%s: in OPERATIONAL state\n",pHba->name);
864 if ((rcode=adpt_i2o_lct_get(pHba)) < 0){
865 adpt_i2o_delete_hba(pHba);
869 if ((rcode=adpt_i2o_reparse_lct(pHba)) < 0){
870 adpt_i2o_delete_hba(pHba);
873 pHba->state &= ~DPTI_STATE_RESET;
875 adpt_fail_posted_scbs(pHba);
876 return 0; /* return success */
879 /*===========================================================================
881 *===========================================================================
885 static void adpt_i2o_sys_shutdown(void)
887 adpt_hba *pHba, *pNext;
888 struct adpt_i2o_post_wait_data *p1, *old;
890 printk(KERN_INFO"Shutting down Adaptec I2O controllers.\n");
891 printk(KERN_INFO" This could take a few minutes if there are many devices attached\n");
892 /* Delete all IOPs from the controller chain */
893 /* They should have already been released by the
896 for (pHba = hba_chain; pHba; pHba = pNext) {
898 adpt_i2o_delete_hba(pHba);
901 /* Remove any timedout entries from the wait queue. */
902 // spin_lock_irqsave(&adpt_post_wait_lock, flags);
903 /* Nothing should be outstanding at this point so just
906 for(p1 = adpt_post_wait_queue; p1;) {
911 // spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
912 adpt_post_wait_queue = NULL;
914 printk(KERN_INFO "Adaptec I2O controllers down.\n");
917 static int adpt_install_hba(struct scsi_host_template* sht, struct pci_dev* pDev)
920 adpt_hba* pHba = NULL;
922 ulong base_addr0_phys = 0;
923 ulong base_addr1_phys = 0;
924 u32 hba_map0_area_size = 0;
925 u32 hba_map1_area_size = 0;
926 void __iomem *base_addr_virt = NULL;
927 void __iomem *msg_addr_virt = NULL;
930 int raptorFlag = FALSE;
932 if(pci_enable_device(pDev)) {
936 if (pci_request_regions(pDev, "dpt_i2o")) {
937 PERROR("dpti: adpt_config_hba: pci request region failed\n");
941 pci_set_master(pDev);
944 * See if we should enable dma64 mode.
946 if (sizeof(dma_addr_t) > 4 &&
947 pci_set_dma_mask(pDev, DMA_BIT_MASK(64)) == 0) {
948 if (dma_get_required_mask(&pDev->dev) > DMA_BIT_MASK(32))
951 if (!dma64 && pci_set_dma_mask(pDev, DMA_BIT_MASK(32)) != 0)
954 /* adapter only supports message blocks below 4GB */
955 pci_set_consistent_dma_mask(pDev, DMA_BIT_MASK(32));
957 base_addr0_phys = pci_resource_start(pDev,0);
958 hba_map0_area_size = pci_resource_len(pDev,0);
960 // Check if standard PCI card or single BAR Raptor
961 if(pDev->device == PCI_DPT_DEVICE_ID){
962 if(pDev->subsystem_device >=0xc032 && pDev->subsystem_device <= 0xc03b){
963 // Raptor card with this device id needs 4M
964 hba_map0_area_size = 0x400000;
965 } else { // Not Raptor - it is a PCI card
966 if(hba_map0_area_size > 0x100000 ){
967 hba_map0_area_size = 0x100000;
970 } else {// Raptor split BAR config
971 // Use BAR1 in this configuration
972 base_addr1_phys = pci_resource_start(pDev,1);
973 hba_map1_area_size = pci_resource_len(pDev,1);
977 #if BITS_PER_LONG == 64
979 * The original Adaptec 64 bit driver has this comment here:
980 * "x86_64 machines need more optimal mappings"
982 * I assume some HBAs report ridiculously large mappings
983 * and we need to limit them on platforms with IOMMUs.
985 if (raptorFlag == TRUE) {
986 if (hba_map0_area_size > 128)
987 hba_map0_area_size = 128;
988 if (hba_map1_area_size > 524288)
989 hba_map1_area_size = 524288;
991 if (hba_map0_area_size > 524288)
992 hba_map0_area_size = 524288;
996 base_addr_virt = ioremap(base_addr0_phys,hba_map0_area_size);
997 if (!base_addr_virt) {
998 pci_release_regions(pDev);
999 PERROR("dpti: adpt_config_hba: io remap failed\n");
1003 if(raptorFlag == TRUE) {
1004 msg_addr_virt = ioremap(base_addr1_phys, hba_map1_area_size );
1005 if (!msg_addr_virt) {
1006 PERROR("dpti: adpt_config_hba: io remap failed on BAR1\n");
1007 iounmap(base_addr_virt);
1008 pci_release_regions(pDev);
1012 msg_addr_virt = base_addr_virt;
1015 // Allocate and zero the data structure
1016 pHba = kzalloc(sizeof(adpt_hba), GFP_KERNEL);
1018 if (msg_addr_virt != base_addr_virt)
1019 iounmap(msg_addr_virt);
1020 iounmap(base_addr_virt);
1021 pci_release_regions(pDev);
1025 mutex_lock(&adpt_configuration_lock);
1027 if(hba_chain != NULL){
1028 for(p = hba_chain; p->next; p = p->next);
1034 pHba->unit = hba_count;
1035 sprintf(pHba->name, "dpti%d", hba_count);
1038 mutex_unlock(&adpt_configuration_lock);
1041 pHba->base_addr_phys = base_addr0_phys;
1043 // Set up the Virtual Base Address of the I2O Device
1044 pHba->base_addr_virt = base_addr_virt;
1045 pHba->msg_addr_virt = msg_addr_virt;
1046 pHba->irq_mask = base_addr_virt+0x30;
1047 pHba->post_port = base_addr_virt+0x40;
1048 pHba->reply_port = base_addr_virt+0x44;
1053 pHba->status_block = NULL;
1054 pHba->post_count = 0;
1055 pHba->state = DPTI_STATE_RESET;
1057 pHba->devices = NULL;
1058 pHba->dma64 = dma64;
1060 // Initializing the spinlocks
1061 spin_lock_init(&pHba->state_lock);
1062 spin_lock_init(&adpt_post_wait_lock);
1064 if(raptorFlag == 0){
1065 printk(KERN_INFO "Adaptec I2O RAID controller"
1066 " %d at %p size=%x irq=%d%s\n",
1067 hba_count-1, base_addr_virt,
1068 hba_map0_area_size, pDev->irq,
1069 dma64 ? " (64-bit DMA)" : "");
1071 printk(KERN_INFO"Adaptec I2O RAID controller %d irq=%d%s\n",
1072 hba_count-1, pDev->irq,
1073 dma64 ? " (64-bit DMA)" : "");
1074 printk(KERN_INFO" BAR0 %p - size= %x\n",base_addr_virt,hba_map0_area_size);
1075 printk(KERN_INFO" BAR1 %p - size= %x\n",msg_addr_virt,hba_map1_area_size);
1078 if (request_irq (pDev->irq, adpt_isr, IRQF_SHARED, pHba->name, pHba)) {
1079 printk(KERN_ERR"%s: Couldn't register IRQ %d\n", pHba->name, pDev->irq);
1080 adpt_i2o_delete_hba(pHba);
1088 static void adpt_i2o_delete_hba(adpt_hba* pHba)
1092 struct i2o_device* d;
1093 struct i2o_device* next;
1096 struct adpt_device* pDev;
1097 struct adpt_device* pNext;
1100 mutex_lock(&adpt_configuration_lock);
1101 // scsi_unregister calls our adpt_release which
1104 free_irq(pHba->host->irq, pHba);
1107 for( p1 = hba_chain; p1; p2 = p1,p1=p1->next){
1110 p2->next = p1->next;
1112 hba_chain = p1->next;
1119 mutex_unlock(&adpt_configuration_lock);
1121 iounmap(pHba->base_addr_virt);
1122 pci_release_regions(pHba->pDev);
1123 if(pHba->msg_addr_virt != pHba->base_addr_virt){
1124 iounmap(pHba->msg_addr_virt);
1126 if(pHba->FwDebugBuffer_P)
1127 iounmap(pHba->FwDebugBuffer_P);
1129 dma_free_coherent(&pHba->pDev->dev,
1130 pHba->hrt->num_entries * pHba->hrt->entry_len << 2,
1131 pHba->hrt, pHba->hrt_pa);
1134 dma_free_coherent(&pHba->pDev->dev, pHba->lct_size,
1135 pHba->lct, pHba->lct_pa);
1137 if(pHba->status_block) {
1138 dma_free_coherent(&pHba->pDev->dev, sizeof(i2o_status_block),
1139 pHba->status_block, pHba->status_block_pa);
1141 if(pHba->reply_pool) {
1142 dma_free_coherent(&pHba->pDev->dev,
1143 pHba->reply_fifo_size * REPLY_FRAME_SIZE * 4,
1144 pHba->reply_pool, pHba->reply_pool_pa);
1147 for(d = pHba->devices; d ; d = next){
1151 for(i = 0 ; i < pHba->top_scsi_channel ; i++){
1152 for(j = 0; j < MAX_ID; j++){
1153 if(pHba->channel[i].device[j] != NULL){
1154 for(pDev = pHba->channel[i].device[j]; pDev; pDev = pNext){
1155 pNext = pDev->next_lun;
1161 pci_dev_put(pHba->pDev);
1162 if (adpt_sysfs_class)
1163 device_destroy(adpt_sysfs_class,
1164 MKDEV(DPTI_I2O_MAJOR, pHba->unit));
1168 unregister_chrdev(DPTI_I2O_MAJOR, DPT_DRIVER);
1169 if (adpt_sysfs_class) {
1170 class_destroy(adpt_sysfs_class);
1171 adpt_sysfs_class = NULL;
1176 static struct adpt_device* adpt_find_device(adpt_hba* pHba, u32 chan, u32 id, u32 lun)
1178 struct adpt_device* d;
1180 if(chan < 0 || chan >= MAX_CHANNEL)
1183 if( pHba->channel[chan].device == NULL){
1184 printk(KERN_DEBUG"Adaptec I2O RAID: Trying to find device before they are allocated\n");
1188 d = pHba->channel[chan].device[id];
1189 if(!d || d->tid == 0) {
1193 /* If it is the only lun at that address then this should match*/
1194 if(d->scsi_lun == lun){
1198 /* else we need to look through all the luns */
1199 for(d=d->next_lun ; d ; d = d->next_lun){
1200 if(d->scsi_lun == lun){
1208 static int adpt_i2o_post_wait(adpt_hba* pHba, u32* msg, int len, int timeout)
1210 // I used my own version of the WAIT_QUEUE_HEAD
1211 // to handle some version differences
1212 // When embedded in the kernel this could go back to the vanilla one
1213 ADPT_DECLARE_WAIT_QUEUE_HEAD(adpt_wq_i2o_post);
1216 struct adpt_i2o_post_wait_data *p1, *p2;
1217 struct adpt_i2o_post_wait_data *wait_data =
1218 kmalloc(sizeof(struct adpt_i2o_post_wait_data), GFP_ATOMIC);
1219 DECLARE_WAITQUEUE(wait, current);
1225 * The spin locking is needed to keep anyone from playing
1226 * with the queue pointers and id while we do the same
1228 spin_lock_irqsave(&adpt_post_wait_lock, flags);
1229 // TODO we need a MORE unique way of getting ids
1230 // to support async LCT get
1231 wait_data->next = adpt_post_wait_queue;
1232 adpt_post_wait_queue = wait_data;
1233 adpt_post_wait_id++;
1234 adpt_post_wait_id &= 0x7fff;
1235 wait_data->id = adpt_post_wait_id;
1236 spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
1238 wait_data->wq = &adpt_wq_i2o_post;
1239 wait_data->status = -ETIMEDOUT;
1241 add_wait_queue(&adpt_wq_i2o_post, &wait);
1243 msg[2] |= 0x80000000 | ((u32)wait_data->id);
1245 if((status = adpt_i2o_post_this(pHba, msg, len)) == 0){
1246 set_current_state(TASK_INTERRUPTIBLE);
1248 spin_unlock_irq(pHba->host->host_lock);
1252 timeout = schedule_timeout(timeout);
1254 // I/O issued, but cannot get result in
1255 // specified time. Freeing resorces is
1261 spin_lock_irq(pHba->host->host_lock);
1263 remove_wait_queue(&adpt_wq_i2o_post, &wait);
1265 if(status == -ETIMEDOUT){
1266 printk(KERN_INFO"dpti%d: POST WAIT TIMEOUT\n",pHba->unit);
1267 // We will have to free the wait_data memory during shutdown
1271 /* Remove the entry from the queue. */
1273 spin_lock_irqsave(&adpt_post_wait_lock, flags);
1274 for(p1 = adpt_post_wait_queue; p1; p2 = p1, p1 = p1->next) {
1275 if(p1 == wait_data) {
1276 if(p1->status == I2O_DETAIL_STATUS_UNSUPPORTED_FUNCTION ) {
1277 status = -EOPNOTSUPP;
1280 p2->next = p1->next;
1282 adpt_post_wait_queue = p1->next;
1287 spin_unlock_irqrestore(&adpt_post_wait_lock, flags);
1295 static s32 adpt_i2o_post_this(adpt_hba* pHba, u32* data, int len)
1298 u32 m = EMPTY_QUEUE;
1300 ulong timeout = jiffies + 30*HZ;
1303 m = readl(pHba->post_port);
1304 if (m != EMPTY_QUEUE) {
1307 if(time_after(jiffies,timeout)){
1308 printk(KERN_WARNING"dpti%d: Timeout waiting for message frame!\n", pHba->unit);
1311 schedule_timeout_uninterruptible(1);
1312 } while(m == EMPTY_QUEUE);
1314 msg = pHba->msg_addr_virt + m;
1315 memcpy_toio(msg, data, len);
1319 writel(m, pHba->post_port);
1326 static void adpt_i2o_post_wait_complete(u32 context, int status)
1328 struct adpt_i2o_post_wait_data *p1 = NULL;
1330 * We need to search through the adpt_post_wait
1331 * queue to see if the given message is still
1332 * outstanding. If not, it means that the IOP
1333 * took longer to respond to the message than we
1334 * had allowed and timer has already expired.
1335 * Not much we can do about that except log
1336 * it for debug purposes, increase timeout, and recompile
1338 * Lock needed to keep anyone from moving queue pointers
1339 * around while we're looking through them.
1344 spin_lock(&adpt_post_wait_lock);
1345 for(p1 = adpt_post_wait_queue; p1; p1 = p1->next) {
1346 if(p1->id == context) {
1347 p1->status = status;
1348 spin_unlock(&adpt_post_wait_lock);
1349 wake_up_interruptible(p1->wq);
1353 spin_unlock(&adpt_post_wait_lock);
1354 // If this happens we lose commands that probably really completed
1355 printk(KERN_DEBUG"dpti: Could Not find task %d in wait queue\n",context);
1356 printk(KERN_DEBUG" Tasks in wait queue:\n");
1357 for(p1 = adpt_post_wait_queue; p1; p1 = p1->next) {
1358 printk(KERN_DEBUG" %d\n",p1->id);
1363 static s32 adpt_i2o_reset_hba(adpt_hba* pHba)
1368 u32 m = EMPTY_QUEUE ;
1369 ulong timeout = jiffies + (TMOUT_IOPRESET*HZ);
1371 if(pHba->initialized == FALSE) { // First time reset should be quick
1372 timeout = jiffies + (25*HZ);
1374 adpt_i2o_quiesce_hba(pHba);
1379 m = readl(pHba->post_port);
1380 if (m != EMPTY_QUEUE) {
1383 if(time_after(jiffies,timeout)){
1384 printk(KERN_WARNING"Timeout waiting for message!\n");
1387 schedule_timeout_uninterruptible(1);
1388 } while (m == EMPTY_QUEUE);
1390 status = dma_alloc_coherent(&pHba->pDev->dev, 4, &addr, GFP_KERNEL);
1391 if(status == NULL) {
1392 adpt_send_nop(pHba, m);
1393 printk(KERN_ERR"IOP reset failed - no free memory.\n");
1398 msg[0]=EIGHT_WORD_MSG_SIZE|SGL_OFFSET_0;
1399 msg[1]=I2O_CMD_ADAPTER_RESET<<24|HOST_TID<<12|ADAPTER_TID;
1404 msg[6]=dma_low(addr);
1405 msg[7]=dma_high(addr);
1407 memcpy_toio(pHba->msg_addr_virt+m, msg, sizeof(msg));
1409 writel(m, pHba->post_port);
1412 while(*status == 0){
1413 if(time_after(jiffies,timeout)){
1414 printk(KERN_WARNING"%s: IOP Reset Timeout\n",pHba->name);
1415 /* We lose 4 bytes of "status" here, but we cannot
1416 free these because controller may awake and corrupt
1417 those bytes at any time */
1418 /* dma_free_coherent(&pHba->pDev->dev, 4, buf, addr); */
1422 schedule_timeout_uninterruptible(1);
1425 if(*status == 0x01 /*I2O_EXEC_IOP_RESET_IN_PROGRESS*/) {
1426 PDEBUG("%s: Reset in progress...\n", pHba->name);
1427 // Here we wait for message frame to become available
1428 // indicated that reset has finished
1431 m = readl(pHba->post_port);
1432 if (m != EMPTY_QUEUE) {
1435 if(time_after(jiffies,timeout)){
1436 printk(KERN_ERR "%s:Timeout waiting for IOP Reset.\n",pHba->name);
1437 /* We lose 4 bytes of "status" here, but we
1438 cannot free these because controller may
1439 awake and corrupt those bytes at any time */
1440 /* dma_free_coherent(&pHba->pDev->dev, 4, buf, addr); */
1443 schedule_timeout_uninterruptible(1);
1444 } while (m == EMPTY_QUEUE);
1446 adpt_send_nop(pHba, m);
1448 adpt_i2o_status_get(pHba);
1449 if(*status == 0x02 ||
1450 pHba->status_block->iop_state != ADAPTER_STATE_RESET) {
1451 printk(KERN_WARNING"%s: Reset reject, trying to clear\n",
1454 PDEBUG("%s: Reset completed.\n", pHba->name);
1457 dma_free_coherent(&pHba->pDev->dev, 4, status, addr);
1459 // This delay is to allow someone attached to the card through the debug UART to
1460 // set up the dump levels that they want before the rest of the initialization sequence
1467 static int adpt_i2o_parse_lct(adpt_hba* pHba)
1472 struct i2o_device *d;
1473 i2o_lct *lct = pHba->lct;
1477 u32 buf[10]; // larger than 7, or 8 ...
1478 struct adpt_device* pDev;
1481 printk(KERN_ERR "%s: LCT is empty???\n",pHba->name);
1485 max = lct->table_size;
1489 for(i=0;i<max;i++) {
1490 if( lct->lct_entry[i].user_tid != 0xfff){
1492 * If we have hidden devices, we need to inform the upper layers about
1493 * the possible maximum id reference to handle device access when
1494 * an array is disassembled. This code has no other purpose but to
1495 * allow us future access to devices that are currently hidden
1496 * behind arrays, hotspares or have not been configured (JBOD mode).
1498 if( lct->lct_entry[i].class_id != I2O_CLASS_RANDOM_BLOCK_STORAGE &&
1499 lct->lct_entry[i].class_id != I2O_CLASS_SCSI_PERIPHERAL &&
1500 lct->lct_entry[i].class_id != I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL ){
1503 tid = lct->lct_entry[i].tid;
1504 // I2O_DPT_DEVICE_INFO_GROUP_NO;
1505 if(adpt_i2o_query_scalar(pHba, tid, 0x8000, -1, buf, 32)<0) {
1508 bus_no = buf[0]>>16;
1510 scsi_lun = (buf[2]>>8 )&0xff;
1511 if(bus_no >= MAX_CHANNEL) { // Something wrong skip it
1512 printk(KERN_WARNING"%s: Channel number %d out of range \n", pHba->name, bus_no);
1515 if (scsi_id >= MAX_ID){
1516 printk(KERN_WARNING"%s: SCSI ID %d out of range \n", pHba->name, bus_no);
1519 if(bus_no > pHba->top_scsi_channel){
1520 pHba->top_scsi_channel = bus_no;
1522 if(scsi_id > pHba->top_scsi_id){
1523 pHba->top_scsi_id = scsi_id;
1525 if(scsi_lun > pHba->top_scsi_lun){
1526 pHba->top_scsi_lun = scsi_lun;
1530 d = kmalloc(sizeof(struct i2o_device), GFP_KERNEL);
1533 printk(KERN_CRIT"%s: Out of memory for I2O device data.\n",pHba->name);
1537 d->controller = pHba;
1540 memcpy(&d->lct_data, &lct->lct_entry[i], sizeof(i2o_lct_entry));
1543 tid = d->lct_data.tid;
1544 adpt_i2o_report_hba_unit(pHba, d);
1545 adpt_i2o_install_device(pHba, d);
1548 for(d = pHba->devices; d ; d = d->next) {
1549 if(d->lct_data.class_id == I2O_CLASS_BUS_ADAPTER_PORT ||
1550 d->lct_data.class_id == I2O_CLASS_FIBRE_CHANNEL_PORT){
1551 tid = d->lct_data.tid;
1552 // TODO get the bus_no from hrt-but for now they are in order
1554 if(bus_no > pHba->top_scsi_channel){
1555 pHba->top_scsi_channel = bus_no;
1557 pHba->channel[bus_no].type = d->lct_data.class_id;
1558 pHba->channel[bus_no].tid = tid;
1559 if(adpt_i2o_query_scalar(pHba, tid, 0x0200, -1, buf, 28)>=0)
1561 pHba->channel[bus_no].scsi_id = buf[1];
1562 PDEBUG("Bus %d - SCSI ID %d.\n", bus_no, buf[1]);
1564 // TODO remove - this is just until we get from hrt
1566 if(bus_no >= MAX_CHANNEL) { // Something wrong skip it
1567 printk(KERN_WARNING"%s: Channel number %d out of range - LCT\n", pHba->name, bus_no);
1573 // Setup adpt_device table
1574 for(d = pHba->devices; d ; d = d->next) {
1575 if(d->lct_data.class_id == I2O_CLASS_RANDOM_BLOCK_STORAGE ||
1576 d->lct_data.class_id == I2O_CLASS_SCSI_PERIPHERAL ||
1577 d->lct_data.class_id == I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL ){
1579 tid = d->lct_data.tid;
1581 // I2O_DPT_DEVICE_INFO_GROUP_NO;
1582 if(adpt_i2o_query_scalar(pHba, tid, 0x8000, -1, buf, 32)>=0) {
1583 bus_no = buf[0]>>16;
1585 scsi_lun = (buf[2]>>8 )&0xff;
1586 if(bus_no >= MAX_CHANNEL) { // Something wrong skip it
1589 if (scsi_id >= MAX_ID) {
1592 if( pHba->channel[bus_no].device[scsi_id] == NULL){
1593 pDev = kzalloc(sizeof(struct adpt_device),GFP_KERNEL);
1597 pHba->channel[bus_no].device[scsi_id] = pDev;
1599 for( pDev = pHba->channel[bus_no].device[scsi_id];
1600 pDev->next_lun; pDev = pDev->next_lun){
1602 pDev->next_lun = kzalloc(sizeof(struct adpt_device),GFP_KERNEL);
1603 if(pDev->next_lun == NULL) {
1606 pDev = pDev->next_lun;
1609 pDev->scsi_channel = bus_no;
1610 pDev->scsi_id = scsi_id;
1611 pDev->scsi_lun = scsi_lun;
1614 pDev->type = (buf[0])&0xff;
1615 pDev->flags = (buf[0]>>8)&0xff;
1616 if(scsi_id > pHba->top_scsi_id){
1617 pHba->top_scsi_id = scsi_id;
1619 if(scsi_lun > pHba->top_scsi_lun){
1620 pHba->top_scsi_lun = scsi_lun;
1624 printk(KERN_WARNING"Could not find SCSI ID for %s\n",
1625 d->lct_data.identity_tag);
1634 * Each I2O controller has a chain of devices on it - these match
1635 * the useful parts of the LCT of the board.
1638 static int adpt_i2o_install_device(adpt_hba* pHba, struct i2o_device *d)
1640 mutex_lock(&adpt_configuration_lock);
1643 d->next=pHba->devices;
1645 if (pHba->devices != NULL){
1646 pHba->devices->prev=d;
1651 mutex_unlock(&adpt_configuration_lock);
1655 static int adpt_open(struct inode *inode, struct file *file)
1660 mutex_lock(&adpt_mutex);
1661 //TODO check for root access
1663 minor = iminor(inode);
1664 if (minor >= hba_count) {
1665 mutex_unlock(&adpt_mutex);
1668 mutex_lock(&adpt_configuration_lock);
1669 for (pHba = hba_chain; pHba; pHba = pHba->next) {
1670 if (pHba->unit == minor) {
1671 break; /* found adapter */
1675 mutex_unlock(&adpt_configuration_lock);
1676 mutex_unlock(&adpt_mutex);
1680 // if(pHba->in_use){
1681 // mutex_unlock(&adpt_configuration_lock);
1686 mutex_unlock(&adpt_configuration_lock);
1687 mutex_unlock(&adpt_mutex);
1692 static int adpt_close(struct inode *inode, struct file *file)
1697 minor = iminor(inode);
1698 if (minor >= hba_count) {
1701 mutex_lock(&adpt_configuration_lock);
1702 for (pHba = hba_chain; pHba; pHba = pHba->next) {
1703 if (pHba->unit == minor) {
1704 break; /* found adapter */
1707 mutex_unlock(&adpt_configuration_lock);
1718 static int adpt_i2o_passthru(adpt_hba* pHba, u32 __user *arg)
1720 u32 msg[MAX_MESSAGE_SIZE];
1724 u32 __user *user_msg = arg;
1725 u32 __user * user_reply = NULL;
1726 void *sg_list[pHba->sg_tablesize];
1736 memset(&msg, 0, MAX_MESSAGE_SIZE*4);
1737 // get user msg size in u32s
1738 if(get_user(size, &user_msg[0])){
1743 user_reply = &user_msg[size];
1744 if(size > MAX_MESSAGE_SIZE){
1747 size *= 4; // Convert to bytes
1749 /* Copy in the user's I2O command */
1750 if(copy_from_user(msg, user_msg, size)) {
1753 get_user(reply_size, &user_reply[0]);
1754 reply_size = reply_size>>16;
1755 if(reply_size > REPLY_FRAME_SIZE){
1756 reply_size = REPLY_FRAME_SIZE;
1759 reply = kzalloc(REPLY_FRAME_SIZE*4, GFP_KERNEL);
1761 printk(KERN_WARNING"%s: Could not allocate reply buffer\n",pHba->name);
1764 sg_offset = (msg[0]>>4)&0xf;
1765 msg[2] = 0x40000000; // IOCTL context
1766 msg[3] = adpt_ioctl_to_context(pHba, reply);
1767 if (msg[3] == (u32)-1)
1770 memset(sg_list,0, sizeof(sg_list[0])*pHba->sg_tablesize);
1772 // TODO add 64 bit API
1773 struct sg_simple_element *sg = (struct sg_simple_element*) (msg+sg_offset);
1774 sg_count = (size - sg_offset*4) / sizeof(struct sg_simple_element);
1775 if (sg_count > pHba->sg_tablesize){
1776 printk(KERN_DEBUG"%s:IOCTL SG List too large (%u)\n", pHba->name,sg_count);
1781 for(i = 0; i < sg_count; i++) {
1784 if (!(sg[i].flag_count & 0x10000000 /*I2O_SGL_FLAGS_SIMPLE_ADDRESS_ELEMENT*/)) {
1785 printk(KERN_DEBUG"%s:Bad SG element %d - not simple (%x)\n",pHba->name,i, sg[i].flag_count);
1789 sg_size = sg[i].flag_count & 0xffffff;
1790 /* Allocate memory for the transfer */
1791 p = dma_alloc_coherent(&pHba->pDev->dev, sg_size, &addr, GFP_KERNEL);
1793 printk(KERN_DEBUG"%s: Could not allocate SG buffer - size = %d buffer number %d of %d\n",
1794 pHba->name,sg_size,i,sg_count);
1798 sg_list[sg_index++] = p; // sglist indexed with input frame, not our internal frame.
1799 /* Copy in the user's SG buffer if necessary */
1800 if(sg[i].flag_count & 0x04000000 /*I2O_SGL_FLAGS_DIR*/) {
1801 // sg_simple_element API is 32 bit
1802 if (copy_from_user(p,(void __user *)(ulong)sg[i].addr_bus, sg_size)) {
1803 printk(KERN_DEBUG"%s: Could not copy SG buf %d FROM user\n",pHba->name,i);
1808 /* sg_simple_element API is 32 bit, but addr < 4GB */
1809 sg[i].addr_bus = addr;
1815 spin_lock_irqsave(pHba->host->host_lock, flags);
1816 // This state stops any new commands from enterring the
1817 // controller while processing the ioctl
1818 // pHba->state |= DPTI_STATE_IOCTL;
1819 // We can't set this now - The scsi subsystem sets host_blocked and
1820 // the queue empties and stops. We need a way to restart the queue
1821 rcode = adpt_i2o_post_wait(pHba, msg, size, FOREVER);
1823 printk("adpt_i2o_passthru: post wait failed %d %p\n",
1825 // pHba->state &= ~DPTI_STATE_IOCTL;
1827 spin_unlock_irqrestore(pHba->host->host_lock, flags);
1828 } while(rcode == -ETIMEDOUT);
1835 /* Copy back the Scatter Gather buffers back to user space */
1837 // TODO add 64 bit API
1838 struct sg_simple_element* sg;
1841 // re-acquire the original message to handle correctly the sg copy operation
1842 memset(&msg, 0, MAX_MESSAGE_SIZE*4);
1843 // get user msg size in u32s
1844 if(get_user(size, &user_msg[0])){
1850 if (size > MAX_MESSAGE_SIZE) {
1854 /* Copy in the user's I2O command */
1855 if (copy_from_user (msg, user_msg, size)) {
1859 sg_count = (size - sg_offset*4) / sizeof(struct sg_simple_element);
1861 // TODO add 64 bit API
1862 sg = (struct sg_simple_element*)(msg + sg_offset);
1863 for (j = 0; j < sg_count; j++) {
1864 /* Copy out the SG list to user's buffer if necessary */
1865 if(! (sg[j].flag_count & 0x4000000 /*I2O_SGL_FLAGS_DIR*/)) {
1866 sg_size = sg[j].flag_count & 0xffffff;
1867 // sg_simple_element API is 32 bit
1868 if (copy_to_user((void __user *)(ulong)sg[j].addr_bus,sg_list[j], sg_size)) {
1869 printk(KERN_WARNING"%s: Could not copy %p TO user %x\n",pHba->name, sg_list[j], sg[j].addr_bus);
1877 /* Copy back the reply to user space */
1879 // we wrote our own values for context - now restore the user supplied ones
1880 if(copy_from_user(reply+2, user_msg+2, sizeof(u32)*2)) {
1881 printk(KERN_WARNING"%s: Could not copy message context FROM user\n",pHba->name);
1884 if(copy_to_user(user_reply, reply, reply_size)) {
1885 printk(KERN_WARNING"%s: Could not copy reply TO user\n",pHba->name);
1892 if (rcode != -ETIME && rcode != -EINTR) {
1893 struct sg_simple_element *sg =
1894 (struct sg_simple_element*) (msg +sg_offset);
1897 if(sg_list[--sg_index]) {
1898 dma_free_coherent(&pHba->pDev->dev,
1899 sg[sg_index].flag_count & 0xffffff,
1901 sg[sg_index].addr_bus);
1908 #if defined __ia64__
1909 static void adpt_ia64_info(sysInfo_S* si)
1911 // This is all the info we need for now
1912 // We will add more info as our new
1913 // managmenent utility requires it
1914 si->processorType = PROC_IA64;
1918 #if defined __sparc__
1919 static void adpt_sparc_info(sysInfo_S* si)
1921 // This is all the info we need for now
1922 // We will add more info as our new
1923 // managmenent utility requires it
1924 si->processorType = PROC_ULTRASPARC;
1927 #if defined __alpha__
1928 static void adpt_alpha_info(sysInfo_S* si)
1930 // This is all the info we need for now
1931 // We will add more info as our new
1932 // managmenent utility requires it
1933 si->processorType = PROC_ALPHA;
1937 #if defined __i386__
1938 static void adpt_i386_info(sysInfo_S* si)
1940 // This is all the info we need for now
1941 // We will add more info as our new
1942 // managmenent utility requires it
1943 switch (boot_cpu_data.x86) {
1945 si->processorType = PROC_386;
1948 si->processorType = PROC_486;
1951 si->processorType = PROC_PENTIUM;
1953 default: // Just in case
1954 si->processorType = PROC_PENTIUM;
1961 * This routine returns information about the system. This does not effect
1962 * any logic and if the info is wrong - it doesn't matter.
1965 /* Get all the info we can not get from kernel services */
1966 static int adpt_system_info(void __user *buffer)
1970 memset(&si, 0, sizeof(si));
1972 si.osType = OS_LINUX;
1973 si.osMajorVersion = 0;
1974 si.osMinorVersion = 0;
1976 si.busType = SI_PCI_BUS;
1977 si.processorFamily = DPTI_sig.dsProcessorFamily;
1979 #if defined __i386__
1980 adpt_i386_info(&si);
1981 #elif defined (__ia64__)
1982 adpt_ia64_info(&si);
1983 #elif defined(__sparc__)
1984 adpt_sparc_info(&si);
1985 #elif defined (__alpha__)
1986 adpt_alpha_info(&si);
1988 si.processorType = 0xff ;
1990 if (copy_to_user(buffer, &si, sizeof(si))){
1991 printk(KERN_WARNING"dpti: Could not copy buffer TO user\n");
1998 static int adpt_ioctl(struct inode *inode, struct file *file, uint cmd, ulong arg)
2004 void __user *argp = (void __user *)arg;
2006 minor = iminor(inode);
2007 if (minor >= DPTI_MAX_HBA){
2010 mutex_lock(&adpt_configuration_lock);
2011 for (pHba = hba_chain; pHba; pHba = pHba->next) {
2012 if (pHba->unit == minor) {
2013 break; /* found adapter */
2016 mutex_unlock(&adpt_configuration_lock);
2021 while((volatile u32) pHba->state & DPTI_STATE_RESET )
2022 schedule_timeout_uninterruptible(2);
2025 // TODO: handle 3 cases
2027 if (copy_to_user(argp, &DPTI_sig, sizeof(DPTI_sig))) {
2032 return adpt_i2o_passthru(pHba, argp);
2035 drvrHBAinfo_S HbaInfo;
2037 #define FLG_OSD_PCI_VALID 0x0001
2038 #define FLG_OSD_DMA 0x0002
2039 #define FLG_OSD_I2O 0x0004
2040 memset(&HbaInfo, 0, sizeof(HbaInfo));
2041 HbaInfo.drvrHBAnum = pHba->unit;
2042 HbaInfo.baseAddr = (ulong) pHba->base_addr_phys;
2043 HbaInfo.blinkState = adpt_read_blink_led(pHba);
2044 HbaInfo.pciBusNum = pHba->pDev->bus->number;
2045 HbaInfo.pciDeviceNum=PCI_SLOT(pHba->pDev->devfn);
2046 HbaInfo.Interrupt = pHba->pDev->irq;
2047 HbaInfo.hbaFlags = FLG_OSD_PCI_VALID | FLG_OSD_DMA | FLG_OSD_I2O;
2048 if(copy_to_user(argp, &HbaInfo, sizeof(HbaInfo))){
2049 printk(KERN_WARNING"%s: Could not copy HbaInfo TO user\n",pHba->name);
2055 return adpt_system_info(argp);
2058 value = (u32)adpt_read_blink_led(pHba);
2059 if (copy_to_user(argp, &value, sizeof(value))) {
2066 spin_lock_irqsave(pHba->host->host_lock, flags);
2067 adpt_hba_reset(pHba);
2069 spin_unlock_irqrestore(pHba->host->host_lock, flags);
2081 static long adpt_unlocked_ioctl(struct file *file, uint cmd, ulong arg)
2083 struct inode *inode;
2086 inode = file_inode(file);
2088 mutex_lock(&adpt_mutex);
2089 ret = adpt_ioctl(inode, file, cmd, arg);
2090 mutex_unlock(&adpt_mutex);
2095 #ifdef CONFIG_COMPAT
2096 static long compat_adpt_ioctl(struct file *file,
2097 unsigned int cmd, unsigned long arg)
2099 struct inode *inode;
2102 inode = file_inode(file);
2104 mutex_lock(&adpt_mutex);
2114 case (DPT_TARGET_BUSY & 0xFFFF):
2115 case DPT_TARGET_BUSY:
2116 ret = adpt_ioctl(inode, file, cmd, arg);
2122 mutex_unlock(&adpt_mutex);
2128 static irqreturn_t adpt_isr(int irq, void *dev_id)
2130 struct scsi_cmnd* cmd;
2131 adpt_hba* pHba = dev_id;
2133 void __iomem *reply;
2140 printk(KERN_WARNING"adpt_isr: NULL dev_id\n");
2144 spin_lock_irqsave(pHba->host->host_lock, flags);
2146 while( readl(pHba->irq_mask) & I2O_INTERRUPT_PENDING_B) {
2147 m = readl(pHba->reply_port);
2148 if(m == EMPTY_QUEUE){
2149 // Try twice then give up
2151 m = readl(pHba->reply_port);
2152 if(m == EMPTY_QUEUE){
2153 // This really should not happen
2154 printk(KERN_ERR"dpti: Could not get reply frame\n");
2158 if (pHba->reply_pool_pa <= m &&
2159 m < pHba->reply_pool_pa +
2160 (pHba->reply_fifo_size * REPLY_FRAME_SIZE * 4)) {
2161 reply = (u8 *)pHba->reply_pool +
2162 (m - pHba->reply_pool_pa);
2164 /* Ick, we should *never* be here */
2165 printk(KERN_ERR "dpti: reply frame not from pool\n");
2166 reply = (u8 *)bus_to_virt(m);
2169 if (readl(reply) & MSG_FAIL) {
2170 u32 old_m = readl(reply+28);
2173 PDEBUG("%s: Failed message\n",pHba->name);
2174 if(old_m >= 0x100000){
2175 printk(KERN_ERR"%s: Bad preserved MFA (%x)- dropping frame\n",pHba->name,old_m);
2176 writel(m,pHba->reply_port);
2179 // Transaction context is 0 in failed reply frame
2180 msg = pHba->msg_addr_virt + old_m;
2181 old_context = readl(msg+12);
2182 writel(old_context, reply+12);
2183 adpt_send_nop(pHba, old_m);
2185 context = readl(reply+8);
2186 if(context & 0x40000000){ // IOCTL
2187 void *p = adpt_ioctl_from_context(pHba, readl(reply+12));
2189 memcpy_fromio(p, reply, REPLY_FRAME_SIZE * 4);
2191 // All IOCTLs will also be post wait
2193 if(context & 0x80000000){ // Post wait message
2194 status = readl(reply+16);
2196 status &= 0xffff; /* Get detail status */
2198 status = I2O_POST_WAIT_OK;
2200 if(!(context & 0x40000000)) {
2201 cmd = adpt_cmd_from_context(pHba,
2204 printk(KERN_WARNING"%s: Apparent SCSI cmd in Post Wait Context - cmd=%p context=%x\n", pHba->name, cmd, context);
2207 adpt_i2o_post_wait_complete(context, status);
2208 } else { // SCSI message
2209 cmd = adpt_cmd_from_context (pHba, readl(reply+12));
2211 scsi_dma_unmap(cmd);
2212 if(cmd->serial_number != 0) { // If not timedout
2213 adpt_i2o_to_scsi(reply, cmd);
2217 writel(m, pHba->reply_port);
2223 spin_unlock_irqrestore(pHba->host->host_lock, flags);
2224 return IRQ_RETVAL(handled);
2227 static s32 adpt_scsi_to_i2o(adpt_hba* pHba, struct scsi_cmnd* cmd, struct adpt_device* d)
2230 u32 msg[MAX_MESSAGE_SIZE];
2242 memset(msg, 0 , sizeof(msg));
2243 len = scsi_bufflen(cmd);
2244 direction = 0x00000000;
2246 scsidir = 0x00000000; // DATA NO XFER
2249 * Set SCBFlags to indicate if data is being transferred
2250 * in or out, or no data transfer
2251 * Note: Do not have to verify index is less than 0 since
2252 * cmd->cmnd[0] is an unsigned char
2254 switch(cmd->sc_data_direction){
2255 case DMA_FROM_DEVICE:
2256 scsidir =0x40000000; // DATA IN (iop<--dev)
2259 direction=0x04000000; // SGL OUT
2260 scsidir =0x80000000; // DATA OUT (iop-->dev)
2264 case DMA_BIDIRECTIONAL:
2265 scsidir =0x40000000; // DATA IN (iop<--dev)
2266 // Assume In - and continue;
2269 printk(KERN_WARNING"%s: scsi opcode 0x%x not supported.\n",
2270 pHba->name, cmd->cmnd[0]);
2271 cmd->result = (DID_OK <<16) | (INITIATOR_ERROR << 8);
2272 cmd->scsi_done(cmd);
2276 // msg[0] is set later
2277 // I2O_CMD_SCSI_EXEC
2278 msg[1] = ((0xff<<24)|(HOST_TID<<12)|d->tid);
2280 msg[3] = adpt_cmd_to_context(cmd); /* Want SCSI control block back */
2281 // Our cards use the transaction context as the tag for queueing
2282 // Adaptec/DPT Private stuff
2283 msg[4] = I2O_CMD_SCSI_EXEC|(DPT_ORGANIZATION_ID<<16);
2285 /* Direction, disconnect ok | sense data | simple queue , CDBLen */
2286 // I2O_SCB_FLAG_ENABLE_DISCONNECT |
2287 // I2O_SCB_FLAG_SIMPLE_QUEUE_TAG |
2288 // I2O_SCB_FLAG_SENSE_DATA_IN_MESSAGE;
2289 msg[6] = scsidir|0x20a00000|cmd->cmd_len;
2293 // Write SCSI command into the message - always 16 byte block
2294 memset(mptr, 0, 16);
2295 memcpy(mptr, cmd->cmnd, cmd->cmd_len);
2297 lenptr=mptr++; /* Remember me - fill in when we know */
2298 if (dpt_dma64(pHba)) {
2299 reqlen = 16; // SINGLE SGE
2300 *mptr++ = (0x7C<<24)+(2<<16)+0x02; /* Enable 64 bit */
2301 *mptr++ = 1 << PAGE_SHIFT;
2303 reqlen = 14; // SINGLE SGE
2305 /* Now fill in the SGList and command */
2307 nseg = scsi_dma_map(cmd);
2310 struct scatterlist *sg;
2313 scsi_for_each_sg(cmd, sg, nseg, i) {
2315 *mptr++ = direction|0x10000000|sg_dma_len(sg);
2316 len+=sg_dma_len(sg);
2317 addr = sg_dma_address(sg);
2318 *mptr++ = dma_low(addr);
2319 if (dpt_dma64(pHba))
2320 *mptr++ = dma_high(addr);
2321 /* Make this an end of list */
2323 *lptr = direction|0xD0000000|sg_dma_len(sg);
2325 reqlen = mptr - msg;
2328 if(cmd->underflow && len != cmd->underflow){
2329 printk(KERN_WARNING"Cmd len %08X Cmd underflow %08X\n",
2330 len, cmd->underflow);
2337 /* Stick the headers on */
2338 msg[0] = reqlen<<16 | ((reqlen > 12) ? SGL_OFFSET_12 : SGL_OFFSET_0);
2340 // Send it on it's way
2341 rcode = adpt_i2o_post_this(pHba, msg, reqlen<<2);
2349 static s32 adpt_scsi_host_alloc(adpt_hba* pHba, struct scsi_host_template *sht)
2351 struct Scsi_Host *host;
2353 host = scsi_host_alloc(sht, sizeof(adpt_hba*));
2355 printk("%s: scsi_host_alloc returned NULL\n", pHba->name);
2358 host->hostdata[0] = (unsigned long)pHba;
2361 host->irq = pHba->pDev->irq;
2362 /* no IO ports, so don't have to set host->io_port and
2366 host->n_io_port = 0;
2367 /* see comments in scsi_host.h */
2369 host->max_lun = 256;
2370 host->max_channel = pHba->top_scsi_channel + 1;
2371 host->cmd_per_lun = 1;
2372 host->unique_id = (u32)sys_tbl_pa + pHba->unit;
2373 host->sg_tablesize = pHba->sg_tablesize;
2374 host->can_queue = pHba->post_fifo_size;
2380 static s32 adpt_i2o_to_scsi(void __iomem *reply, struct scsi_cmnd* cmd)
2385 u32 reply_flags = readl(reply) & 0xff00; // Leave it shifted up 8 bits
2386 // I know this would look cleaner if I just read bytes
2387 // but the model I have been using for all the rest of the
2388 // io is in 4 byte words - so I keep that model
2389 u16 detailed_status = readl(reply+16) &0xffff;
2390 dev_status = (detailed_status & 0xff);
2391 hba_status = detailed_status >> 8;
2393 // calculate resid for sg
2394 scsi_set_resid(cmd, scsi_bufflen(cmd) - readl(reply+20));
2396 pHba = (adpt_hba*) cmd->device->host->hostdata[0];
2398 cmd->sense_buffer[0] = '\0'; // initialize sense valid flag to false
2400 if(!(reply_flags & MSG_FAIL)) {
2401 switch(detailed_status & I2O_SCSI_DSC_MASK) {
2402 case I2O_SCSI_DSC_SUCCESS:
2403 cmd->result = (DID_OK << 16);
2405 if (readl(reply+20) < cmd->underflow) {
2406 cmd->result = (DID_ERROR <<16);
2407 printk(KERN_WARNING"%s: SCSI CMD underflow\n",pHba->name);
2410 case I2O_SCSI_DSC_REQUEST_ABORTED:
2411 cmd->result = (DID_ABORT << 16);
2413 case I2O_SCSI_DSC_PATH_INVALID:
2414 case I2O_SCSI_DSC_DEVICE_NOT_PRESENT:
2415 case I2O_SCSI_DSC_SELECTION_TIMEOUT:
2416 case I2O_SCSI_DSC_COMMAND_TIMEOUT:
2417 case I2O_SCSI_DSC_NO_ADAPTER:
2418 case I2O_SCSI_DSC_RESOURCE_UNAVAILABLE:
2419 printk(KERN_WARNING"%s: SCSI Timeout-Device (%d,%d,%d) hba status=0x%x, dev status=0x%x, cmd=0x%x\n",
2420 pHba->name, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun, hba_status, dev_status, cmd->cmnd[0]);
2421 cmd->result = (DID_TIME_OUT << 16);
2423 case I2O_SCSI_DSC_ADAPTER_BUSY:
2424 case I2O_SCSI_DSC_BUS_BUSY:
2425 cmd->result = (DID_BUS_BUSY << 16);
2427 case I2O_SCSI_DSC_SCSI_BUS_RESET:
2428 case I2O_SCSI_DSC_BDR_MESSAGE_SENT:
2429 cmd->result = (DID_RESET << 16);
2431 case I2O_SCSI_DSC_PARITY_ERROR_FAILURE:
2432 printk(KERN_WARNING"%s: SCSI CMD parity error\n",pHba->name);
2433 cmd->result = (DID_PARITY << 16);
2435 case I2O_SCSI_DSC_UNABLE_TO_ABORT:
2436 case I2O_SCSI_DSC_COMPLETE_WITH_ERROR:
2437 case I2O_SCSI_DSC_UNABLE_TO_TERMINATE:
2438 case I2O_SCSI_DSC_MR_MESSAGE_RECEIVED:
2439 case I2O_SCSI_DSC_AUTOSENSE_FAILED:
2440 case I2O_SCSI_DSC_DATA_OVERRUN:
2441 case I2O_SCSI_DSC_UNEXPECTED_BUS_FREE:
2442 case I2O_SCSI_DSC_SEQUENCE_FAILURE:
2443 case I2O_SCSI_DSC_REQUEST_LENGTH_ERROR:
2444 case I2O_SCSI_DSC_PROVIDE_FAILURE:
2445 case I2O_SCSI_DSC_REQUEST_TERMINATED:
2446 case I2O_SCSI_DSC_IDE_MESSAGE_SENT:
2447 case I2O_SCSI_DSC_UNACKNOWLEDGED_EVENT:
2448 case I2O_SCSI_DSC_MESSAGE_RECEIVED:
2449 case I2O_SCSI_DSC_INVALID_CDB:
2450 case I2O_SCSI_DSC_LUN_INVALID:
2451 case I2O_SCSI_DSC_SCSI_TID_INVALID:
2452 case I2O_SCSI_DSC_FUNCTION_UNAVAILABLE:
2453 case I2O_SCSI_DSC_NO_NEXUS:
2454 case I2O_SCSI_DSC_CDB_RECEIVED:
2455 case I2O_SCSI_DSC_LUN_ALREADY_ENABLED:
2456 case I2O_SCSI_DSC_QUEUE_FROZEN:
2457 case I2O_SCSI_DSC_REQUEST_INVALID:
2459 printk(KERN_WARNING"%s: SCSI error %0x-Device(%d,%d,%d) hba_status=0x%x, dev_status=0x%x, cmd=0x%x\n",
2460 pHba->name, detailed_status & I2O_SCSI_DSC_MASK, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun,
2461 hba_status, dev_status, cmd->cmnd[0]);
2462 cmd->result = (DID_ERROR << 16);
2466 // copy over the request sense data if it was a check
2468 if (dev_status == SAM_STAT_CHECK_CONDITION) {
2469 u32 len = min(SCSI_SENSE_BUFFERSIZE, 40);
2470 // Copy over the sense data
2471 memcpy_fromio(cmd->sense_buffer, (reply+28) , len);
2472 if(cmd->sense_buffer[0] == 0x70 /* class 7 */ &&
2473 cmd->sense_buffer[2] == DATA_PROTECT ){
2474 /* This is to handle an array failed */
2475 cmd->result = (DID_TIME_OUT << 16);
2476 printk(KERN_WARNING"%s: SCSI Data Protect-Device (%d,%d,%d) hba_status=0x%x, dev_status=0x%x, cmd=0x%x\n",
2477 pHba->name, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun,
2478 hba_status, dev_status, cmd->cmnd[0]);
2483 /* In this condtion we could not talk to the tid
2484 * the card rejected it. We should signal a retry
2485 * for a limitted number of retries.
2487 cmd->result = (DID_TIME_OUT << 16);
2488 printk(KERN_WARNING"%s: I2O MSG_FAIL - Device (%d,%d,%d) tid=%d, cmd=0x%x\n",
2489 pHba->name, (u32)cmd->device->channel, (u32)cmd->device->id, (u32)cmd->device->lun,
2490 ((struct adpt_device*)(cmd->device->hostdata))->tid, cmd->cmnd[0]);
2493 cmd->result |= (dev_status);
2495 if(cmd->scsi_done != NULL){
2496 cmd->scsi_done(cmd);
2502 static s32 adpt_rescan(adpt_hba* pHba)
2508 spin_lock_irqsave(pHba->host->host_lock, flags);
2509 if ((rcode=adpt_i2o_lct_get(pHba)) < 0)
2511 if ((rcode=adpt_i2o_reparse_lct(pHba)) < 0)
2515 spin_unlock_irqrestore(pHba->host->host_lock, flags);
2520 static s32 adpt_i2o_reparse_lct(adpt_hba* pHba)
2525 struct i2o_device *d;
2526 i2o_lct *lct = pHba->lct;
2530 u32 buf[10]; // at least 8 u32's
2531 struct adpt_device* pDev = NULL;
2532 struct i2o_device* pI2o_dev = NULL;
2535 printk(KERN_ERR "%s: LCT is empty???\n",pHba->name);
2539 max = lct->table_size;
2543 // Mark each drive as unscanned
2544 for (d = pHba->devices; d; d = d->next) {
2545 pDev =(struct adpt_device*) d->owner;
2549 pDev->state |= DPTI_DEV_UNSCANNED;
2552 printk(KERN_INFO "%s: LCT has %d entries.\n", pHba->name,max);
2554 for(i=0;i<max;i++) {
2555 if( lct->lct_entry[i].user_tid != 0xfff){
2559 if( lct->lct_entry[i].class_id == I2O_CLASS_RANDOM_BLOCK_STORAGE ||
2560 lct->lct_entry[i].class_id == I2O_CLASS_SCSI_PERIPHERAL ||
2561 lct->lct_entry[i].class_id == I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL ){
2562 tid = lct->lct_entry[i].tid;
2563 if(adpt_i2o_query_scalar(pHba, tid, 0x8000, -1, buf, 32)<0) {
2564 printk(KERN_ERR"%s: Could not query device\n",pHba->name);
2567 bus_no = buf[0]>>16;
2568 if (bus_no >= MAX_CHANNEL) { /* Something wrong skip it */
2570 "%s: Channel number %d out of range\n",
2571 pHba->name, bus_no);
2576 scsi_lun = (buf[2]>>8 )&0xff;
2577 pDev = pHba->channel[bus_no].device[scsi_id];
2580 if(pDev->scsi_lun == scsi_lun) {
2583 pDev = pDev->next_lun;
2585 if(!pDev ) { // Something new add it
2586 d = kmalloc(sizeof(struct i2o_device),
2590 printk(KERN_CRIT "Out of memory for I2O device data.\n");
2594 d->controller = pHba;
2597 memcpy(&d->lct_data, &lct->lct_entry[i], sizeof(i2o_lct_entry));
2600 adpt_i2o_report_hba_unit(pHba, d);
2601 adpt_i2o_install_device(pHba, d);
2603 pDev = pHba->channel[bus_no].device[scsi_id];
2606 kzalloc(sizeof(struct adpt_device),
2611 pHba->channel[bus_no].device[scsi_id] = pDev;
2613 while (pDev->next_lun) {
2614 pDev = pDev->next_lun;
2616 pDev = pDev->next_lun =
2617 kzalloc(sizeof(struct adpt_device),
2623 pDev->tid = d->lct_data.tid;
2624 pDev->scsi_channel = bus_no;
2625 pDev->scsi_id = scsi_id;
2626 pDev->scsi_lun = scsi_lun;
2629 pDev->type = (buf[0])&0xff;
2630 pDev->flags = (buf[0]>>8)&0xff;
2631 // Too late, SCSI system has made up it's mind, but what the hey ...
2632 if(scsi_id > pHba->top_scsi_id){
2633 pHba->top_scsi_id = scsi_id;
2635 if(scsi_lun > pHba->top_scsi_lun){
2636 pHba->top_scsi_lun = scsi_lun;
2639 } // end of new i2o device
2641 // We found an old device - check it
2643 if(pDev->scsi_lun == scsi_lun) {
2644 if(!scsi_device_online(pDev->pScsi_dev)) {
2645 printk(KERN_WARNING"%s: Setting device (%d,%d,%d) back online\n",
2646 pHba->name,bus_no,scsi_id,scsi_lun);
2647 if (pDev->pScsi_dev) {
2648 scsi_device_set_state(pDev->pScsi_dev, SDEV_RUNNING);
2652 if(d->lct_data.tid != tid) { // something changed
2654 memcpy(&d->lct_data, &lct->lct_entry[i], sizeof(i2o_lct_entry));
2655 if (pDev->pScsi_dev) {
2656 pDev->pScsi_dev->changed = TRUE;
2657 pDev->pScsi_dev->removable = TRUE;
2660 // Found it - mark it scanned
2661 pDev->state = DPTI_DEV_ONLINE;
2664 pDev = pDev->next_lun;
2668 for (pI2o_dev = pHba->devices; pI2o_dev; pI2o_dev = pI2o_dev->next) {
2669 pDev =(struct adpt_device*) pI2o_dev->owner;
2673 // Drive offline drives that previously existed but could not be found
2675 if (pDev->state & DPTI_DEV_UNSCANNED){
2676 pDev->state = DPTI_DEV_OFFLINE;
2677 printk(KERN_WARNING"%s: Device (%d,%d,%d) offline\n",pHba->name,pDev->scsi_channel,pDev->scsi_id,pDev->scsi_lun);
2678 if (pDev->pScsi_dev) {
2679 scsi_device_set_state(pDev->pScsi_dev, SDEV_OFFLINE);
2686 static void adpt_fail_posted_scbs(adpt_hba* pHba)
2688 struct scsi_cmnd* cmd = NULL;
2689 struct scsi_device* d = NULL;
2691 shost_for_each_device(d, pHba->host) {
2692 unsigned long flags;
2693 spin_lock_irqsave(&d->list_lock, flags);
2694 list_for_each_entry(cmd, &d->cmd_list, list) {
2695 if(cmd->serial_number == 0){
2698 cmd->result = (DID_OK << 16) | (QUEUE_FULL <<1);
2699 cmd->scsi_done(cmd);
2701 spin_unlock_irqrestore(&d->list_lock, flags);
2706 /*============================================================================
2707 * Routines from i2o subsystem
2708 *============================================================================
2714 * Bring an I2O controller into HOLD state. See the spec.
2716 static int adpt_i2o_activate_hba(adpt_hba* pHba)
2720 if(pHba->initialized ) {
2721 if (adpt_i2o_status_get(pHba) < 0) {
2722 if((rcode = adpt_i2o_reset_hba(pHba)) != 0){
2723 printk(KERN_WARNING"%s: Could NOT reset.\n", pHba->name);
2726 if (adpt_i2o_status_get(pHba) < 0) {
2727 printk(KERN_INFO "HBA not responding.\n");
2732 if(pHba->status_block->iop_state == ADAPTER_STATE_FAULTED) {
2733 printk(KERN_CRIT "%s: hardware fault\n", pHba->name);
2737 if (pHba->status_block->iop_state == ADAPTER_STATE_READY ||
2738 pHba->status_block->iop_state == ADAPTER_STATE_OPERATIONAL ||
2739 pHba->status_block->iop_state == ADAPTER_STATE_HOLD ||
2740 pHba->status_block->iop_state == ADAPTER_STATE_FAILED) {
2741 adpt_i2o_reset_hba(pHba);
2742 if (adpt_i2o_status_get(pHba) < 0 || pHba->status_block->iop_state != ADAPTER_STATE_RESET) {
2743 printk(KERN_ERR "%s: Failed to initialize.\n", pHba->name);
2748 if((rcode = adpt_i2o_reset_hba(pHba)) != 0){
2749 printk(KERN_WARNING"%s: Could NOT reset.\n", pHba->name);
2755 if (adpt_i2o_init_outbound_q(pHba) < 0) {
2761 if (adpt_i2o_hrt_get(pHba) < 0) {
2769 * Bring a controller online into OPERATIONAL state.
2772 static int adpt_i2o_online_hba(adpt_hba* pHba)
2774 if (adpt_i2o_systab_send(pHba) < 0) {
2775 adpt_i2o_delete_hba(pHba);
2778 /* In READY state */
2780 if (adpt_i2o_enable_hba(pHba) < 0) {
2781 adpt_i2o_delete_hba(pHba);
2785 /* In OPERATIONAL state */
2789 static s32 adpt_send_nop(adpt_hba*pHba,u32 m)
2792 ulong timeout = jiffies + 5*HZ;
2794 while(m == EMPTY_QUEUE){
2796 m = readl(pHba->post_port);
2797 if(m != EMPTY_QUEUE){
2800 if(time_after(jiffies,timeout)){
2801 printk(KERN_ERR "%s: Timeout waiting for message frame!\n",pHba->name);
2804 schedule_timeout_uninterruptible(1);
2806 msg = (u32 __iomem *)(pHba->msg_addr_virt + m);
2807 writel( THREE_WORD_MSG_SIZE | SGL_OFFSET_0,&msg[0]);
2808 writel( I2O_CMD_UTIL_NOP << 24 | HOST_TID << 12 | 0,&msg[1]);
2812 writel(m, pHba->post_port);
2817 static s32 adpt_i2o_init_outbound_q(adpt_hba* pHba)
2821 u32 __iomem *msg = NULL;
2823 ulong timeout = jiffies + TMOUT_INITOUTBOUND*HZ;
2828 m = readl(pHba->post_port);
2829 if (m != EMPTY_QUEUE) {
2833 if(time_after(jiffies,timeout)){
2834 printk(KERN_WARNING"%s: Timeout waiting for message frame\n",pHba->name);
2837 schedule_timeout_uninterruptible(1);
2838 } while(m == EMPTY_QUEUE);
2840 msg=(u32 __iomem *)(pHba->msg_addr_virt+m);
2842 status = dma_alloc_coherent(&pHba->pDev->dev, 4, &addr, GFP_KERNEL);
2844 adpt_send_nop(pHba, m);
2845 printk(KERN_WARNING"%s: IOP reset failed - no free memory.\n",
2849 memset(status, 0, 4);
2851 writel(EIGHT_WORD_MSG_SIZE| SGL_OFFSET_6, &msg[0]);
2852 writel(I2O_CMD_OUTBOUND_INIT<<24 | HOST_TID<<12 | ADAPTER_TID, &msg[1]);
2854 writel(0x0106, &msg[3]); /* Transaction context */
2855 writel(4096, &msg[4]); /* Host page frame size */
2856 writel((REPLY_FRAME_SIZE)<<16|0x80, &msg[5]); /* Outbound msg frame size and Initcode */
2857 writel(0xD0000004, &msg[6]); /* Simple SG LE, EOB */
2858 writel((u32)addr, &msg[7]);
2860 writel(m, pHba->post_port);
2863 // Wait for the reply status to come back
2866 if (*status != 0x01 /*I2O_EXEC_OUTBOUND_INIT_IN_PROGRESS*/) {
2871 if(time_after(jiffies,timeout)){
2872 printk(KERN_WARNING"%s: Timeout Initializing\n",pHba->name);
2873 /* We lose 4 bytes of "status" here, but we
2874 cannot free these because controller may
2875 awake and corrupt those bytes at any time */
2876 /* dma_free_coherent(&pHba->pDev->dev, 4, status, addr); */
2879 schedule_timeout_uninterruptible(1);
2882 // If the command was successful, fill the fifo with our reply
2884 if(*status != 0x04 /*I2O_EXEC_OUTBOUND_INIT_COMPLETE*/) {
2885 dma_free_coherent(&pHba->pDev->dev, 4, status, addr);
2888 dma_free_coherent(&pHba->pDev->dev, 4, status, addr);
2890 if(pHba->reply_pool != NULL) {
2891 dma_free_coherent(&pHba->pDev->dev,
2892 pHba->reply_fifo_size * REPLY_FRAME_SIZE * 4,
2893 pHba->reply_pool, pHba->reply_pool_pa);
2896 pHba->reply_pool = dma_alloc_coherent(&pHba->pDev->dev,
2897 pHba->reply_fifo_size * REPLY_FRAME_SIZE * 4,
2898 &pHba->reply_pool_pa, GFP_KERNEL);
2899 if (!pHba->reply_pool) {
2900 printk(KERN_ERR "%s: Could not allocate reply pool\n", pHba->name);
2903 memset(pHba->reply_pool, 0 , pHba->reply_fifo_size * REPLY_FRAME_SIZE * 4);
2905 for(i = 0; i < pHba->reply_fifo_size; i++) {
2906 writel(pHba->reply_pool_pa + (i * REPLY_FRAME_SIZE * 4),
2910 adpt_i2o_status_get(pHba);
2916 * I2O System Table. Contains information about
2917 * all the IOPs in the system. Used to inform IOPs
2918 * about each other's existence.
2920 * sys_tbl_ver is the CurrentChangeIndicator that is
2921 * used by IOPs to track changes.
2926 static s32 adpt_i2o_status_get(adpt_hba* pHba)
2931 u8 *status_block=NULL;
2933 if(pHba->status_block == NULL) {
2934 pHba->status_block = dma_alloc_coherent(&pHba->pDev->dev,
2935 sizeof(i2o_status_block),
2936 &pHba->status_block_pa, GFP_KERNEL);
2937 if(pHba->status_block == NULL) {
2939 "dpti%d: Get Status Block failed; Out of memory. \n",
2944 memset(pHba->status_block, 0, sizeof(i2o_status_block));
2945 status_block = (u8*)(pHba->status_block);
2946 timeout = jiffies+TMOUT_GETSTATUS*HZ;
2949 m = readl(pHba->post_port);
2950 if (m != EMPTY_QUEUE) {
2953 if(time_after(jiffies,timeout)){
2954 printk(KERN_ERR "%s: Timeout waiting for message !\n",
2958 schedule_timeout_uninterruptible(1);
2959 } while(m==EMPTY_QUEUE);
2962 msg=(u32 __iomem *)(pHba->msg_addr_virt+m);
2964 writel(NINE_WORD_MSG_SIZE|SGL_OFFSET_0, &msg[0]);
2965 writel(I2O_CMD_STATUS_GET<<24|HOST_TID<<12|ADAPTER_TID, &msg[1]);
2970 writel( dma_low(pHba->status_block_pa), &msg[6]);
2971 writel( dma_high(pHba->status_block_pa), &msg[7]);
2972 writel(sizeof(i2o_status_block), &msg[8]); // 88 bytes
2975 writel(m, pHba->post_port);
2978 while(status_block[87]!=0xff){
2979 if(time_after(jiffies,timeout)){
2980 printk(KERN_ERR"dpti%d: Get status timeout.\n",
2985 schedule_timeout_uninterruptible(1);
2988 // Set up our number of outbound and inbound messages
2989 pHba->post_fifo_size = pHba->status_block->max_inbound_frames;
2990 if (pHba->post_fifo_size > MAX_TO_IOP_MESSAGES) {
2991 pHba->post_fifo_size = MAX_TO_IOP_MESSAGES;
2994 pHba->reply_fifo_size = pHba->status_block->max_outbound_frames;
2995 if (pHba->reply_fifo_size > MAX_FROM_IOP_MESSAGES) {
2996 pHba->reply_fifo_size = MAX_FROM_IOP_MESSAGES;
2999 // Calculate the Scatter Gather list size
3000 if (dpt_dma64(pHba)) {
3002 = ((pHba->status_block->inbound_frame_size * 4
3004 / (sizeof(struct sg_simple_element) + sizeof(u32)));
3007 = ((pHba->status_block->inbound_frame_size * 4
3009 / sizeof(struct sg_simple_element));
3011 if (pHba->sg_tablesize > SG_LIST_ELEMENTS) {
3012 pHba->sg_tablesize = SG_LIST_ELEMENTS;
3017 printk("dpti%d: State = ",pHba->unit);
3018 switch(pHba->status_block->iop_state) {
3032 printk("OPERATIONAL\n");
3038 printk("FAULTED\n");
3041 printk("%x (unknown!!)\n",pHba->status_block->iop_state);
3048 * Get the IOP's Logical Configuration Table
3050 static int adpt_i2o_lct_get(adpt_hba* pHba)
3056 if ((pHba->lct_size == 0) || (pHba->lct == NULL)){
3057 pHba->lct_size = pHba->status_block->expected_lct_size;
3060 if (pHba->lct == NULL) {
3061 pHba->lct = dma_alloc_coherent(&pHba->pDev->dev,
3062 pHba->lct_size, &pHba->lct_pa,
3064 if(pHba->lct == NULL) {
3065 printk(KERN_CRIT "%s: Lct Get failed. Out of memory.\n",
3070 memset(pHba->lct, 0, pHba->lct_size);
3072 msg[0] = EIGHT_WORD_MSG_SIZE|SGL_OFFSET_6;
3073 msg[1] = I2O_CMD_LCT_NOTIFY<<24 | HOST_TID<<12 | ADAPTER_TID;
3076 msg[4] = 0xFFFFFFFF; /* All devices */
3077 msg[5] = 0x00000000; /* Report now */
3078 msg[6] = 0xD0000000|pHba->lct_size;
3079 msg[7] = (u32)pHba->lct_pa;
3081 if ((ret=adpt_i2o_post_wait(pHba, msg, sizeof(msg), 360))) {
3082 printk(KERN_ERR "%s: LCT Get failed (status=%#10x.\n",
3084 printk(KERN_ERR"Adaptec: Error Reading Hardware.\n");
3088 if ((pHba->lct->table_size << 2) > pHba->lct_size) {
3089 pHba->lct_size = pHba->lct->table_size << 2;
3090 dma_free_coherent(&pHba->pDev->dev, pHba->lct_size,
3091 pHba->lct, pHba->lct_pa);
3094 } while (pHba->lct == NULL);
3096 PDEBUG("%s: Hardware resource table read.\n", pHba->name);
3099 // I2O_DPT_EXEC_IOP_BUFFERS_GROUP_NO;
3100 if(adpt_i2o_query_scalar(pHba, 0 , 0x8000, -1, buf, sizeof(buf))>=0) {
3101 pHba->FwDebugBufferSize = buf[1];
3102 pHba->FwDebugBuffer_P = ioremap(pHba->base_addr_phys + buf[0],
3103 pHba->FwDebugBufferSize);
3104 if (pHba->FwDebugBuffer_P) {
3105 pHba->FwDebugFlags_P = pHba->FwDebugBuffer_P +
3106 FW_DEBUG_FLAGS_OFFSET;
3107 pHba->FwDebugBLEDvalue_P = pHba->FwDebugBuffer_P +
3108 FW_DEBUG_BLED_OFFSET;
3109 pHba->FwDebugBLEDflag_P = pHba->FwDebugBLEDvalue_P + 1;
3110 pHba->FwDebugStrLength_P = pHba->FwDebugBuffer_P +
3111 FW_DEBUG_STR_LENGTH_OFFSET;
3112 pHba->FwDebugBuffer_P += buf[2];
3113 pHba->FwDebugFlags = 0;
3120 static int adpt_i2o_build_sys_table(void)
3122 adpt_hba* pHba = hba_chain;
3126 dma_free_coherent(&pHba->pDev->dev, sys_tbl_len,
3127 sys_tbl, sys_tbl_pa);
3129 sys_tbl_len = sizeof(struct i2o_sys_tbl) + // Header + IOPs
3130 (hba_count) * sizeof(struct i2o_sys_tbl_entry);
3132 sys_tbl = dma_alloc_coherent(&pHba->pDev->dev,
3133 sys_tbl_len, &sys_tbl_pa, GFP_KERNEL);
3135 printk(KERN_WARNING "SysTab Set failed. Out of memory.\n");
3138 memset(sys_tbl, 0, sys_tbl_len);
3140 sys_tbl->num_entries = hba_count;
3141 sys_tbl->version = I2OVERSION;
3142 sys_tbl->change_ind = sys_tbl_ind++;
3144 for(pHba = hba_chain; pHba; pHba = pHba->next) {
3146 // Get updated Status Block so we have the latest information
3147 if (adpt_i2o_status_get(pHba)) {
3148 sys_tbl->num_entries--;
3149 continue; // try next one
3152 sys_tbl->iops[count].org_id = pHba->status_block->org_id;
3153 sys_tbl->iops[count].iop_id = pHba->unit + 2;
3154 sys_tbl->iops[count].seg_num = 0;
3155 sys_tbl->iops[count].i2o_version = pHba->status_block->i2o_version;
3156 sys_tbl->iops[count].iop_state = pHba->status_block->iop_state;
3157 sys_tbl->iops[count].msg_type = pHba->status_block->msg_type;
3158 sys_tbl->iops[count].frame_size = pHba->status_block->inbound_frame_size;
3159 sys_tbl->iops[count].last_changed = sys_tbl_ind - 1; // ??
3160 sys_tbl->iops[count].iop_capabilities = pHba->status_block->iop_capabilities;
3161 addr = pHba->base_addr_phys + 0x40;
3162 sys_tbl->iops[count].inbound_low = dma_low(addr);
3163 sys_tbl->iops[count].inbound_high = dma_high(addr);
3170 u32 *table = (u32*)sys_tbl;
3171 printk(KERN_DEBUG"sys_tbl_len=%d in 32bit words\n",(sys_tbl_len >>2));
3172 for(count = 0; count < (sys_tbl_len >>2); count++) {
3173 printk(KERN_INFO "sys_tbl[%d] = %0#10x\n",
3174 count, table[count]);
3184 * Dump the information block associated with a given unit (TID)
3187 static void adpt_i2o_report_hba_unit(adpt_hba* pHba, struct i2o_device *d)
3190 int unit = d->lct_data.tid;
3192 printk(KERN_INFO "TID %3.3d ", unit);
3194 if(adpt_i2o_query_scalar(pHba, unit, 0xF100, 3, buf, 16)>=0)
3197 printk(" Vendor: %-12.12s", buf);
3199 if(adpt_i2o_query_scalar(pHba, unit, 0xF100, 4, buf, 16)>=0)
3202 printk(" Device: %-12.12s", buf);
3204 if(adpt_i2o_query_scalar(pHba, unit, 0xF100, 6, buf, 8)>=0)
3207 printk(" Rev: %-12.12s\n", buf);
3210 printk(KERN_INFO "\tClass: %.21s\n", adpt_i2o_get_class_name(d->lct_data.class_id));
3211 printk(KERN_INFO "\tSubclass: 0x%04X\n", d->lct_data.sub_class);
3212 printk(KERN_INFO "\tFlags: ");
3214 if(d->lct_data.device_flags&(1<<0))
3215 printk("C"); // ConfigDialog requested
3216 if(d->lct_data.device_flags&(1<<1))
3217 printk("U"); // Multi-user capable
3218 if(!(d->lct_data.device_flags&(1<<4)))
3219 printk("P"); // Peer service enabled!
3220 if(!(d->lct_data.device_flags&(1<<5)))
3221 printk("M"); // Mgmt service enabled!
3228 * Do i2o class name lookup
3230 static const char *adpt_i2o_get_class_name(int class)
3233 static char *i2o_class_name[] = {
3235 "Device Driver Module",
3240 "Fibre Channel Port",
3241 "Fibre Channel Device",
3245 "Floppy Controller",
3247 "Secondary Bus Port",
3248 "Peer Transport Agent",
3253 switch(class&0xFFF) {
3254 case I2O_CLASS_EXECUTIVE:
3258 case I2O_CLASS_RANDOM_BLOCK_STORAGE:
3260 case I2O_CLASS_SEQUENTIAL_STORAGE:
3266 case I2O_CLASS_FIBRE_CHANNEL_PORT:
3268 case I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL:
3270 case I2O_CLASS_SCSI_PERIPHERAL:
3272 case I2O_CLASS_ATE_PORT:
3274 case I2O_CLASS_ATE_PERIPHERAL:
3276 case I2O_CLASS_FLOPPY_CONTROLLER:
3278 case I2O_CLASS_FLOPPY_DEVICE:
3280 case I2O_CLASS_BUS_ADAPTER_PORT:
3282 case I2O_CLASS_PEER_TRANSPORT_AGENT:
3284 case I2O_CLASS_PEER_TRANSPORT:
3287 return i2o_class_name[idx];
3292 static s32 adpt_i2o_hrt_get(adpt_hba* pHba)
3295 int ret, size = sizeof(i2o_hrt);
3298 if (pHba->hrt == NULL) {
3299 pHba->hrt = dma_alloc_coherent(&pHba->pDev->dev,
3300 size, &pHba->hrt_pa, GFP_KERNEL);
3301 if (pHba->hrt == NULL) {
3302 printk(KERN_CRIT "%s: Hrt Get failed; Out of memory.\n", pHba->name);
3307 msg[0]= SIX_WORD_MSG_SIZE| SGL_OFFSET_4;
3308 msg[1]= I2O_CMD_HRT_GET<<24 | HOST_TID<<12 | ADAPTER_TID;
3311 msg[4]= (0xD0000000 | size); /* Simple transaction */
3312 msg[5]= (u32)pHba->hrt_pa; /* Dump it here */
3314 if ((ret = adpt_i2o_post_wait(pHba, msg, sizeof(msg),20))) {
3315 printk(KERN_ERR "%s: Unable to get HRT (status=%#10x)\n", pHba->name, ret);
3319 if (pHba->hrt->num_entries * pHba->hrt->entry_len << 2 > size) {
3320 int newsize = pHba->hrt->num_entries * pHba->hrt->entry_len << 2;
3321 dma_free_coherent(&pHba->pDev->dev, size,
3322 pHba->hrt, pHba->hrt_pa);
3326 } while(pHba->hrt == NULL);
3331 * Query one scalar group value or a whole scalar group.
3333 static int adpt_i2o_query_scalar(adpt_hba* pHba, int tid,
3334 int group, int field, void *buf, int buflen)
3336 u16 opblk[] = { 1, 0, I2O_PARAMS_FIELD_GET, group, 1, field };
3338 dma_addr_t opblk_pa;
3340 dma_addr_t resblk_pa;
3344 /* 8 bytes for header */
3345 resblk_va = dma_alloc_coherent(&pHba->pDev->dev,
3346 sizeof(u8) * (8 + buflen), &resblk_pa, GFP_KERNEL);
3347 if (resblk_va == NULL) {
3348 printk(KERN_CRIT "%s: query scalar failed; Out of memory.\n", pHba->name);
3352 opblk_va = dma_alloc_coherent(&pHba->pDev->dev,
3353 sizeof(opblk), &opblk_pa, GFP_KERNEL);
3354 if (opblk_va == NULL) {
3355 dma_free_coherent(&pHba->pDev->dev, sizeof(u8) * (8+buflen),
3356 resblk_va, resblk_pa);
3357 printk(KERN_CRIT "%s: query operatio failed; Out of memory.\n",
3361 if (field == -1) /* whole group */
3364 memcpy(opblk_va, opblk, sizeof(opblk));
3365 size = adpt_i2o_issue_params(I2O_CMD_UTIL_PARAMS_GET, pHba, tid,
3366 opblk_va, opblk_pa, sizeof(opblk),
3367 resblk_va, resblk_pa, sizeof(u8)*(8+buflen));
3368 dma_free_coherent(&pHba->pDev->dev, sizeof(opblk), opblk_va, opblk_pa);
3369 if (size == -ETIME) {
3370 dma_free_coherent(&pHba->pDev->dev, sizeof(u8) * (8+buflen),
3371 resblk_va, resblk_pa);
3372 printk(KERN_WARNING "%s: issue params failed; Timed out.\n", pHba->name);
3374 } else if (size == -EINTR) {
3375 dma_free_coherent(&pHba->pDev->dev, sizeof(u8) * (8+buflen),
3376 resblk_va, resblk_pa);
3377 printk(KERN_WARNING "%s: issue params failed; Interrupted.\n", pHba->name);
3381 memcpy(buf, resblk_va+8, buflen); /* cut off header */
3383 dma_free_coherent(&pHba->pDev->dev, sizeof(u8) * (8+buflen),
3384 resblk_va, resblk_pa);
3392 /* Issue UTIL_PARAMS_GET or UTIL_PARAMS_SET
3394 * This function can be used for all UtilParamsGet/Set operations.
3395 * The OperationBlock is given in opblk-buffer,
3396 * and results are returned in resblk-buffer.
3397 * Note that the minimum sized resblk is 8 bytes and contains
3398 * ResultCount, ErrorInfoSize, BlockStatus and BlockSize.
3400 static int adpt_i2o_issue_params(int cmd, adpt_hba* pHba, int tid,
3401 void *opblk_va, dma_addr_t opblk_pa, int oplen,
3402 void *resblk_va, dma_addr_t resblk_pa, int reslen)
3405 u32 *res = (u32 *)resblk_va;
3408 msg[0] = NINE_WORD_MSG_SIZE | SGL_OFFSET_5;
3409 msg[1] = cmd << 24 | HOST_TID << 12 | tid;
3413 msg[5] = 0x54000000 | oplen; /* OperationBlock */
3414 msg[6] = (u32)opblk_pa;
3415 msg[7] = 0xD0000000 | reslen; /* ResultBlock */
3416 msg[8] = (u32)resblk_pa;
3418 if ((wait_status = adpt_i2o_post_wait(pHba, msg, sizeof(msg), 20))) {
3419 printk("adpt_i2o_issue_params: post_wait failed (%p)\n", resblk_va);
3420 return wait_status; /* -DetailedStatus */
3423 if (res[1]&0x00FF0000) { /* BlockStatus != SUCCESS */
3424 printk(KERN_WARNING "%s: %s - Error:\n ErrorInfoSize = 0x%02x, "
3425 "BlockStatus = 0x%02x, BlockSize = 0x%04x\n",
3427 (cmd == I2O_CMD_UTIL_PARAMS_SET) ? "PARAMS_SET"
3429 res[1]>>24, (res[1]>>16)&0xFF, res[1]&0xFFFF);
3430 return -((res[1] >> 16) & 0xFF); /* -BlockStatus */
3433 return 4 + ((res[1] & 0x0000FFFF) << 2); /* bytes used in resblk */
3437 static s32 adpt_i2o_quiesce_hba(adpt_hba* pHba)
3442 adpt_i2o_status_get(pHba);
3444 /* SysQuiesce discarded if IOP not in READY or OPERATIONAL state */
3446 if((pHba->status_block->iop_state != ADAPTER_STATE_READY) &&
3447 (pHba->status_block->iop_state != ADAPTER_STATE_OPERATIONAL)){
3451 msg[0] = FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
3452 msg[1] = I2O_CMD_SYS_QUIESCE<<24|HOST_TID<<12|ADAPTER_TID;
3456 if((ret = adpt_i2o_post_wait(pHba, msg, sizeof(msg), 240))) {
3457 printk(KERN_INFO"dpti%d: Unable to quiesce (status=%#x).\n",
3460 printk(KERN_INFO"dpti%d: Quiesced.\n",pHba->unit);
3463 adpt_i2o_status_get(pHba);
3469 * Enable IOP. Allows the IOP to resume external operations.
3471 static int adpt_i2o_enable_hba(adpt_hba* pHba)
3476 adpt_i2o_status_get(pHba);
3477 if(!pHba->status_block){
3480 /* Enable only allowed on READY state */
3481 if(pHba->status_block->iop_state == ADAPTER_STATE_OPERATIONAL)
3484 if(pHba->status_block->iop_state != ADAPTER_STATE_READY)
3487 msg[0]=FOUR_WORD_MSG_SIZE|SGL_OFFSET_0;
3488 msg[1]=I2O_CMD_SYS_ENABLE<<24|HOST_TID<<12|ADAPTER_TID;
3492 if ((ret = adpt_i2o_post_wait(pHba, msg, sizeof(msg), 240))) {
3493 printk(KERN_WARNING"%s: Could not enable (status=%#10x).\n",
3496 PDEBUG("%s: Enabled.\n", pHba->name);
3499 adpt_i2o_status_get(pHba);
3504 static int adpt_i2o_systab_send(adpt_hba* pHba)
3509 msg[0] = I2O_MESSAGE_SIZE(12) | SGL_OFFSET_6;
3510 msg[1] = I2O_CMD_SYS_TAB_SET<<24 | HOST_TID<<12 | ADAPTER_TID;
3513 msg[4] = (0<<16) | ((pHba->unit+2) << 12); /* Host 0 IOP ID (unit + 2) */
3514 msg[5] = 0; /* Segment 0 */
3517 * Provide three SGL-elements:
3518 * System table (SysTab), Private memory space declaration and
3519 * Private i/o space declaration
3521 msg[6] = 0x54000000 | sys_tbl_len;
3522 msg[7] = (u32)sys_tbl_pa;
3523 msg[8] = 0x54000000 | 0;
3525 msg[10] = 0xD4000000 | 0;
3528 if ((ret=adpt_i2o_post_wait(pHba, msg, sizeof(msg), 120))) {
3529 printk(KERN_INFO "%s: Unable to set SysTab (status=%#10x).\n",
3534 PINFO("%s: SysTab set.\n", pHba->name);
3542 /*============================================================================
3544 *============================================================================
3550 static static void adpt_delay(int millisec)
3553 for (i = 0; i < millisec; i++) {
3554 udelay(1000); /* delay for one millisecond */
3560 static struct scsi_host_template driver_template = {
3561 .module = THIS_MODULE,
3563 .proc_name = "dpt_i2o",
3564 .show_info = adpt_show_info,
3566 .queuecommand = adpt_queue,
3567 .eh_abort_handler = adpt_abort,
3568 .eh_device_reset_handler = adpt_device_reset,
3569 .eh_bus_reset_handler = adpt_bus_reset,
3570 .eh_host_reset_handler = adpt_reset,
3571 .bios_param = adpt_bios_param,
3572 .slave_configure = adpt_slave_configure,
3573 .can_queue = MAX_TO_IOP_MESSAGES,
3576 .use_clustering = ENABLE_CLUSTERING,
3579 static int __init adpt_init(void)
3582 adpt_hba *pHba, *next;
3584 printk("Loading Adaptec I2O RAID: Version " DPT_I2O_VERSION "\n");
3586 error = adpt_detect(&driver_template);
3589 if (hba_chain == NULL)
3592 for (pHba = hba_chain; pHba; pHba = pHba->next) {
3593 error = scsi_add_host(pHba->host, &pHba->pDev->dev);
3596 scsi_scan_host(pHba->host);
3600 for (pHba = hba_chain; pHba; pHba = next) {
3602 scsi_remove_host(pHba->host);
3607 static void __exit adpt_exit(void)
3609 adpt_hba *pHba, *next;
3611 for (pHba = hba_chain; pHba; pHba = pHba->next)
3612 scsi_remove_host(pHba->host);
3613 for (pHba = hba_chain; pHba; pHba = next) {
3615 adpt_release(pHba->host);
3619 module_init(adpt_init);
3620 module_exit(adpt_exit);
3622 MODULE_LICENSE("GPL");