Commit f16e95b6 authored by James Bottomley's avatar James Bottomley

Fix up aha1740 merge problems

parents 951169c0 80bf7eef
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
* *
* This file is aha1740.c, written and * This file is aha1740.c, written and
* Copyright (C) 1992,1993 Brad McLean * Copyright (C) 1992,1993 Brad McLean
* brad@saturn.gaylord.com or brad@bradpc.gaylord.com.
* *
* Modifications to makecode and queuecommand * Modifications to makecode and queuecommand
* for proper handling of multiple devices courteously * for proper handling of multiple devices courteously
...@@ -23,6 +24,9 @@ ...@@ -23,6 +24,9 @@
* *
* Reworked for new_eh and new locking by Alan Cox <alan@redhat.com> * Reworked for new_eh and new locking by Alan Cox <alan@redhat.com>
* *
* Converted to EISA and generic DMA APIs by Marc Zyngier
* <maz@wild-wind.fr.eu.org>, 4/2003.
*
* For the avoidance of doubt the "preferred form" of this code is one which * For the avoidance of doubt the "preferred form" of this code is one which
* is in an open non patent encumbered format. Where cryptographic key signing * is in an open non patent encumbered format. Where cryptographic key signing
* forms part of the process of creating an executable the information * forms part of the process of creating an executable the information
...@@ -39,6 +43,10 @@ ...@@ -39,6 +43,10 @@
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/proc_fs.h> #include <linux/proc_fs.h>
#include <linux/stat.h> #include <linux/stat.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/eisa.h>
#include <linux/dma-mapping.h>
#include <asm/dma.h> #include <asm/dma.h>
#include <asm/system.h> #include <asm/system.h>
...@@ -58,25 +66,45 @@ ...@@ -58,25 +66,45 @@
#define DEB(x) #define DEB(x)
#endif #endif
/*
static const char RCSid[] = "$Header: /usr/src/linux/kernel/blk_drv/scsi/RCS/aha1740.c,v 1.1 1992/07/24 06:27:38 root Exp root $";
*/
struct aha1740_hostdata { struct aha1740_hostdata {
unsigned int slot; struct eisa_device *edev;
unsigned int translation; unsigned int translation;
unsigned int last_ecb_used; unsigned int last_ecb_used;
dma_addr_t ecb_dma_addr;
struct ecb ecb[AHA1740_ECBS]; struct ecb ecb[AHA1740_ECBS];
}; };
struct aha1740_sg {
struct aha1740_chain sg_chain[AHA1740_SCATTER];
dma_addr_t sg_dma_addr;
dma_addr_t buf_dma_addr;
};
#define HOSTDATA(host) ((struct aha1740_hostdata *) &host->hostdata) #define HOSTDATA(host) ((struct aha1740_hostdata *) &host->hostdata)
static spinlock_t aha1740_lock = SPIN_LOCK_UNLOCKED; static inline struct ecb *ecb_dma_to_cpu (struct Scsi_Host *host,
dma_addr_t dma)
{
struct aha1740_hostdata *hdata = HOSTDATA (host);
dma_addr_t offset;
/* One for each IRQ level (9-15) */ offset = dma - hdata->ecb_dma_addr;
static struct Scsi_Host * aha_host[8] = {NULL, };
static int aha1740_proc_info(struct Scsi_Host *shpnt, char *buffer, char **start, off_t offset, return (struct ecb *)(((char *) hdata->ecb) + (unsigned int) offset);
}
static inline dma_addr_t ecb_cpu_to_dma (struct Scsi_Host *host, void *cpu)
{
struct aha1740_hostdata *hdata = HOSTDATA (host);
dma_addr_t offset;
offset = (char *) cpu - (char *) hdata->ecb;
return hdata->ecb_dma_addr + offset;
}
static int aha1740_proc_info(struct Scsi_Host *shpnt, char *buffer,
char **start, off_t offset,
int length, int inout) int length, int inout)
{ {
int len; int len;
...@@ -89,7 +117,7 @@ static int aha1740_proc_info(struct Scsi_Host *shpnt, char *buffer, char **start ...@@ -89,7 +117,7 @@ static int aha1740_proc_info(struct Scsi_Host *shpnt, char *buffer, char **start
len = sprintf(buffer, "aha174x at IO:%lx, IRQ %d, SLOT %d.\n" len = sprintf(buffer, "aha174x at IO:%lx, IRQ %d, SLOT %d.\n"
"Extended translation %sabled.\n", "Extended translation %sabled.\n",
shpnt->io_port, shpnt->irq, host->slot, shpnt->io_port, shpnt->irq, host->edev->slot,
host->translation ? "en" : "dis"); host->translation ? "en" : "dis");
if (offset > len) { if (offset > len) {
...@@ -104,7 +132,6 @@ static int aha1740_proc_info(struct Scsi_Host *shpnt, char *buffer, char **start ...@@ -104,7 +132,6 @@ static int aha1740_proc_info(struct Scsi_Host *shpnt, char *buffer, char **start
return len; return len;
} }
static int aha1740_makecode(unchar *sense, unchar *status) static int aha1740_makecode(unchar *sense, unchar *status)
{ {
struct statusword struct statusword
...@@ -131,18 +158,18 @@ static int aha1740_makecode(unchar *sense, unchar *status) ...@@ -131,18 +158,18 @@ static int aha1740_makecode(unchar *sense, unchar *status)
status[0], status[1], status[2], status[3], status[0], status[1], status[2], status[3],
sense[0], sense[1], sense[2], sense[3]); sense[0], sense[1], sense[2], sense[3]);
#endif #endif
if (!status_word.don) /* Anything abnormal was detected */ if (!status_word.don) { /* Anything abnormal was detected */
{ if ( (status[1]&0x18) || status_word.sc ) {
if ( (status[1]&0x18) || status_word.sc ) /*Additional info available*/ /*Additional info available*/
{
/* Use the supplied info for further diagnostics */ /* Use the supplied info for further diagnostics */
switch ( status[2] ) switch ( status[2] ) {
{
case 0x12: case 0x12:
if ( status_word.dor ) if ( status_word.dor )
retval=DID_ERROR; /* It's an Overrun */ retval=DID_ERROR; /* It's an Overrun */
/* If not overrun, assume underrun and ignore it! */ /* If not overrun, assume underrun and
case 0x00: /* No info, assume no error, should not occur */ * ignore it! */
case 0x00: /* No info, assume no error, should
* not occur */
break; break;
case 0x11: case 0x11:
case 0x21: case 0x21:
...@@ -154,23 +181,25 @@ static int aha1740_makecode(unchar *sense, unchar *status) ...@@ -154,23 +181,25 @@ static int aha1740_makecode(unchar *sense, unchar *status)
case 0x04: case 0x04:
case 0x05: case 0x05:
retval=DID_ABORT; retval=DID_ABORT;
/* Either by this driver or the AHA1740 itself */ /* Either by this driver or the
* AHA1740 itself */
break; break;
default: default:
retval=DID_ERROR; /* No further diagnostics possible */ retval=DID_ERROR; /* No further
} * diagnostics
* possible */
} }
else } else {
{ /* Michael suggests, and Brad concurs: */ /* Michael suggests, and Brad concurs: */
if ( status_word.qf ) if ( status_word.qf ) {
{
retval = DID_TIME_OUT; /* forces a redo */ retval = DID_TIME_OUT; /* forces a redo */
/* I think this specific one should not happen -Brad */ /* I think this specific one should
* not happen -Brad */
printk("aha1740.c: WARNING: AHA1740 queue overflow!\n"); printk("aha1740.c: WARNING: AHA1740 queue overflow!\n");
} } else
else if ( status[0]&0x60 ) if ( status[0]&0x60 ) {
{ /* Didn't find a better error */
retval = DID_ERROR; /* Didn't find a better error */ retval = DID_ERROR;
} }
/* In any other case return DID_OK so for example /* In any other case return DID_OK so for example
CONDITION_CHECKS make it through to the appropriate CONDITION_CHECKS make it through to the appropriate
...@@ -183,29 +212,6 @@ static int aha1740_makecode(unchar *sense, unchar *status) ...@@ -183,29 +212,6 @@ static int aha1740_makecode(unchar *sense, unchar *status)
static int aha1740_test_port(unsigned int base) static int aha1740_test_port(unsigned int base)
{ {
char name[4], tmp;
/* Okay, look for the EISA ID's */
name[0]= 'A' -1 + ((tmp = inb(HID0(base))) >> 2); /* First character */
name[1]= 'A' -1 + ((tmp & 3) << 3);
name[1]+= ((tmp = inb(HID1(base))) >> 5)&0x7; /* Second Character */
name[2]= 'A' -1 + (tmp & 0x1f); /* Third Character */
name[3]=0;
tmp = inb(HID2(base));
if ( strcmp ( name, HID_MFG ) || inb(HID2(base)) != HID_PRD )
return 0; /* Not an Adaptec 174x */
/* if ( inb(HID3(base)) != HID_REV )
printk("aha174x: Warning; board revision of %d; expected %d\n",
inb(HID3(base)),HID_REV); */
if ( inb(EBCNTRL(base)) != EBCNTRL_VALUE )
{
printk("aha174x: Board detected, but EBCNTRL = %x, so disabled it.\n",
inb(EBCNTRL(base)));
return 0;
}
if ( inb(PORTADR(base)) & PORTADDR_ENH ) if ( inb(PORTADR(base)) & PORTADDR_ENH )
return 1; /* Okay, we're all set */ return 1; /* Okay, we're all set */
...@@ -217,7 +223,7 @@ static int aha1740_test_port(unsigned int base) ...@@ -217,7 +223,7 @@ static int aha1740_test_port(unsigned int base)
static irqreturn_t aha1740_intr_handle(int irq, void *dev_id, static irqreturn_t aha1740_intr_handle(int irq, void *dev_id,
struct pt_regs *regs) struct pt_regs *regs)
{ {
struct Scsi_Host *host = aha_host[irq - 9]; struct Scsi_Host *host = (struct Scsi_Host *) dev_id;
void (*my_done)(Scsi_Cmnd *); void (*my_done)(Scsi_Cmnd *);
int errstatus, adapstat; int errstatus, adapstat;
int number_serviced; int number_serviced;
...@@ -226,58 +232,76 @@ static irqreturn_t aha1740_intr_handle(int irq, void *dev_id, ...@@ -226,58 +232,76 @@ static irqreturn_t aha1740_intr_handle(int irq, void *dev_id,
unsigned int base; unsigned int base;
unsigned long flags; unsigned long flags;
int handled = 0; int handled = 0;
struct aha1740_sg *sgptr;
struct eisa_device *edev;
if (!host) if (!host)
panic("aha1740.c: Irq from unknown host!\n"); panic("aha1740.c: Irq from unknown host!\n");
spin_lock_irqsave(host->host_lock, flags); spin_lock_irqsave(host->host_lock, flags);
base = host->io_port; base = host->io_port;
number_serviced = 0; number_serviced = 0;
edev = HOSTDATA(host)->edev;
while(inb(G2STAT(base)) & G2STAT_INTPEND) while(inb(G2STAT(base)) & G2STAT_INTPEND) {
{
handled = 1; handled = 1;
DEB(printk("aha1740_intr top of loop.\n")); DEB(printk("aha1740_intr top of loop.\n"));
adapstat = inb(G2INTST(base)); adapstat = inb(G2INTST(base));
ecbptr = (struct ecb *) isa_bus_to_virt(inl(MBOXIN0(base))); ecbptr = ecb_dma_to_cpu (host, inl(MBOXIN0(base)));
outb(G2CNTRL_IRST,G2CNTRL(base)); /* interrupt reset */ outb(G2CNTRL_IRST,G2CNTRL(base)); /* interrupt reset */
switch ( adapstat & G2INTST_MASK ) switch ( adapstat & G2INTST_MASK ) {
{
case G2INTST_CCBRETRY: case G2INTST_CCBRETRY:
case G2INTST_CCBERROR: case G2INTST_CCBERROR:
case G2INTST_CCBGOOD: case G2INTST_CCBGOOD:
/* Host Ready -> Mailbox in complete */ /* Host Ready -> Mailbox in complete */
outb(G2CNTRL_HRDY,G2CNTRL(base)); outb(G2CNTRL_HRDY,G2CNTRL(base));
if (!ecbptr) if (!ecbptr) {
{
printk("Aha1740 null ecbptr in interrupt (%x,%x,%x,%d)\n", printk("Aha1740 null ecbptr in interrupt (%x,%x,%x,%d)\n",
inb(G2STAT(base)),adapstat, inb(G2STAT(base)),adapstat,
inb(G2INTST(base)), number_serviced++); inb(G2INTST(base)), number_serviced++);
continue; continue;
} }
SCtmp = ecbptr->SCpnt; SCtmp = ecbptr->SCpnt;
if (!SCtmp) if (!SCtmp) {
{
printk("Aha1740 null SCtmp in interrupt (%x,%x,%x,%d)\n", printk("Aha1740 null SCtmp in interrupt (%x,%x,%x,%d)\n",
inb(G2STAT(base)),adapstat, inb(G2STAT(base)),adapstat,
inb(G2INTST(base)), number_serviced++); inb(G2INTST(base)), number_serviced++);
continue; continue;
} }
if (SCtmp->host_scribble) sgptr = (struct aha1740_sg *) SCtmp->host_scribble;
kfree(SCtmp->host_scribble); if (SCtmp->use_sg) {
/* Fetch the sense data, and tuck it away, in the required slot. /* We used scatter-gather.
The Adaptec automatically fetches it, and there is no Do the unmapping dance. */
guarantee that we will still have it in the cdb when we come dma_unmap_sg (&edev->dev,
back */ (struct scatterlist *) SCtmp->request_buffer,
if ( (adapstat & G2INTST_MASK) == G2INTST_CCBERROR ) SCtmp->use_sg,
{ scsi_to_dma_dir (SCtmp->sc_data_direction));
} else {
dma_unmap_single (&edev->dev,
sgptr->buf_dma_addr,
SCtmp->request_bufflen,
DMA_BIDIRECTIONAL);
}
/* Free the sg block */
dma_free_coherent (&edev->dev,
sizeof (struct aha1740_sg),
SCtmp->host_scribble,
sgptr->sg_dma_addr);
/* Fetch the sense data, and tuck it away, in
the required slot. The Adaptec
automatically fetches it, and there is no
guarantee that we will still have it in the
cdb when we come back */
if ( (adapstat & G2INTST_MASK) == G2INTST_CCBERROR ) {
memcpy(SCtmp->sense_buffer, ecbptr->sense, memcpy(SCtmp->sense_buffer, ecbptr->sense,
sizeof(SCtmp->sense_buffer)); sizeof(SCtmp->sense_buffer));
errstatus = aha1740_makecode(ecbptr->sense,ecbptr->status); errstatus = aha1740_makecode(ecbptr->sense,ecbptr->status);
} } else
else
errstatus = 0; errstatus = 0;
DEB(if (errstatus) printk("aha1740_intr_handle: returning %6x\n", DEB(if (errstatus)
printk("aha1740_intr_handle: returning %6x\n",
errstatus)); errstatus));
SCtmp->result = errstatus; SCtmp->result = errstatus;
my_done = ecbptr->done; my_done = ecbptr->done;
...@@ -285,19 +309,26 @@ static irqreturn_t aha1740_intr_handle(int irq, void *dev_id, ...@@ -285,19 +309,26 @@ static irqreturn_t aha1740_intr_handle(int irq, void *dev_id,
if ( my_done ) if ( my_done )
my_done(SCtmp); my_done(SCtmp);
break; break;
case G2INTST_HARDFAIL: case G2INTST_HARDFAIL:
printk(KERN_ALERT "aha1740 hardware failure!\n"); printk(KERN_ALERT "aha1740 hardware failure!\n");
panic("aha1740.c"); /* Goodbye */ panic("aha1740.c"); /* Goodbye */
case G2INTST_ASNEVENT: case G2INTST_ASNEVENT:
printk("aha1740 asynchronous event: %02x %02x %02x %02x %02x\n", printk("aha1740 asynchronous event: %02x %02x %02x %02x %02x\n",
adapstat, inb(MBOXIN0(base)), inb(MBOXIN1(base)), adapstat,
inb(MBOXIN2(base)), inb(MBOXIN3(base))); /* Say What? */ inb(MBOXIN0(base)),
inb(MBOXIN1(base)),
inb(MBOXIN2(base)),
inb(MBOXIN3(base))); /* Say What? */
/* Host Ready -> Mailbox in complete */ /* Host Ready -> Mailbox in complete */
outb(G2CNTRL_HRDY,G2CNTRL(base)); outb(G2CNTRL_HRDY,G2CNTRL(base));
break; break;
case G2INTST_CMDGOOD: case G2INTST_CMDGOOD:
/* set immediate command success flag here: */ /* set immediate command success flag here: */
break; break;
case G2INTST_CMDERROR: case G2INTST_CMDERROR:
/* Set immediate command failure flag here: */ /* Set immediate command failure flag here: */
break; break;
...@@ -318,11 +349,12 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -318,11 +349,12 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
unsigned long flags; unsigned long flags;
void *buff = SCpnt->request_buffer; void *buff = SCpnt->request_buffer;
int bufflen = SCpnt->request_bufflen; int bufflen = SCpnt->request_bufflen;
dma_addr_t sg_dma;
struct aha1740_sg *sgptr;
int ecbno; int ecbno;
DEB(int i); DEB(int i);
if(*cmd == REQUEST_SENSE) if(*cmd == REQUEST_SENSE) {
{
SCpnt->result = 0; SCpnt->result = 0;
done(SCpnt); done(SCpnt);
return 0; return 0;
...@@ -343,8 +375,7 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -343,8 +375,7 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
#endif #endif
/* locate an available ecb */ /* locate an available ecb */
spin_lock_irqsave(&SCpnt->device->host->host_lock, flags);
spin_lock_irqsave(&aha1740_lock, flags);
ecbno = host->last_ecb_used + 1; /* An optimization */ ecbno = host->last_ecb_used + 1; /* An optimization */
if (ecbno >= AHA1740_ECBS) if (ecbno >= AHA1740_ECBS)
ecbno = 0; ecbno = 0;
...@@ -363,13 +394,15 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -363,13 +394,15 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
doubles as reserved flag */ doubles as reserved flag */
host->last_ecb_used = ecbno; host->last_ecb_used = ecbno;
spin_unlock_irqrestore(&aha1740_lock, flags); spin_unlock_irqrestore(&SCpnt->device->host->host_lock, flags);
#ifdef DEBUG #ifdef DEBUG
printk("Sending command (%d %x)...", ecbno, done); printk("Sending command (%d %x)...", ecbno, done);
#endif #endif
host->ecb[ecbno].cdblen = SCpnt->cmd_len; /* SCSI Command Descriptor Block Length */ host->ecb[ecbno].cdblen = SCpnt->cmd_len; /* SCSI Command
* Descriptor Block
* Length */
direction = 0; direction = 0;
if (*cmd == READ_10 || *cmd == READ_6) if (*cmd == READ_10 || *cmd == READ_6)
...@@ -379,48 +412,55 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -379,48 +412,55 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
memcpy(host->ecb[ecbno].cdb, cmd, SCpnt->cmd_len); memcpy(host->ecb[ecbno].cdb, cmd, SCpnt->cmd_len);
if (SCpnt->use_sg) SCpnt->host_scribble = dma_alloc_coherent (&host->edev->dev,
{ sizeof (struct aha1740_sg),
&sg_dma, GFP_ATOMIC);
if(SCpnt->host_scribble == NULL) {
printk(KERN_WARNING "aha1740: out of memory in queuecommand!\n");
return 1;
}
sgptr = (struct aha1740_sg *) SCpnt->host_scribble;
sgptr->sg_dma_addr = sg_dma;
if (SCpnt->use_sg) {
struct scatterlist * sgpnt; struct scatterlist * sgpnt;
struct aha1740_chain * cptr; struct aha1740_chain * cptr;
int i; int i, count;
DEB(unsigned char * ptr); DEB(unsigned char * ptr);
host->ecb[ecbno].sg = 1; /* SCSI Initiator Command w/scatter-gather*/ host->ecb[ecbno].sg = 1; /* SCSI Initiator Command
SCpnt->host_scribble = (unsigned char *)kmalloc(512, GFP_KERNEL); * w/scatter-gather*/
if(SCpnt->host_scribble == NULL)
{
printk(KERN_WARNING "aha1740: out of memory in queuecommand!\n");
return 1;
}
sgpnt = (struct scatterlist *) SCpnt->request_buffer; sgpnt = (struct scatterlist *) SCpnt->request_buffer;
cptr = (struct aha1740_chain *) SCpnt->host_scribble; cptr = sgptr->sg_chain;
for(i=0; i<SCpnt->use_sg; i++) count = dma_map_sg (&host->edev->dev, sgpnt, SCpnt->use_sg,
{ scsi_to_dma_dir(SCpnt->sc_data_direction));
cptr[i].datalen = sgpnt[i].length; for(i=0; i < count; i++) {
cptr[i].dataptr = isa_virt_to_bus(page_address(sgpnt[i].page) + sgpnt[i].offset); cptr[i].datalen = sg_dma_len (sgpnt + i);
cptr[i].dataptr = sg_dma_address (sgpnt + i);
} }
host->ecb[ecbno].datalen = SCpnt->use_sg * sizeof(struct aha1740_chain); host->ecb[ecbno].datalen = count*sizeof(struct aha1740_chain);
host->ecb[ecbno].dataptr = isa_virt_to_bus(cptr); host->ecb[ecbno].dataptr = sg_dma;
#ifdef DEBUG #ifdef DEBUG
printk("cptr %x: ",cptr); printk("cptr %x: ",cptr);
ptr = (unsigned char *) cptr; ptr = (unsigned char *) cptr;
for(i=0;i<24;i++) printk("%02x ", ptr[i]); for(i=0;i<24;i++) printk("%02x ", ptr[i]);
#endif #endif
} } else {
else
{
SCpnt->host_scribble = NULL;
host->ecb[ecbno].datalen = bufflen; host->ecb[ecbno].datalen = bufflen;
host->ecb[ecbno].dataptr = isa_virt_to_bus(buff); sgptr->buf_dma_addr = dma_map_single (&host->edev->dev,
buff, bufflen,
DMA_BIDIRECTIONAL);
host->ecb[ecbno].dataptr = sgptr->buf_dma_addr;
} }
host->ecb[ecbno].lun = SCpnt->device->lun; host->ecb[ecbno].lun = SCpnt->device->lun;
host->ecb[ecbno].ses = 1; /* Suppress underrun errors */ host->ecb[ecbno].ses = 1; /* Suppress underrun errors */
host->ecb[ecbno].dir = direction; host->ecb[ecbno].dir = direction;
host->ecb[ecbno].ars = 1; /* Yes, get the sense on an error */ host->ecb[ecbno].ars = 1; /* Yes, get the sense on an error */
host->ecb[ecbno].senselen = 12; host->ecb[ecbno].senselen = 12;
host->ecb[ecbno].senseptr = isa_virt_to_bus(host->ecb[ecbno].sense); host->ecb[ecbno].senseptr = ecb_cpu_to_dma (SCpnt->device->host,
host->ecb[ecbno].statusptr = isa_virt_to_bus(host->ecb[ecbno].status); host->ecb[ecbno].sense);
host->ecb[ecbno].statusptr = ecb_cpu_to_dma (SCpnt->device->host,
host->ecb[ecbno].status);
host->ecb[ecbno].done = done; host->ecb[ecbno].done = done;
host->ecb[ecbno].SCpnt = SCpnt; host->ecb[ecbno].SCpnt = SCpnt;
#ifdef DEBUG #ifdef DEBUG
...@@ -432,17 +472,18 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -432,17 +472,18 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
} }
printk("\n"); printk("\n");
#endif #endif
if (done) if (done) {
{ /* The Adaptec Spec says the card is so fast that the loops will /* The Adaptec Spec says the card is so fast that the loops
only be executed once in the code below. Even if this was true will only be executed once in the code below. Even if this
with the fastest processors when the spec was written, it doesn't was true with the fastest processors when the spec was
seem to be true with todays fast processors. We print a warning written, it doesn't seem to be true with todays fast
if the code is executed more often than LOOPCNT_WARN. If this processors. We print a warning if the code is executed more
happens, it should be investigated. If the count reaches often than LOOPCNT_WARN. If this happens, it should be
LOOPCNT_MAX, we assume something is broken; since there is no investigated. If the count reaches LOOPCNT_MAX, we assume
way to return an error (the return value is ignored by the something is broken; since there is no way to return an
mid-level scsi layer) we have to panic (and maybe that's the error (the return value is ignored by the mid-level scsi
best thing we can do then anyhow). */ layer) we have to panic (and maybe that's the best thing we
can do then anyhow). */
#define LOOPCNT_WARN 10 /* excessive mbxout wait -> syslog-msg */ #define LOOPCNT_WARN 10 /* excessive mbxout wait -> syslog-msg */
#define LOOPCNT_MAX 1000000 /* mbxout deadlock -> panic() after ~ 2 sec. */ #define LOOPCNT_MAX 1000000 /* mbxout deadlock -> panic() after ~ 2 sec. */
...@@ -450,7 +491,7 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -450,7 +491,7 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
unsigned int base = SCpnt->device->host->io_port; unsigned int base = SCpnt->device->host->io_port;
DEB(printk("aha1740[%d] critical section\n",ecbno)); DEB(printk("aha1740[%d] critical section\n",ecbno));
spin_lock_irqsave(&aha1740_lock, flags); spin_lock_irqsave(&SCpnt->device->host->host_lock, flags);
for (loopcnt = 0; ; loopcnt++) { for (loopcnt = 0; ; loopcnt++) {
if (inb(G2STAT(base)) & G2STAT_MBXOUT) break; if (inb(G2STAT(base)) & G2STAT_MBXOUT) break;
if (loopcnt == LOOPCNT_WARN) { if (loopcnt == LOOPCNT_WARN) {
...@@ -459,7 +500,8 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -459,7 +500,8 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
if (loopcnt == LOOPCNT_MAX) if (loopcnt == LOOPCNT_MAX)
panic("aha1740.c: mbxout busy!\n"); panic("aha1740.c: mbxout busy!\n");
} }
outl(isa_virt_to_bus(host->ecb + ecbno), MBOXOUT0(base)); outl (ecb_cpu_to_dma (SCpnt->device->host, host->ecb + ecbno),
MBOXOUT0(base));
for (loopcnt = 0; ; loopcnt++) { for (loopcnt = 0; ; loopcnt++) {
if (! (inb(G2STAT(base)) & G2STAT_BUSY)) break; if (! (inb(G2STAT(base)) & G2STAT_BUSY)) break;
if (loopcnt == LOOPCNT_WARN) { if (loopcnt == LOOPCNT_WARN) {
...@@ -469,10 +511,9 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *)) ...@@ -469,10 +511,9 @@ static int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
panic("aha1740.c: attn wait failed!\n"); panic("aha1740.c: attn wait failed!\n");
} }
outb(ATTN_START | (target & 7), ATTN(base)); /* Start it up */ outb(ATTN_START | (target & 7), ATTN(base)); /* Start it up */
spin_unlock_irqrestore(&aha1740_lock, flags); spin_unlock_irqrestore(&SCpnt->device->host->host_lock, flags);
DEB(printk("aha1740[%d] request queued.\n",ecbno)); DEB(printk("aha1740[%d] request queued.\n",ecbno));
} } else
else
printk(KERN_ALERT "aha1740_queuecommand: done can't be NULL\n"); printk(KERN_ALERT "aha1740_queuecommand: done can't be NULL\n");
return 0; return 0;
} }
...@@ -490,46 +531,86 @@ static void aha1740_getconfig(unsigned int base, unsigned int *irq_level, ...@@ -490,46 +531,86 @@ static void aha1740_getconfig(unsigned int base, unsigned int *irq_level,
outb(inb(INTDEF(base)) | 0x10, INTDEF(base)); outb(inb(INTDEF(base)) | 0x10, INTDEF(base));
} }
static int aha1740_detect(Scsi_Host_Template * tpnt) static int aha1740_biosparam(struct scsi_device *sdev,
struct block_device *dev,
sector_t capacity, int* ip)
{ {
int count = 0, slot; int size = capacity;
int extended = HOSTDATA(sdev->host)->translation;
DEB(printk("aha1740_detect: \n")); DEB(printk("aha1740_biosparam\n"));
if (extended && (ip[2] > 1024)) {
ip[0] = 255;
ip[1] = 63;
ip[2] = size / (255 * 63);
} else {
ip[0] = 64;
ip[1] = 32;
ip[2] = size >> 11;
}
return 0;
}
for ( slot=MINEISA; slot <= MAXEISA; slot++ ) static int aha1740_eh_abort_handler (Scsi_Cmnd *dummy)
{ {
/*
* From Alan Cox :
* The AHA1740 has firmware handled abort/reset handling. The "head in
* sand" kernel code is correct for once 8)
*
* So we define a dummy handler just to keep the kernel SCSI code as
* quiet as possible...
*/
return 0;
}
static Scsi_Host_Template aha1740_template = {
.module = THIS_MODULE,
.proc_name = "aha1740",
.proc_info = aha1740_proc_info,
.name = "Adaptec 174x (EISA)",
.command = aha1740_command,
.queuecommand = aha1740_queuecommand,
.bios_param = aha1740_biosparam,
.can_queue = AHA1740_ECBS,
.this_id = 7,
.sg_tablesize = AHA1740_SCATTER,
.cmd_per_lun = AHA1740_CMDLUN,
.use_clustering = ENABLE_CLUSTERING,
.eh_abort_handler = aha1740_eh_abort_handler,
};
static int aha1740_probe (struct device *dev)
{
int slotbase; int slotbase;
unsigned int irq_level, translation; unsigned int irq_level, translation;
struct Scsi_Host *shpnt; struct Scsi_Host *shpnt;
struct aha1740_hostdata *host; struct aha1740_hostdata *host;
slotbase = SLOTBASE(slot); struct eisa_device *edev = to_eisa_device (dev);
/*
* The ioports for eisa boards are generally beyond that used in the DEB(printk("aha1740_probe: \n"));
* check/allocate region code, but this may change at some point,
* so we go through the motions. slotbase = edev->base_addr + EISA_VENDOR_ID_OFFSET;
*/
if (!request_region(slotbase, SLOTSIZE, "aha1740")) /* See if in use */ if (!request_region(slotbase, SLOTSIZE, "aha1740")) /* See if in use */
continue; return -EBUSY;
if (!aha1740_test_port(slotbase)) if (!aha1740_test_port(slotbase))
goto err_release; goto err_release;
aha1740_getconfig(slotbase,&irq_level,&translation); aha1740_getconfig(slotbase,&irq_level,&translation);
if ((inb(G2STAT(slotbase)) & if ((inb(G2STAT(slotbase)) &
(G2STAT_MBXOUT|G2STAT_BUSY)) != G2STAT_MBXOUT) (G2STAT_MBXOUT|G2STAT_BUSY)) != G2STAT_MBXOUT) {
{ /* If the card isn't ready, hard reset it */ /* If the card isn't ready, hard reset it */
outb(G2CNTRL_HRST, G2CNTRL(slotbase)); outb(G2CNTRL_HRST, G2CNTRL(slotbase));
outb(0, G2CNTRL(slotbase)); outb(0, G2CNTRL(slotbase));
} }
printk(KERN_INFO "Configuring aha174x at IO:%x, IRQ %d\n", slotbase, irq_level); printk(KERN_INFO "Configuring %s at IO:%x, IRQ %d\n",
dev->name, slotbase, irq_level);
printk(KERN_INFO "aha174x: Extended translation %sabled.\n", printk(KERN_INFO "aha174x: Extended translation %sabled.\n",
translation ? "en" : "dis"); translation ? "en" : "dis");
DEB(printk("aha1740_detect: enable interrupt channel %d\n",irq_level)); shpnt = scsi_register(&aha1740_template,
if (request_irq(irq_level,aha1740_intr_handle,0,"aha1740",NULL)) { sizeof(struct aha1740_hostdata));
printk("Unable to allocate IRQ for adaptec controller.\n");
goto err_release;
}
shpnt = scsi_register(tpnt, sizeof(struct aha1740_hostdata));
if(shpnt == NULL) if(shpnt == NULL)
goto err_free_irq; goto err_release;
shpnt->base = 0; shpnt->base = 0;
shpnt->io_port = slotbase; shpnt->io_port = slotbase;
...@@ -537,70 +618,80 @@ static int aha1740_detect(Scsi_Host_Template * tpnt) ...@@ -537,70 +618,80 @@ static int aha1740_detect(Scsi_Host_Template * tpnt)
shpnt->irq = irq_level; shpnt->irq = irq_level;
shpnt->dma_channel = 0xff; shpnt->dma_channel = 0xff;
host = HOSTDATA(shpnt); host = HOSTDATA(shpnt);
host->slot = slot; host->edev = edev;
host->translation = translation; host->translation = translation;
aha_host[irq_level - 9] = shpnt; host->ecb_dma_addr = dma_map_single (&edev->dev, host->ecb,
count++; sizeof (host->ecb),
continue; DMA_BIDIRECTIONAL);
if (!host->ecb_dma_addr) {
printk (KERN_ERR "aha1740_probe: Couldn't map ECB, giving up\n");
scsi_unregister (shpnt);
goto err_release;
}
err_free_irq: DEB(printk("aha1740_probe: enable interrupt channel %d\n",irq_level));
free_irq(irq_level, aha1740_intr_handle); if (request_irq(irq_level,aha1740_intr_handle,0,"aha1740",shpnt)) {
err_release: printk(KERN_ERR "aha1740_probe: Unable to allocate IRQ %d.\n",
release_region(slotbase, SLOTSIZE); irq_level);
goto err_release;
} }
return count;
}
static int aha1740_release(struct Scsi_Host *shost) eisa_set_drvdata (edev, shpnt);
{ scsi_add_host (shpnt, dev);
if (shost->irq)
free_irq(shost->irq, NULL);
if (shost->io_port && shost->n_io_port)
release_region(shost->io_port, shost->n_io_port);
scsi_unregister(shost);
return 0; return 0;
err_release:
release_region(slotbase, SLOTSIZE);
return -ENODEV;
} }
static int aha1740_biosparam(struct scsi_device *sdev, struct block_device *dev, static __devexit int aha1740_remove (struct device *dev)
sector_t capacity, int* ip)
{ {
int size = capacity; struct Scsi_Host *shpnt = dev->driver_data;
int extended = HOSTDATA(sdev->host)->translation; struct aha1740_hostdata *host = HOSTDATA (shpnt);
if (scsi_remove_host (shpnt))
return -EBUSY;
free_irq (shpnt->irq, shpnt);
dma_unmap_single (dev, host->ecb_dma_addr,
sizeof (host->ecb), DMA_BIDIRECTIONAL);
release_region (shpnt->io_port, SLOTSIZE);
scsi_unregister (shpnt);
DEB(printk("aha1740_biosparam\n"));
if (extended && (ip[2] > 1024))
{
ip[0] = 255;
ip[1] = 63;
ip[2] = size / (255 * 63);
}
else
{
ip[0] = 64;
ip[1] = 32;
ip[2] = size >> 11;
}
return 0; return 0;
} }
MODULE_LICENSE("GPL"); static struct eisa_device_id aha1740_ids[] = {
{ "ADP0000" }, /* 1740 */
{ "ADP0001" }, /* 1740A */
{ "ADP0002" }, /* 1742A */
{ "ADP0400" }, /* 1744 */
{ "" }
};
static Scsi_Host_Template driver_template = { static struct eisa_driver aha1740_driver = {
.proc_name = "aha1740", .id_table = aha1740_ids,
.proc_info = aha1740_proc_info, .driver = {
.name = "Adaptec 174x (EISA)", .name = "aha1740",
.detect = aha1740_detect, .probe = aha1740_probe,
.release = aha1740_release, .remove = __devexit_p (aha1740_remove),
.queuecommand = aha1740_queuecommand, },
.bios_param = aha1740_biosparam,
.can_queue = AHA1740_ECBS,
.this_id = 7,
.sg_tablesize = AHA1740_SCATTER,
.cmd_per_lun = AHA1740_CMDLUN,
.use_clustering = ENABLE_CLUSTERING,
}; };
#include "scsi_module.c"
/* Okay, you made it all the way through. As of this writing, 3/31/93, I'm static __init int aha1740_init (void)
brad@saturn.gaylord.com or brad@bradpc.gaylord.com. I'll try to help as time {
permits if you have any trouble with this driver. Happy Linuxing! */ return eisa_driver_register (&aha1740_driver);
}
static __exit void aha1740_exit (void)
{
eisa_driver_unregister (&aha1740_driver);
}
module_init (aha1740_init);
module_exit (aha1740_exit);
MODULE_LICENSE("GPL");
...@@ -12,11 +12,6 @@ ...@@ -12,11 +12,6 @@
#include <linux/types.h> #include <linux/types.h>
/* Eisa Enhanced mode operation - slot locating and addressing */
#define MINEISA 1 /* I don't have an EISA Spec to know these ranges, so I */
#define MAXEISA 8 /* Just took my machine's specifications. Adjust to fit. */
/* I just saw an ad, and bumped this from 6 to 8 */
#define SLOTBASE(x) ((x << 12) + 0xc80)
#define SLOTSIZE 0x5c #define SLOTSIZE 0x5c
/* EISA configuration registers & values */ /* EISA configuration registers & values */
...@@ -152,11 +147,6 @@ struct ecb { /* Enhanced Control Block 6.1 */ ...@@ -152,11 +147,6 @@ struct ecb { /* Enhanced Control Block 6.1 */
#define AHA1740CMD_RINQ 0x0a /* Read Host Adapter Inquiry Data */ #define AHA1740CMD_RINQ 0x0a /* Read Host Adapter Inquiry Data */
#define AHA1740CMD_TARG 0x10 /* Target SCSI Command */ #define AHA1740CMD_TARG 0x10 /* Target SCSI Command */
static int aha1740_detect(Scsi_Host_Template *);
static int aha1740_command(Scsi_Cmnd *);
static int aha1740_queuecommand(Scsi_Cmnd *, void (*done) (Scsi_Cmnd *));
static int aha1740_biosparam(struct scsi_device *, struct block_device *, sector_t, int *);
#define AHA1740_ECBS 32 #define AHA1740_ECBS 32
#define AHA1740_SCATTER 16 #define AHA1740_SCATTER 16
#define AHA1740_CMDLUN 1 #define AHA1740_CMDLUN 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment