Add in 12160 (Ultra3) support. Redo things to use the newbus code.

Approved: jkh@freebsd.org

PR:		16141
This commit is contained in:
mjacob 2000-02-11 19:45:17 +00:00
parent ac0c069327
commit e7efba4ff7
2 changed files with 394 additions and 284 deletions

View File

@ -33,12 +33,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <dev/isp/isp_freebsd.h>
#include <dev/isp/asm_pci.h>
#include <sys/malloc.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/bus.h>
#include <pci/pcireg.h> #include <pci/pcireg.h>
#include <pci/pcivar.h> #include <pci/pcivar.h>
@ -46,11 +46,17 @@
#include <machine/bus_memio.h> #include <machine/bus_memio.h>
#include <machine/bus_pio.h> #include <machine/bus_pio.h>
#include <machine/bus.h> #include <machine/bus.h>
#include <machine/md_var.h> #include <machine/resource.h>
#include <machine/clock.h>
#include <sys/rman.h>
#include <sys/malloc.h>
#include <dev/isp/isp_freebsd.h>
#include <dev/isp/asm_pci.h>
static u_int16_t isp_pci_rd_reg __P((struct ispsoftc *, int)); static u_int16_t isp_pci_rd_reg __P((struct ispsoftc *, int));
static void isp_pci_wr_reg __P((struct ispsoftc *, int, u_int16_t)); static void isp_pci_wr_reg __P((struct ispsoftc *, int, u_int16_t));
#ifndef ISP_DISABLE_1080_SUPPORT #if !defined(ISP_DISABLE_1080_SUPPORT) && !defined(ISP_DISABLE_12160_SUPPORT)
static u_int16_t isp_pci_rd_reg_1080 __P((struct ispsoftc *, int)); static u_int16_t isp_pci_rd_reg_1080 __P((struct ispsoftc *, int));
static void isp_pci_wr_reg_1080 __P((struct ispsoftc *, int, u_int16_t)); static void isp_pci_wr_reg_1080 __P((struct ispsoftc *, int, u_int16_t));
#endif #endif
@ -72,6 +78,9 @@ static void isp_pci_dumpregs __P((struct ispsoftc *));
#ifndef ISP_1080_RISC_CODE #ifndef ISP_1080_RISC_CODE
#define ISP_1080_RISC_CODE NULL #define ISP_1080_RISC_CODE NULL
#endif #endif
#ifndef ISP_12160_RISC_CODE
#define ISP_12160_RISC_CODE NULL
#endif
#ifndef ISP_2100_RISC_CODE #ifndef ISP_2100_RISC_CODE
#define ISP_2100_RISC_CODE NULL #define ISP_2100_RISC_CODE NULL
#endif #endif
@ -117,6 +126,25 @@ static struct ispmdvec mdvec_1080 = {
}; };
#endif #endif
#ifndef ISP_DISABLE_12160_SUPPORT
static struct ispmdvec mdvec_12160 = {
isp_pci_rd_reg_1080,
isp_pci_wr_reg_1080,
isp_pci_mbxdma,
isp_pci_dmasetup,
isp_pci_dmateardown,
NULL,
isp_pci_reset1,
isp_pci_dumpregs,
ISP_12160_RISC_CODE,
0,
ISP_CODE_ORG,
0,
BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64,
0
};
#endif
#ifndef ISP_DISABLE_2100_SUPPORT #ifndef ISP_DISABLE_2100_SUPPORT
static struct ispmdvec mdvec_2100 = { static struct ispmdvec mdvec_2100 = {
isp_pci_rd_reg, isp_pci_rd_reg,
@ -200,6 +228,10 @@ static struct ispmdvec mdvec_2200 = {
#define PCI_PRODUCT_QLOGIC_ISP1080 0x1080 #define PCI_PRODUCT_QLOGIC_ISP1080 0x1080
#endif #endif
#ifndef PCI_PRODUCT_QLOGIC_ISP12160
#define PCI_PRODUCT_QLOGIC_ISP12160 0x1216
#endif
#ifndef PCI_PRODUCT_QLOGIC_ISP1240 #ifndef PCI_PRODUCT_QLOGIC_ISP1240
#define PCI_PRODUCT_QLOGIC_ISP1240 0x1240 #define PCI_PRODUCT_QLOGIC_ISP1240 0x1240
#endif #endif
@ -221,6 +253,9 @@ static struct ispmdvec mdvec_2200 = {
#define PCI_QLOGIC_ISP1080 \ #define PCI_QLOGIC_ISP1080 \
((PCI_PRODUCT_QLOGIC_ISP1080 << 16) | PCI_VENDOR_QLOGIC) ((PCI_PRODUCT_QLOGIC_ISP1080 << 16) | PCI_VENDOR_QLOGIC)
#define PCI_QLOGIC_ISP12160 \
((PCI_PRODUCT_QLOGIC_ISP12160 << 16) | PCI_VENDOR_QLOGIC)
#define PCI_QLOGIC_ISP1240 \ #define PCI_QLOGIC_ISP1240 \
((PCI_PRODUCT_QLOGIC_ISP1240 << 16) | PCI_VENDOR_QLOGIC) ((PCI_PRODUCT_QLOGIC_ISP1240 << 16) | PCI_VENDOR_QLOGIC)
@ -239,8 +274,8 @@ static struct ispmdvec mdvec_2200 = {
#define PCI_DFLT_LTNCY 0x40 #define PCI_DFLT_LTNCY 0x40
#define PCI_DFLT_LNSZ 0x10 #define PCI_DFLT_LNSZ 0x10
static const char *isp_pci_probe __P((pcici_t tag, pcidi_t type)); static int isp_pci_probe (device_t);
static void isp_pci_attach __P((pcici_t config_d, int unit)); static int isp_pci_attach (device_t);
/* This distinguishing define is not right, but it does work */ /* This distinguishing define is not right, but it does work */
#ifdef __alpha__ #ifdef __alpha__
@ -253,9 +288,11 @@ static void isp_pci_attach __P((pcici_t config_d, int unit));
struct isp_pcisoftc { struct isp_pcisoftc {
struct ispsoftc pci_isp; struct ispsoftc pci_isp;
pcici_t pci_id; device_t pci_dev;
struct resource * pci_reg;
bus_space_tag_t pci_st; bus_space_tag_t pci_st;
bus_space_handle_t pci_sh; bus_space_handle_t pci_sh;
void * ih;
int16_t pci_poff[_NREG_BLKS]; int16_t pci_poff[_NREG_BLKS];
bus_dma_tag_t parent_dmat; bus_dma_tag_t parent_dmat;
bus_dma_tag_t cntrol_dmat; bus_dma_tag_t cntrol_dmat;
@ -263,166 +300,152 @@ struct isp_pcisoftc {
bus_dmamap_t *dmaps; bus_dmamap_t *dmaps;
}; };
static u_long ispunit; static device_method_t isp_pci_methods[] = {
/* Device interface */
static struct pci_device isp_pci_driver = { DEVMETHOD(device_probe, isp_pci_probe),
"isp", DEVMETHOD(device_attach, isp_pci_attach),
isp_pci_probe, { 0, 0 }
isp_pci_attach,
&ispunit,
NULL
}; };
COMPAT_PCI_DRIVER (isp_pci, isp_pci_driver);
static driver_t isp_pci_driver = {
"isp", isp_pci_methods, sizeof (struct isp_pcisoftc)
};
static devclass_t isp_devclass;
DRIVER_MODULE(isp, pci, isp_pci_driver, isp_devclass, 0, 0);
static const char * static int
isp_pci_probe(pcici_t tag, pcidi_t type) isp_pci_probe(device_t dev)
{ {
static int oneshot = 1; switch ((pci_get_device(dev) << 16) | (pci_get_vendor(dev))) {
char *x;
switch (type) {
#ifndef ISP_DISABLE_1020_SUPPORT #ifndef ISP_DISABLE_1020_SUPPORT
case PCI_QLOGIC_ISP: case PCI_QLOGIC_ISP:
x = "Qlogic ISP 1020/1040 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1020/1040 PCI SCSI Adapter");
break; break;
#endif #endif
#ifndef ISP_DISABLE_1080_SUPPORT #ifndef ISP_DISABLE_1080_SUPPORT
case PCI_QLOGIC_ISP1080: case PCI_QLOGIC_ISP1080:
x = "Qlogic ISP 1080 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1080 PCI SCSI Adapter");
break; break;
case PCI_QLOGIC_ISP1240: case PCI_QLOGIC_ISP1240:
x = "Qlogic ISP 1240 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1240 PCI SCSI Adapter");
break; break;
case PCI_QLOGIC_ISP1280: case PCI_QLOGIC_ISP1280:
x = "Qlogic ISP 1280 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1280 PCI SCSI Adapter");
break;
#endif
#ifndef ISP_DISABLE_12160_SUPPORT
case PCI_QLOGIC_ISP12160:
device_set_desc(dev, "Qlogic ISP 12160 PCI SCSI Adapter");
break; break;
#endif #endif
#ifndef ISP_DISABLE_2100_SUPPORT #ifndef ISP_DISABLE_2100_SUPPORT
case PCI_QLOGIC_ISP2100: case PCI_QLOGIC_ISP2100:
x = "Qlogic ISP 2100 PCI FC-AL Adapter"; device_set_desc(dev, "Qlogic ISP 2100 PCI FC-AL Adapter");
break; break;
#endif #endif
#ifndef ISP_DISABLE_2200_SUPPORT #ifndef ISP_DISABLE_2200_SUPPORT
case PCI_QLOGIC_ISP2200: case PCI_QLOGIC_ISP2200:
x = "Qlogic ISP 2200 PCI FC-AL Adapter"; device_set_desc(dev, "Qlogic ISP 2200 PCI FC-AL Adapter");
break; break;
#endif #endif
default: default:
return (NULL); return (ENXIO);
} }
if (oneshot) { if (device_get_unit(dev) == 0) {
oneshot = 0;
CFGPRINTF("Qlogic ISP Driver, FreeBSD Version %d.%d, " CFGPRINTF("Qlogic ISP Driver, FreeBSD Version %d.%d, "
"Core Version %d.%d\n", "Core Version %d.%d\n",
ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR, ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR,
ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR); ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR);
} }
return (x); return (0);
} }
static void static int
isp_pci_attach(pcici_t cfid, int unit) isp_pci_attach(device_t dev)
{ {
#ifdef SCSI_ISP_WWN #ifdef SCSI_ISP_WWN
const char *name = SCSI_ISP_WWN; const char *name = SCSI_ISP_WWN;
char *vtp = NULL; char *vtp = NULL;
#endif #endif
int mapped, prefer_mem_map, bitmap; struct resource *regs, *irq;
pci_port_t io_port; int unit, bitmap, rtp, rgd, iqd, m1, m2;
u_int32_t data, rev, linesz, psize, basetype; u_int32_t data, cmd, linesz, psize, basetype;
struct isp_pcisoftc *pcs; struct isp_pcisoftc *pcs;
struct ispsoftc *isp; struct ispsoftc *isp;
vm_offset_t vaddr, paddr;
struct ispmdvec *mdvp; struct ispmdvec *mdvp;
bus_size_t lim; bus_size_t lim;
ISP_LOCKVAL_DECL; ISP_LOCKVAL_DECL;
pcs = malloc(sizeof (struct isp_pcisoftc), M_DEVBUF, M_NOWAIT);
if (pcs == NULL) {
printf("isp%d: cannot allocate softc\n", unit);
return;
}
bzero(pcs, sizeof (struct isp_pcisoftc));
/* /*
* Figure out if we're supposed to skip this one. * Figure out if we're supposed to skip this one.
*/ */
unit = device_get_unit(dev);
if (getenv_int("isp_disable", &bitmap)) { if (getenv_int("isp_disable", &bitmap)) {
if (bitmap & (1 << unit)) { if (bitmap & (1 << unit)) {
printf("isp%d: not configuring\n", unit); device_printf(dev, "not configuring\n");
return; return (ENODEV);
} }
} }
pcs = malloc(sizeof (struct isp_pcisoftc), M_DEVBUF, M_NOWAIT);
if (pcs == NULL) {
device_printf(dev, "cannot allocate softc\n");
return (ENOMEM);
}
bzero(pcs, sizeof (struct isp_pcisoftc));
/* /*
* Figure out which we should try first - memory mapping or i/o mapping? * Figure out which we should try first - memory mapping or i/o mapping?
*/ */
#if SCSI_ISP_PREFER_MEM_MAP == 1 #if SCSI_ISP_PREFER_MEM_MAP == 1
prefer_mem_map = 1; m1 = PCIM_CMD_MEMEN;
m2 = PCIM_CMD_PORTEN;
#else #else
prefer_mem_map = 0; m1 = PCIM_CMD_PORTEN;
m2 = PCIM_CMD_MEMEN;
#endif #endif
bitmap = 0; bitmap = 0;
if (getenv_int("isp_mem_map", &bitmap)) { if (getenv_int("isp_mem_map", &bitmap)) {
if (bitmap & (1 << unit)) if (bitmap & (1 << unit)) {
prefer_mem_map = 1; m1 = PCIM_CMD_MEMEN;
m2 = PCIM_CMD_PORTEN;
}
} }
bitmap = 0; bitmap = 0;
if (getenv_int("isp_io_map", &bitmap)) { if (getenv_int("isp_io_map", &bitmap)) {
if (bitmap & (1 << unit)) if (bitmap & (1 << unit)) {
prefer_mem_map = 0; m1 = PCIM_CMD_PORTEN;
m2 = PCIM_CMD_MEMEN;
}
} }
vaddr = paddr = NULL;
mapped = 0;
linesz = PCI_DFLT_LNSZ; linesz = PCI_DFLT_LNSZ;
/* irq = regs = NULL;
* Note that pci_conf_read is a 32 bit word aligned function. rgd = rtp = iqd = 0;
*/
data = pci_conf_read(cfid, PCIR_COMMAND); cmd = pci_read_config(dev, PCIR_COMMAND, 1);
if (prefer_mem_map) { if (cmd & m1) {
if (data & PCI_COMMAND_MEM_ENABLE) { rtp = (m1 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT;
if (pci_map_mem(cfid, MEM_MAP_REG, &vaddr, &paddr)) { rgd = (m1 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG;
pcs->pci_st = MEM_SPACE_MAPPING; regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE);
pcs->pci_sh = vaddr;
mapped++;
}
}
if (mapped == 0 && (data & PCI_COMMAND_IO_ENABLE)) {
if (pci_map_port(cfid, PCI_MAP_REG_START, &io_port)) {
pcs->pci_st = IO_SPACE_MAPPING;
pcs->pci_sh = io_port;
mapped++;
}
}
} else {
if (data & PCI_COMMAND_IO_ENABLE) {
if (pci_map_port(cfid, PCI_MAP_REG_START, &io_port)) {
pcs->pci_st = IO_SPACE_MAPPING;
pcs->pci_sh = io_port;
mapped++;
}
}
if (mapped == 0 && (data & PCI_COMMAND_MEM_ENABLE)) {
if (pci_map_mem(cfid, MEM_MAP_REG, &vaddr, &paddr)) {
pcs->pci_st = MEM_SPACE_MAPPING;
pcs->pci_sh = vaddr;
mapped++;
}
}
} }
if (mapped == 0) { if (regs == NULL && (cmd & m2)) {
printf("isp%d: unable to map any ports!\n", unit); rtp = (m2 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT;
free(pcs, M_DEVBUF); rgd = (m2 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG;
return; regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE);
}
if (regs == NULL) {
device_printf(dev, "unable to map any ports\n");
goto bad;
} }
if (bootverbose) if (bootverbose)
printf("isp%d: using %s space register mapping\n", unit, printf("isp%d: using %s space register mapping\n", unit,
pcs->pci_st == IO_SPACE_MAPPING? "I/O" : "Memory"); (rgd == IO_MAP_REG)? "I/O" : "Memory");
pcs->pci_dev = dev;
pcs->pci_reg = regs;
pcs->pci_st = rman_get_bustag(regs);
pcs->pci_sh = rman_get_bushandle(regs);
data = pci_conf_read(cfid, PCI_ID_REG);
rev = pci_conf_read(cfid, PCI_CLASS_REG) & 0xff; /* revision */
pcs->pci_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF; pcs->pci_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF;
pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = PCI_MBOX_REGS_OFF; pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = PCI_MBOX_REGS_OFF;
pcs->pci_poff[SXP_BLOCK >> _BLK_REG_SHFT] = PCI_SXP_REGS_OFF; pcs->pci_poff[SXP_BLOCK >> _BLK_REG_SHFT] = PCI_SXP_REGS_OFF;
@ -436,7 +459,7 @@ isp_pci_attach(pcici_t cfid, int unit)
psize = sizeof (sdparam); psize = sizeof (sdparam);
lim = BUS_SPACE_MAXSIZE_32BIT; lim = BUS_SPACE_MAXSIZE_32BIT;
#ifndef ISP_DISABLE_1020_SUPPORT #ifndef ISP_DISABLE_1020_SUPPORT
if (data == PCI_QLOGIC_ISP) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP) {
mdvp = &mdvec; mdvp = &mdvec;
basetype = ISP_HA_SCSI_UNKNOWN; basetype = ISP_HA_SCSI_UNKNOWN;
psize = sizeof (sdparam); psize = sizeof (sdparam);
@ -444,21 +467,21 @@ isp_pci_attach(pcici_t cfid, int unit)
} }
#endif #endif
#ifndef ISP_DISABLE_1080_SUPPORT #ifndef ISP_DISABLE_1080_SUPPORT
if (data == PCI_QLOGIC_ISP1080) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP1080) {
mdvp = &mdvec_1080; mdvp = &mdvec_1080;
basetype = ISP_HA_SCSI_1080; basetype = ISP_HA_SCSI_1080;
psize = sizeof (sdparam); psize = sizeof (sdparam);
pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] =
ISP1080_DMA_REGS_OFF; ISP1080_DMA_REGS_OFF;
} }
if (data == PCI_QLOGIC_ISP1240) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP1240) {
mdvp = &mdvec_1080; mdvp = &mdvec_1080;
basetype = ISP_HA_SCSI_1240; basetype = ISP_HA_SCSI_1240;
psize = 2 * sizeof (sdparam); psize = 2 * sizeof (sdparam);
pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] =
ISP1080_DMA_REGS_OFF; ISP1080_DMA_REGS_OFF;
} }
if (data == PCI_QLOGIC_ISP1280) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP1280) {
mdvp = &mdvec_1080; mdvp = &mdvec_1080;
basetype = ISP_HA_SCSI_1280; basetype = ISP_HA_SCSI_1280;
psize = 2 * sizeof (sdparam); psize = 2 * sizeof (sdparam);
@ -466,14 +489,23 @@ isp_pci_attach(pcici_t cfid, int unit)
ISP1080_DMA_REGS_OFF; ISP1080_DMA_REGS_OFF;
} }
#endif #endif
#ifndef ISP_DISABLE_1080_SUPPORT
if (pci_get_devid(dev) == PCI_QLOGIC_ISP12160) {
mdvp = &mdvec_12160;
basetype = ISP_HA_SCSI_12160;
psize = 2 * sizeof (sdparam);
pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] =
ISP1080_DMA_REGS_OFF;
}
#endif
#ifndef ISP_DISABLE_2100_SUPPORT #ifndef ISP_DISABLE_2100_SUPPORT
if (data == PCI_QLOGIC_ISP2100) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP2100) {
mdvp = &mdvec_2100; mdvp = &mdvec_2100;
basetype = ISP_HA_FC_2100; basetype = ISP_HA_FC_2100;
psize = sizeof (fcparam); psize = sizeof (fcparam);
pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] =
PCI_MBOX_REGS2100_OFF; PCI_MBOX_REGS2100_OFF;
if (rev < 3) { if (pci_get_revid(dev) < 3) {
/* /*
* XXX: Need to get the actual revision * XXX: Need to get the actual revision
* XXX: number of the 2100 FB. At any rate, * XXX: number of the 2100 FB. At any rate,
@ -485,7 +517,7 @@ isp_pci_attach(pcici_t cfid, int unit)
} }
#endif #endif
#ifndef ISP_DISABLE_2200_SUPPORT #ifndef ISP_DISABLE_2200_SUPPORT
if (data == PCI_QLOGIC_ISP2200) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP2200) {
mdvp = &mdvec_2200; mdvp = &mdvec_2200;
basetype = ISP_HA_FC_2200; basetype = ISP_HA_FC_2200;
psize = sizeof (fcparam); psize = sizeof (fcparam);
@ -496,72 +528,70 @@ isp_pci_attach(pcici_t cfid, int unit)
isp = &pcs->pci_isp; isp = &pcs->pci_isp;
isp->isp_param = malloc(psize, M_DEVBUF, M_NOWAIT); isp->isp_param = malloc(psize, M_DEVBUF, M_NOWAIT);
if (isp->isp_param == NULL) { if (isp->isp_param == NULL) {
printf("isp%d: cannot allocate parameter data\n", unit); device_printf(dev, "cannot allocate parameter data\n");
return; goto bad;
} }
bzero(isp->isp_param, psize); bzero(isp->isp_param, psize);
isp->isp_mdvec = mdvp; isp->isp_mdvec = mdvp;
isp->isp_type = basetype; isp->isp_type = basetype;
isp->isp_revision = rev; isp->isp_revision = pci_get_revid(dev);
(void) snprintf(isp->isp_name, sizeof (isp->isp_name), "isp%d", unit); (void) snprintf(isp->isp_name, sizeof (isp->isp_name), "isp%d", unit);
isp->isp_osinfo.unit = unit; isp->isp_osinfo.unit = unit;
ISP_LOCK(isp); ISP_LOCK(isp);
/* /*
* Make sure that SERR, PERR, WRITE INVALIDATE and BUSMASTER * Make sure that SERR, PERR, WRITE INVALIDATE and BUSMASTER
* are set. * are set.
*/ */
data = pci_cfgread(cfid, PCIR_COMMAND, 2); cmd |= PCIM_CMD_SEREN | PCIM_CMD_PERRESPEN |
data |= PCIM_CMD_SEREN | PCIM_CMD_BUSMASTEREN | PCIM_CMD_INVEN;
PCIM_CMD_PERRESPEN | pci_write_config(dev, PCIR_COMMAND, cmd, 1);
PCIM_CMD_BUSMASTEREN |
PCIM_CMD_INVEN;
pci_cfgwrite(cfid, PCIR_COMMAND, 2, data);
/* /*
* Make sure the Cache Line Size register is set sensibly. * Make sure the Cache Line Size register is set sensibly.
*/ */
data = pci_cfgread(cfid, PCIR_CACHELNSZ, 1); data = pci_read_config(dev, PCIR_CACHELNSZ, 1);
if (data != linesz) { if (data != linesz) {
data = PCI_DFLT_LNSZ; data = PCI_DFLT_LNSZ;
CFGPRINTF("%s: set PCI line size to %d\n", isp->isp_name, data); CFGPRINTF("%s: set PCI line size to %d\n", isp->isp_name, data);
pci_cfgwrite(cfid, PCIR_CACHELNSZ, data, 1); pci_write_config(dev, PCIR_CACHELNSZ, data, 1);
} }
/* /*
* Make sure the Latency Timer is sane. * Make sure the Latency Timer is sane.
*/ */
data = pci_cfgread(cfid, PCIR_LATTIMER, 1); data = pci_read_config(dev, PCIR_LATTIMER, 1);
if (data < PCI_DFLT_LTNCY) { if (data < PCI_DFLT_LTNCY) {
data = PCI_DFLT_LTNCY; data = PCI_DFLT_LTNCY;
CFGPRINTF("%s: set PCI latency to %d\n", isp->isp_name, data); CFGPRINTF("%s: set PCI latency to %d\n", isp->isp_name, data);
pci_cfgwrite(cfid, PCIR_LATTIMER, data, 1); pci_write_config(dev, PCIR_LATTIMER, data, 1);
} }
/* /*
* Make sure we've disabled the ROM. * Make sure we've disabled the ROM.
*/ */
data = pci_cfgread(cfid, PCIR_ROMADDR, 4); data = pci_read_config(dev, PCIR_ROMADDR, 4);
data &= ~1; data &= ~1;
pci_cfgwrite(cfid, PCIR_ROMADDR, data, 4); pci_write_config(dev, PCIR_ROMADDR, data, 4);
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
if (bus_dma_tag_create(NULL, 1, 0, BUS_SPACE_MAXADDR_32BIT, if (bus_dma_tag_create(NULL, 1, 0, BUS_SPACE_MAXADDR_32BIT,
BUS_SPACE_MAXADDR, NULL, NULL, lim + 1, BUS_SPACE_MAXADDR, NULL, NULL, lim + 1,
255, lim, 0, &pcs->parent_dmat) != 0) { 255, lim, 0, &pcs->parent_dmat) != 0) {
printf("%s: could not create master dma tag\n", isp->isp_name); printf("%s: could not create master dma tag\n", isp->isp_name);
free(isp->isp_param, M_DEVBUF);
free(pcs, M_DEVBUF); free(pcs, M_DEVBUF);
return; return (ENXIO);
} }
if (pci_map_int(cfid, (void (*)(void *))isp_intr,
(void *)isp, &IMASK) == 0) { iqd = 0;
printf("%s: could not map interrupt\n", isp->isp_name); irq = bus_alloc_resource(dev, SYS_RES_IRQ, &iqd, 0, ~0,
free(pcs, M_DEVBUF); 1, RF_ACTIVE | RF_SHAREABLE);
return; if (irq == NULL) {
device_printf(dev, "could not allocate interrupt\n");
goto bad;
} }
pcs->pci_id = cfid;
#ifdef SCSI_ISP_NO_FWLOAD_MASK #ifdef SCSI_ISP_NO_FWLOAD_MASK
if (SCSI_ISP_NO_FWLOAD_MASK && (SCSI_ISP_NO_FWLOAD_MASK & (1 << unit))) if (SCSI_ISP_NO_FWLOAD_MASK && (SCSI_ISP_NO_FWLOAD_MASK & (1 << unit)))
isp->isp_confopts |= ISP_CFG_NORELOAD; isp->isp_confopts |= ISP_CFG_NORELOAD;
@ -605,6 +635,10 @@ isp_pci_attach(pcici_t cfid, int unit)
if (bitmap & (1 << unit)) if (bitmap & (1 << unit))
isp->isp_confopts &= ~ISP_CFG_FULL_DUPLEX; isp->isp_confopts &= ~ISP_CFG_FULL_DUPLEX;
} }
if (getenv_int("isp_nport", &bitmap)) {
if (bitmap & (1 << unit))
isp->isp_confopts |= ISP_CFG_NPORT;
}
/* /*
* Look for overriding WWN. This is a Node WWN so it binds to * Look for overriding WWN. This is a Node WWN so it binds to
* all FC instances. A Port WWN will be constructed from it * all FC instances. A Port WWN will be constructed from it
@ -642,22 +676,25 @@ isp_pci_attach(pcici_t cfid, int unit)
(void) getenv_int("isp_tdebug", &isp_tdebug); (void) getenv_int("isp_tdebug", &isp_tdebug);
#endif #endif
ISP_LOCK(isp); ISP_LOCK(isp);
if (bus_setup_intr(dev, irq, INTR_TYPE_CAM, (void (*)(void *))isp_intr,
isp, &pcs->ih)) {
ISP_UNLOCK(isp);
device_printf(dev, "could not setup interrupt\n");
goto bad;
}
isp_reset(isp); isp_reset(isp);
if (isp->isp_state != ISP_RESETSTATE) { if (isp->isp_state != ISP_RESETSTATE) {
(void) pci_unmap_int(cfid);
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
free(pcs, M_DEVBUF); goto bad;
return;
} }
isp_init(isp); isp_init(isp);
if (isp->isp_state != ISP_INITSTATE) { if (isp->isp_state != ISP_INITSTATE) {
/* If we're a Fibre Channel Card, we allow deferred attach */ /* If we're a Fibre Channel Card, we allow deferred attach */
if (IS_SCSI(isp)) { if (IS_SCSI(isp)) {
isp_uninit(isp); isp_uninit(isp);
(void) pci_unmap_int(cfid); /* Does nothing */
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
free(pcs, M_DEVBUF); goto bad;
return;
} }
} }
isp_attach(isp); isp_attach(isp);
@ -665,13 +702,31 @@ isp_pci_attach(pcici_t cfid, int unit)
/* If we're a Fibre Channel Card, we allow deferred attach */ /* If we're a Fibre Channel Card, we allow deferred attach */
if (IS_SCSI(isp)) { if (IS_SCSI(isp)) {
isp_uninit(isp); isp_uninit(isp);
(void) pci_unmap_int(cfid); /* Does nothing */
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
free(pcs, M_DEVBUF); goto bad;
return;
} }
} }
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
return (0);
bad:
if (pcs && pcs->ih) {
(void) bus_teardown_intr(dev, irq, pcs->ih);
}
if (irq) {
(void) bus_release_resource(dev, SYS_RES_IRQ, iqd, irq);
}
if (regs) {
(void) bus_release_resource(dev, rtp, rgd, regs);
}
if (pcs) {
if (pcs->pci_isp.isp_param)
free(pcs->pci_isp.isp_param, M_DEVBUF);
free(pcs, M_DEVBUF);
}
return (ENXIO);
} }
static u_int16_t static u_int16_t
@ -723,7 +778,7 @@ isp_pci_wr_reg(isp, regoff, val)
} }
} }
#ifndef ISP_DISABLE_1080_SUPPORT #if !defined(ISP_DISABLE_1080_SUPPORT) && !defined(ISP_DISABLE_12160_SUPPORT)
static u_int16_t static u_int16_t
isp_pci_rd_reg_1080(isp, regoff) isp_pci_rd_reg_1080(isp, regoff)
struct ispsoftc *isp; struct ispsoftc *isp;
@ -1705,6 +1760,6 @@ static void
isp_pci_dumpregs(struct ispsoftc *isp) isp_pci_dumpregs(struct ispsoftc *isp)
{ {
struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp; struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp;
printf("%s: PCI Status Command/Status=%lx\n", pci->pci_isp.isp_name, printf("%s: PCI Status Command/Status=%x\n", pci->pci_isp.isp_name,
pci_conf_read(pci->pci_id, PCIR_COMMAND)); pci_read_config(pci->pci_dev, PCIR_COMMAND, 1));
} }

View File

@ -33,12 +33,12 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <dev/isp/isp_freebsd.h>
#include <dev/isp/asm_pci.h>
#include <sys/malloc.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/bus.h>
#include <pci/pcireg.h> #include <pci/pcireg.h>
#include <pci/pcivar.h> #include <pci/pcivar.h>
@ -46,11 +46,17 @@
#include <machine/bus_memio.h> #include <machine/bus_memio.h>
#include <machine/bus_pio.h> #include <machine/bus_pio.h>
#include <machine/bus.h> #include <machine/bus.h>
#include <machine/md_var.h> #include <machine/resource.h>
#include <machine/clock.h>
#include <sys/rman.h>
#include <sys/malloc.h>
#include <dev/isp/isp_freebsd.h>
#include <dev/isp/asm_pci.h>
static u_int16_t isp_pci_rd_reg __P((struct ispsoftc *, int)); static u_int16_t isp_pci_rd_reg __P((struct ispsoftc *, int));
static void isp_pci_wr_reg __P((struct ispsoftc *, int, u_int16_t)); static void isp_pci_wr_reg __P((struct ispsoftc *, int, u_int16_t));
#ifndef ISP_DISABLE_1080_SUPPORT #if !defined(ISP_DISABLE_1080_SUPPORT) && !defined(ISP_DISABLE_12160_SUPPORT)
static u_int16_t isp_pci_rd_reg_1080 __P((struct ispsoftc *, int)); static u_int16_t isp_pci_rd_reg_1080 __P((struct ispsoftc *, int));
static void isp_pci_wr_reg_1080 __P((struct ispsoftc *, int, u_int16_t)); static void isp_pci_wr_reg_1080 __P((struct ispsoftc *, int, u_int16_t));
#endif #endif
@ -72,6 +78,9 @@ static void isp_pci_dumpregs __P((struct ispsoftc *));
#ifndef ISP_1080_RISC_CODE #ifndef ISP_1080_RISC_CODE
#define ISP_1080_RISC_CODE NULL #define ISP_1080_RISC_CODE NULL
#endif #endif
#ifndef ISP_12160_RISC_CODE
#define ISP_12160_RISC_CODE NULL
#endif
#ifndef ISP_2100_RISC_CODE #ifndef ISP_2100_RISC_CODE
#define ISP_2100_RISC_CODE NULL #define ISP_2100_RISC_CODE NULL
#endif #endif
@ -117,6 +126,25 @@ static struct ispmdvec mdvec_1080 = {
}; };
#endif #endif
#ifndef ISP_DISABLE_12160_SUPPORT
static struct ispmdvec mdvec_12160 = {
isp_pci_rd_reg_1080,
isp_pci_wr_reg_1080,
isp_pci_mbxdma,
isp_pci_dmasetup,
isp_pci_dmateardown,
NULL,
isp_pci_reset1,
isp_pci_dumpregs,
ISP_12160_RISC_CODE,
0,
ISP_CODE_ORG,
0,
BIU_BURST_ENABLE|BIU_PCI_CONF1_FIFO_64,
0
};
#endif
#ifndef ISP_DISABLE_2100_SUPPORT #ifndef ISP_DISABLE_2100_SUPPORT
static struct ispmdvec mdvec_2100 = { static struct ispmdvec mdvec_2100 = {
isp_pci_rd_reg, isp_pci_rd_reg,
@ -200,6 +228,10 @@ static struct ispmdvec mdvec_2200 = {
#define PCI_PRODUCT_QLOGIC_ISP1080 0x1080 #define PCI_PRODUCT_QLOGIC_ISP1080 0x1080
#endif #endif
#ifndef PCI_PRODUCT_QLOGIC_ISP12160
#define PCI_PRODUCT_QLOGIC_ISP12160 0x1216
#endif
#ifndef PCI_PRODUCT_QLOGIC_ISP1240 #ifndef PCI_PRODUCT_QLOGIC_ISP1240
#define PCI_PRODUCT_QLOGIC_ISP1240 0x1240 #define PCI_PRODUCT_QLOGIC_ISP1240 0x1240
#endif #endif
@ -221,6 +253,9 @@ static struct ispmdvec mdvec_2200 = {
#define PCI_QLOGIC_ISP1080 \ #define PCI_QLOGIC_ISP1080 \
((PCI_PRODUCT_QLOGIC_ISP1080 << 16) | PCI_VENDOR_QLOGIC) ((PCI_PRODUCT_QLOGIC_ISP1080 << 16) | PCI_VENDOR_QLOGIC)
#define PCI_QLOGIC_ISP12160 \
((PCI_PRODUCT_QLOGIC_ISP12160 << 16) | PCI_VENDOR_QLOGIC)
#define PCI_QLOGIC_ISP1240 \ #define PCI_QLOGIC_ISP1240 \
((PCI_PRODUCT_QLOGIC_ISP1240 << 16) | PCI_VENDOR_QLOGIC) ((PCI_PRODUCT_QLOGIC_ISP1240 << 16) | PCI_VENDOR_QLOGIC)
@ -239,8 +274,8 @@ static struct ispmdvec mdvec_2200 = {
#define PCI_DFLT_LTNCY 0x40 #define PCI_DFLT_LTNCY 0x40
#define PCI_DFLT_LNSZ 0x10 #define PCI_DFLT_LNSZ 0x10
static const char *isp_pci_probe __P((pcici_t tag, pcidi_t type)); static int isp_pci_probe (device_t);
static void isp_pci_attach __P((pcici_t config_d, int unit)); static int isp_pci_attach (device_t);
/* This distinguishing define is not right, but it does work */ /* This distinguishing define is not right, but it does work */
#ifdef __alpha__ #ifdef __alpha__
@ -253,9 +288,11 @@ static void isp_pci_attach __P((pcici_t config_d, int unit));
struct isp_pcisoftc { struct isp_pcisoftc {
struct ispsoftc pci_isp; struct ispsoftc pci_isp;
pcici_t pci_id; device_t pci_dev;
struct resource * pci_reg;
bus_space_tag_t pci_st; bus_space_tag_t pci_st;
bus_space_handle_t pci_sh; bus_space_handle_t pci_sh;
void * ih;
int16_t pci_poff[_NREG_BLKS]; int16_t pci_poff[_NREG_BLKS];
bus_dma_tag_t parent_dmat; bus_dma_tag_t parent_dmat;
bus_dma_tag_t cntrol_dmat; bus_dma_tag_t cntrol_dmat;
@ -263,166 +300,152 @@ struct isp_pcisoftc {
bus_dmamap_t *dmaps; bus_dmamap_t *dmaps;
}; };
static u_long ispunit; static device_method_t isp_pci_methods[] = {
/* Device interface */
static struct pci_device isp_pci_driver = { DEVMETHOD(device_probe, isp_pci_probe),
"isp", DEVMETHOD(device_attach, isp_pci_attach),
isp_pci_probe, { 0, 0 }
isp_pci_attach,
&ispunit,
NULL
}; };
COMPAT_PCI_DRIVER (isp_pci, isp_pci_driver);
static driver_t isp_pci_driver = {
"isp", isp_pci_methods, sizeof (struct isp_pcisoftc)
};
static devclass_t isp_devclass;
DRIVER_MODULE(isp, pci, isp_pci_driver, isp_devclass, 0, 0);
static const char * static int
isp_pci_probe(pcici_t tag, pcidi_t type) isp_pci_probe(device_t dev)
{ {
static int oneshot = 1; switch ((pci_get_device(dev) << 16) | (pci_get_vendor(dev))) {
char *x;
switch (type) {
#ifndef ISP_DISABLE_1020_SUPPORT #ifndef ISP_DISABLE_1020_SUPPORT
case PCI_QLOGIC_ISP: case PCI_QLOGIC_ISP:
x = "Qlogic ISP 1020/1040 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1020/1040 PCI SCSI Adapter");
break; break;
#endif #endif
#ifndef ISP_DISABLE_1080_SUPPORT #ifndef ISP_DISABLE_1080_SUPPORT
case PCI_QLOGIC_ISP1080: case PCI_QLOGIC_ISP1080:
x = "Qlogic ISP 1080 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1080 PCI SCSI Adapter");
break; break;
case PCI_QLOGIC_ISP1240: case PCI_QLOGIC_ISP1240:
x = "Qlogic ISP 1240 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1240 PCI SCSI Adapter");
break; break;
case PCI_QLOGIC_ISP1280: case PCI_QLOGIC_ISP1280:
x = "Qlogic ISP 1280 PCI SCSI Adapter"; device_set_desc(dev, "Qlogic ISP 1280 PCI SCSI Adapter");
break;
#endif
#ifndef ISP_DISABLE_12160_SUPPORT
case PCI_QLOGIC_ISP12160:
device_set_desc(dev, "Qlogic ISP 12160 PCI SCSI Adapter");
break; break;
#endif #endif
#ifndef ISP_DISABLE_2100_SUPPORT #ifndef ISP_DISABLE_2100_SUPPORT
case PCI_QLOGIC_ISP2100: case PCI_QLOGIC_ISP2100:
x = "Qlogic ISP 2100 PCI FC-AL Adapter"; device_set_desc(dev, "Qlogic ISP 2100 PCI FC-AL Adapter");
break; break;
#endif #endif
#ifndef ISP_DISABLE_2200_SUPPORT #ifndef ISP_DISABLE_2200_SUPPORT
case PCI_QLOGIC_ISP2200: case PCI_QLOGIC_ISP2200:
x = "Qlogic ISP 2200 PCI FC-AL Adapter"; device_set_desc(dev, "Qlogic ISP 2200 PCI FC-AL Adapter");
break; break;
#endif #endif
default: default:
return (NULL); return (ENXIO);
} }
if (oneshot) { if (device_get_unit(dev) == 0) {
oneshot = 0;
CFGPRINTF("Qlogic ISP Driver, FreeBSD Version %d.%d, " CFGPRINTF("Qlogic ISP Driver, FreeBSD Version %d.%d, "
"Core Version %d.%d\n", "Core Version %d.%d\n",
ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR, ISP_PLATFORM_VERSION_MAJOR, ISP_PLATFORM_VERSION_MINOR,
ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR); ISP_CORE_VERSION_MAJOR, ISP_CORE_VERSION_MINOR);
} }
return (x); return (0);
} }
static void static int
isp_pci_attach(pcici_t cfid, int unit) isp_pci_attach(device_t dev)
{ {
#ifdef SCSI_ISP_WWN #ifdef SCSI_ISP_WWN
const char *name = SCSI_ISP_WWN; const char *name = SCSI_ISP_WWN;
char *vtp = NULL; char *vtp = NULL;
#endif #endif
int mapped, prefer_mem_map, bitmap; struct resource *regs, *irq;
pci_port_t io_port; int unit, bitmap, rtp, rgd, iqd, m1, m2;
u_int32_t data, rev, linesz, psize, basetype; u_int32_t data, cmd, linesz, psize, basetype;
struct isp_pcisoftc *pcs; struct isp_pcisoftc *pcs;
struct ispsoftc *isp; struct ispsoftc *isp;
vm_offset_t vaddr, paddr;
struct ispmdvec *mdvp; struct ispmdvec *mdvp;
bus_size_t lim; bus_size_t lim;
ISP_LOCKVAL_DECL; ISP_LOCKVAL_DECL;
pcs = malloc(sizeof (struct isp_pcisoftc), M_DEVBUF, M_NOWAIT);
if (pcs == NULL) {
printf("isp%d: cannot allocate softc\n", unit);
return;
}
bzero(pcs, sizeof (struct isp_pcisoftc));
/* /*
* Figure out if we're supposed to skip this one. * Figure out if we're supposed to skip this one.
*/ */
unit = device_get_unit(dev);
if (getenv_int("isp_disable", &bitmap)) { if (getenv_int("isp_disable", &bitmap)) {
if (bitmap & (1 << unit)) { if (bitmap & (1 << unit)) {
printf("isp%d: not configuring\n", unit); device_printf(dev, "not configuring\n");
return; return (ENODEV);
} }
} }
pcs = malloc(sizeof (struct isp_pcisoftc), M_DEVBUF, M_NOWAIT);
if (pcs == NULL) {
device_printf(dev, "cannot allocate softc\n");
return (ENOMEM);
}
bzero(pcs, sizeof (struct isp_pcisoftc));
/* /*
* Figure out which we should try first - memory mapping or i/o mapping? * Figure out which we should try first - memory mapping or i/o mapping?
*/ */
#if SCSI_ISP_PREFER_MEM_MAP == 1 #if SCSI_ISP_PREFER_MEM_MAP == 1
prefer_mem_map = 1; m1 = PCIM_CMD_MEMEN;
m2 = PCIM_CMD_PORTEN;
#else #else
prefer_mem_map = 0; m1 = PCIM_CMD_PORTEN;
m2 = PCIM_CMD_MEMEN;
#endif #endif
bitmap = 0; bitmap = 0;
if (getenv_int("isp_mem_map", &bitmap)) { if (getenv_int("isp_mem_map", &bitmap)) {
if (bitmap & (1 << unit)) if (bitmap & (1 << unit)) {
prefer_mem_map = 1; m1 = PCIM_CMD_MEMEN;
m2 = PCIM_CMD_PORTEN;
}
} }
bitmap = 0; bitmap = 0;
if (getenv_int("isp_io_map", &bitmap)) { if (getenv_int("isp_io_map", &bitmap)) {
if (bitmap & (1 << unit)) if (bitmap & (1 << unit)) {
prefer_mem_map = 0; m1 = PCIM_CMD_PORTEN;
m2 = PCIM_CMD_MEMEN;
}
} }
vaddr = paddr = NULL;
mapped = 0;
linesz = PCI_DFLT_LNSZ; linesz = PCI_DFLT_LNSZ;
/* irq = regs = NULL;
* Note that pci_conf_read is a 32 bit word aligned function. rgd = rtp = iqd = 0;
*/
data = pci_conf_read(cfid, PCIR_COMMAND); cmd = pci_read_config(dev, PCIR_COMMAND, 1);
if (prefer_mem_map) { if (cmd & m1) {
if (data & PCI_COMMAND_MEM_ENABLE) { rtp = (m1 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT;
if (pci_map_mem(cfid, MEM_MAP_REG, &vaddr, &paddr)) { rgd = (m1 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG;
pcs->pci_st = MEM_SPACE_MAPPING; regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE);
pcs->pci_sh = vaddr;
mapped++;
}
}
if (mapped == 0 && (data & PCI_COMMAND_IO_ENABLE)) {
if (pci_map_port(cfid, PCI_MAP_REG_START, &io_port)) {
pcs->pci_st = IO_SPACE_MAPPING;
pcs->pci_sh = io_port;
mapped++;
}
}
} else {
if (data & PCI_COMMAND_IO_ENABLE) {
if (pci_map_port(cfid, PCI_MAP_REG_START, &io_port)) {
pcs->pci_st = IO_SPACE_MAPPING;
pcs->pci_sh = io_port;
mapped++;
}
}
if (mapped == 0 && (data & PCI_COMMAND_MEM_ENABLE)) {
if (pci_map_mem(cfid, MEM_MAP_REG, &vaddr, &paddr)) {
pcs->pci_st = MEM_SPACE_MAPPING;
pcs->pci_sh = vaddr;
mapped++;
}
}
} }
if (mapped == 0) { if (regs == NULL && (cmd & m2)) {
printf("isp%d: unable to map any ports!\n", unit); rtp = (m2 == PCIM_CMD_MEMEN)? SYS_RES_MEMORY : SYS_RES_IOPORT;
free(pcs, M_DEVBUF); rgd = (m2 == PCIM_CMD_MEMEN)? MEM_MAP_REG : IO_MAP_REG;
return; regs = bus_alloc_resource(dev, rtp, &rgd, 0, ~0, 1, RF_ACTIVE);
}
if (regs == NULL) {
device_printf(dev, "unable to map any ports\n");
goto bad;
} }
if (bootverbose) if (bootverbose)
printf("isp%d: using %s space register mapping\n", unit, printf("isp%d: using %s space register mapping\n", unit,
pcs->pci_st == IO_SPACE_MAPPING? "I/O" : "Memory"); (rgd == IO_MAP_REG)? "I/O" : "Memory");
pcs->pci_dev = dev;
pcs->pci_reg = regs;
pcs->pci_st = rman_get_bustag(regs);
pcs->pci_sh = rman_get_bushandle(regs);
data = pci_conf_read(cfid, PCI_ID_REG);
rev = pci_conf_read(cfid, PCI_CLASS_REG) & 0xff; /* revision */
pcs->pci_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF; pcs->pci_poff[BIU_BLOCK >> _BLK_REG_SHFT] = BIU_REGS_OFF;
pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = PCI_MBOX_REGS_OFF; pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = PCI_MBOX_REGS_OFF;
pcs->pci_poff[SXP_BLOCK >> _BLK_REG_SHFT] = PCI_SXP_REGS_OFF; pcs->pci_poff[SXP_BLOCK >> _BLK_REG_SHFT] = PCI_SXP_REGS_OFF;
@ -436,7 +459,7 @@ isp_pci_attach(pcici_t cfid, int unit)
psize = sizeof (sdparam); psize = sizeof (sdparam);
lim = BUS_SPACE_MAXSIZE_32BIT; lim = BUS_SPACE_MAXSIZE_32BIT;
#ifndef ISP_DISABLE_1020_SUPPORT #ifndef ISP_DISABLE_1020_SUPPORT
if (data == PCI_QLOGIC_ISP) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP) {
mdvp = &mdvec; mdvp = &mdvec;
basetype = ISP_HA_SCSI_UNKNOWN; basetype = ISP_HA_SCSI_UNKNOWN;
psize = sizeof (sdparam); psize = sizeof (sdparam);
@ -444,21 +467,21 @@ isp_pci_attach(pcici_t cfid, int unit)
} }
#endif #endif
#ifndef ISP_DISABLE_1080_SUPPORT #ifndef ISP_DISABLE_1080_SUPPORT
if (data == PCI_QLOGIC_ISP1080) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP1080) {
mdvp = &mdvec_1080; mdvp = &mdvec_1080;
basetype = ISP_HA_SCSI_1080; basetype = ISP_HA_SCSI_1080;
psize = sizeof (sdparam); psize = sizeof (sdparam);
pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] =
ISP1080_DMA_REGS_OFF; ISP1080_DMA_REGS_OFF;
} }
if (data == PCI_QLOGIC_ISP1240) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP1240) {
mdvp = &mdvec_1080; mdvp = &mdvec_1080;
basetype = ISP_HA_SCSI_1240; basetype = ISP_HA_SCSI_1240;
psize = 2 * sizeof (sdparam); psize = 2 * sizeof (sdparam);
pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] = pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] =
ISP1080_DMA_REGS_OFF; ISP1080_DMA_REGS_OFF;
} }
if (data == PCI_QLOGIC_ISP1280) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP1280) {
mdvp = &mdvec_1080; mdvp = &mdvec_1080;
basetype = ISP_HA_SCSI_1280; basetype = ISP_HA_SCSI_1280;
psize = 2 * sizeof (sdparam); psize = 2 * sizeof (sdparam);
@ -466,14 +489,23 @@ isp_pci_attach(pcici_t cfid, int unit)
ISP1080_DMA_REGS_OFF; ISP1080_DMA_REGS_OFF;
} }
#endif #endif
#ifndef ISP_DISABLE_1080_SUPPORT
if (pci_get_devid(dev) == PCI_QLOGIC_ISP12160) {
mdvp = &mdvec_12160;
basetype = ISP_HA_SCSI_12160;
psize = 2 * sizeof (sdparam);
pcs->pci_poff[DMA_BLOCK >> _BLK_REG_SHFT] =
ISP1080_DMA_REGS_OFF;
}
#endif
#ifndef ISP_DISABLE_2100_SUPPORT #ifndef ISP_DISABLE_2100_SUPPORT
if (data == PCI_QLOGIC_ISP2100) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP2100) {
mdvp = &mdvec_2100; mdvp = &mdvec_2100;
basetype = ISP_HA_FC_2100; basetype = ISP_HA_FC_2100;
psize = sizeof (fcparam); psize = sizeof (fcparam);
pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] = pcs->pci_poff[MBOX_BLOCK >> _BLK_REG_SHFT] =
PCI_MBOX_REGS2100_OFF; PCI_MBOX_REGS2100_OFF;
if (rev < 3) { if (pci_get_revid(dev) < 3) {
/* /*
* XXX: Need to get the actual revision * XXX: Need to get the actual revision
* XXX: number of the 2100 FB. At any rate, * XXX: number of the 2100 FB. At any rate,
@ -485,7 +517,7 @@ isp_pci_attach(pcici_t cfid, int unit)
} }
#endif #endif
#ifndef ISP_DISABLE_2200_SUPPORT #ifndef ISP_DISABLE_2200_SUPPORT
if (data == PCI_QLOGIC_ISP2200) { if (pci_get_devid(dev) == PCI_QLOGIC_ISP2200) {
mdvp = &mdvec_2200; mdvp = &mdvec_2200;
basetype = ISP_HA_FC_2200; basetype = ISP_HA_FC_2200;
psize = sizeof (fcparam); psize = sizeof (fcparam);
@ -496,72 +528,70 @@ isp_pci_attach(pcici_t cfid, int unit)
isp = &pcs->pci_isp; isp = &pcs->pci_isp;
isp->isp_param = malloc(psize, M_DEVBUF, M_NOWAIT); isp->isp_param = malloc(psize, M_DEVBUF, M_NOWAIT);
if (isp->isp_param == NULL) { if (isp->isp_param == NULL) {
printf("isp%d: cannot allocate parameter data\n", unit); device_printf(dev, "cannot allocate parameter data\n");
return; goto bad;
} }
bzero(isp->isp_param, psize); bzero(isp->isp_param, psize);
isp->isp_mdvec = mdvp; isp->isp_mdvec = mdvp;
isp->isp_type = basetype; isp->isp_type = basetype;
isp->isp_revision = rev; isp->isp_revision = pci_get_revid(dev);
(void) snprintf(isp->isp_name, sizeof (isp->isp_name), "isp%d", unit); (void) snprintf(isp->isp_name, sizeof (isp->isp_name), "isp%d", unit);
isp->isp_osinfo.unit = unit; isp->isp_osinfo.unit = unit;
ISP_LOCK(isp); ISP_LOCK(isp);
/* /*
* Make sure that SERR, PERR, WRITE INVALIDATE and BUSMASTER * Make sure that SERR, PERR, WRITE INVALIDATE and BUSMASTER
* are set. * are set.
*/ */
data = pci_cfgread(cfid, PCIR_COMMAND, 2); cmd |= PCIM_CMD_SEREN | PCIM_CMD_PERRESPEN |
data |= PCIM_CMD_SEREN | PCIM_CMD_BUSMASTEREN | PCIM_CMD_INVEN;
PCIM_CMD_PERRESPEN | pci_write_config(dev, PCIR_COMMAND, cmd, 1);
PCIM_CMD_BUSMASTEREN |
PCIM_CMD_INVEN;
pci_cfgwrite(cfid, PCIR_COMMAND, 2, data);
/* /*
* Make sure the Cache Line Size register is set sensibly. * Make sure the Cache Line Size register is set sensibly.
*/ */
data = pci_cfgread(cfid, PCIR_CACHELNSZ, 1); data = pci_read_config(dev, PCIR_CACHELNSZ, 1);
if (data != linesz) { if (data != linesz) {
data = PCI_DFLT_LNSZ; data = PCI_DFLT_LNSZ;
CFGPRINTF("%s: set PCI line size to %d\n", isp->isp_name, data); CFGPRINTF("%s: set PCI line size to %d\n", isp->isp_name, data);
pci_cfgwrite(cfid, PCIR_CACHELNSZ, data, 1); pci_write_config(dev, PCIR_CACHELNSZ, data, 1);
} }
/* /*
* Make sure the Latency Timer is sane. * Make sure the Latency Timer is sane.
*/ */
data = pci_cfgread(cfid, PCIR_LATTIMER, 1); data = pci_read_config(dev, PCIR_LATTIMER, 1);
if (data < PCI_DFLT_LTNCY) { if (data < PCI_DFLT_LTNCY) {
data = PCI_DFLT_LTNCY; data = PCI_DFLT_LTNCY;
CFGPRINTF("%s: set PCI latency to %d\n", isp->isp_name, data); CFGPRINTF("%s: set PCI latency to %d\n", isp->isp_name, data);
pci_cfgwrite(cfid, PCIR_LATTIMER, data, 1); pci_write_config(dev, PCIR_LATTIMER, data, 1);
} }
/* /*
* Make sure we've disabled the ROM. * Make sure we've disabled the ROM.
*/ */
data = pci_cfgread(cfid, PCIR_ROMADDR, 4); data = pci_read_config(dev, PCIR_ROMADDR, 4);
data &= ~1; data &= ~1;
pci_cfgwrite(cfid, PCIR_ROMADDR, data, 4); pci_write_config(dev, PCIR_ROMADDR, data, 4);
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
if (bus_dma_tag_create(NULL, 1, 0, BUS_SPACE_MAXADDR_32BIT, if (bus_dma_tag_create(NULL, 1, 0, BUS_SPACE_MAXADDR_32BIT,
BUS_SPACE_MAXADDR, NULL, NULL, lim + 1, BUS_SPACE_MAXADDR, NULL, NULL, lim + 1,
255, lim, 0, &pcs->parent_dmat) != 0) { 255, lim, 0, &pcs->parent_dmat) != 0) {
printf("%s: could not create master dma tag\n", isp->isp_name); printf("%s: could not create master dma tag\n", isp->isp_name);
free(isp->isp_param, M_DEVBUF);
free(pcs, M_DEVBUF); free(pcs, M_DEVBUF);
return; return (ENXIO);
} }
if (pci_map_int(cfid, (void (*)(void *))isp_intr,
(void *)isp, &IMASK) == 0) { iqd = 0;
printf("%s: could not map interrupt\n", isp->isp_name); irq = bus_alloc_resource(dev, SYS_RES_IRQ, &iqd, 0, ~0,
free(pcs, M_DEVBUF); 1, RF_ACTIVE | RF_SHAREABLE);
return; if (irq == NULL) {
device_printf(dev, "could not allocate interrupt\n");
goto bad;
} }
pcs->pci_id = cfid;
#ifdef SCSI_ISP_NO_FWLOAD_MASK #ifdef SCSI_ISP_NO_FWLOAD_MASK
if (SCSI_ISP_NO_FWLOAD_MASK && (SCSI_ISP_NO_FWLOAD_MASK & (1 << unit))) if (SCSI_ISP_NO_FWLOAD_MASK && (SCSI_ISP_NO_FWLOAD_MASK & (1 << unit)))
isp->isp_confopts |= ISP_CFG_NORELOAD; isp->isp_confopts |= ISP_CFG_NORELOAD;
@ -605,6 +635,10 @@ isp_pci_attach(pcici_t cfid, int unit)
if (bitmap & (1 << unit)) if (bitmap & (1 << unit))
isp->isp_confopts &= ~ISP_CFG_FULL_DUPLEX; isp->isp_confopts &= ~ISP_CFG_FULL_DUPLEX;
} }
if (getenv_int("isp_nport", &bitmap)) {
if (bitmap & (1 << unit))
isp->isp_confopts |= ISP_CFG_NPORT;
}
/* /*
* Look for overriding WWN. This is a Node WWN so it binds to * Look for overriding WWN. This is a Node WWN so it binds to
* all FC instances. A Port WWN will be constructed from it * all FC instances. A Port WWN will be constructed from it
@ -642,22 +676,25 @@ isp_pci_attach(pcici_t cfid, int unit)
(void) getenv_int("isp_tdebug", &isp_tdebug); (void) getenv_int("isp_tdebug", &isp_tdebug);
#endif #endif
ISP_LOCK(isp); ISP_LOCK(isp);
if (bus_setup_intr(dev, irq, INTR_TYPE_CAM, (void (*)(void *))isp_intr,
isp, &pcs->ih)) {
ISP_UNLOCK(isp);
device_printf(dev, "could not setup interrupt\n");
goto bad;
}
isp_reset(isp); isp_reset(isp);
if (isp->isp_state != ISP_RESETSTATE) { if (isp->isp_state != ISP_RESETSTATE) {
(void) pci_unmap_int(cfid);
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
free(pcs, M_DEVBUF); goto bad;
return;
} }
isp_init(isp); isp_init(isp);
if (isp->isp_state != ISP_INITSTATE) { if (isp->isp_state != ISP_INITSTATE) {
/* If we're a Fibre Channel Card, we allow deferred attach */ /* If we're a Fibre Channel Card, we allow deferred attach */
if (IS_SCSI(isp)) { if (IS_SCSI(isp)) {
isp_uninit(isp); isp_uninit(isp);
(void) pci_unmap_int(cfid); /* Does nothing */
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
free(pcs, M_DEVBUF); goto bad;
return;
} }
} }
isp_attach(isp); isp_attach(isp);
@ -665,13 +702,31 @@ isp_pci_attach(pcici_t cfid, int unit)
/* If we're a Fibre Channel Card, we allow deferred attach */ /* If we're a Fibre Channel Card, we allow deferred attach */
if (IS_SCSI(isp)) { if (IS_SCSI(isp)) {
isp_uninit(isp); isp_uninit(isp);
(void) pci_unmap_int(cfid); /* Does nothing */
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
free(pcs, M_DEVBUF); goto bad;
return;
} }
} }
ISP_UNLOCK(isp); ISP_UNLOCK(isp);
return (0);
bad:
if (pcs && pcs->ih) {
(void) bus_teardown_intr(dev, irq, pcs->ih);
}
if (irq) {
(void) bus_release_resource(dev, SYS_RES_IRQ, iqd, irq);
}
if (regs) {
(void) bus_release_resource(dev, rtp, rgd, regs);
}
if (pcs) {
if (pcs->pci_isp.isp_param)
free(pcs->pci_isp.isp_param, M_DEVBUF);
free(pcs, M_DEVBUF);
}
return (ENXIO);
} }
static u_int16_t static u_int16_t
@ -723,7 +778,7 @@ isp_pci_wr_reg(isp, regoff, val)
} }
} }
#ifndef ISP_DISABLE_1080_SUPPORT #if !defined(ISP_DISABLE_1080_SUPPORT) && !defined(ISP_DISABLE_12160_SUPPORT)
static u_int16_t static u_int16_t
isp_pci_rd_reg_1080(isp, regoff) isp_pci_rd_reg_1080(isp, regoff)
struct ispsoftc *isp; struct ispsoftc *isp;
@ -1705,6 +1760,6 @@ static void
isp_pci_dumpregs(struct ispsoftc *isp) isp_pci_dumpregs(struct ispsoftc *isp)
{ {
struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp; struct isp_pcisoftc *pci = (struct isp_pcisoftc *)isp;
printf("%s: PCI Status Command/Status=%lx\n", pci->pci_isp.isp_name, printf("%s: PCI Status Command/Status=%x\n", pci->pci_isp.isp_name,
pci_conf_read(pci->pci_id, PCIR_COMMAND)); pci_read_config(pci->pci_dev, PCIR_COMMAND, 1));
} }