vserver 2.0 rc7
[linux-2.6.git] / drivers / scsi / NCR_D700.c
index 9161af9..e993a7b 100644 (file)
@@ -97,6 +97,7 @@
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/mca.h>
+#include <linux/interrupt.h>
 #include <asm/io.h>
 #include <scsi/scsi_host.h>
 #include <scsi/scsi_device.h>
 #include "53c700.h"
 #include "NCR_D700.h"
 
-char *NCR_D700;                        /* command line from insmod */
+static char *NCR_D700;         /* command line from insmod */
 
 MODULE_AUTHOR("James Bottomley");
 MODULE_DESCRIPTION("NCR Dual700 SCSI Driver");
@@ -168,11 +169,13 @@ static struct scsi_host_template NCR_D700_driver_template = {
 struct NCR_D700_private {
        struct device           *dev;
        struct Scsi_Host        *hosts[2];
+       char                    name[30];
+       char                    pad;
 };
 
 static int 
-NCR_D700_probe_one(struct NCR_D700_private *p, int siop,
-               int irq, int slot, u32 region, int differential)
+NCR_D700_probe_one(struct NCR_D700_private *p, int siop, int irq,
+                  int slot, u32 region, int differential)
 {
        struct NCR_700_Host_Parameters *hostdata;
        struct Scsi_Host *host;
@@ -194,25 +197,24 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int siop,
        }
                
        /* Fill in the three required pieces of hostdata */
-       hostdata->base = region;
+       hostdata->base = ioport_map(region, 64);
        hostdata->differential = (((1<<siop) & differential) != 0);
        hostdata->clock = NCR_D700_CLOCK_MHZ;
 
-       NCR_700_set_io_mapped(hostdata);
-
        /* and register the siop */
-       host = NCR_700_detect(&NCR_D700_driver_template, hostdata,
-                             p->dev, irq,
-                             /* FIXME: read this from SUS */
-                             id_array[slot * 2 + siop]);
+       host = NCR_700_detect(&NCR_D700_driver_template, hostdata, p->dev);
        if (!host) {
                ret = -ENOMEM;
                goto detect_failed;
        }
 
+       p->hosts[siop] = host;
+       /* FIXME: read this from SUS */
+       host->this_id = id_array[slot * 2 + siop];
+       host->irq = irq;
+       host->base = region;
        scsi_scan_host(host);
 
-       p->hosts[siop] = host;
        return 0;
 
  detect_failed:
@@ -223,6 +225,20 @@ NCR_D700_probe_one(struct NCR_D700_private *p, int siop,
        return ret;
 }
 
+static int
+NCR_D700_intr(int irq, void *data, struct pt_regs *regs)
+{
+       struct NCR_D700_private *p = (struct NCR_D700_private *)data;
+       int i, found = 0;
+
+       for (i = 0; i < 2; i++)
+               if (p->hosts[i] &&
+                   NCR_700_intr(irq, p->hosts[i], regs) == IRQ_HANDLED)
+                       found++;
+
+       return found ? IRQ_HANDLED : IRQ_NONE;
+}
+
 /* Detect a D700 card.  Note, because of the setup --- the chips are
  * essentially connectecd to the MCA bus independently, it is easier
  * to set them up as two separate host adapters, rather than one
@@ -301,13 +317,19 @@ NCR_D700_probe(struct device *dev)
        p = kmalloc(sizeof(*p), GFP_KERNEL);
        if (!p)
                return -ENOMEM;
+       memset(p, '\0', sizeof(*p));
        p->dev = dev;
-
+       snprintf(p->name, sizeof(p->name), "D700(%s)", dev->bus_id);
+       if (request_irq(irq, NCR_D700_intr, SA_SHIRQ, p->name, p)) {
+               printk(KERN_ERR "D700: request_irq failed\n");
+               kfree(p);
+               return -EBUSY;
+       }
        /* plumb in both 700 chips */
        for (i = 0; i < 2; i++) {
                int err;
 
-               if ((err = NCR_D700_probe_one(p, i, irq, slot,
+               if ((err = NCR_D700_probe_one(p, i, slot, irq,
                                              offset_addr + (0x80 * i),
                                              differential)) != 0)
                        printk("D700: SIOP%d: probe failed, error = %d\n",
@@ -352,7 +374,7 @@ NCR_D700_remove(struct device *dev)
 
 static short NCR_D700_id_table[] = { NCR_D700_MCA_ID, 0 };
 
-struct mca_driver NCR_D700_driver = {
+static struct mca_driver NCR_D700_driver = {
        .id_table = NCR_D700_id_table,
        .driver = {
                .name           = "NCR_D700",