/* $NetBSD: mba.c,v 1.42 2021/08/07 16:19:07 thorpej Exp $ */
/*
* Copyright (c) 1994, 1996 Ludd, University of Lule}, Sweden.
* All rights reserved.
*
* 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
* notice, this list of conditions and the following disclaimer.
* 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 ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 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.
*/
/*
* Simple massbus drive routine.
* TODO:
* Autoconfig new devices 'on the fly'.
* More intelligent way to handle different interrupts.
*/
/*
* Look if this is a massbuss adapter.
*/
int
mbamatch(device_t parent, cfdata_t cf, void *aux)
{
struct sbi_attach_args * const sa = aux;
if (vax_cputype == VAX_750) {
if (cf->cf_loc[CMICF_TR] != CMICF_TR_DEFAULT &&
cf->cf_loc[CMICF_TR] != sa->sa_nexnum)
return 0;
} else {
if (cf->cf_loc[SBICF_TR] != SBICF_TR_DEFAULT &&
cf->cf_loc[SBICF_TR] != sa->sa_nexnum)
return 0;
}
if (sa->sa_type == NEX_MBA)
return 1;
return 0;
}
/*
* Attach the found massbuss adapter. Setup its interrupt vectors,
* reset it and go searching for drives on it.
*/
void
mbaattach(device_t parent, device_t self, void *aux)
{
struct mba_softc * const sc = device_private(self);
struct sbi_attach_args * const sa = aux;
struct mba_attach_args ma;
int i, j;
aprint_normal("\n");
sc->sc_dev = self;
sc->sc_iot = sa->sa_iot;
sc->sc_ioh = sa->sa_ioh;
/*
* Set up interrupt vectors for this MBA.
*/
for (i = 0x14; i < 0x18; i++)
scb_vecalloc(vecnum(0, i, sa->sa_nexnum),
mbaintr, sc, SCB_ISTACK, &sc->sc_intrcnt);
evcnt_attach_dynamic(&sc->sc_intrcnt, EVCNT_TYPE_INTR, NULL,
device_xname(self), "intr");
if (sc->sc_state == SC_AUTOCONF)
return; /* During autoconfig */
md = STAILQ_FIRST(&sc->sc_xfers);
bp = bufq_peek(md->md_q);
/*
* A data-transfer interrupt. Current operation is finished,
* call that device's finish routine to see what to do next.
*/
if (sc->sc_state == SC_ACTIVE) {
sc->sc_state = SC_IDLE;
switch ((*md->md_finish)(md, itype, &attn)) {
case XFER_FINISH:
/*
* Transfer is finished. Take buffer of drive
* queue, and take drive of adapter queue.
* If more to transfer, start the adapter again
* by calling mbastart().
*/
(void)bufq_get(md->md_q);
STAILQ_REMOVE_HEAD(&sc->sc_xfers, md_link);
if (bufq_peek(md->md_q) != NULL) {
STAILQ_INSERT_TAIL(&sc->sc_xfers, md, md_link);
}
bp->b_resid = 0;
biodone(bp);
if (!STAILQ_EMPTY(&sc->sc_xfers))
mbastart(sc);
break;
case XFER_RESTART:
/*
* Something went wrong with the transfer. Try again.
*/
mbastart(sc);
break;
}
}
while (attn) {
anr = ffs(attn) - 1;
attn &= ~(1 << anr);
if (sc->sc_md[anr]->md_attn == 0)
panic("Should check for new MBA device %d", anr);
(*sc->sc_md[anr]->md_attn)(sc->sc_md[anr]);
}
}
int
mbaprint(void *aux, const char *mbaname)
{
struct mba_attach_args * const ma = aux;
if (mbaname) {
if (ma->ma_name)
aprint_normal("%s", ma->ma_name);
else
aprint_normal("device type %o", ma->ma_type);
aprint_normal(" at %s", mbaname);
}
aprint_normal(" drive %d", ma->ma_unit);
return (ma->ma_name ? UNCONF : UNSUPP);
}
/*
* A device calls mbaqueue() when it wants to get on the adapter queue.
* Called at splbio(). If the adapter is inactive, start it.
*/
void
mbaqueue(struct mba_device *md)
{
struct mba_softc * const sc = md->md_mba;
bool was_empty = STAILQ_EMPTY(&sc->sc_xfers);
STAILQ_INSERT_TAIL(&sc->sc_xfers, md, md_link);
if (was_empty)
mbastart(sc);
}
/*
* Start activity on (idling) adapter. Calls disk_reallymapin() to setup
* for DMA transfer, then the unit-specific start routine.
*/
void
mbastart(struct mba_softc *sc)
{
struct mba_device * const md = STAILQ_FIRST(&sc->sc_xfers);
struct buf *bp = bufq_peek(md->md_q);