#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/buf.h>
#include <sys/malloc.h>
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
#include <scsi/scsi_message.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <machine/autoconf.h>
#include <dev/ic/lsi64854reg.h>
#include <dev/ic/lsi64854var.h>
#include <dev/ic/ncr53c9xreg.h>
#include <dev/ic/ncr53c9xvar.h>
#include <dev/sbus/sbusvar.h>
static int esp_unit_offset;
struct esp_softc {
struct ncr53c9x_softc sc_ncr53c9x;
bus_space_tag_t sc_bustag;
bus_dma_tag_t sc_dmatag;
bus_space_handle_t sc_reg;
struct lsi64854_softc *sc_dma;
int sc_pri;
};
void espattach_sbus(struct device *, struct device *, void *);
void espattach_dma(struct device *, struct device *, void *);
int espmatch_sbus(struct device *, void *, void *);
const struct cfattach esp_sbus_ca = {
sizeof(struct esp_softc), espmatch_sbus, espattach_sbus
};
const struct cfattach esp_dma_ca = {
sizeof(struct esp_softc), espmatch_sbus, espattach_dma
};
static u_char esp_read_reg(struct ncr53c9x_softc *, int);
static void esp_write_reg(struct ncr53c9x_softc *, int, u_char);
static u_char esp_rdreg1(struct ncr53c9x_softc *, int);
static void esp_wrreg1(struct ncr53c9x_softc *, int, u_char);
static int esp_dma_isintr(struct ncr53c9x_softc *);
static void esp_dma_reset(struct ncr53c9x_softc *);
static int esp_dma_intr(struct ncr53c9x_softc *);
static int esp_dma_setup(struct ncr53c9x_softc *, caddr_t *,
size_t *, int, size_t *);
static void esp_dma_go(struct ncr53c9x_softc *);
static void esp_dma_stop(struct ncr53c9x_softc *);
static int esp_dma_isactive(struct ncr53c9x_softc *);
static struct ncr53c9x_glue esp_sbus_glue = {
esp_read_reg,
esp_write_reg,
esp_dma_isintr,
esp_dma_reset,
esp_dma_intr,
esp_dma_setup,
esp_dma_go,
esp_dma_stop,
esp_dma_isactive,
NULL,
};
static struct ncr53c9x_glue esp_sbus_glue1 = {
esp_rdreg1,
esp_wrreg1,
esp_dma_isintr,
esp_dma_reset,
esp_dma_intr,
esp_dma_setup,
esp_dma_go,
esp_dma_stop,
esp_dma_isactive,
NULL,
};
static void espattach(struct esp_softc *, struct ncr53c9x_glue *);
int
espmatch_sbus(struct device *parent, void *vcf, void *aux)
{
struct cfdata *cf = vcf;
int rv;
struct sbus_attach_args *sa = aux;
if (strcmp("SUNW,fas", sa->sa_name) == 0)
return 1;
rv = (strcmp(cf->cf_driver->cd_name, sa->sa_name) == 0 ||
strcmp("ptscII", sa->sa_name) == 0);
return (rv);
}
void
espattach_sbus(struct device *parent, struct device *self, void *aux)
{
struct esp_softc *esc = (void *)self;
struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
struct sbus_attach_args *sa = aux;
struct lsi64854_softc *lsc;
int burst, sbusburst;
esc->sc_bustag = sa->sa_bustag;
esc->sc_dmatag = sa->sa_dmatag;
sc->sc_id = getpropint(sa->sa_node, "initiator-id", 7);
sc->sc_freq = getpropint(sa->sa_node, "clock-frequency", -1);
if (sc->sc_freq < 0)
sc->sc_freq = sa->sa_frequency;
#ifdef ESP_SBUS_DEBUG
printf("%s: espattach_sbus: sc_id %d, freq %d\n",
self->dv_xname, sc->sc_id, sc->sc_freq);
#endif
if (strcmp("SUNW,fas", sa->sa_name) == 0) {
esp_unit_offset++;
if (sa->sa_nreg != 2) {
printf("%s: %d register spaces\n", self->dv_xname, sa->sa_nreg);
return;
}
lsc = malloc(sizeof (struct lsi64854_softc), M_DEVBUF, M_NOWAIT);
if (lsc == NULL) {
printf("%s: out of memory (lsi64854_softc)\n",
self->dv_xname);
return;
}
esc->sc_dma = lsc;
lsc->sc_bustag = sa->sa_bustag;
lsc->sc_dmatag = sa->sa_dmatag;
bcopy(sc->sc_dev.dv_xname, lsc->sc_dev.dv_xname,
sizeof (lsc->sc_dev.dv_xname));
if (sbus_bus_map(sa->sa_bustag, sa->sa_reg[0].sbr_slot,
sa->sa_reg[0].sbr_offset, sa->sa_reg[0].sbr_size,
0, 0, &lsc->sc_regs) != 0) {
printf("%s: cannot map dma registers\n", self->dv_xname);
return;
}
sbusburst = ((struct sbus_softc *)parent)->sc_burst;
if (sbusburst == 0)
sbusburst = SBUS_BURST_32 - 1;
burst = getpropint(sa->sa_node, "burst-sizes", -1);
#ifdef ESP_SBUS_DEBUG
printf("espattach_sbus: burst 0x%x, sbus 0x%x\n",
burst, sbusburst);
#endif
if (burst == -1)
burst = sbusburst;
burst &= sbusburst;
lsc->sc_burst = (burst & SBUS_BURST_32) ? 32 :
(burst & SBUS_BURST_16) ? 16 : 0;
lsc->sc_channel = L64854_CHANNEL_SCSI;
lsc->sc_client = sc;
lsi64854_attach(lsc);
if (sbus_bus_map(sa->sa_bustag, sa->sa_reg[1].sbr_slot,
sa->sa_reg[1].sbr_offset, sa->sa_reg[1].sbr_size,
0, 0, &esc->sc_reg) != 0) {
printf("%s: cannot map scsi core registers\n",
self->dv_xname);
return;
}
if (sa->sa_nintr == 0) {
printf("%s: no interrupt property\n", self->dv_xname);
return;
}
esc->sc_pri = sa->sa_pri;
printf("%s", self->dv_xname);
espattach(esc, &esp_sbus_glue);
return;
}
esc->sc_dma = (struct lsi64854_softc *)
getdevunit("dma", sc->sc_dev.dv_unit - esp_unit_offset);
if (esc->sc_dma)
esc->sc_dma->sc_client = sc;
else {
printf("\n");
panic("espattach: no dma found");
}
if (esc->sc_dma->sc_rev == DMAREV_ESC)
DMA_RESET(esc->sc_dma);
if (sa->sa_npromvaddrs) {
if (bus_space_map(sa->sa_bustag, sa->sa_promvaddrs[0],
sa->sa_size, BUS_SPACE_MAP_PROMADDRESS,
&esc->sc_reg) != 0) {
printf("%s @ sbus: cannot map registers\n",
self->dv_xname);
return;
}
} else {
if (sbus_bus_map(sa->sa_bustag, sa->sa_slot,
sa->sa_offset, sa->sa_size, 0, 0, &esc->sc_reg) != 0) {
printf("%s @ sbus: cannot map registers\n",
self->dv_xname);
return;
}
}
if (sa->sa_nintr == 0) {
printf("\n%s: no interrupt property\n", self->dv_xname);
return;
}
esc->sc_pri = sa->sa_pri;
if (strcmp("ptscII", sa->sa_name) == 0) {
espattach(esc, &esp_sbus_glue1);
} else {
espattach(esc, &esp_sbus_glue);
}
}
void
espattach_dma(struct device *parent, struct device *self, void *aux)
{
struct esp_softc *esc = (void *)self;
struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
struct sbus_attach_args *sa = aux;
if (strcmp("ptscII", sa->sa_name) == 0) {
return;
}
esc->sc_bustag = sa->sa_bustag;
esc->sc_dmatag = sa->sa_dmatag;
sc->sc_id = getpropint(sa->sa_node, "initiator-id", 7);
sc->sc_freq = getpropint(sa->sa_node, "clock-frequency", -1);
esc->sc_dma = (struct lsi64854_softc *)parent;
esc->sc_dma->sc_client = sc;
if (sa->sa_npromvaddrs) {
if (bus_space_map(sa->sa_bustag, sa->sa_promvaddrs[0],
sa->sa_size , BUS_SPACE_MAP_PROMADDRESS,
&esc->sc_reg) != 0) {
printf("%s @ dma: cannot map registers\n",
self->dv_xname);
return;
}
} else {
if (sbus_bus_map(sa->sa_bustag, sa->sa_slot, sa->sa_offset,
sa->sa_size, 0, 0, &esc->sc_reg) != 0) {
printf("%s @ dma: cannot map registers\n",
self->dv_xname);
return;
}
}
if (sa->sa_nintr == 0) {
printf("\n%s: no interrupt property\n", self->dv_xname);
return;
}
esc->sc_pri = sa->sa_pri;
espattach(esc, &esp_sbus_glue);
}
void
espattach(struct esp_softc *esc, struct ncr53c9x_glue *gluep)
{
struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
void *icookie;
unsigned int uid = 0;
sc->sc_glue = gluep;
sc->sc_freq /= 1000000;
sc->sc_cfg1 = sc->sc_id | NCRCFG1_PARENB;
sc->sc_cfg2 = NCRCFG2_SCSI2 | NCRCFG2_RPE;
sc->sc_cfg3 = NCRCFG3_CDB;
NCR_WRITE_REG(sc, NCR_CFG2, sc->sc_cfg2);
if ((NCR_READ_REG(sc, NCR_CFG2) & ~NCRCFG2_RSVD) !=
(NCRCFG2_SCSI2 | NCRCFG2_RPE)) {
sc->sc_rev = NCR_VARIANT_ESP100;
} else {
sc->sc_cfg2 = NCRCFG2_SCSI2;
NCR_WRITE_REG(sc, NCR_CFG2, sc->sc_cfg2);
sc->sc_cfg3 = 0;
NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
sc->sc_cfg3 = (NCRCFG3_CDB | NCRCFG3_FCLK);
NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
if (NCR_READ_REG(sc, NCR_CFG3) !=
(NCRCFG3_CDB | NCRCFG3_FCLK)) {
sc->sc_rev = NCR_VARIANT_ESP100A;
} else {
sc->sc_cfg2 |= NCRCFG2_FE;
sc->sc_cfg3 = 0;
NCR_WRITE_REG(sc, NCR_CFG3, sc->sc_cfg3);
sc->sc_rev = NCR_VARIANT_ESP200;
uid = NCR_READ_REG(sc, NCR_UID);
if (((uid & 0xf8) >> 3) == 0x0a)
sc->sc_rev = NCR_VARIANT_FAS366;
}
}
#ifdef ESP_SBUS_DEBUG
printf("espattach: revision %d, uid 0x%x\n", sc->sc_rev, uid);
#endif
sc->sc_minsync = 1000 / sc->sc_freq;
switch (sc->sc_rev) {
case NCR_VARIANT_ESP100:
sc->sc_maxxfer = 64 * 1024;
sc->sc_minsync = 0;
break;
case NCR_VARIANT_ESP100A:
sc->sc_maxxfer = 64 * 1024;
sc->sc_minsync = ncr53c9x_cpb2stp(sc, 5);
break;
case NCR_VARIANT_ESP200:
case NCR_VARIANT_FAS366:
sc->sc_maxxfer = 16 * 1024 * 1024;
break;
}
icookie = bus_intr_establish(esc->sc_bustag, esc->sc_pri, IPL_BIO, 0,
ncr53c9x_intr, sc, sc->sc_dev.dv_xname);
if (sc->sc_rev != NCR_VARIANT_FAS366)
sc->sc_features |= NCR_F_DMASELECT;
ncr53c9x_attach(sc);
}
#ifdef ESP_SBUS_DEBUG
int esp_sbus_debug = 0;
static struct {
char *r_name;
int r_flag;
} esp__read_regnames [] = {
{ "TCL", 0},
{ "TCM", 0},
{ "FIFO", 0},
{ "CMD", 0},
{ "STAT", 0},
{ "INTR", 0},
{ "STEP", 0},
{ "FFLAGS", 1},
{ "CFG1", 1},
{ "STAT2", 0},
{ "CFG4", 1},
{ "CFG2", 1},
{ "CFG3", 1},
{ "-none", 1},
{ "TCH", 1},
{ "TCX", 1},
};
static struct {
char *r_name;
int r_flag;
} esp__write_regnames[] = {
{ "TCL", 1},
{ "TCM", 1},
{ "FIFO", 0},
{ "CMD", 0},
{ "SELID", 1},
{ "TIMEOUT", 1},
{ "SYNCTP", 1},
{ "SYNCOFF", 1},
{ "CFG1", 1},
{ "CCF", 1},
{ "TEST", 1},
{ "CFG2", 1},
{ "CFG3", 1},
{ "-none", 1},
{ "TCH", 1},
{ "TCX", 1},
};
#endif
u_char
esp_read_reg(struct ncr53c9x_softc *sc, int reg)
{
struct esp_softc *esc = (struct esp_softc *)sc;
u_char v;
v = bus_space_read_1(esc->sc_bustag, esc->sc_reg, reg * 4);
#ifdef ESP_SBUS_DEBUG
if (esp_sbus_debug && (reg < 0x10) && esp__read_regnames[reg].r_flag)
printf("RD:%x <%s> %x\n", reg * 4,
((unsigned)reg < 0x10) ? esp__read_regnames[reg].r_name : "<***>", v);
#endif
return v;
}
void
esp_write_reg(struct ncr53c9x_softc *sc, int reg, u_char v)
{
struct esp_softc *esc = (struct esp_softc *)sc;
#ifdef ESP_SBUS_DEBUG
if (esp_sbus_debug && (reg < 0x10) && esp__write_regnames[reg].r_flag)
printf("WR:%x <%s> %x\n", reg * 4,
((unsigned)reg < 0x10) ? esp__write_regnames[reg].r_name : "<***>", v);
#endif
bus_space_write_1(esc->sc_bustag, esc->sc_reg, reg * 4, v);
}
u_char
esp_rdreg1(struct ncr53c9x_softc *sc, int reg)
{
struct esp_softc *esc = (struct esp_softc *)sc;
return (bus_space_read_1(esc->sc_bustag, esc->sc_reg, reg));
}
void
esp_wrreg1(struct ncr53c9x_softc *sc, int reg, u_char v)
{
struct esp_softc *esc = (struct esp_softc *)sc;
bus_space_write_1(esc->sc_bustag, esc->sc_reg, reg, v);
}
int
esp_dma_isintr(struct ncr53c9x_softc *sc)
{
struct esp_softc *esc = (struct esp_softc *)sc;
return (DMA_ISINTR(esc->sc_dma));
}
void
esp_dma_reset(struct ncr53c9x_softc *sc)
{
struct esp_softc *esc = (struct esp_softc *)sc;
DMA_RESET(esc->sc_dma);
}
int
esp_dma_intr(struct ncr53c9x_softc *sc)
{
struct esp_softc *esc = (struct esp_softc *)sc;
return (DMA_INTR(esc->sc_dma));
}
int
esp_dma_setup(struct ncr53c9x_softc *sc, caddr_t *addr, size_t *len,
int datain, size_t *dmasize)
{
struct esp_softc *esc = (struct esp_softc *)sc;
return (DMA_SETUP(esc->sc_dma, addr, len, datain, dmasize));
}
void
esp_dma_go(struct ncr53c9x_softc *sc)
{
struct esp_softc *esc = (struct esp_softc *)sc;
DMA_GO(esc->sc_dma);
}
void
esp_dma_stop(struct ncr53c9x_softc *sc)
{
struct esp_softc *esc = (struct esp_softc *)sc;
u_int32_t csr;
csr = L64854_GCSR(esc->sc_dma);
csr &= ~D_EN_DMA;
L64854_SCSR(esc->sc_dma, csr);
}
int
esp_dma_isactive(struct ncr53c9x_softc *sc)
{
struct esp_softc *esc = (struct esp_softc *)sc;
return (DMA_ISACTIVE(esc->sc_dma));
}
#if defined(DDB) && defined(notyet)
#include <machine/db_machdep.h>
#include <ddb/db_output.h>
void db_esp(db_expr_t, int, db_expr_t, char *);
void
db_esp(db_expr_t addr, int have_addr, db_expr_t count, char *modif)
{
struct ncr53c9x_softc *sc;
struct ncr53c9x_ecb *ecb;
struct ncr53c9x_linfo *li;
int u, t, i;
for (u=0; u<10; u++) {
sc = (struct ncr53c9x_softc *)
getdevunit("esp", u);
if (!sc) continue;
db_printf("esp%d: nexus %p phase %x prev %x dp %p dleft %lx ify %x\n",
u, sc->sc_nexus, sc->sc_phase, sc->sc_prevphase,
sc->sc_dp, sc->sc_dleft, sc->sc_msgify);
db_printf("\tmsgout %x msgpriq %x msgin %x:%x:%x:%x:%x\n",
sc->sc_msgout, sc->sc_msgpriq, sc->sc_imess[0],
sc->sc_imess[1], sc->sc_imess[2], sc->sc_imess[3],
sc->sc_imess[0]);
db_printf("ready: ");
TAILQ_FOREACH(ecb, &sc->ready_list, chain) {
db_printf("ecb %p ", ecb);
if (ecb == TAILQ_NEXT(ecb, chain)) {
db_printf("\nWARNING: tailq loop on ecb %p", ecb);
break;
}
}
db_printf("\n");
for (t=0; t<NCR_NTARG; t++) {
LIST_FOREACH(li, &sc->sc_tinfo[t].luns, link) {
db_printf("t%d lun %d untagged %p busy %d used %x\n",
t, (int)li->lun, li->untagged, li->busy,
li->used);
for (i=0; i<256; i++)
if ((ecb = li->queued[i])) {
db_printf("ecb %p tag %x\n", ecb, i);
}
}
}
}
}
#endif