2000-04-07 02:50:24 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2000 Matthew N. Dodd <winter@jurai.net>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Copyright (c) 1997 Simon Shapiro
|
|
|
|
* All Rights Reserved
|
1998-01-26 06:11:18 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
2000-04-07 02:50:24 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer.
|
1998-01-26 06:11:18 +00:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
2000-04-07 02:50:24 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
1998-01-26 06:11:18 +00:00
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-08-24 17:55:58 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1998-01-26 06:11:18 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
2000-04-07 02:50:24 +00:00
|
|
|
#include <sys/module.h>
|
2003-07-01 15:52:06 +00:00
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
2000-04-07 02:50:24 +00:00
|
|
|
#include <sys/bus.h>
|
1998-01-26 06:11:18 +00:00
|
|
|
|
1998-09-15 08:33:38 +00:00
|
|
|
#include <machine/bus.h>
|
2000-04-07 02:50:24 +00:00
|
|
|
#include <machine/resource.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
|
2003-08-22 05:54:52 +00:00
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
1998-01-26 06:11:18 +00:00
|
|
|
|
1998-09-15 08:33:38 +00:00
|
|
|
#include <cam/scsi/scsi_all.h>
|
|
|
|
|
|
|
|
#include <dev/dpt/dpt.h>
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2000-04-07 02:50:24 +00:00
|
|
|
#define DPT_VENDOR_ID 0x1044
|
|
|
|
#define DPT_DEVICE_ID 0xa400
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2003-09-02 17:30:40 +00:00
|
|
|
#define DPT_PCI_IOADDR PCIR_BAR(0) /* I/O Address */
|
|
|
|
#define DPT_PCI_MEMADDR PCIR_BAR(1) /* Mem I/O Address */
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2000-04-07 02:50:24 +00:00
|
|
|
#define ISA_PRIMARY_WD_ADDRESS 0x1f8
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2000-04-07 02:50:24 +00:00
|
|
|
static int dpt_pci_probe (device_t);
|
|
|
|
static int dpt_pci_attach (device_t);
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2000-04-07 02:50:24 +00:00
|
|
|
static int
|
|
|
|
dpt_pci_probe (device_t dev)
|
1998-01-26 06:11:18 +00:00
|
|
|
{
|
2000-04-07 02:50:24 +00:00
|
|
|
if ((pci_get_vendor(dev) == DPT_VENDOR_ID) &&
|
|
|
|
(pci_get_device(dev) == DPT_DEVICE_ID)) {
|
|
|
|
device_set_desc(dev, "DPT Caching SCSI RAID Controller");
|
2005-03-05 18:30:12 +00:00
|
|
|
return (BUS_PROBE_DEFAULT);
|
2000-04-07 02:50:24 +00:00
|
|
|
}
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2000-04-07 02:50:24 +00:00
|
|
|
static int
|
|
|
|
dpt_pci_attach (device_t dev)
|
1998-01-26 06:11:18 +00:00
|
|
|
{
|
2000-04-07 02:50:24 +00:00
|
|
|
dpt_softc_t * dpt;
|
|
|
|
int s;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
u_int32_t command;
|
|
|
|
|
2003-03-29 08:30:45 +00:00
|
|
|
dpt = device_get_softc(dev);
|
2007-06-17 05:55:54 +00:00
|
|
|
dpt->dev = dev;
|
2003-03-29 08:30:45 +00:00
|
|
|
|
2000-04-07 02:50:24 +00:00
|
|
|
command = pci_read_config(dev, PCIR_COMMAND, /*bytes*/1);
|
|
|
|
|
|
|
|
#ifdef DPT_ALLOW_MMIO
|
|
|
|
if ((command & PCIM_CMD_MEMEN) != 0) {
|
2003-03-29 08:30:45 +00:00
|
|
|
dpt->io_rid = DPT_PCI_MEMADDR;
|
|
|
|
dpt->io_type = SYS_RES_MEMORY;
|
2004-03-17 17:50:55 +00:00
|
|
|
dpt->io_res = bus_alloc_resource_any(dev, dpt->io_type,
|
|
|
|
&dpt->io_rid, RF_ACTIVE);
|
2000-04-07 02:50:24 +00:00
|
|
|
}
|
1998-01-26 06:11:18 +00:00
|
|
|
#endif
|
2003-03-29 08:30:45 +00:00
|
|
|
if (dpt->io_res == NULL && (command & PCIM_CMD_PORTEN) != 0) {
|
|
|
|
dpt->io_rid = DPT_PCI_IOADDR;
|
|
|
|
dpt->io_type = SYS_RES_IOPORT;
|
2004-03-17 17:50:55 +00:00
|
|
|
dpt->io_res = bus_alloc_resource_any(dev, dpt->io_type,
|
|
|
|
&dpt->io_rid, RF_ACTIVE);
|
2000-04-07 02:50:24 +00:00
|
|
|
}
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2003-03-29 08:30:45 +00:00
|
|
|
if (dpt->io_res == NULL) {
|
2000-04-07 02:50:24 +00:00
|
|
|
device_printf(dev, "can't allocate register resources\n");
|
|
|
|
error = ENOMEM;
|
|
|
|
goto bad;
|
|
|
|
}
|
2003-03-29 08:30:45 +00:00
|
|
|
dpt->io_offset = 0x10;
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2003-03-29 08:30:45 +00:00
|
|
|
dpt->irq_rid = 0;
|
2004-03-17 17:50:55 +00:00
|
|
|
dpt->irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &dpt->irq_rid,
|
|
|
|
RF_ACTIVE | RF_SHAREABLE);
|
2003-03-29 08:30:45 +00:00
|
|
|
if (dpt->irq_res == NULL) {
|
2000-04-07 02:50:24 +00:00
|
|
|
device_printf(dev, "No irq?!\n");
|
|
|
|
error = ENOMEM;
|
|
|
|
goto bad;
|
|
|
|
}
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2000-04-07 02:50:24 +00:00
|
|
|
/* Ensure busmastering is enabled */
|
|
|
|
command |= PCIM_CMD_BUSMASTEREN;
|
|
|
|
pci_write_config(dev, PCIR_COMMAND, command, /*bytes*/1);
|
|
|
|
|
2003-03-29 08:30:45 +00:00
|
|
|
if (rman_get_start(dpt->io_res) == (ISA_PRIMARY_WD_ADDRESS - 0x10)) {
|
1998-01-26 06:11:18 +00:00
|
|
|
#ifdef DPT_DEBUG_WARN
|
2000-04-07 02:50:24 +00:00
|
|
|
device_printf(dev, "Mapped as an IDE controller. "
|
|
|
|
"Disabling SCSI setup\n");
|
1998-01-26 06:11:18 +00:00
|
|
|
#endif
|
2000-04-07 02:50:24 +00:00
|
|
|
error = ENXIO;
|
|
|
|
goto bad;
|
1998-09-15 08:33:38 +00:00
|
|
|
}
|
1998-01-26 06:11:18 +00:00
|
|
|
|
2003-03-29 08:30:45 +00:00
|
|
|
dpt_alloc(dev);
|
1998-01-26 06:11:18 +00:00
|
|
|
|
1998-09-15 08:33:38 +00:00
|
|
|
/* Allocate a dmatag representing the capabilities of this attachment */
|
|
|
|
/* XXX Should be a child of the PCI bus dma tag */
|
2000-04-07 02:50:24 +00:00
|
|
|
if (bus_dma_tag_create( /* parent */ NULL,
|
|
|
|
/* alignemnt */ 1,
|
|
|
|
/* boundary */ 0,
|
|
|
|
/* lowaddr */ BUS_SPACE_MAXADDR_32BIT,
|
|
|
|
/* highaddr */ BUS_SPACE_MAXADDR,
|
|
|
|
/* filter */ NULL,
|
|
|
|
/* filterarg */ NULL,
|
|
|
|
/* maxsize */ BUS_SPACE_MAXSIZE_32BIT,
|
2002-10-09 08:54:32 +00:00
|
|
|
/* nsegments */ ~0,
|
2000-04-07 02:50:24 +00:00
|
|
|
/* maxsegsz */ BUS_SPACE_MAXSIZE_32BIT,
|
|
|
|
/* flags */ 0,
|
2003-07-01 15:52:06 +00:00
|
|
|
/* lockfunc */ busdma_lock_mutex,
|
|
|
|
/* lockarg */ &Giant,
|
2000-04-07 02:50:24 +00:00
|
|
|
&dpt->parent_dmat) != 0) {
|
|
|
|
error = ENXIO;
|
|
|
|
goto bad;
|
1998-09-15 08:33:38 +00:00
|
|
|
}
|
1998-01-26 06:11:18 +00:00
|
|
|
|
1998-09-15 08:33:38 +00:00
|
|
|
s = splcam();
|
2000-04-07 02:50:24 +00:00
|
|
|
|
1998-09-15 08:33:38 +00:00
|
|
|
if (dpt_init(dpt) != 0) {
|
2000-04-07 02:50:24 +00:00
|
|
|
error = ENXIO;
|
|
|
|
goto bad;
|
1998-09-15 08:33:38 +00:00
|
|
|
}
|
1998-01-26 06:11:18 +00:00
|
|
|
|
1998-09-15 08:33:38 +00:00
|
|
|
/* Register with the XPT */
|
|
|
|
dpt_attach(dpt);
|
2000-04-07 02:50:24 +00:00
|
|
|
|
1998-09-15 08:33:38 +00:00
|
|
|
splx(s);
|
2000-04-07 02:50:24 +00:00
|
|
|
|
2003-03-29 08:30:45 +00:00
|
|
|
if (bus_setup_intr(dev, dpt->irq_res, INTR_TYPE_CAM | INTR_ENTROPY,
|
2007-02-23 12:19:07 +00:00
|
|
|
NULL, dpt_intr, dpt, &dpt->ih)) {
|
2000-04-07 02:50:24 +00:00
|
|
|
device_printf(dev, "Unable to register interrupt handler\n");
|
|
|
|
error = ENXIO;
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
bad:
|
2003-03-29 08:30:45 +00:00
|
|
|
dpt_release_resources(dev);
|
|
|
|
|
2005-02-24 02:03:55 +00:00
|
|
|
dpt_free(dpt);
|
2000-04-07 02:50:24 +00:00
|
|
|
|
|
|
|
return (error);
|
1998-01-26 06:11:18 +00:00
|
|
|
}
|
2000-04-07 02:50:24 +00:00
|
|
|
|
|
|
|
static device_method_t dpt_pci_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, dpt_pci_probe),
|
|
|
|
DEVMETHOD(device_attach, dpt_pci_attach),
|
2003-03-29 08:30:45 +00:00
|
|
|
DEVMETHOD(device_detach, dpt_detach),
|
2000-04-07 02:50:24 +00:00
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t dpt_pci_driver = {
|
|
|
|
"dpt",
|
|
|
|
dpt_pci_methods,
|
|
|
|
sizeof(dpt_softc_t),
|
|
|
|
};
|
|
|
|
|
|
|
|
DRIVER_MODULE(dpt, pci, dpt_pci_driver, dpt_devclass, 0, 0);
|
2006-12-11 18:28:31 +00:00
|
|
|
MODULE_DEPEND(dpt, pci, 1, 1, 1);
|
|
|
|
MODULE_DEPEND(dpt, cam, 1, 1, 1);
|