summaryrefslogtreecommitdiffstats
path: root/sys/dev/dpt/dpt_eisa.c
diff options
context:
space:
mode:
authorgibbs <gibbs@FreeBSD.org>1998-09-15 08:33:38 +0000
committergibbs <gibbs@FreeBSD.org>1998-09-15 08:33:38 +0000
commit589d4a338b39b4f9e27060b9b9c717ae520f8905 (patch)
treec4a36ecfbf82749363f81dbb7ccb7eed321da23b /sys/dev/dpt/dpt_eisa.c
parent766d4620976e348ecb44cd6fc16aeceee88fe1ca (diff)
downloadFreeBSD-src-589d4a338b39b4f9e27060b9b9c717ae520f8905.zip
FreeBSD-src-589d4a338b39b4f9e27060b9b9c717ae520f8905.tar.gz
Conver the DPT driver to CAM. The dpt_control interface is not yet
functional, but will be in another day or so.
Diffstat (limited to 'sys/dev/dpt/dpt_eisa.c')
-rw-r--r--sys/dev/dpt/dpt_eisa.c406
1 files changed, 85 insertions, 321 deletions
diff --git a/sys/dev/dpt/dpt_eisa.c b/sys/dev/dpt/dpt_eisa.c
index 080191f..65eefc9 100644
--- a/sys/dev/dpt/dpt_eisa.c
+++ b/sys/dev/dpt/dpt_eisa.c
@@ -1,4 +1,4 @@
-/**
+/*
* Copyright (c) 1997 by Matthew N. Dodd <winter@jurai.net>
* All Rights Reserved
*
@@ -27,12 +27,13 @@
* SUCH DAMAGE.
*/
-/* Credits: Based on and part of the DPT driver for FreeBSD written and
+/*
+ * Credits: Based on and part of the DPT driver for FreeBSD written and
* maintained by Simon Shapiro <shimon@simon-shapiro.org>
*/
/*
- * $Id: dpt_eisa.c,v 1.2 1998/05/17 20:31:50 gibbs Exp $
+ * $Id: dpt_eisa.c,v 1.3 1998/08/09 02:22:34 jkh Exp $
*/
#include "eisa.h"
@@ -46,13 +47,14 @@
#include <sys/proc.h>
#include <sys/kernel.h>
-#include <scsi/scsi_all.h>
-#include <scsi/scsi_message.h>
-#include <scsi/scsiconf.h>
+#include <machine/bus_pio.h>
+#include <machine/bus.h>
-#include <i386/eisa/eisaconf.h>
+#include <cam/scsi/scsi_all.h>
-#include <sys/dpt.h>
+#include <dev/dpt/dpt.h>
+
+#include <i386/eisa/eisaconf.h>
#include <i386/eisa/dpt_eisa.h>
#include <machine/clock.h>
@@ -63,9 +65,8 @@
/* Function Prototypes */
-int dpt_eisa_probe(void);
-int dpt_eisa_attach(struct eisa_device*);
-int dpt_eisa_shutdown(int);
+static int dpt_eisa_probe(void);
+static int dpt_eisa_attach(struct eisa_device*);
static const char *dpt_eisa_match(eisa_id_t);
@@ -74,50 +75,23 @@ static struct eisa_driver dpt_eisa_driver =
"dpt",
dpt_eisa_probe,
dpt_eisa_attach,
- dpt_eisa_shutdown,
+ NULL,
&dpt_unit
};
DATA_SET (eisadriver_set, dpt_eisa_driver);
-int
+static int
dpt_eisa_probe(void)
{
- static int already_announced = 0;
- u_int32_t io_base;
- u_int32_t irq;
- struct eisa_device *e_dev = NULL;
- dpt_conf_t *config;
- dpt_softc_t *dpt;
- int count = 0;
-
- if ( bootverbose && !already_announced ) {
- printf("DPT: EISA SCSI HBA Driver, version %d.%d.%d\n",
- DPT_RELEASE, DPT_VERSION, DPT_PATCH);
- ++already_announced;
- }
-
- if ((dpt = (dpt_softc_t *) malloc(sizeof(dpt_softc_t),
- M_DEVBUF, M_NOWAIT)) == NULL) {
- printf("dpt_eisa_probe() : Failed to allocate %d bytes for a DPT softc\n", sizeof(dpt_softc_t));
- return -1;
- }
-
- bzero(dpt, sizeof(dpt_softc_t));
-
- TAILQ_INIT(&dpt->free_ccbs);
- TAILQ_INIT(&dpt->waiting_ccbs);
- TAILQ_INIT(&dpt->submitted_ccbs);
- TAILQ_INIT(&dpt->completed_ccbs);
-
- dpt->queue_status = DPT_QUEUES_NONE_ACTIVE;
- dpt->commands_processed = 0;
- dpt->handle_interrupts = 0;
- dpt->v_membase = NULL;
- dpt->p_membase = NULL;
-
- dpt->unit = -1;
-
+ struct eisa_device *e_dev = NULL;
+ int count;
+ u_int32_t io_base;
+ u_int intdef;
+ u_int irq;
+
+ e_dev = NULL;
+ count = 0;
while ((e_dev = eisa_match_dev(e_dev, dpt_eisa_match))) {
io_base = (e_dev->ioconf.slot * EISA_SLOT_SIZE)
+ DPT_EISA_SLOT_OFFSET;
@@ -125,27 +99,32 @@ dpt_eisa_probe(void)
eisa_add_iospace(e_dev, io_base,
DPT_EISA_IOSIZE, RESVADDR_NONE);
- dpt->io_base = io_base;
+ intdef = inb(DPT_EISA_INTDEF + io_base);
- if ((config = dpt_get_conf(dpt, 0xc1, 7,
- sizeof(dpt_conf_t), 1)) == NULL) {
-#ifdef DPT_DEBUG_ERROR
- printf("eisa0:%d dpt_eisa_probe() : Failed to get board configuration.\n",
- e_dev->ioconf.slot);
-#endif
- continue;
+ irq = intdef & DPT_EISA_INT_NUM_MASK;
+ switch (irq) {
+ case DPT_EISA_INT_NUM_11:
+ irq = 11;
+ break;
+ case DPT_EISA_INT_NUM_15:
+ irq = 15;
+ break;
+ case DPT_EISA_INT_NUM_14:
+ irq = 14;
+ break;
+ default:
+ printf("dpt at slot %d: illegal irq setting %d\n",
+ e_dev->ioconf.slot, irq);
+ irq = 0;
+ break;
}
-
- irq = config->IRQ;
+ if (irq == 0)
+ continue;
eisa_add_intr(e_dev, irq);
eisa_registerdev(e_dev, &dpt_eisa_driver);
-
count++;
-
}
-
- free(dpt, M_DEVBUF);
return count;
}
@@ -153,21 +132,16 @@ int
dpt_eisa_attach(e_dev)
struct eisa_device *e_dev;
{
- int result;
- int ndx;
-
- dpt_conf_t *config;
dpt_softc_t *dpt;
-
+ resvaddr_t *io_space;
int unit = e_dev->unit;
int irq;
- resvaddr_t *io_space;
+ int shared;
+ int s;
if (TAILQ_FIRST(&e_dev->ioconf.irqs) == NULL) {
-#ifdef DPT_DEBUG_ERROR
printf("dpt%d: Can't retrieve irq from EISA config struct.\n",
unit);
-#endif
return -1;
}
@@ -175,280 +149,70 @@ dpt_eisa_attach(e_dev)
io_space = e_dev->ioconf.ioaddrs.lh_first;
if (!io_space) {
-#ifdef DPT_DEBUG_ERROR
printf("dpt%d: No I/O space?!\n", unit);
-#endif
return -1;
}
- if ( dpt_controllers_present >= DPT_MAX_ADAPTERS ){
- printf("dpt%d: More than %d Adapters found! Adapter rejected\n",
- unit, DPT_MAX_ADAPTERS);
- return -1;
- }
+ shared = inb(DPT_EISA_INTDEF + io_space->addr) & DPT_EISA_INT_LEVEL;
- if ((dpt = (dpt_softc_t *) malloc(sizeof(dpt_softc_t),
- M_DEVBUF, M_NOWAIT)) == NULL) {
- printf("dpt%d: Failed to allocate %d bytes for a DPT softc\n",
- unit, sizeof(dpt_softc_t));
+ dpt = dpt_alloc(unit, I386_BUS_SPACE_IO,
+ io_space->addr + DPT_EISA_EATA_REG_OFFSET);
+ if (dpt == NULL)
return -1;
- }
-
- /*
- * Initialize the queues. See dpt.h for details. We do this here,
- * as we may get hit with interrupts at any moment and we want to
- * have a minimal structure in place to handle them. We also want to
- * register interrupts correctly. To do so, we need a valid dpt
- * structure. To have that, we need this minimal setup here.
- */
-
- bzero(dpt, sizeof(dpt_softc_t));
-
- TAILQ_INIT(&dpt->free_ccbs);
- TAILQ_INIT(&dpt->waiting_ccbs);
- TAILQ_INIT(&dpt->submitted_ccbs);
- TAILQ_INIT(&dpt->completed_ccbs);
-
- if (TAILQ_EMPTY(&dpt_softc_list)) {
- TAILQ_INIT(&dpt_softc_list);
- }
-
- TAILQ_INSERT_TAIL(&dpt_softc_list, dpt, links);
- dpt->queue_status = DPT_QUEUES_NONE_ACTIVE;
- dpt->commands_processed = 0;
-#ifdef DPT_MEASURE_PERFORMANCE
- /* Zero out all command counters */
- bzero((void *)&dpt->performance, sizeof(dpt_perf_t));
-#endif /* DPT_MEASURE_PERFORMANCE */
-
- dpt->handle_interrupts = 0; /*
- * Do not set to 1 until all
- * initialization is done
- */
- dpt->v_membase = NULL;
- dpt->p_membase = NULL;
-
- dpt->unit = unit;
- dpt->io_base = (e_dev->ioconf.slot * EISA_SLOT_SIZE)
- + DPT_EISA_SLOT_OFFSET;
-
- eisa_reg_start(e_dev);
-
- if (eisa_reg_iospace(e_dev, io_space)) {
-#ifdef DPT_DEBUG_ERROR
- printf("dpt%d: eisa_reg_iospace() failed.\n", unit);
-#endif
- free(dpt, M_DEVBUF);
+ /* Allocate a dmatag representing the capabilities of this attachment */
+ /* XXX Should be a child of the EISA bus dma tag */
+ if (bus_dma_tag_create(/*parent*/NULL, /*alignemnt*/0, /*boundary*/0,
+ /*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
+ /*highaddr*/BUS_SPACE_MAXADDR,
+ /*filter*/NULL, /*filterarg*/NULL,
+ /*maxsize*/BUS_SPACE_MAXSIZE_32BIT,
+ /*nsegments*/BUS_SPACE_UNRESTRICTED,
+ /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT,
+ /*flags*/0, &dpt->parent_dmat) != 0) {
+ dpt_free(dpt);
return -1;
}
- /* reset the card? */
-
- /* If the DPT is mapped as an IDE controller, let it be IDE controller */
- if (dpt->io_base == ISA_PRIMARY_WD_ADDRESS) {
-#ifdef DPT_DEBUG_WARN
- printf("dpt%d: Mapped as an IDE controller. "
- "Disabling SCSI setup\n", unit);
-#endif
- free(dpt, M_DEVBUF);
+ if (eisa_reg_intr(e_dev, irq, dpt_intr, (void *)dpt, &cam_imask,
+ shared)) {
+ printf("dpt%d: eisa_reg_intr() failed.\n", unit);
+ dpt_free(dpt);
return -1;
- } else {
- if ((config = dpt_get_conf(dpt, 0xc1, 7,
- sizeof(dpt_conf_t), 1)) == NULL) {
-#ifdef DPT_DEBUG_ERROR
- printf("dpt%d: Failed to get board configuration (%x)\n",
- unit, BaseRegister(dpt));
-#endif
- free(dpt, M_DEVBUF);
- return -1;
- }
- }
-
- if(eisa_reg_intr(e_dev, irq, dpt_intr, (void *)dpt, &cam_imask,
- /* shared == */ config->IRQ_TR)) {
+ }
+ eisa_reg_end(e_dev);
+
+ /* Enable our interrupt handler. */
+ if (eisa_enable_intr(e_dev, irq)) {
#ifdef DPT_DEBUG_ERROR
- printf("dpt%d: eisa_reg_intr() failed.\n", unit);
-#endif
- free(dpt, M_DEVBUF);
- return -1;
- }
- eisa_reg_end(e_dev);
-
- /* Enable our interrupt handler. */
+ printf("dpt%d: eisa_enable_intr() failed.\n", unit);
+#endif
+ free(dpt, M_DEVBUF);
+ eisa_release_intr(e_dev, irq, dpt_intr);
+ return -1;
+ }
+ /*
+ * Enable our interrupt handler.
+ */
if (eisa_enable_intr(e_dev, irq)) {
-#ifdef DPT_DEBUG_ERROR
- printf("dpt%d: eisa_enable_intr() failed.\n", unit);
-#endif
- free(dpt, M_DEVBUF);
+ dpt_free(dpt);
eisa_release_intr(e_dev, irq, dpt_intr);
return -1;
}
- dpt->max_id = config->MAX_ID;
- dpt->max_lun = config->MAX_LUN;
- dpt->irq = config->IRQ;
- dpt->channels = config->MAX_CHAN;
- dpt->dma_channel = (8 - config->DMA_channel) & 7;
-
-#ifdef DPT_DEBUG_SETUP
- printf("dpt%d: max_id = %d, max_chan = %d, max_lun = %d\n",
- dpt->unit, dpt->max_id, dpt->channels, dpt->max_lun);
-#endif
-
- if (result = dpt_setup(dpt, config)) {
- free(config, M_TEMP);
- free(dpt, M_DEVBUF);
- printf("dpt%d: dpt_setup failed (%d). Driver Disabled :-(\n",
- dpt->unit, result);
- } else {
- /* clean up the informational data, and display */
- char clean_vendor[9];
- char clean_model[17];
- char clean_firmware[5];
- char clean_protocol[5];
- char clean_other[7];
-
- int ndx;
-
- strncpy(clean_other, dpt->board_data.otherData, 8);
- clean_other[6] = '\0';
- for (ndx = 5; ndx >= 0; ndx--) {
- if (clean_other[ndx] == ' ') {
- clean_other[ndx] = '\0';
- } else {
- break;
- }
- }
-
- strncpy(dpt->board_data.otherData, clean_other, 6);
-
- strncpy(clean_vendor, dpt->board_data.vendor, 8);
- clean_vendor[8] = '\0';
-
- for (ndx = 7; ndx >= 0; ndx--) {
- if (clean_vendor[ndx] == ' ') {
- clean_vendor[ndx] = '\0';
- } else {
- break;
- }
- }
-
- strncpy(dpt->board_data.vendor, clean_vendor, 8);
-
- strncpy(clean_model, dpt->board_data.modelNum, 16);
- clean_model[16] = '\0';
-
- for (ndx = 15; ndx >= 0; ndx--) {
- if (clean_model[ndx] == ' ') {
- clean_model[ndx] = '\0';
- } else {
- break;
- }
- }
-
- strncpy(dpt->board_data.modelNum, clean_model, 16);
-
- strncpy(clean_firmware, dpt->board_data.firmware, 4);
- clean_firmware[4] = '\0';
-
- for (ndx = 3; ndx >= 0; ndx--) {
- if (clean_firmware[ndx] == ' ')
- clean_firmware[ndx] = '\0';
- else
- break;
- }
-
- strncpy(dpt->board_data.firmware, clean_firmware, 4);
-
- strncpy(clean_protocol, dpt->board_data.protocol, 4);
- clean_protocol[4] = '\0';
-
- for (ndx = 3; ndx >= 0; ndx--) {
- if (clean_protocol[ndx] == ' ')
- clean_protocol[ndx] = '\0';
- else
- break;
- }
-
- strncpy(dpt->board_data.protocol, clean_protocol, 4);
-
- dpt_detect_cache(dpt);
-
- printf("dpt%d: %s type %x, model %s firmware %s, Protocol %s \n"
- " on port %x with %dMB %s cache. LED = %s\n",
- dpt->unit, clean_vendor, dpt->board_data.deviceType,
- clean_model, clean_firmware, clean_protocol, dpt->io_base,
- dpt->cache_size,
- (dpt->cache_type == DPT_NO_CACHE)
- ? "Disabled"
- : (dpt->cache_type == DPT_CACHE_WRITETHROUGH)
- ? "Write-Through"
- : "Write-Back",
- i2bin(dpt_blinking_led(dpt), 8));
-
- printf("dpt%d: Enabled Options:\n", dpt->unit);
-
-#ifdef DPT_VERIFY_HINTR
- printf(" Verify Lost Transactions\n");
-#endif
-#ifdef DPT_RESTRICTED_FREELIST
- printf(" Restrict the Freelist Size\n");
-#endif
-#ifdef DPT_TRACK_CCB_STATES
- printf(" Precisely Track State Transitions\n");
-#endif
-#ifdef DPT_MEASURE_PERFORMANCE
- printf(" Collect Metrics\n");
-#endif
-#ifdef DPT_FREELIST_IS_STACK
- printf(" Optimize CPU Cache\n");
-#endif
-#ifdef DPT_HANDLE_TIMEOUTS
- printf(" Handle Timeouts\n");
-#endif
-#ifdef DPT_ALLOW_MEMIO
- printf(" Allow I/O to be Memeory Mapped\n");
-#endif
-#ifdef DPT_HINTR_CHECK_SOFTC
- printf(" Validate SoftC at Interrupt\n");
-#endif
-
- /* register shutdown handlers */
- result = at_shutdown((bootlist_fn)dpt_shutdown, (void *)dpt,
- SHUTDOWN_POST_SYNC);
- switch ( result ) {
- case 0:
-#ifdef DPT_DEBUG_SHUTDOWN
- printf("dpt%d: Shutdown handler registered\n", dpt->unit);
-#endif
- break;
- default:
-#ifdef DPT_DEBUG_WARN
- printf("dpt%d: Failed to register shutdown handler (%d)\n",
- dpt->unit, result);
-#endif
- break;
- }
-
- dpt_attach(dpt);
+ s = splcam();
+ if (dpt_init(dpt) != 0) {
+ dpt_free(dpt);
+ return -1;
}
- ++dpt_controllers_present;
+ /* Register with the XPT */
+ dpt_attach(dpt);
+ splx(s);
return 0;
}
-int
-dpt_eisa_shutdown(foo)
- int foo;
-{
-#ifdef DPT_DEBUG_WARN
- printf("dpt_pci_shutdown(%x)\n", foo);
-#endif
- return (0);
-}
-
static const char *
dpt_eisa_match(type)
eisa_id_t type;
OpenPOWER on IntegriCloud