patch-2.4.19 linux-2.4.19/drivers/scsi/sgiwd93.c
Next file: linux-2.4.19/drivers/scsi/sim710.c
Previous file: linux-2.4.19/drivers/scsi/sg.c
Back to the patch index
Back to the overall index
- Lines: 254
- Date:
Fri Aug 2 17:39:44 2002
- Orig file:
linux-2.4.18/drivers/scsi/sgiwd93.c
- Orig date:
Sun Sep 9 10:52:35 2001
diff -urN linux-2.4.18/drivers/scsi/sgiwd93.c linux-2.4.19/drivers/scsi/sgiwd93.c
@@ -4,10 +4,13 @@
* Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
* 1999 Andrew R. Baker (andrewb@uab.edu)
* - Support for 2nd SCSI controller on Indigo2
+ * 2001 Florian Lohoff (flo@rfc822.org)
+ * - Delete HPC scatter gather (Read corruption on
+ * multiple disks)
+ * - Cleanup wback cache handling
*
* (In all truth, Jed Schimmel wrote all this code.)
*
- * $Id: sgiwd93.c,v 1.19 2000/02/04 07:40:47 ralf Exp $
*/
#include <linux/init.h>
#include <linux/types.h>
@@ -36,29 +39,34 @@
struct hpc_chunk {
struct hpc_dma_desc desc;
- unsigned long padding;
+ u32 _padding; /* align to quadword boundary */
};
struct Scsi_Host *sgiwd93_host = NULL;
struct Scsi_Host *sgiwd93_host1 = NULL;
/* Wuff wuff, wuff, wd33c93.c, wuff wuff, object oriented, bow wow. */
-static inline void write_wd33c93_count(wd33c93_regs *regp, unsigned long value)
+static inline void write_wd33c93_count(const wd33c93_regs regs,
+ unsigned long value)
{
- regp->SASR = WD_TRANSFER_COUNT_MSB;
- regp->SCMD = ((value >> 16) & 0xff);
- regp->SCMD = ((value >> 8) & 0xff);
- regp->SCMD = ((value >> 0) & 0xff);
+ *regs.SASR = WD_TRANSFER_COUNT_MSB;
+ mb();
+ *regs.SCMD = ((value >> 16) & 0xff);
+ *regs.SCMD = ((value >> 8) & 0xff);
+ *regs.SCMD = ((value >> 0) & 0xff);
+ mb();
}
-static inline unsigned long read_wd33c93_count(wd33c93_regs *regp)
+static inline unsigned long read_wd33c93_count(const wd33c93_regs regs)
{
unsigned long value;
- regp->SASR = WD_TRANSFER_COUNT_MSB;
- value = ((regp->SCMD & 0xff) << 16);
- value |= ((regp->SCMD & 0xff) << 8);
- value |= ((regp->SCMD & 0xff) << 0);
+ *regs.SASR = WD_TRANSFER_COUNT_MSB;
+ mb();
+ value = ((*regs.SCMD & 0xff) << 16);
+ value |= ((*regs.SCMD & 0xff) << 8);
+ value |= ((*regs.SCMD & 0xff) << 0);
+ mb();
return value;
}
@@ -80,7 +88,6 @@
unsigned long physaddr;
unsigned long count;
- dma_cache_wback_inv((unsigned long)addr,len);
physaddr = PHYSADDR(addr);
while (len) {
/*
@@ -99,7 +106,6 @@
static int dma_setup(Scsi_Cmnd *cmd, int datainp)
{
struct WD33C93_hostdata *hdata = (struct WD33C93_hostdata *)cmd->host->hostdata;
- wd33c93_regs *regp = hdata->regp;
struct hpc3_scsiregs *hregs = (struct hpc3_scsiregs *) cmd->host->base;
struct hpc_chunk *hcp = (struct hpc_chunk *) hdata->dma_bounce_buffer;
@@ -110,42 +116,17 @@
hdata->dma_dir = datainp;
- if(cmd->SCp.buffers_residual) {
- struct scatterlist *slp = cmd->SCp.buffer;
- int i, totlen = 0;
+ /*
+ * wd33c93 shouldn't pass us bogus dma_setups, but
+ * it does:-( The other wd33c93 drivers deal with
+ * it the same way (which isn't that obvious).
+ * IMHO a better fix would be, not to do these
+ * dma setups in the first place
+ */
+ if (cmd->SCp.ptr == NULL)
+ return 1;
-#ifdef DEBUG_DMA
- printk("SCLIST<");
-#endif
- for(i = 0; i <= cmd->SCp.buffers_residual; i++) {
-#ifdef DEBUG_DMA
- printk("[%p,%d]", slp[i].address, slp[i].length);
-#endif
- fill_hpc_entries (&hcp, slp[i].address, slp[i].length);
- totlen += slp[i].length;
- }
-#ifdef DEBUG_DMA
- printk(">tlen<%d>", totlen);
-#endif
- hdata->dma_bounce_len = totlen; /* a trick... */
- write_wd33c93_count(regp, totlen);
- } else {
- /* Non-scattered dma. */
-#ifdef DEBUG_DMA
- printk("ONEBUF<%p,%d>", cmd->SCp.ptr, cmd->SCp.this_residual);
-#endif
- /*
- * wd33c93 shouldn't pass us bogus dma_setups, but
- * it does:-( The other wd33c93 drivers deal with
- * it the same way (which isn't that obvious).
- * IMHO a better fix would be, not to do these
- * dma setups in the first place
- */
- if (cmd->SCp.ptr == NULL)
- return 1;
- fill_hpc_entries (&hcp, cmd->SCp.ptr,cmd->SCp.this_residual);
- write_wd33c93_count(regp, cmd->SCp.this_residual);
- }
+ fill_hpc_entries (&hcp, cmd->SCp.ptr,cmd->SCp.this_residual);
/* To make sure, if we trip an HPC bug, that we transfer
* every single byte, we tag on an extra zero length dma
@@ -160,10 +141,14 @@
/* Start up the HPC. */
hregs->ndptr = PHYSADDR(hdata->dma_bounce_buffer);
- if(datainp)
+ if(datainp) {
+ dma_cache_inv((unsigned long) cmd->SCp.ptr, cmd->SCp.this_residual);
hregs->ctrl = (HPC3_SCTRL_ACTIVE);
- else
+ } else {
+ dma_cache_wback_inv((unsigned long) cmd->SCp.ptr, cmd->SCp.this_residual);
hregs->ctrl = (HPC3_SCTRL_ACTIVE | HPC3_SCTRL_DIR);
+ }
+
return 0;
}
@@ -171,7 +156,6 @@
int status)
{
struct WD33C93_hostdata *hdata = (struct WD33C93_hostdata *)instance->hostdata;
- wd33c93_regs *regp = hdata->regp;
struct hpc3_scsiregs *hregs;
if (!SCpnt)
@@ -191,44 +175,6 @@
}
hregs->ctrl = 0;
- /* See how far we got and update scatterlist state if necessary. */
- if(SCpnt->SCp.buffers_residual) {
- struct scatterlist *slp = SCpnt->SCp.buffer;
- int totlen, wd93_residual, transferred, i;
-
- /* Yep, we were doing the scatterlist thang. */
- totlen = hdata->dma_bounce_len;
- wd93_residual = read_wd33c93_count(regp);
- transferred = totlen - wd93_residual;
-
-#ifdef DEBUG_DMA
- printk("tlen<%d>resid<%d>transf<%d> ",
- totlen, wd93_residual, transferred);
-#endif
-
- /* Avoid long winded partial-transfer search for common case. */
- if(transferred != totlen) {
- /* This is the nut case. */
-#ifdef DEBUG_DMA
- printk("Jed was here...");
-#endif
- for(i = 0; i <= SCpnt->SCp.buffers_residual; i++) {
- if(slp[i].length >= transferred)
- break;
- transferred -= slp[i].length;
- }
- } else {
- /* This is the common case. */
-#ifdef DEBUG_DMA
- printk("did it all...");
-#endif
- i = SCpnt->SCp.buffers_residual;
- }
- SCpnt->SCp.buffer = &slp[i];
- SCpnt->SCp.buffers_residual = SCpnt->SCp.buffers_residual - i;
- SCpnt->SCp.ptr = (char *) slp[i].address;
- SCpnt->SCp.this_residual = slp[i].length;
- }
#ifdef DEBUG_DMA
printk("\n");
#endif
@@ -258,6 +204,9 @@
};
hcp--;
hcp->desc.pnext = PHYSADDR(buf);
+
+ /* Force flush to memory */
+ dma_cache_wback_inv((unsigned long) buf, PAGE_SIZE);
}
int __init sgiwd93_detect(Scsi_Host_Template *SGIblows)
@@ -267,6 +216,7 @@
struct hpc3_scsiregs *hregs1 = &hpc3c0->scsi_chan1;
struct WD33C93_hostdata *hdata;
struct WD33C93_hostdata *hdata1;
+ wd33c93_regs regs;
uchar *buf;
if(called)
@@ -287,10 +237,11 @@
return 0;
}
init_hpc_chain(buf);
- dma_cache_wback_inv((unsigned long) buf, PAGE_SIZE);
+
/* HPC_SCSI_REG0 | 0x03 | KSEG1 */
- wd33c93_init(sgiwd93_host, (wd33c93_regs *) KSEG1ADDR (0x1fbc0003),
- dma_setup, dma_stop, WD33C93_FS_16_20);
+ regs.SASR = (unsigned char*) KSEG1ADDR (0x1fbc0003);
+ regs.SCMD = (unsigned char*) KSEG1ADDR (0x1fbc0007);
+ wd33c93_init(sgiwd93_host, regs, dma_setup, dma_stop, WD33C93_FS_16_20);
hdata = (struct WD33C93_hostdata *)sgiwd93_host->hostdata;
hdata->no_sync = 0;
@@ -321,15 +272,16 @@
return 1; /* We registered host0 so return success*/
}
init_hpc_chain(buf);
- dma_cache_wback_inv((unsigned long) buf, PAGE_SIZE);
+
/* HPC_SCSI_REG1 | 0x03 | KSEG1 */
- wd33c93_init(sgiwd93_host1, (wd33c93_regs *) KSEG1ADDR (0x1fbc8003),
- dma_setup, dma_stop, WD33C93_FS_16_20);
+ regs.SASR = (unsigned char*) KSEG1ADDR(0x1fbc8003);
+ regs.SCMD = (unsigned char*) KSEG1ADDR(0x1fbc8007);
+ wd33c93_init(sgiwd93_host1, regs, dma_setup, dma_stop,
+ WD33C93_FS_16_20);
hdata1 = (struct WD33C93_hostdata *)sgiwd93_host1->hostdata;
hdata1->no_sync = 0;
hdata1->dma_bounce_buffer = (uchar *) (KSEG1ADDR(buf));
- dma_cache_wback_inv((unsigned long) buf, PAGE_SIZE);
if (request_irq(SGI_WD93_1_IRQ, sgiwd93_intr, 0, "SGI WD93", (void *) sgiwd93_host1)) {
printk(KERN_WARNING "sgiwd93: Could not allocate irq %d (for host1).\n", SGI_WD93_1_IRQ);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)