#undef BTDIAG
#define integrate
#define notyet
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: btl.c,v 1.31 2023/12/20 06:36:02 thorpej Exp $");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/device.h>
#include <sys/buf.h>
#include <sys/proc.h>
#include <machine/intr.h>
#include <machine/pio.h>
#include <arc/dti/desktech.h>
#include <dev/scsipi/scsi_all.h>
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
#include <dev/isa/isavar.h>
#include <arc/dti/btlreg.h>
#include <arc/dti/btlvar.h>
#ifndef DDB
#define Debugger() panic("should call debugger here (bt742a.c)")
#endif
#define BT_MBX_SIZE 32
#define BT_CCB_MAX 32
#define CCB_HASH_SIZE 32
#define CCB_HASH_SHIFT 9
#define CCB_HASH(x) ((((long)(x))>>CCB_HASH_SHIFT) & (CCB_HASH_SIZE - 1))
#define bt_nextmbx(wmb, mbx, mbio) \
if ((wmb) == &(mbx)->mbio[BT_MBX_SIZE - 1]) \
(wmb) = &(mbx)->mbio[0]; \
else \
(wmb)++;
struct bt_mbx {
struct bt_mbx_out mbo[BT_MBX_SIZE];
struct bt_mbx_in mbi[BT_MBX_SIZE];
struct bt_mbx_out *cmbo;
struct bt_mbx_out *tmbo;
struct bt_mbx_in *tmbi;
};
#define KVTOPHYS(x) (*btl_conf->bc_kvtophys)((int)(x))
#define PHYSTOKV(x) (*btl_conf->bc_phystokv)((int)(x))
struct bt_softc {
device_t sc_dev;
void *sc_ih;
int sc_iobase;
int sc_irq, sc_drq;
char sc_model[7],
sc_firmware[6];
struct bt_mbx *sc_mbx;
#define wmbx (sc->sc_mbx)
struct bt_ccb *sc_ccbhash[CCB_HASH_SIZE];
TAILQ_HEAD(, bt_ccb) sc_free_ccb, sc_waiting_ccb;
TAILQ_HEAD(, bt_buf) sc_free_buf;
int sc_numccbs, sc_mbofull;
int sc_numbufs;
int sc_scsi_dev;
struct scsipi_link sc_link;
struct scsipi_adapter sc_adapter;
};
#ifdef BTDEBUG
int bt_debug = 0;
#endif
int bt_cmd(int, struct bt_softc *, int, u_char *, int, u_char *);
integrate void bt_finish_ccbs(struct bt_softc *);
int btintr(void *);
integrate void bt_reset_ccb(struct bt_softc *, struct bt_ccb *);
void bt_free_ccb(struct bt_softc *, struct bt_ccb *);
integrate void bt_init_ccb(struct bt_softc *, struct bt_ccb *);
struct bt_ccb *bt_get_ccb(struct bt_softc *, int);
struct bt_ccb *bt_ccb_phys_kv(struct bt_softc *, u_long);
void bt_queue_ccb(struct bt_softc *, struct bt_ccb *);
void bt_collect_mbo(struct bt_softc *);
void bt_start_ccbs(struct bt_softc *);
void bt_done(struct bt_softc *, struct bt_ccb *);
int bt_find(struct isa_attach_args *, struct bt_softc *);
void bt_init(struct bt_softc *);
void bt_inquire_setup_information(struct bt_softc *);
void btminphys(struct buf *);
int bt_scsi_cmd(struct scsipi_xfer *);
int bt_poll(struct bt_softc *, struct scsipi_xfer *, int);
void bt_timeout(void *arg);
void bt_free_buf(struct bt_softc *, struct bt_buf *);
struct bt_buf * bt_get_buf(struct bt_softc *, int);
struct scsipi_device bt_dev = {
NULL,
NULL,
NULL,
NULL,
};
static int btprobe(device_t, cfdata_t, void *);
static void btattach(device_t, device_t, void *);
CFATTACH_DECL_NEW(btl, sizeof(struct bt_softc),
btprobe, btattach, NULL, NULL);
#define BT_RESET_TIMEOUT 2000
#define BT_ABORT_TIMEOUT 2000
struct btl_config *btl_conf = NULL;
int
bt_cmd(int iobase, struct bt_softc *sc, int icnt, int ocnt, u_char *ibuf,
u_char *obuf)
{
const char *name;
int i;
int wait;
u_char sts;
u_char opcode = ibuf[0];
if (sc != NULL)
name = device_xname(sc->sc_dev);
else
name = "(bt probe)";
switch (opcode) {
case BT_INQUIRE_DEVICES:
wait = 15 * 20000;
break;
default:
wait = 1 * 20000;
break;
}
if (opcode != BT_MBO_INTR_EN) {
for (i = 20000; i; i--) {
sts = isa_inb(iobase + BT_STAT_PORT);
if (sts & BT_STAT_IDLE)
break;
delay(50);
}
if (!i) {
printf("%s: bt_cmd, host not idle(0x%x)\n",
name, sts);
return ENXIO;
}
}
if (ocnt) {
while ((isa_inb(iobase + BT_STAT_PORT)) & BT_STAT_DF)
isa_inb(iobase + BT_DATA_PORT);
}
while (icnt--) {
for (i = wait; i; i--) {
sts = isa_inb(iobase + BT_STAT_PORT);
if (!(sts & BT_STAT_CDF))
break;
delay(50);
}
if (!i) {
if (opcode != BT_INQUIRE_REVISION &&
opcode != BT_INQUIRE_REVISION_3)
printf("%s: bt_cmd, cmd/data port full\n", name);
isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_SRST);
return ENXIO;
}
isa_outb(iobase + BT_CMD_PORT, *ibuf++);
}
while (ocnt--) {
for (i = wait; i; i--) {
sts = isa_inb(iobase + BT_STAT_PORT);
if (sts & BT_STAT_DF)
break;
delay(50);
}
if (!i) {
if (opcode != BT_INQUIRE_REVISION &&
opcode != BT_INQUIRE_REVISION_3)
printf("%s: bt_cmd, cmd/data port empty %d\n",
name, ocnt);
isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_SRST);
return ENXIO;
}
*obuf++ = isa_inb(iobase + BT_DATA_PORT);
}
if (opcode != BT_MBO_INTR_EN) {
for (i = 20000; i; i--) {
sts = isa_inb(iobase + BT_INTR_PORT);
if (sts & BT_INTR_HACC)
break;
delay(50);
}
if (!i) {
printf("%s: bt_cmd, host not finished(0x%x)\n",
name, sts);
return ENXIO;
}
}
isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_IRST);
return 0;
}
static int
btprobe(device_t parent, cfdata_t cf, void *aux)
{
struct isa_attach_args *ia = aux;
#ifdef NEWCONFIG
if (ia->ia_iobase == IOBASEUNK)
return 0;
#endif
if (btl_conf == NULL)
return (0);
if (bt_find(ia, NULL) != 0)
return 0;
ia->ia_msize = 0;
ia->ia_iosize = 4;
return 1;
}
static void
btattach(device_t parent, device_t self, void *aux)
{
struct isa_attach_args *ia = aux;
struct bt_softc *sc = device_private(self);
struct bt_ccb *ccb;
struct bt_buf *buf;
u_int bouncearea;
u_int bouncebase;
u_int bouncesize;
sc->sc_dev = self;
if (bt_find(ia, sc) != 0)
panic("btattach: bt_find of %s failed", device_xname(self));
sc->sc_iobase = ia->ia_iobase;
(*btl_conf->bc_bouncemem)(&bouncebase, &bouncesize);
bouncearea = bouncebase + sizeof(struct bt_mbx);
sc->sc_mbx = (struct bt_mbx *)bouncebase;
bt_inquire_setup_information(sc);
bt_init(sc);
TAILQ_INIT(&sc->sc_free_ccb);
TAILQ_INIT(&sc->sc_free_buf);
TAILQ_INIT(&sc->sc_waiting_ccb);
while (sc->sc_numccbs < BT_CCB_MAX) {
ccb = (struct bt_ccb *)bouncearea;
bouncearea += sizeof(struct bt_ccb);
bt_init_ccb(sc, ccb);
TAILQ_INSERT_HEAD(&sc->sc_free_ccb, ccb, chain);
sc->sc_numccbs++;
}
while ((bouncearea + sizeof(struct bt_buf)) < bouncebase + bouncesize) {
buf = (struct bt_buf *)bouncearea;
bouncearea += sizeof(struct bt_buf);
TAILQ_INSERT_HEAD(&sc->sc_free_buf, buf, chain);
sc->sc_numbufs++;
}
sc->sc_adapter.scsipi_cmd = bt_scsi_cmd;
sc->sc_adapter.scsipi_minphys = btminphys;
sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
sc->sc_link.adapter_softc = sc;
sc->sc_link.scsipi_scsi.adapter_target = sc->sc_scsi_dev;
sc->sc_link.adapter = &sc->sc_adapter;
sc->sc_link.device = &bt_dev;
sc->sc_link.openings = 1;
sc->sc_link.scsipi_scsi.max_target = 7;
sc->sc_link.scsipi_scsi.max_lun = 7;
sc->sc_link.type = BUS_SCSI;
sc->sc_ih = isa_intr_establish(ia->ia_ic, sc->sc_irq, IST_EDGE,
IPL_BIO, btintr, sc);
config_found(self, &sc->sc_link, scsiprint, CFARGS_NONE);
}
integrate void
bt_finish_ccbs(struct bt_softc *sc)
{
struct bt_mbx_in *wmbi;
struct bt_ccb *ccb;
int i;
wmbi = wmbx->tmbi;
if (wmbi->stat == BT_MBI_FREE) {
for (i = 0; i < BT_MBX_SIZE; i++) {
if (wmbi->stat != BT_MBI_FREE) {
printf("%s: mbi not in round-robin order\n",
device_xname(sc->sc_dev));
goto AGAIN;
}
bt_nextmbx(wmbi, wmbx, mbi);
}
#ifdef BTDIAGnot
printf("%s: mbi interrupt with no full mailboxes\n",
device_xname(sc->sc_dev));
#endif
return;
}
AGAIN:
do {
ccb = bt_ccb_phys_kv(sc, phystol(wmbi->ccb_addr));
if (!ccb) {
printf("%s: bad mbi ccb pointer; skipping\n",
device_xname(sc->sc_dev));
goto next;
}
#ifdef BTDEBUG
if (bt_debug) {
u_char *cp = (u_char *) &ccb->scsi_cmd;
printf("op=%x %x %x %x %x %x\n",
cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]);
printf("stat %x for mbi addr = 0x%08x, ",
wmbi->stat, wmbi);
printf("ccb addr = 0x%x\n", ccb);
}
#endif
switch (wmbi->stat) {
case BT_MBI_OK:
case BT_MBI_ERROR:
if ((ccb->flags & CCB_ABORT) != 0) {
goto next;
}
break;
case BT_MBI_ABORT:
case BT_MBI_UNKNOWN:
break;
default:
printf("%s: bad mbi status %02x; skipping\n",
device_xname(sc->sc_dev), wmbi->stat);
goto next;
}
callout_stop(&ccb->xs->xs_callout);
bt_done(sc, ccb);
next:
wmbi->stat = BT_MBI_FREE;
bt_nextmbx(wmbi, wmbx, mbi);
} while (wmbi->stat != BT_MBI_FREE);
wmbx->tmbi = wmbi;
}
int
btintr(void *arg)
{
struct bt_softc *sc = arg;
int iobase = sc->sc_iobase;
u_char sts;
#ifdef BTDEBUG
printf("%s: btintr ", device_xname(sc->sc_dev));
#endif
sts = isa_inb(iobase + BT_INTR_PORT);
if ((sts & BT_INTR_ANYINTR) == 0)
return 0;
isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_IRST);
#ifdef BTDIAG
bt_collect_mbo(sc);
#endif
if (sts & BT_INTR_MBOA) {
struct bt_toggle toggle;
toggle.cmd.opcode = BT_MBO_INTR_EN;
toggle.cmd.enable = 0;
bt_cmd(iobase, sc, sizeof(toggle.cmd), (u_char *)&toggle.cmd, 0,
(u_char *)0);
bt_start_ccbs(sc);
}
if (sts & BT_INTR_MBIF)
bt_finish_ccbs(sc);
return 1;
}
integrate void
bt_reset_ccb(struct bt_softc *sc, struct bt_ccb *ccb)
{
ccb->flags = 0;
}
void
bt_free_ccb(struct bt_softc *sc, struct bt_ccb *ccb)
{
int s;
s = splbio();
bt_reset_ccb(sc, ccb);
TAILQ_INSERT_HEAD(&sc->sc_free_ccb, ccb, chain);
if (ccb->chain.tqe_next == 0)
wakeup(&sc->sc_free_ccb);
splx(s);
}
void
bt_free_buf(struct bt_softc *sc, struct bt_buf *buf)
{
int s;
s = splbio();
TAILQ_INSERT_HEAD(&sc->sc_free_buf, buf, chain);
sc->sc_numbufs++;
if (buf->chain.tqe_next == 0)
wakeup(&sc->sc_free_buf);
splx(s);
}
integrate void
bt_init_ccb(struct bt_softc *sc, struct bt_ccb *ccb)
{
int hashnum;
memset(ccb, 0, sizeof(struct bt_ccb));
ccb->hashkey = KVTOPHYS(ccb);
hashnum = CCB_HASH(ccb->hashkey);
ccb->nexthash = sc->sc_ccbhash[hashnum];
sc->sc_ccbhash[hashnum] = ccb;
bt_reset_ccb(sc, ccb);
}
struct bt_ccb *
bt_get_ccb(struct bt_softc *sc, int nosleep)
{
struct bt_ccb *ccb;
int s;
s = splbio();
for (;;) {
ccb = sc->sc_free_ccb.tqh_first;
if (ccb) {
TAILQ_REMOVE(&sc->sc_free_ccb, ccb, chain);
break;
}
if (nosleep)
goto out;
tsleep(&sc->sc_free_ccb, PRIBIO, "btccb", 0);
}
ccb->flags |= CCB_ALLOC;
out:
splx(s);
return ccb;
}
struct bt_buf *
bt_get_buf(struct bt_softc *sc, int nosleep)
{
struct bt_buf *buf;
int s;
s = splbio();
for (;;) {
buf = sc->sc_free_buf.tqh_first;
if (buf) {
TAILQ_REMOVE(&sc->sc_free_buf, buf, chain);
sc->sc_numbufs--;
break;
}
if (nosleep)
goto out;
tsleep(&sc->sc_free_buf, PRIBIO, "btbuf", 0);
}
out:
splx(s);
return buf;
}
struct bt_ccb *
bt_ccb_phys_kv(struct bt_softc *sc, u_long ccb_phys)
{
int hashnum = CCB_HASH(ccb_phys);
struct bt_ccb *ccb = sc->sc_ccbhash[hashnum];
while (ccb) {
if (ccb->hashkey == ccb_phys)
break;
ccb = ccb->nexthash;
}
return ccb;
}
void
bt_queue_ccb(struct bt_softc *sc, struct bt_ccb *ccb)
{
TAILQ_INSERT_TAIL(&sc->sc_waiting_ccb, ccb, chain);
bt_start_ccbs(sc);
}
void
bt_collect_mbo(struct bt_softc *sc)
{
struct bt_mbx_out *wmbo;
wmbo = wmbx->cmbo;
while (sc->sc_mbofull > 0) {
if (wmbo->cmd != BT_MBO_FREE)
break;
#ifdef BTDIAG
ccb = bt_ccb_phys_kv(sc, phystol(wmbo->ccb_addr));
ccb->flags &= ~CCB_SENDING;
#endif
--sc->sc_mbofull;
bt_nextmbx(wmbo, wmbx, mbo);
}
wmbx->cmbo = wmbo;
}
void
bt_start_ccbs(struct bt_softc *sc)
{
int iobase = sc->sc_iobase;
struct bt_mbx_out *wmbo;
struct bt_ccb *ccb;
wmbo = wmbx->tmbo;
while ((ccb = sc->sc_waiting_ccb.tqh_first) != NULL) {
if (sc->sc_mbofull >= BT_MBX_SIZE) {
bt_collect_mbo(sc);
if (sc->sc_mbofull >= BT_MBX_SIZE) {
struct bt_toggle toggle;
toggle.cmd.opcode = BT_MBO_INTR_EN;
toggle.cmd.enable = 1;
bt_cmd(iobase, sc, sizeof(toggle.cmd),
(u_char *)&toggle.cmd, 0, (u_char *)0);
break;
}
}
TAILQ_REMOVE(&sc->sc_waiting_ccb, ccb, chain);
#ifdef BTDIAG
ccb->flags |= CCB_SENDING;
#endif
ltophys(KVTOPHYS(ccb), wmbo->ccb_addr);
if (ccb->flags & CCB_ABORT)
wmbo->cmd = BT_MBO_ABORT;
else
wmbo->cmd = BT_MBO_START;
isa_outb(iobase + BT_CMD_PORT, BT_START_SCSI);
if ((ccb->xs->xs_control & XS_CTL_POLL) == 0)
callout_reset(&ccb->xs->xs_callout,
mstohz(ccb->timeout), bt_timeout, ccb);
++sc->sc_mbofull;
bt_nextmbx(wmbo, wmbx, mbo);
}
wmbx->tmbo = wmbo;
}
void
bt_done(struct bt_softc *sc, struct bt_ccb *ccb)
{
struct scsi_sense_data *s1, *s2;
struct scsipi_xfer *xs = ccb->xs;
u_long thiskv, thisbounce;
int bytes_this_page, datalen;
struct bt_scat_gath *sg;
int seg;
SC_DEBUG(xs->sc_link, SDEV_DB2, ("bt_done\n"));
#ifdef BTDIAG
if (ccb->flags & CCB_SENDING) {
printf("%s: exiting ccb still in transit!\n",
device_xname(sc->sc_dev));
Debugger();
return;
}
#endif
if ((ccb->flags & CCB_ALLOC) == 0) {
printf("%s: exiting ccb not allocated!\n",
device_xname(sc->sc_dev));
Debugger();
return;
}
if (xs->error == XS_NOERROR) {
if (ccb->host_stat != BT_OK) {
switch (ccb->host_stat) {
case BT_SEL_TIMEOUT:
xs->error = XS_SELTIMEOUT;
break;
default:
printf("%s: host_stat %x\n",
device_xname(sc->sc_dev), ccb->host_stat);
xs->error = XS_DRIVER_STUFFUP;
break;
}
} else if (ccb->target_stat != SCSI_OK) {
switch (ccb->target_stat) {
case SCSI_CHECK:
s1 = &ccb->scsi_sense;
s2 = &xs->sense.scsi_sense;
*s2 = *s1;
xs->error = XS_SENSE;
break;
case SCSI_BUSY:
xs->error = XS_BUSY;
break;
default:
printf("%s: target_stat %x\n",
device_xname(sc->sc_dev), ccb->target_stat);
xs->error = XS_DRIVER_STUFFUP;
break;
}
} else
xs->resid = 0;
}
if((datalen = xs->datalen) != 0) {
thiskv = (int)xs->data;
sg = ccb->scat_gath;
seg = phystol(ccb->data_length) / sizeof(struct bt_scat_gath);
while (seg) {
thisbounce = PHYSTOKV(phystol(sg->seg_addr));
bytes_this_page = phystol(sg->seg_len);
if(xs->xs_control & XS_CTL_DATA_IN) {
memcpy((void *)thiskv, (void *)thisbounce, bytes_this_page);
}
bt_free_buf(sc, (struct bt_buf *)thisbounce);
thiskv += bytes_this_page;
datalen -= bytes_this_page;
sg++;
seg--;
}
}
bt_free_ccb(sc, ccb);
xs->xs_status |= XS_STS_DONE;
scsipi_done(xs);
}
int
bt_find(struct isa_attach_args *ia, struct bt_softc *sc)
{
int iobase = ia->ia_iobase;
int i;
u_char sts;
struct bt_extended_inquire inquire;
struct bt_config config;
int irq, drq;
#ifndef notyet
sts = isa_inb(iobase + BHA_STAT_PORT);
if (sts == 0xFF)
return (0);
#endif
isa_outb(iobase + BT_CTRL_PORT, BT_CTRL_HRST | BT_CTRL_SRST);
delay(100);
for (i = BT_RESET_TIMEOUT; i; i--) {
sts = isa_inb(iobase + BT_STAT_PORT);
if (sts == (BT_STAT_IDLE | BT_STAT_INIT))
break;
delay(1000);
}
if (!i) {
#ifdef BTDEBUG
if (bt_debug)
printf("bt_find: No answer from buslogic board\n");
#endif
return 1;
}
#ifndef notyet
sts = isa_inb(iobase + BT_EXTGEOM_PORT);
if (sts == 0xFF)
return (0);
#endif
delay(1000);
memset(&inquire, 0, sizeof inquire);
inquire.cmd.opcode = BT_INQUIRE_EXTENDED;
inquire.cmd.len = sizeof(inquire.reply);
i = bt_cmd(iobase, sc, sizeof(inquire.cmd), (u_char *)&inquire.cmd,
sizeof(inquire.reply), (u_char *)&inquire.reply);
#ifndef notyet
if (i) {
#ifdef BTDEBUG
printf("bt_find: board returned %d instead of %d to %s\n",
i, sizeof(inquire.reply), "INQUIRE_EXTENDED");
#endif
return (0);
}
#endif
switch (inquire.reply.bus_type) {
case BT_BUS_TYPE_24BIT:
case BT_BUS_TYPE_32BIT:
break;
case BT_BUS_TYPE_MCA:
return 1;
default:
printf("bt_find: illegal bus type %c\n", inquire.reply.bus_type);
return 1;
}
delay(1000);
config.cmd.opcode = BT_INQUIRE_CONFIG;
bt_cmd(iobase, sc, sizeof(config.cmd), (u_char *)&config.cmd,
sizeof(config.reply), (u_char *)&config.reply);
switch (config.reply.chan) {
case EISADMA:
drq = DRQUNK;
break;
case CHAN0:
drq = 0;
break;
case CHAN5:
drq = 5;
break;
case CHAN6:
drq = 6;
break;
case CHAN7:
drq = 7;
break;
default:
printf("bt_find: illegal drq setting %x\n", config.reply.chan);
return 1;
}
switch (config.reply.intr) {
case INT9:
irq = 9;
break;
case INT10:
irq = 10;
break;
case INT11:
irq = 11;
break;
case INT12:
irq = 12;
break;
case INT14:
irq = 14;
break;
case INT15:
irq = 15;
break;
default:
printf("bt_find: illegal irq setting %x\n", config.reply.intr);
return 1;
}
if (sc != NULL) {
sc->sc_scsi_dev = config.reply.scsi_dev;
sc->sc_iobase = iobase;
sc->sc_irq = irq;
sc->sc_drq = drq;
} else {
if (ia->ia_irq == IRQUNK)
ia->ia_irq = irq;
else if (ia->ia_irq != irq)
return 1;
if (ia->ia_drq == DRQUNK)
ia->ia_drq = drq;
else if (ia->ia_drq != drq)
return 1;
}
return 0;
}
void
bt_init(struct bt_softc *sc)
{
int iobase = sc->sc_iobase;
struct bt_devices devices;
struct bt_setup setup;
struct bt_mailbox mailbox;
struct bt_period period;
int i;
if (strcmp(sc->sc_firmware, "3.31") >= 0) {
struct bt_toggle toggle;
toggle.cmd.opcode = BT_ROUND_ROBIN;
toggle.cmd.enable = 1;
bt_cmd(iobase, sc, sizeof(toggle.cmd), (u_char *)&toggle.cmd,
0, (u_char *)0);
}
devices.cmd.opcode = BT_INQUIRE_DEVICES;
bt_cmd(iobase, sc, sizeof(devices.cmd), (u_char *)&devices.cmd,
sizeof(devices.reply), (u_char *)&devices.reply);
setup.cmd.opcode = BT_INQUIRE_SETUP;
setup.cmd.len = sizeof(setup.reply);
bt_cmd(iobase, sc, sizeof(setup.cmd), (u_char *)&setup.cmd,
sizeof(setup.reply), (u_char *)&setup.reply);
printf("%s: %s, %s\n",
device_xname(sc->sc_dev),
setup.reply.sync_neg ? "sync" : "async",
setup.reply.parity ? "parity" : "no parity");
for (i = 0; i < 8; i++)
period.reply.period[i] = setup.reply.sync[i].period * 5 + 20;
if (sc->sc_firmware[0] >= '3') {
period.cmd.opcode = BT_INQUIRE_PERIOD;
period.cmd.len = sizeof(period.reply);
bt_cmd(iobase, sc, sizeof(period.cmd), (u_char *)&period.cmd,
sizeof(period.reply), (u_char *)&period.reply);
}
for (i = 0; i < 8; i++) {
if (!setup.reply.sync[i].valid ||
(!setup.reply.sync[i].offset && !setup.reply.sync[i].period))
continue;
printf("%s targ %d: sync, offset %d, period %dnsec\n",
device_xname(sc->sc_dev), i,
setup.reply.sync[i].offset, period.reply.period[i] * 10);
}
for (i = 0; i < BT_MBX_SIZE; i++) {
wmbx->mbo[i].cmd = BT_MBO_FREE;
wmbx->mbi[i].stat = BT_MBI_FREE;
}
wmbx->cmbo = wmbx->tmbo = &wmbx->mbo[0];
wmbx->tmbi = &wmbx->mbi[0];
sc->sc_mbofull = 0;
mailbox.cmd.opcode = BT_MBX_INIT_EXTENDED;
mailbox.cmd.nmbx = BT_MBX_SIZE;
ltophys(KVTOPHYS(wmbx), mailbox.cmd.addr);
bt_cmd(iobase, sc, sizeof(mailbox.cmd), (u_char *)&mailbox.cmd,
0, (u_char *)0);
}
void
bt_inquire_setup_information(struct bt_softc *sc)
{
int iobase = sc->sc_iobase;
struct bt_model model;
struct bt_revision revision;
struct bt_digit digit;
char *p;
p = sc->sc_firmware;
revision.cmd.opcode = BT_INQUIRE_REVISION;
bt_cmd(iobase, sc, sizeof(revision.cmd), (u_char *)&revision.cmd,
sizeof(revision.reply), (u_char *)&revision.reply);
*p++ = revision.reply.firm_revision;
*p++ = '.';
*p++ = revision.reply.firm_version;
digit.cmd.opcode = BT_INQUIRE_REVISION_3;
bt_cmd(iobase, sc, sizeof(digit.cmd), (u_char *)&digit.cmd,
sizeof(digit.reply), (u_char *)&digit.reply);
*p++ = digit.reply.digit;
if (revision.reply.firm_revision >= '3' ||
(revision.reply.firm_revision == '3' && revision.reply.firm_version >= '3')) {
digit.cmd.opcode = BT_INQUIRE_REVISION_4;
bt_cmd(iobase, sc, sizeof(digit.cmd), (u_char *)&digit.cmd,
sizeof(digit.reply), (u_char *)&digit.reply);
*p++ = digit.reply.digit;
}
while (p > sc->sc_firmware && (p[-1] == ' ' || p[-1] == '\0'))
p--;
*p = '\0';
if (revision.reply.firm_revision >= '3') {
p = sc->sc_model;
model.cmd.opcode = BT_INQUIRE_MODEL;
model.cmd.len = sizeof(model.reply);
bt_cmd(iobase, sc, sizeof(model.cmd), (u_char *)&model.cmd,
sizeof(model.reply), (u_char *)&model.reply);
*p++ = model.reply.id[0];
*p++ = model.reply.id[1];
*p++ = model.reply.id[2];
*p++ = model.reply.id[3];
while (p > sc->sc_model && (p[-1] == ' ' || p[-1] == '\0'))
p--;
*p++ = model.reply.version[0];
*p++ = model.reply.version[1];
while (p > sc->sc_model && (p[-1] == ' ' || p[-1] == '\0'))
p--;
*p = '\0';
} else
strcpy(sc->sc_model, "542B");
printf(": model BT-%s, firmware %s\n", sc->sc_model, sc->sc_firmware);
}
void
btminphys(struct buf *bp)
{
if (bp->b_bcount > ((BT_NSEG - 1) << PGSHIFT))
bp->b_bcount = ((BT_NSEG - 1) << PGSHIFT);
minphys(bp);
}
int
bt_scsi_cmd(struct scsipi_xfer *xs)
{
struct scsipi_link *sc_link = xs->sc_link;
struct bt_softc *sc = sc_link->adapter_softc;
struct bt_ccb *ccb;
struct bt_scat_gath *sg;
int seg;
u_long thiskv, thisbounce;
int bytes_this_page, datalen, control;
int s;
SC_DEBUG(sc_link, SDEV_DB2, ("bt_scsi_cmd\n"));
control = xs->xs_control;
if ((ccb = bt_get_ccb(sc, control & XS_CTL_NOSLEEP)) == NULL) {
xs->error = XS_DRIVER_STUFFUP;
return TRY_AGAIN_LATER;
}
ccb->xs = xs;
ccb->timeout = xs->timeout;
if (control & XS_CTL_RESET) {
ccb->opcode = BT_RESET_CCB;
ccb->scsi_cmd_length = 0;
} else {
if (xs->cmdlen > sizeof(ccb->scsi_cmd)) {
printf("%s: cmdlen %d too large for CCB\n",
device_xname(sc->sc_dev), xs->cmdlen);
xs->error = XS_DRIVER_STUFFUP;
bt_free_ccb(sc, ccb);
return COMPLETE;
}
ccb->opcode = (xs->datalen ? BT_INIT_SCAT_GATH_CCB
: BT_INITIATOR_CCB);
memcpy(&ccb->scsi_cmd, xs->cmd,
ccb->scsi_cmd_length = xs->cmdlen);
}
if (xs->datalen) {
sg = ccb->scat_gath;
seg = 0;
SC_DEBUG(sc_link, SDEV_DB4,
("%d @0x%x:- ", xs->datalen, xs->data));
datalen = xs->datalen;
thiskv = (int)xs->data;
while (datalen && seg < BT_NSEG) {
thisbounce = (u_long)
bt_get_buf(sc, control & XS_CTL_NOSLEEP);
if(thisbounce == 0)
break;
ltophys(KVTOPHYS(thisbounce), sg->seg_addr);
bytes_this_page = uimin(sizeof(struct bt_buf), datalen);
if (control & XS_CTL_DATA_OUT) {
memcpy((void *)thisbounce, (void *)thiskv, bytes_this_page);
}
thiskv += bytes_this_page;
datalen -= bytes_this_page;
ltophys(bytes_this_page, sg->seg_len);
sg++;
seg++;
}
SC_DEBUGN(sc_link, SDEV_DB4, ("\n"));
if (datalen) {
printf("%s: bt_scsi_cmd, out of bufs %d of %d left.\n",
device_xname(sc->sc_dev), datalen, xs->datalen);
goto badbuf;
}
ltophys(KVTOPHYS(ccb->scat_gath), ccb->data_addr);
ltophys(seg * sizeof(struct bt_scat_gath), ccb->data_length);
} else {
ltophys(0, ccb->data_addr);
ltophys(0, ccb->data_length);
}
ccb->data_out = 0;
ccb->data_in = 0;
ccb->target = sc_link->scsipi_scsi.target;
ccb->lun = sc_link->scsipi_scsi.lun;
ltophys(KVTOPHYS(&ccb->scsi_sense), ccb->sense_ptr);
ccb->req_sense_length = sizeof(ccb->scsi_sense);
ccb->host_stat = 0x00;
ccb->target_stat = 0x00;
ccb->link_id = 0;
ltophys(0, ccb->link_addr);
s = splbio();
bt_queue_ccb(sc, ccb);
splx(s);
SC_DEBUG(sc_link, SDEV_DB3, ("cmd_sent\n"));
if ((control & XS_CTL_POLL) == 0)
return SUCCESSFULLY_QUEUED;
if (bt_poll(sc, xs, ccb->timeout)) {
bt_timeout(ccb);
if (bt_poll(sc, xs, ccb->timeout))
bt_timeout(ccb);
}
return COMPLETE;
badbuf:
sg = ccb->scat_gath;
while (seg) {
thisbounce = PHYSTOKV(phystol(sg->seg_addr));
bt_free_buf(sc, (struct bt_buf *)thisbounce);
sg++;
seg--;
}
xs->error = XS_DRIVER_STUFFUP;
bt_free_ccb(sc, ccb);
return TRY_AGAIN_LATER;
}
int
bt_poll(struct bt_softc *sc, struct scsipi_xfer *xs, int count)
{
int iobase = sc->sc_iobase;
while (count) {
if (isa_inb(iobase + BT_INTR_PORT) & BT_INTR_ANYINTR)
btintr(sc);
if (xs->xs_status & XS_STS_DONE)
return 0;
delay(1000);
count--;
}
return 1;
}
void
bt_timeout(void *arg)
{
struct bt_ccb *ccb = arg;
struct scsipi_xfer *xs = ccb->xs;
struct scsipi_link *sc_link = xs->sc_link;
struct bt_softc *sc = sc_link->adapter_softc;
int s;
scsi_print_addr(sc_link);
printf("timed out");
s = splbio();
#ifdef BTDIAG
bt_collect_mbo(sc);
if (ccb->flags & CCB_SENDING) {
printf("%s: not taking commands!\n", device_xname(sc->sc_dev));
Debugger();
}
#endif
if (ccb->flags & CCB_ABORT) {
printf(" AGAIN\n");
} else {
printf("\n");
ccb->xs->error = XS_TIMEOUT;
ccb->timeout = BT_ABORT_TIMEOUT;
ccb->flags |= CCB_ABORT;
bt_queue_ccb(sc, ccb);
}
splx(s);
}