#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: mpt_netbsd.c,v 1.43 2026/07/08 22:59:03 kre Exp $");
#include "bio.h"
#include <dev/ic/mpt.h>
#include <sys/scsiio.h>
#if NBIO > 0
#include <dev/biovar.h>
#endif
static int mpt_poll(mpt_softc_t *, struct scsipi_xfer *, int);
static void mpt_timeout(void *);
static void mpt_restart(mpt_softc_t *, request_t *);
static void mpt_done(mpt_softc_t *, uint32_t);
static int mpt_drain_queue(mpt_softc_t *);
static void mpt_run_xfer(mpt_softc_t *, struct scsipi_xfer *);
static void mpt_set_xfer_mode(mpt_softc_t *, struct scsipi_xfer_mode *);
static void mpt_get_xfer_mode(mpt_softc_t *, struct scsipi_periph *);
static void mpt_ctlop(mpt_softc_t *, void *vmsg, uint32_t);
static void mpt_event_notify_reply(mpt_softc_t *, MSG_EVENT_NOTIFY_REPLY *);
static void mpt_bus_reset(mpt_softc_t *);
static void mpt_scsipi_request(struct scsipi_channel *,
scsipi_adapter_req_t, void *);
static void mpt_minphys(struct buf *);
static int mpt_ioctl(struct scsipi_channel *, u_long, void *, int,
struct proc *);
#if NBIO > 0
static bool mpt_is_raid(mpt_softc_t *);
static int mpt_bio_ioctl(device_t, u_long, void *);
static int mpt_bio_ioctl_inq(mpt_softc_t *, struct bioc_inq *);
static int mpt_bio_ioctl_vol(mpt_softc_t *, struct bioc_vol *);
static int mpt_bio_ioctl_disk(mpt_softc_t *, struct bioc_disk *);
static int mpt_bio_ioctl_disk_novol(mpt_softc_t *, struct bioc_disk *);
#endif
void
mpt_scsipi_attach(mpt_softc_t *mpt)
{
struct scsipi_adapter *adapt = &mpt->sc_adapter;
struct scsipi_channel *chan = &mpt->sc_channel;
int maxq;
mpt->bus = 0;
maxq = (mpt->mpt_global_credits < MPT_MAX_REQUESTS(mpt)) ?
mpt->mpt_global_credits : MPT_MAX_REQUESTS(mpt);
memset(adapt, 0, sizeof(*adapt));
adapt->adapt_dev = mpt->sc_dev;
adapt->adapt_nchannels = 1;
adapt->adapt_openings = maxq - 2;
adapt->adapt_max_periph = maxq - 2;
adapt->adapt_request = mpt_scsipi_request;
adapt->adapt_minphys = mpt_minphys;
adapt->adapt_ioctl = mpt_ioctl;
memset(chan, 0, sizeof(*chan));
chan->chan_adapter = adapt;
if (mpt->is_sas) {
chan->chan_bustype = &scsi_sas_bustype;
} else if (mpt->is_fc) {
chan->chan_bustype = &scsi_fc_bustype;
} else {
chan->chan_bustype = &scsi_bustype;
}
chan->chan_channel = 0;
chan->chan_flags = 0;
chan->chan_nluns = 8;
chan->chan_ntargets = mpt->mpt_max_devices ? mpt->mpt_max_devices : 256;
chan->chan_id = mpt->mpt_ini_id;
mpt->sc_scsibus_dv = config_found(mpt->sc_dev, &mpt->sc_channel,
scsiprint, CFARGS_NONE);
#if NBIO > 0
if (mpt_is_raid(mpt)) {
if (bio_register(mpt->sc_dev, mpt_bio_ioctl) != 0)
panic("%s: controller registration failed",
device_xname(mpt->sc_dev));
}
#endif
}
int
mpt_dma_mem_alloc(mpt_softc_t *mpt)
{
bus_dma_segment_t reply_seg, request_seg;
int reply_rseg, request_rseg;
bus_addr_t pptr, end;
char *vptr;
size_t len;
int error, i;
if (mpt->reply != NULL)
return (0);
len = sizeof(request_t) * MPT_MAX_REQUESTS(mpt);
mpt->request_pool = malloc(len, M_DEVBUF, M_WAITOK | M_ZERO);
if (mpt->request_pool == NULL) {
aprint_error_dev(mpt->sc_dev, "unable to allocate request pool\n");
return (ENOMEM);
}
error = bus_dmamem_alloc(mpt->sc_dmat, PAGE_SIZE, PAGE_SIZE, 0,
&reply_seg, 1, &reply_rseg, 0);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to allocate reply area, error = %d\n",
error);
goto fail_0;
}
error = bus_dmamem_map(mpt->sc_dmat, &reply_seg, reply_rseg, PAGE_SIZE,
(void **) &mpt->reply, BUS_DMA_COHERENT);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to map reply area, error = %d\n",
error);
goto fail_1;
}
error = bus_dmamap_create(mpt->sc_dmat, PAGE_SIZE, 1, PAGE_SIZE,
0, 0, &mpt->reply_dmap);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to create reply DMA map, error = %d\n",
error);
goto fail_2;
}
error = bus_dmamap_load(mpt->sc_dmat, mpt->reply_dmap, mpt->reply,
PAGE_SIZE, NULL, 0);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to load reply DMA map, error = %d\n",
error);
goto fail_3;
}
mpt->reply_phys = mpt->reply_dmap->dm_segs[0].ds_addr;
error = bus_dmamem_alloc(mpt->sc_dmat, MPT_REQ_MEM_SIZE(mpt),
PAGE_SIZE, 0, &request_seg, 1, &request_rseg, 0);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to allocate request area, "
"error = %d\n", error);
goto fail_4;
}
error = bus_dmamem_map(mpt->sc_dmat, &request_seg, request_rseg,
MPT_REQ_MEM_SIZE(mpt), (void **) &mpt->request, 0);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to map request area, error = %d\n",
error);
goto fail_5;
}
error = bus_dmamap_create(mpt->sc_dmat, MPT_REQ_MEM_SIZE(mpt), 1,
MPT_REQ_MEM_SIZE(mpt), 0, 0, &mpt->request_dmap);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to create request DMA map, "
"error = %d\n", error);
goto fail_6;
}
error = bus_dmamap_load(mpt->sc_dmat, mpt->request_dmap, mpt->request,
MPT_REQ_MEM_SIZE(mpt), NULL, 0);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to load request DMA map, error = %d\n",
error);
goto fail_7;
}
mpt->request_phys = mpt->request_dmap->dm_segs[0].ds_addr;
pptr = mpt->request_phys;
vptr = (void *) mpt->request;
end = pptr + MPT_REQ_MEM_SIZE(mpt);
for (i = 0; pptr < end; i++) {
request_t *req = &mpt->request_pool[i];
req->index = i;
req->req_pbuf = pptr;
req->req_vbuf = vptr;
pptr += MPT_REQUEST_AREA;
vptr += MPT_REQUEST_AREA;
req->sense_pbuf = (pptr - MPT_SENSE_SIZE);
req->sense_vbuf = (vptr - MPT_SENSE_SIZE);
error = bus_dmamap_create(mpt->sc_dmat, MAXPHYS,
MPT_SGL_MAX, MAXPHYS, 0, 0, &req->dmap);
if (error) {
aprint_error_dev(mpt->sc_dev, "unable to create req %d DMA map, "
"error = %d\n", i, error);
goto fail_8;
}
}
return (0);
fail_8:
for (--i; i >= 0; i--) {
request_t *req = &mpt->request_pool[i];
if (req->dmap != NULL)
bus_dmamap_destroy(mpt->sc_dmat, req->dmap);
}
bus_dmamap_unload(mpt->sc_dmat, mpt->request_dmap);
fail_7:
bus_dmamap_destroy(mpt->sc_dmat, mpt->request_dmap);
fail_6:
bus_dmamem_unmap(mpt->sc_dmat, (void *)mpt->request, PAGE_SIZE);
fail_5:
bus_dmamem_free(mpt->sc_dmat, &request_seg, request_rseg);
fail_4:
bus_dmamap_unload(mpt->sc_dmat, mpt->reply_dmap);
fail_3:
bus_dmamap_destroy(mpt->sc_dmat, mpt->reply_dmap);
fail_2:
bus_dmamem_unmap(mpt->sc_dmat, (void *)mpt->reply, PAGE_SIZE);
fail_1:
bus_dmamem_free(mpt->sc_dmat, &reply_seg, reply_rseg);
fail_0:
free(mpt->request_pool, M_DEVBUF);
mpt->reply = NULL;
mpt->request = NULL;
mpt->request_pool = NULL;
return (error);
}
int
mpt_intr(void *arg)
{
mpt_softc_t *mpt = arg;
int nrepl = 0;
if ((mpt_read(mpt, MPT_OFFSET_INTR_STATUS) & MPT_INTR_REPLY_READY) == 0)
return (0);
nrepl = mpt_drain_queue(mpt);
return (nrepl != 0);
}
void
mpt_prt(mpt_softc_t *mpt, const char *fmt, ...)
{
va_list ap;
printf("%s: ", device_xname(mpt->sc_dev));
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
printf("\n");
}
static int
mpt_poll(mpt_softc_t *mpt, struct scsipi_xfer *xs, int count)
{
while (count) {
mpt_intr(mpt);
if (xs->xs_status & XS_STS_DONE)
return (0);
delay(1000);
count--;
}
return (1);
}
static void
mpt_timeout(void *arg)
{
request_t *req = arg;
struct scsipi_xfer *xs;
struct scsipi_periph *periph;
mpt_softc_t *mpt;
uint32_t oseq;
int s, nrepl = 0;
if (req->xfer == NULL) {
printf("mpt_timeout: NULL xfer for request index 0x%x, sequenc 0x%x\n",
req->index, req->sequence);
return;
}
xs = req->xfer;
periph = xs->xs_periph;
mpt = device_private(periph->periph_channel->chan_adapter->adapt_dev);
scsipi_printaddr(periph);
printf("command timeout\n");
s = splbio();
oseq = req->sequence;
mpt->timeouts++;
if (mpt_intr(mpt)) {
if (req->sequence != oseq) {
mpt->success++;
mpt_prt(mpt, "recovered from command timeout");
splx(s);
return;
}
}
nrepl = mpt_drain_queue(mpt);
if (nrepl ) {
mpt_prt(mpt, "mpt_timeout: recovered %d commands",nrepl);
}
if (req->sequence != oseq) {
mpt->success++;
splx(s);
return;
}
mpt_prt(mpt,
"timeout on request index = 0x%x, seq = 0x%08x",
req->index, req->sequence);
mpt_check_doorbell(mpt);
mpt_prt(mpt, "Status 0x%08x, Mask 0x%08x, Doorbell 0x%08x",
mpt_read(mpt, MPT_OFFSET_INTR_STATUS),
mpt_read(mpt, MPT_OFFSET_INTR_MASK),
mpt_read(mpt, MPT_OFFSET_DOORBELL));
mpt_prt(mpt, "request state: %s", mpt_req_state(req->debug));
if (mpt->verbose > 1)
mpt_print_scsi_io_request((MSG_SCSI_IO_REQUEST *)req->req_vbuf);
xs->error = XS_TIMEOUT;
splx(s);
mpt_restart(mpt, req);
}
static void
mpt_restart(mpt_softc_t *mpt, request_t *req0)
{
int i, s, nreq;
request_t *req;
struct scsipi_xfer *xs;
if (mpt_soft_reset(mpt) != MPT_OK) {
mpt_prt(mpt, "soft reset failed");
return;
}
scsipi_channel_freeze(&mpt->sc_channel, 1);
s = splbio();
nreq = 0;
for (i = 0; i < MPT_MAX_REQUESTS(mpt); i++) {
req = &mpt->request_pool[i];
xs = req->xfer;
if (xs != NULL) {
if (xs->datalen != 0)
bus_dmamap_unload(mpt->sc_dmat, req->dmap);
req->xfer = NULL;
callout_stop(&xs->xs_callout);
if (req != req0) {
nreq++;
xs->error = XS_REQUEUE;
}
scsipi_done(xs);
mpt_free_request(mpt, req);
}
}
splx(s);
if (nreq > 0)
mpt_prt(mpt, "re-queued %d requests", nreq);
if (mpt_init(mpt, MPT_DB_INIT_HOST) == 0)
mpt_prt(mpt, "restart succeeded");
scsipi_channel_thaw(&mpt->sc_channel, 1);
}
static int
mpt_drain_queue(mpt_softc_t *mpt)
{
int nrepl = 0;
uint32_t reply;
reply = mpt_pop_reply_queue(mpt);
while (reply != MPT_REPLY_EMPTY) {
nrepl++;
if (mpt->verbose > 1) {
if ((reply & MPT_CONTEXT_REPLY) != 0) {
mpt_print_reply(MPT_REPLY_PTOV(mpt, reply));
} else {
mpt_prt(mpt, "context %u reply OK", reply);
}
}
mpt_done(mpt, reply);
reply = mpt_pop_reply_queue(mpt);
}
return (nrepl);
}
static void
mpt_done(mpt_softc_t *mpt, uint32_t reply)
{
struct scsipi_xfer *xs = NULL;
struct scsipi_periph *periph;
int index;
request_t *req;
MSG_REQUEST_HEADER *mpt_req;
MSG_SCSI_IO_REPLY *mpt_reply;
int restart = 0;
if (__predict_true((reply & MPT_CONTEXT_REPLY) == 0)) {
mpt_reply = NULL;
index = reply & MPT_CONTEXT_MASK;
} else {
mpt_reply = MPT_REPLY_PTOV(mpt, reply);
if (mpt_reply != NULL) {
if (mpt->verbose > 1) {
uint32_t *pReply = (uint32_t *) mpt_reply;
mpt_prt(mpt, "Address Reply (index %u):",
le32toh(mpt_reply->MsgContext) & 0xffff);
mpt_prt(mpt, "%08x %08x %08x %08x", pReply[0],
pReply[1], pReply[2], pReply[3]);
mpt_prt(mpt, "%08x %08x %08x %08x", pReply[4],
pReply[5], pReply[6], pReply[7]);
mpt_prt(mpt, "%08x %08x %08x %08x", pReply[8],
pReply[9], pReply[10], pReply[11]);
}
index = le32toh(mpt_reply->MsgContext);
} else
index = reply & MPT_CONTEXT_MASK;
}
if (__predict_false((index & 0x80000000) != 0)) {
if (mpt_reply != NULL)
mpt_ctlop(mpt, mpt_reply, reply);
else
mpt_prt(mpt, "%s: index 0x%x, NULL reply", __func__,
index);
return;
}
if (__predict_false(index < 0 || index >= MPT_MAX_REQUESTS(mpt))) {
mpt_prt(mpt, "%s: invalid index (0x%x) in reply", __func__,
index);
return;
}
req = &mpt->request_pool[index];
if (__predict_false(req->index != index)) {
mpt_prt(mpt, "%s: corrupted request_t (0x%x)", __func__,
index);
return;
}
MPT_SYNC_REQ(mpt, req, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
mpt_req = req->req_vbuf;
if (__predict_false(mpt_req->Function == MPI_FUNCTION_SCSI_TASK_MGMT)) {
if (mpt->verbose > 1)
mpt_prt(mpt, "%s: TASK MGMT", __func__);
KASSERT(req == mpt->mngt_req);
mpt->mngt_req = NULL;
goto done;
}
if (__predict_false(mpt_req->Function == MPI_FUNCTION_PORT_ENABLE))
goto done;
if (__predict_false(mpt_req->Function !=
MPI_FUNCTION_SCSI_IO_REQUEST)) {
if (mpt->verbose > 1)
mpt_prt(mpt, "%s: unknown Function 0x%x (0x%x)",
__func__, mpt_req->Function, index);
goto done;
}
xs = req->xfer;
if (__predict_false(xs == NULL)) {
mpt_prt(mpt,
"%s: no scsipi_xfer, index = 0x%x, seq = 0x%08x", __func__,
req->index, req->sequence);
mpt_prt(mpt, "request state: %s", mpt_req_state(req->debug));
mpt_prt(mpt, "mpt_request:");
mpt_print_scsi_io_request((MSG_SCSI_IO_REQUEST *)req->req_vbuf);
if (mpt_reply != NULL) {
mpt_prt(mpt, "mpt_reply:");
mpt_print_reply(mpt_reply);
} else {
mpt_prt(mpt, "context reply: 0x%08x", reply);
}
goto done;
}
callout_stop(&xs->xs_callout);
periph = xs->xs_periph;
if (__predict_true(xs->datalen != 0)) {
bus_dmamap_sync(mpt->sc_dmat, req->dmap, 0,
req->dmap->dm_mapsize,
(xs->xs_control & XS_CTL_DATA_IN) ? BUS_DMASYNC_POSTREAD
: BUS_DMASYNC_POSTWRITE);
bus_dmamap_unload(mpt->sc_dmat, req->dmap);
}
if (__predict_true(mpt_reply == NULL)) {
if (__predict_false(mpt->mpt_report_xfer_mode != 0)) {
if ((mpt->mpt_report_xfer_mode &
(1 << periph->periph_target)) != 0)
mpt_get_xfer_mode(mpt, periph);
}
xs->error = XS_NOERROR;
xs->status = SCSI_OK;
xs->resid = 0;
mpt_free_request(mpt, req);
scsipi_done(xs);
return;
}
xs->status = mpt_reply->SCSIStatus;
switch (le16toh(mpt_reply->IOCStatus) & MPI_IOCSTATUS_MASK) {
case MPI_IOCSTATUS_SCSI_DATA_OVERRUN:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "%s: IOC overrun!", __func__);
break;
case MPI_IOCSTATUS_SCSI_DATA_UNDERRUN:
xs->resid = xs->datalen - le32toh(mpt_reply->TransferCount);
if (mpt_reply->SCSIState &
MPI_SCSI_STATE_NO_SCSI_STATUS) {
xs->error = XS_DRIVER_STUFFUP;
break;
}
case MPI_IOCSTATUS_SUCCESS:
case MPI_IOCSTATUS_SCSI_RECOVERED_ERROR:
switch (xs->status) {
case SCSI_OK:
if ((mpt->mpt_report_xfer_mode &
(1 << periph->periph_target)) != 0)
mpt_get_xfer_mode(mpt, periph);
xs->resid = 0;
break;
case SCSI_CHECK:
xs->error = XS_SENSE;
break;
case SCSI_BUSY:
case SCSI_QUEUE_FULL:
xs->error = XS_BUSY;
break;
default:
scsipi_printaddr(periph);
printf("invalid status code %d\n", xs->status);
xs->error = XS_DRIVER_STUFFUP;
break;
}
break;
case MPI_IOCSTATUS_BUSY:
case MPI_IOCSTATUS_INSUFFICIENT_RESOURCES:
xs->error = XS_RESOURCE_SHORTAGE;
break;
case MPI_IOCSTATUS_SCSI_INVALID_BUS:
case MPI_IOCSTATUS_SCSI_INVALID_TARGETID:
case MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE:
xs->error = XS_SELTIMEOUT;
break;
case MPI_IOCSTATUS_SCSI_RESIDUAL_MISMATCH:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "%s: IOC SCSI residual mismatch!", __func__);
restart = 1;
break;
case MPI_IOCSTATUS_SCSI_TASK_TERMINATED:
mpt_prt(mpt, "%s: IOC SCSI task terminated!", __func__);
restart = 1;
break;
case MPI_IOCSTATUS_SCSI_TASK_MGMT_FAILED:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "%s: IOC SCSI task failed!", __func__);
restart = 1;
break;
case MPI_IOCSTATUS_SCSI_IOC_TERMINATED:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "%s: IOC task terminated!", __func__);
restart = 1;
break;
case MPI_IOCSTATUS_SCSI_EXT_TERMINATED:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "%s: IOC SCSI bus reset!", __func__);
restart = 1;
break;
case MPI_IOCSTATUS_SCSI_PROTOCOL_ERROR:
mpt_prt(mpt, "%s: IOC indicates protocol error -- "
"recovering...", __func__);
xs->error = XS_TIMEOUT;
restart = 1;
break;
default:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "%s: IOC returned unknown code: 0x%x", __func__,
le16toh(mpt_reply->IOCStatus));
restart = 1;
break;
}
if (mpt_reply != NULL) {
if (mpt_reply->SCSIState & MPI_SCSI_STATE_AUTOSENSE_VALID) {
memcpy(&xs->sense.scsi_sense, req->sense_vbuf,
sizeof(xs->sense.scsi_sense));
} else if (mpt_reply->SCSIState &
MPI_SCSI_STATE_AUTOSENSE_FAILED) {
if (xs->status == SCSI_CHECK)
xs->error = XS_BUSY;
}
}
done:
if (mpt_reply != NULL && le16toh(mpt_reply->IOCStatus) &
MPI_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE) {
mpt_prt(mpt, "%s: IOC has error - logging...\n", __func__);
mpt_ctlop(mpt, mpt_reply, reply);
}
if (mpt_reply == NULL || (mpt_reply->MsgFlags & 0x80) == 0)
mpt_free_request(mpt, req);
if (mpt_reply != NULL)
mpt_free_reply(mpt, (reply << 1));
if (xs != NULL)
scsipi_done(xs);
if (restart) {
mpt_prt(mpt, "%s: IOC fatal error: restarting...", __func__);
mpt_restart(mpt, NULL);
}
}
static void
mpt_run_xfer(mpt_softc_t *mpt, struct scsipi_xfer *xs)
{
struct scsipi_periph *periph = xs->xs_periph;
request_t *req;
MSG_SCSI_IO_REQUEST *mpt_req;
int error, s;
s = splbio();
req = mpt_get_request(mpt);
if (__predict_false(req == NULL)) {
xs->error = XS_RESOURCE_SHORTAGE;
scsipi_done(xs);
splx(s);
return;
}
splx(s);
req->xfer = xs;
mpt_req = req->req_vbuf;
memset(mpt_req, 0, sizeof(*mpt_req));
mpt_req->Function = MPI_FUNCTION_SCSI_IO_REQUEST;
mpt_req->Bus = mpt->bus;
mpt_req->SenseBufferLength =
(sizeof(xs->sense.scsi_sense) < MPT_SENSE_SIZE) ?
sizeof(xs->sense.scsi_sense) : MPT_SENSE_SIZE;
mpt_req->MsgContext = htole32(req->index);
mpt_req->TargetID = periph->periph_target;
mpt_req->LUN[1] = periph->periph_lun;
if (xs->xs_control & XS_CTL_DATA_IN)
mpt_req->Control = MPI_SCSIIO_CONTROL_READ;
else if (xs->xs_control & XS_CTL_DATA_OUT)
mpt_req->Control = MPI_SCSIIO_CONTROL_WRITE;
else
mpt_req->Control = MPI_SCSIIO_CONTROL_NODATATRANSFER;
if (__predict_true((!mpt->is_scsi) ||
(mpt->mpt_tag_enable &
(1 << periph->periph_target)))) {
switch (XS_CTL_TAGTYPE(xs)) {
case XS_CTL_HEAD_TAG:
mpt_req->Control |= MPI_SCSIIO_CONTROL_HEADOFQ;
break;
#if 0
case XS_CTL_ACA_TAG:
mpt_req->Control |= MPI_SCSIIO_CONTROL_ACAQ;
break;
#endif
case XS_CTL_ORDERED_TAG:
mpt_req->Control |= MPI_SCSIIO_CONTROL_ORDEREDQ;
break;
case XS_CTL_SIMPLE_TAG:
mpt_req->Control |= MPI_SCSIIO_CONTROL_SIMPLEQ;
break;
default:
if (mpt->is_scsi)
mpt_req->Control |= MPI_SCSIIO_CONTROL_UNTAGGED;
else
mpt_req->Control |= MPI_SCSIIO_CONTROL_SIMPLEQ;
break;
}
} else
mpt_req->Control |= MPI_SCSIIO_CONTROL_UNTAGGED;
if (__predict_false(mpt->is_scsi &&
(mpt->mpt_disc_enable &
(1 << periph->periph_target)) == 0))
mpt_req->Control |= MPI_SCSIIO_CONTROL_NO_DISCONNECT;
mpt_req->Control = htole32(mpt_req->Control);
memcpy(mpt_req->CDB, xs->cmd, xs->cmdlen);
mpt_req->CDBLength = xs->cmdlen;
mpt_req->DataLength = htole32(xs->datalen);
mpt_req->SenseBufferLowAddr = htole32(req->sense_pbuf);
if (xs->datalen) {
SGE_SIMPLE32 *se;
error = bus_dmamap_load(mpt->sc_dmat, req->dmap, xs->data,
xs->datalen, NULL,
((xs->xs_control & XS_CTL_NOSLEEP) ? BUS_DMA_NOWAIT
: BUS_DMA_WAITOK) |
BUS_DMA_STREAMING |
((xs->xs_control & XS_CTL_DATA_IN) ? BUS_DMA_READ
: BUS_DMA_WRITE));
switch (error) {
case 0:
break;
case ENOMEM:
case EAGAIN:
xs->error = XS_RESOURCE_SHORTAGE;
goto out_bad;
default:
xs->error = XS_DRIVER_STUFFUP;
mpt_prt(mpt, "error %d loading DMA map", error);
out_bad:
s = splbio();
mpt_free_request(mpt, req);
scsipi_done(xs);
splx(s);
return;
}
if (req->dmap->dm_nsegs > MPT_NSGL_FIRST(mpt)) {
int seg, i, nleft = req->dmap->dm_nsegs;
uint32_t flags;
SGE_CHAIN32 *ce;
seg = 0;
flags = MPI_SGE_FLAGS_SIMPLE_ELEMENT;
if (xs->xs_control & XS_CTL_DATA_OUT)
flags |= MPI_SGE_FLAGS_HOST_TO_IOC;
se = (SGE_SIMPLE32 *) &mpt_req->SGL;
for (i = 0; i < MPT_NSGL_FIRST(mpt) - 1;
i++, se++, seg++) {
uint32_t tf;
memset(se, 0, sizeof(*se));
se->Address =
htole32(req->dmap->dm_segs[seg].ds_addr);
MPI_pSGE_SET_LENGTH(se,
req->dmap->dm_segs[seg].ds_len);
tf = flags;
if (i == MPT_NSGL_FIRST(mpt) - 2)
tf |= MPI_SGE_FLAGS_LAST_ELEMENT;
MPI_pSGE_SET_FLAGS(se, tf);
se->FlagsLength = htole32(se->FlagsLength);
nleft--;
}
mpt_req->ChainOffset =
((char *)se - (char *)mpt_req) >> 2;
while (nleft) {
int ntodo;
ce = (SGE_CHAIN32 *) se++;
if (nleft > MPT_NSGL(mpt)) {
ntodo = MPT_NSGL(mpt) - 1;
ce->NextChainOffset = (MPT_RQSL(mpt) -
sizeof(SGE_SIMPLE32)) >> 2;
ce->Length = htole16(MPT_NSGL(mpt)
* sizeof(SGE_SIMPLE32));
} else {
ntodo = nleft;
ce->NextChainOffset = 0;
ce->Length = htole16(ntodo
* sizeof(SGE_SIMPLE32));
}
ce->Address = htole32(req->req_pbuf +
((char *)se - (char *)mpt_req));
ce->Flags = MPI_SGE_FLAGS_CHAIN_ELEMENT;
for (i = 0; i < ntodo; i++, se++, seg++) {
uint32_t tf;
memset(se, 0, sizeof(*se));
se->Address = htole32(
req->dmap->dm_segs[seg].ds_addr);
MPI_pSGE_SET_LENGTH(se,
req->dmap->dm_segs[seg].ds_len);
tf = flags;
if (i == ntodo - 1) {
tf |=
MPI_SGE_FLAGS_LAST_ELEMENT;
if (ce->NextChainOffset == 0) {
tf |=
MPI_SGE_FLAGS_END_OF_LIST |
MPI_SGE_FLAGS_END_OF_BUFFER;
}
}
MPI_pSGE_SET_FLAGS(se, tf);
se->FlagsLength =
htole32(se->FlagsLength);
nleft--;
}
}
bus_dmamap_sync(mpt->sc_dmat, req->dmap, 0,
req->dmap->dm_mapsize,
(xs->xs_control & XS_CTL_DATA_IN) ?
BUS_DMASYNC_PREREAD
: BUS_DMASYNC_PREWRITE);
} else {
int i;
uint32_t flags;
flags = MPI_SGE_FLAGS_SIMPLE_ELEMENT;
if (xs->xs_control & XS_CTL_DATA_OUT)
flags |= MPI_SGE_FLAGS_HOST_TO_IOC;
se = (SGE_SIMPLE32 *) &mpt_req->SGL;
for (i = 0; i < req->dmap->dm_nsegs;
i++, se++) {
uint32_t tf;
memset(se, 0, sizeof(*se));
se->Address =
htole32(req->dmap->dm_segs[i].ds_addr);
MPI_pSGE_SET_LENGTH(se,
req->dmap->dm_segs[i].ds_len);
tf = flags;
if (i == req->dmap->dm_nsegs - 1) {
tf |=
MPI_SGE_FLAGS_LAST_ELEMENT |
MPI_SGE_FLAGS_END_OF_BUFFER |
MPI_SGE_FLAGS_END_OF_LIST;
}
MPI_pSGE_SET_FLAGS(se, tf);
se->FlagsLength = htole32(se->FlagsLength);
}
bus_dmamap_sync(mpt->sc_dmat, req->dmap, 0,
req->dmap->dm_mapsize,
(xs->xs_control & XS_CTL_DATA_IN) ?
BUS_DMASYNC_PREREAD
: BUS_DMASYNC_PREWRITE);
}
} else {
SGE_SIMPLE32 *se = (SGE_SIMPLE32 *) &mpt_req->SGL;
memset(se, 0, sizeof(*se));
MPI_pSGE_SET_FLAGS(se,
(MPI_SGE_FLAGS_LAST_ELEMENT | MPI_SGE_FLAGS_END_OF_BUFFER |
MPI_SGE_FLAGS_SIMPLE_ELEMENT | MPI_SGE_FLAGS_END_OF_LIST));
se->FlagsLength = htole32(se->FlagsLength);
}
if (mpt->verbose > 1)
mpt_print_scsi_io_request(mpt_req);
if (xs->timeout == 0) {
mpt_prt(mpt, "mpt_run_xfer: no timeout specified for request: 0x%x\n",
req->index);
xs->timeout = 500;
}
s = splbio();
if (__predict_true((xs->xs_control & XS_CTL_POLL) == 0))
callout_reset(&xs->xs_callout,
mstohz(xs->timeout), mpt_timeout, req);
mpt_send_cmd(mpt, req);
splx(s);
if (__predict_true((xs->xs_control & XS_CTL_POLL) == 0))
return;
if (mpt_poll(mpt, xs, xs->timeout))
mpt_timeout(req);
}
static void
mpt_set_xfer_mode(mpt_softc_t *mpt, struct scsipi_xfer_mode *xm)
{
fCONFIG_PAGE_SCSI_DEVICE_1 tmp;
if (xm->xm_mode & PERIPH_CAP_TQING)
mpt->mpt_tag_enable |= (1 << xm->xm_target);
else
mpt->mpt_tag_enable &= ~(1 << xm->xm_target);
if (mpt->is_scsi) {
mpt->mpt_disc_enable |= (1 << xm->xm_target);
tmp = mpt->mpt_dev_page1[xm->xm_target];
if (xm->xm_mode & PERIPH_CAP_WIDE16)
tmp.RequestedParameters |= MPI_SCSIDEVPAGE1_RP_WIDE;
else
tmp.RequestedParameters &= ~MPI_SCSIDEVPAGE1_RP_WIDE;
tmp.RequestedParameters &= ~(MPI_SCSIDEVPAGE1_RP_MIN_SYNC_PERIOD_MASK |
MPI_SCSIDEVPAGE1_RP_MAX_SYNC_OFFSET_MASK |
MPI_SCSIDEVPAGE1_RP_DT | MPI_SCSIDEVPAGE1_RP_QAS |
MPI_SCSIDEVPAGE1_RP_IU);
if (xm->xm_mode & PERIPH_CAP_SYNC) {
int factor, offset, np;
factor = (mpt->mpt_port_page0.Capabilities >> 8) & 0xff;
offset = (mpt->mpt_port_page0.Capabilities >> 16) & 0xff;
np = 0;
if (factor < 0x9) {
np |= MPI_SCSIDEVPAGE1_RP_QAS | MPI_SCSIDEVPAGE1_RP_IU;
}
if (factor < 0xa) {
np |= MPI_SCSIDEVPAGE1_RP_DT;
}
np |= (factor << 8) | (offset << 16);
tmp.RequestedParameters |= np;
}
host2mpt_config_page_scsi_device_1(&tmp);
if (mpt_write_cfg_page(mpt, xm->xm_target, &tmp.Header)) {
mpt_prt(mpt, "unable to write Device Page 1");
return;
}
if (mpt_read_cfg_page(mpt, xm->xm_target, &tmp.Header)) {
mpt_prt(mpt, "unable to read back Device Page 1");
return;
}
mpt2host_config_page_scsi_device_1(&tmp);
mpt->mpt_dev_page1[xm->xm_target] = tmp;
if (mpt->verbose > 1) {
mpt_prt(mpt,
"SPI Target %d Page 1: RequestedParameters %x Config %x",
xm->xm_target,
mpt->mpt_dev_page1[xm->xm_target].RequestedParameters,
mpt->mpt_dev_page1[xm->xm_target].Configuration);
}
}
mpt->mpt_report_xfer_mode |= (1 << xm->xm_target);
}
static void
mpt_get_xfer_mode(mpt_softc_t *mpt, struct scsipi_periph *periph)
{
fCONFIG_PAGE_SCSI_DEVICE_0 tmp;
struct scsipi_xfer_mode xm;
int period, offset;
tmp = mpt->mpt_dev_page0[periph->periph_target];
host2mpt_config_page_scsi_device_0(&tmp);
if (mpt_read_cfg_page(mpt, periph->periph_target, &tmp.Header)) {
mpt_prt(mpt, "unable to read Device Page 0");
return;
}
mpt2host_config_page_scsi_device_0(&tmp);
if (mpt->verbose > 1) {
mpt_prt(mpt,
"SPI Tgt %d Page 0: NParms %x Information %x",
periph->periph_target,
tmp.NegotiatedParameters, tmp.Information);
}
xm.xm_target = periph->periph_target;
xm.xm_mode = 0;
if (tmp.NegotiatedParameters & MPI_SCSIDEVPAGE0_NP_WIDE)
xm.xm_mode |= PERIPH_CAP_WIDE16;
period = (tmp.NegotiatedParameters >> 8) & 0xff;
offset = (tmp.NegotiatedParameters >> 16) & 0xff;
if (offset) {
xm.xm_period = period;
xm.xm_offset = offset;
xm.xm_mode |= PERIPH_CAP_SYNC;
}
if (mpt->mpt_tag_enable & (1 << periph->periph_target))
xm.xm_mode |= PERIPH_CAP_TQING;
mpt->mpt_report_xfer_mode &= ~(1 << periph->periph_target);
scsipi_async_event(&mpt->sc_channel, ASYNC_EVENT_XFER_MODE, &xm);
}
static void
mpt_ctlop(mpt_softc_t *mpt, void *vmsg, uint32_t reply)
{
MSG_DEFAULT_REPLY *dmsg = vmsg;
switch (dmsg->Function) {
case MPI_FUNCTION_EVENT_NOTIFICATION:
mpt_event_notify_reply(mpt, vmsg);
mpt_free_reply(mpt, (reply << 1));
break;
case MPI_FUNCTION_EVENT_ACK:
{
MSG_EVENT_ACK_REPLY *msg = vmsg;
int index = le32toh(msg->MsgContext) & ~0x80000000;
mpt_free_reply(mpt, (reply << 1));
if (index >= 0 && index < MPT_MAX_REQUESTS(mpt)) {
request_t *req = &mpt->request_pool[index];
mpt_free_request(mpt, req);
}
break;
}
case MPI_FUNCTION_PORT_ENABLE:
{
MSG_PORT_ENABLE_REPLY *msg = vmsg;
int index = le32toh(msg->MsgContext) & ~0x80000000;
if (mpt->verbose > 1)
mpt_prt(mpt, "enable port reply index %d", index);
if (index >= 0 && index < MPT_MAX_REQUESTS(mpt)) {
request_t *req = &mpt->request_pool[index];
req->debug = REQ_DONE;
}
mpt_free_reply(mpt, (reply << 1));
break;
}
case MPI_FUNCTION_CONFIG:
{
MSG_CONFIG_REPLY *msg = vmsg;
int index = le32toh(msg->MsgContext) & ~0x80000000;
if (index >= 0 && index < MPT_MAX_REQUESTS(mpt)) {
request_t *req = &mpt->request_pool[index];
req->debug = REQ_DONE;
req->sequence = reply;
} else
mpt_free_reply(mpt, (reply << 1));
break;
}
default:
mpt_prt(mpt, "unknown ctlop: 0x%x", dmsg->Function);
}
}
static void
mpt_event_notify_reply(mpt_softc_t *mpt, MSG_EVENT_NOTIFY_REPLY *msg)
{
switch (le32toh(msg->Event)) {
case MPI_EVENT_LOG_DATA:
{
int i;
mpt_prt(mpt, "EvtLogData: IOCLogInfo: 0x%08x", msg->IOCLogInfo);
mpt_prt(mpt, "EvtLogData: Event Data:");
for (i = 0; i < msg->EventDataLength; i++) {
if ((i % 4) == 0)
printf("%s:\t", device_xname(mpt->sc_dev));
printf("0x%08x%c", msg->Data[i],
((i % 4) == 3) ? '\n' : ' ');
}
if ((i % 4) != 0)
printf("\n");
break;
}
case MPI_EVENT_UNIT_ATTENTION:
mpt_prt(mpt, "Unit Attn: Bus 0x%02x Target 0x%02x",
(msg->Data[0] >> 8) & 0xff, msg->Data[0] & 0xff);
break;
case MPI_EVENT_IOC_BUS_RESET:
mpt_prt(mpt, "IOC Bus Reset Port %d",
(msg->Data[0] >> 8) & 0xff);
break;
case MPI_EVENT_EXT_BUS_RESET:
mpt_prt(mpt, "External Bus Reset");
break;
case MPI_EVENT_RESCAN:
mpt_prt(mpt, "Rescan Port %d", (msg->Data[0] >> 8) & 0xff);
break;
case MPI_EVENT_LINK_STATUS_CHANGE:
mpt_prt(mpt, "Port %d: Link state %s",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] & 0xff) == 0 ? "Failed" : "Active");
break;
case MPI_EVENT_LOOP_STATE_CHANGE:
switch ((msg->Data[0] >> 16) & 0xff) {
case 0x01:
mpt_prt(mpt,
"Port %d: FC Link Event: LIP(%02x,%02x) "
"(Loop Initialization)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
switch ((msg->Data[0] >> 8) & 0xff) {
case 0xf7:
if ((msg->Data[0] & 0xff) == 0xf7)
mpt_prt(mpt, "\tDevice needs AL_PA");
else
mpt_prt(mpt, "\tDevice %02x doesn't "
"like FC performance",
msg->Data[0] & 0xff);
break;
case 0xf8:
if ((msg->Data[0] & 0xff) == 0xf7)
mpt_prt(mpt, "\tDevice detected loop "
"failure before acquiring AL_PA");
else
mpt_prt(mpt, "\tDevice %02x detected "
"loop failure",
msg->Data[0] & 0xff);
break;
default:
mpt_prt(mpt, "\tDevice %02x requests that "
"device %02x reset itself",
msg->Data[0] & 0xff,
(msg->Data[0] >> 8) & 0xff);
break;
}
break;
case 0x02:
mpt_prt(mpt, "Port %d: FC Link Event: LPE(%02x,%02x) "
"(Loop Port Enable)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
break;
case 0x03:
mpt_prt(mpt, "Port %d: FC Link Event: LPB(%02x,%02x) "
"(Loop Port Bypass)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
break;
default:
mpt_prt(mpt, "Port %d: FC Link Event: "
"Unknown event (%02x %02x %02x)",
(msg->Data[1] >> 8) & 0xff,
(msg->Data[0] >> 16) & 0xff,
(msg->Data[0] >> 8) & 0xff,
(msg->Data[0] ) & 0xff);
break;
}
break;
case MPI_EVENT_LOGOUT:
mpt_prt(mpt, "Port %d: FC Logout: N_PortID: %02x",
(msg->Data[1] >> 8) & 0xff, msg->Data[0]);
break;
case MPI_EVENT_EVENT_CHANGE:
break;
case MPI_EVENT_SAS_PHY_LINK_STATUS:
switch ((msg->Data[0] >> 12) & 0x0f) {
case 0x00:
mpt_prt(mpt, "Phy %d: Link Status Unknown",
msg->Data[0] & 0xff);
break;
case 0x01:
mpt_prt(mpt, "Phy %d: Link Disabled",
msg->Data[0] & 0xff);
break;
case 0x02:
mpt_prt(mpt, "Phy %d: Failed Speed Negotiation",
msg->Data[0] & 0xff);
break;
case 0x03:
mpt_prt(mpt, "Phy %d: SATA OOB Complete",
msg->Data[0] & 0xff);
break;
case 0x08:
mpt_prt(mpt, "Phy %d: Link Rate 1.5 Gbps",
msg->Data[0] & 0xff);
break;
case 0x09:
mpt_prt(mpt, "Phy %d: Link Rate 3.0 Gbps",
msg->Data[0] & 0xff);
break;
default:
mpt_prt(mpt, "Phy %d: SAS Phy Link Status Event: "
"Unknown event (%0x)",
msg->Data[0] & 0xff, (msg->Data[0] >> 8) & 0xff);
}
break;
case MPI_EVENT_INTEGRATED_RAID:
{
#define MSG_LEN 64
#define ERR_LEN 32
char raid_msg[MSG_LEN], err_msg[ERR_LEN];
EVENT_DATA_RAID *data = (EVENT_DATA_RAID *) msg->Data;
uint32_t sstatus = le32toh(data->SettingsStatus);
uint8_t sflags = sstatus & 0xff;
uint8_t sstate = (sstatus >> 8) & 0xff;
switch(data->ReasonCode) {
case MPI_EVENT_RAID_RC_VOLUME_CREATED:
snprintf(raid_msg, MSG_LEN,
"volume %d created", data->VolumeID);
break;
case MPI_EVENT_RAID_RC_VOLUME_DELETED:
snprintf(raid_msg, MSG_LEN,
"volume %d deleted", data->VolumeID);
break;
case MPI_EVENT_RAID_RC_VOLUME_SETTINGS_CHANGED:
snprintf(raid_msg, MSG_LEN,
"volume %d settings changed",
data->VolumeID);
break;
case MPI_EVENT_RAID_RC_VOLUME_STATUS_CHANGED:
snprintf(raid_msg, MSG_LEN,
"volume %d status: ", data->VolumeID);
switch (sstate) {
case MPI_RAIDVOL0_STATUS_STATE_OPTIMAL:
strlcat(raid_msg, "optimal", MSG_LEN);
break;
case MPI_RAIDVOL0_STATUS_STATE_DEGRADED:
strlcat(raid_msg, "degraded", MSG_LEN);
break;
case MPI_RAIDVOL0_STATUS_STATE_FAILED:
strlcat(raid_msg, "failed", MSG_LEN);
break;
case MPI_RAIDVOL0_STATUS_STATE_MISSING:
strlcat(raid_msg, "missing", MSG_LEN);
break;
default:
snprintf(err_msg, ERR_LEN,
"unknown: 0x%02x %02x", sstate, sflags);
strlcat(raid_msg, err_msg, MSG_LEN);
break;
}
if (sflags & MPI_RAIDVOL0_STATUS_FLAG_ENABLED)
strlcat(raid_msg, ", enabled", MSG_LEN);
if (sflags & MPI_RAIDVOL0_STATUS_FLAG_QUIESCED)
strlcat(raid_msg, ", quiesced", MSG_LEN);
if (sflags &
MPI_RAIDVOL0_STATUS_FLAG_RESYNC_IN_PROGRESS)
strlcat(raid_msg, ", resyncing", MSG_LEN);
if (sflags & MPI_RAIDVOL0_STATUS_FLAG_VOLUME_INACTIVE)
strlcat(raid_msg, ", inactive", MSG_LEN);
break;
case MPI_EVENT_RAID_RC_VOLUME_PHYSDISK_CHANGED:
snprintf(raid_msg, MSG_LEN,
"volume of physdisk %d (id %d) changed",
data->PhysDiskNum, data->VolumeID);
break;
case MPI_EVENT_RAID_RC_PHYSDISK_CREATED:
snprintf(raid_msg, MSG_LEN,
"physdisk %d (id %d) created",
data->PhysDiskNum, data->VolumeID);
break;
case MPI_EVENT_RAID_RC_PHYSDISK_DELETED:
snprintf(raid_msg, MSG_LEN,
"physdisk %d (id %d) deleted",
data->PhysDiskNum, data->VolumeID);
break;
case MPI_EVENT_RAID_RC_PHYSDISK_SETTINGS_CHANGED:
snprintf(raid_msg, MSG_LEN,
"physdisk %d (id %d) settings changed",
data->PhysDiskNum, data->VolumeID);
break;
case MPI_EVENT_RAID_RC_PHYSDISK_STATUS_CHANGED:
snprintf(raid_msg, MSG_LEN,
"physdisk %d (id %d) status: ",
data->PhysDiskNum, data->VolumeID);
switch (sstate) {
case MPI_PHYSDISK0_STATUS_ONLINE:
strlcat(raid_msg, "online", MSG_LEN);
break;
case MPI_PHYSDISK0_STATUS_MISSING:
strlcat(raid_msg, "missing", MSG_LEN);
break;
case MPI_PHYSDISK0_STATUS_NOT_COMPATIBLE:
strlcat(raid_msg, "not compatible", MSG_LEN);
break;
case MPI_PHYSDISK0_STATUS_FAILED:
strlcat(raid_msg, "failed", MSG_LEN);
break;
case MPI_PHYSDISK0_STATUS_INITIALIZING:
strlcat(raid_msg, "initializing", MSG_LEN);
break;
case MPI_PHYSDISK0_STATUS_OFFLINE_REQUESTED:
strlcat(raid_msg, "offline requested", MSG_LEN);
break;
case MPI_PHYSDISK0_STATUS_FAILED_REQUESTED:
strlcat(raid_msg, "failed requested", MSG_LEN);
break;
case MPI_PHYSDISK0_STATUS_OTHER_OFFLINE:
strlcat(raid_msg, "offline", MSG_LEN);
break;
default:
snprintf(err_msg, ERR_LEN,
"unknown: 0x%02x %02x", sstate, sflags);
strlcat(raid_msg, err_msg, MSG_LEN);
break;
}
if (sflags & MPI_PHYSDISK0_STATUS_FLAG_OUT_OF_SYNC)
strlcat(raid_msg, ", out of sync", MSG_LEN);
if (sflags & MPI_PHYSDISK0_STATUS_FLAG_QUIESCED)
strlcat(raid_msg, ", quiesced", MSG_LEN);
break;
case MPI_EVENT_RAID_RC_DOMAIN_VAL_NEEDED:
snprintf(raid_msg, MSG_LEN,
"physdisk %d domain validation needed",
data->PhysDiskNum);
break;
case MPI_EVENT_RAID_RC_SMART_DATA:
snprintf(raid_msg, MSG_LEN,
"smart data ASC/ASCQ: 0x%02x/0x%02x",
data->ASC, data->ASCQ);
break;
case MPI_EVENT_RAID_RC_REPLACE_ACTION_STARTED:
snprintf(raid_msg, MSG_LEN,
"replace physdisk %d started", data->PhysDiskNum);
break;
default:
snprintf(raid_msg, MSG_LEN,
"unknown reason code (0x%02x)", data->ReasonCode);
break;
}
mpt_prt(mpt, "Integrated RAID Event: %s", raid_msg);
#undef MSG_LEN
#undef ERR_LEN
break;
}
case MPI_EVENT_SAS_DEVICE_STATUS_CHANGE:
case MPI_EVENT_SAS_DISCOVERY:
break;
case MPI_EVENT_QUEUE_FULL:
if (mpt->verbose > 0)
mpt_prt(mpt, "Queue Full Event");
break;
default:
mpt_prt(mpt, "Unknown async event: 0x%x", le32toh(msg->Event));
break;
}
if (msg->AckRequired) {
MSG_EVENT_ACK *ackp;
request_t *req;
if ((req = mpt_get_request(mpt)) == NULL) {
panic("mpt_event_notify_reply: unable to allocate "
"request structure");
}
ackp = (MSG_EVENT_ACK *) req->req_vbuf;
memset(ackp, 0, sizeof(*ackp));
ackp->Function = MPI_FUNCTION_EVENT_ACK;
ackp->Event = msg->Event;
ackp->EventContext = msg->EventContext;
ackp->MsgContext = htole32(req->index | 0x80000000);
mpt_check_doorbell(mpt);
mpt_send_cmd(mpt, req);
}
}
static void
mpt_bus_reset(mpt_softc_t *mpt)
{
request_t *req;
MSG_SCSI_TASK_MGMT *mngt_req;
int s;
s = splbio();
if (mpt->mngt_req) {
splx(s);
return;
}
req = mpt_get_request(mpt);
if (__predict_false(req == NULL)) {
mpt_prt(mpt, "no mngt request\n");
splx(s);
return;
}
mpt->mngt_req = req;
splx(s);
mngt_req = req->req_vbuf;
memset(mngt_req, 0, sizeof(*mngt_req));
mngt_req->Function = MPI_FUNCTION_SCSI_TASK_MGMT;
mngt_req->Bus = mpt->bus;
mngt_req->TargetID = 0;
mngt_req->ChainOffset = 0;
mngt_req->TaskType = MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS;
mngt_req->Reserved1 = 0;
mngt_req->MsgFlags =
mpt->is_fc ? MPI_SCSITASKMGMT_MSGFLAGS_LIP_RESET_OPTION : 0;
mngt_req->MsgContext = req->index;
mngt_req->TaskMsgContext = 0;
s = splbio();
mpt_send_handshake_cmd(mpt, sizeof(*mngt_req), mngt_req);
splx(s);
}
static void
mpt_scsipi_request(struct scsipi_channel *chan, scsipi_adapter_req_t req,
void *arg)
{
struct scsipi_adapter *adapt = chan->chan_adapter;
mpt_softc_t *mpt = device_private(adapt->adapt_dev);
switch (req) {
case ADAPTER_REQ_RUN_XFER:
mpt_run_xfer(mpt, (struct scsipi_xfer *) arg);
return;
case ADAPTER_REQ_GROW_RESOURCES:
return;
case ADAPTER_REQ_SET_XFER_MODE:
mpt_set_xfer_mode(mpt, (struct scsipi_xfer_mode *) arg);
return;
}
}
static void
mpt_minphys(struct buf *bp)
{
#define MPT_MAX_XFER ((MPT_SGL_MAX - 1) * PAGE_SIZE)
if (bp->b_bcount > MPT_MAX_XFER)
bp->b_bcount = MPT_MAX_XFER;
minphys(bp);
}
static int
mpt_ioctl(struct scsipi_channel *chan, u_long cmd, void *arg,
int flag, struct proc *p)
{
mpt_softc_t *mpt;
int s;
mpt = device_private(chan->chan_adapter->adapt_dev);
switch (cmd) {
case SCBUSIORESET:
mpt_bus_reset(mpt);
s = splbio();
mpt_intr(mpt);
splx(s);
return(0);
default:
return (ENOTTY);
}
}
#if NBIO > 0
static fCONFIG_PAGE_IOC_2 *
mpt_get_cfg_page_ioc2(mpt_softc_t *mpt)
{
fCONFIG_PAGE_HEADER hdr;
fCONFIG_PAGE_IOC_2 *ioc2;
int rv;
rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_IOC, 2, 0, &hdr);
if (rv)
return NULL;
ioc2 = malloc(hdr.PageLength * 4, M_DEVBUF, M_WAITOK | M_ZERO);
if (ioc2 == NULL)
return NULL;
memcpy(ioc2, &hdr, sizeof(hdr));
rv = mpt_read_cfg_page(mpt, 0, &ioc2->Header);
if (rv)
goto fail;
mpt2host_config_page_ioc_2(ioc2);
return ioc2;
fail:
free(ioc2, M_DEVBUF);
return NULL;
}
static fCONFIG_PAGE_IOC_3 *
mpt_get_cfg_page_ioc3(mpt_softc_t *mpt)
{
fCONFIG_PAGE_HEADER hdr;
fCONFIG_PAGE_IOC_3 *ioc3;
int rv;
rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_IOC, 3, 0, &hdr);
if (rv)
return NULL;
ioc3 = malloc(hdr.PageLength * 4, M_DEVBUF, M_WAITOK | M_ZERO);
if (ioc3 == NULL)
return NULL;
memcpy(ioc3, &hdr, sizeof(hdr));
rv = mpt_read_cfg_page(mpt, 0, &ioc3->Header);
if (rv)
goto fail;
return ioc3;
fail:
free(ioc3, M_DEVBUF);
return NULL;
}
static fCONFIG_PAGE_RAID_VOL_0 *
mpt_get_cfg_page_raid_vol0(mpt_softc_t *mpt, int address)
{
fCONFIG_PAGE_HEADER hdr;
fCONFIG_PAGE_RAID_VOL_0 *rvol0;
int rv;
rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_RAID_VOLUME, 0,
address, &hdr);
if (rv)
return NULL;
rvol0 = malloc(hdr.PageLength * 4, M_DEVBUF, M_WAITOK | M_ZERO);
if (rvol0 == NULL)
return NULL;
memcpy(rvol0, &hdr, sizeof(hdr));
rv = mpt_read_cfg_page(mpt, address, &rvol0->Header);
if (rv)
goto fail;
mpt2host_config_page_raid_vol_0(rvol0);
return rvol0;
fail:
free(rvol0, M_DEVBUF);
return NULL;
}
static fCONFIG_PAGE_RAID_PHYS_DISK_0 *
mpt_get_cfg_page_raid_phys_disk0(mpt_softc_t *mpt, int address)
{
fCONFIG_PAGE_HEADER hdr;
fCONFIG_PAGE_RAID_PHYS_DISK_0 *physdisk0;
int rv;
rv = mpt_read_cfg_header(mpt, MPI_CONFIG_PAGETYPE_RAID_PHYSDISK, 0,
address, &hdr);
if (rv)
return NULL;
physdisk0 = malloc(hdr.PageLength * 4, M_DEVBUF, M_WAITOK | M_ZERO);
if (physdisk0 == NULL)
return NULL;
memcpy(physdisk0, &hdr, sizeof(hdr));
rv = mpt_read_cfg_page(mpt, address, &physdisk0->Header);
if (rv)
goto fail;
mpt2host_config_page_raid_phys_disk_0(physdisk0);
return physdisk0;
fail:
free(physdisk0, M_DEVBUF);
return NULL;
}
static bool
mpt_is_raid(mpt_softc_t *mpt)
{
fCONFIG_PAGE_IOC_2 *ioc2;
bool is_raid = false;
ioc2 = mpt_get_cfg_page_ioc2(mpt);
if (ioc2 == NULL)
return false;
if (ioc2->CapabilitiesFlags != 0xdeadbeef) {
is_raid = !!(ioc2->CapabilitiesFlags &
(MPI_IOCPAGE2_CAP_FLAGS_IS_SUPPORT|
MPI_IOCPAGE2_CAP_FLAGS_IME_SUPPORT|
MPI_IOCPAGE2_CAP_FLAGS_IM_SUPPORT));
}
free(ioc2, M_DEVBUF);
return is_raid;
}
static int
mpt_bio_ioctl(device_t dev, u_long cmd, void *addr)
{
mpt_softc_t *mpt = device_private(dev);
int error, s;
KERNEL_LOCK(1, curlwp);
s = splbio();
switch (cmd) {
case BIOCINQ:
error = mpt_bio_ioctl_inq(mpt, addr);
break;
case BIOCVOL:
error = mpt_bio_ioctl_vol(mpt, addr);
break;
case BIOCDISK_NOVOL:
error = mpt_bio_ioctl_disk_novol(mpt, addr);
break;
case BIOCDISK:
error = mpt_bio_ioctl_disk(mpt, addr);
break;
default:
error = EINVAL;
break;
}
splx(s);
KERNEL_UNLOCK_ONE(curlwp);
return error;
}
static int
mpt_bio_ioctl_inq(mpt_softc_t *mpt, struct bioc_inq *bi)
{
fCONFIG_PAGE_IOC_2 *ioc2;
fCONFIG_PAGE_IOC_3 *ioc3;
ioc2 = mpt_get_cfg_page_ioc2(mpt);
if (ioc2 == NULL)
return EIO;
ioc3 = mpt_get_cfg_page_ioc3(mpt);
if (ioc3 == NULL) {
free(ioc2, M_DEVBUF);
return EIO;
}
strlcpy(bi->bi_dev, device_xname(mpt->sc_dev), sizeof(bi->bi_dev));
bi->bi_novol = ioc2->NumActiveVolumes;
bi->bi_nodisk = ioc3->NumPhysDisks;
free(ioc2, M_DEVBUF);
free(ioc3, M_DEVBUF);
return 0;
}
static int
mpt_bio_ioctl_vol(mpt_softc_t *mpt, struct bioc_vol *bv)
{
fCONFIG_PAGE_IOC_2 *ioc2 = NULL;
fCONFIG_PAGE_IOC_2_RAID_VOL *ioc2rvol;
fCONFIG_PAGE_RAID_VOL_0 *rvol0 = NULL;
struct scsipi_periph *periph;
struct scsipi_inquiry_data inqbuf;
char vendor[9], product[17], revision[5];
int address;
ioc2 = mpt_get_cfg_page_ioc2(mpt);
if (ioc2 == NULL)
return EIO;
if (bv->bv_volid < 0 || bv->bv_volid >= ioc2->NumActiveVolumes)
goto fail;
ioc2rvol = &ioc2->RaidVolume[bv->bv_volid];
address = ioc2rvol->VolumeID | (ioc2rvol->VolumeBus << 8);
rvol0 = mpt_get_cfg_page_raid_vol0(mpt, address);
if (rvol0 == NULL)
goto fail;
bv->bv_dev[0] = '\0';
bv->bv_vendor[0] = '\0';
periph = scsipi_lookup_periph(&mpt->sc_channel, ioc2rvol->VolumeBus, 0);
if (periph != NULL) {
if (periph->periph_dev != NULL) {
snprintf(bv->bv_dev, sizeof(bv->bv_dev), "%s",
device_xname(periph->periph_dev));
}
memset(&inqbuf, 0, sizeof(inqbuf));
if (scsipi_inquire(periph, &inqbuf,
XS_CTL_DISCOVERY | XS_CTL_SILENT) == 0) {
strnvisx(vendor, sizeof(vendor),
inqbuf.vendor, sizeof(inqbuf.vendor),
VIS_TRIM|VIS_SAFE|VIS_OCTAL);
strnvisx(product, sizeof(product),
inqbuf.product, sizeof(inqbuf.product),
VIS_TRIM|VIS_SAFE|VIS_OCTAL);
strnvisx(revision, sizeof(revision),
inqbuf.revision, sizeof(inqbuf.revision),
VIS_TRIM|VIS_SAFE|VIS_OCTAL);
snprintf(bv->bv_vendor, sizeof(bv->bv_vendor),
"%s %s %s", vendor, product, revision);
}
snprintf(bv->bv_dev, sizeof(bv->bv_dev), "%s",
device_xname(periph->periph_dev));
}
bv->bv_nodisk = rvol0->NumPhysDisks;
bv->bv_size = (uint64_t)rvol0->MaxLBA * 512;
bv->bv_stripe_size = rvol0->StripeSize;
bv->bv_percent = -1;
bv->bv_seconds = 0;
switch (rvol0->VolumeStatus.State) {
case MPI_RAIDVOL0_STATUS_STATE_OPTIMAL:
bv->bv_status = BIOC_SVONLINE;
break;
case MPI_RAIDVOL0_STATUS_STATE_DEGRADED:
bv->bv_status = BIOC_SVDEGRADED;
break;
case MPI_RAIDVOL0_STATUS_STATE_FAILED:
bv->bv_status = BIOC_SVOFFLINE;
break;
default:
bv->bv_status = BIOC_SVINVALID;
break;
}
switch (ioc2rvol->VolumeType) {
case MPI_RAID_VOL_TYPE_IS:
bv->bv_level = 0;
break;
case MPI_RAID_VOL_TYPE_IME:
case MPI_RAID_VOL_TYPE_IM:
bv->bv_level = 1;
break;
default:
bv->bv_level = -1;
break;
}
free(ioc2, M_DEVBUF);
free(rvol0, M_DEVBUF);
return 0;
fail:
if (ioc2) free(ioc2, M_DEVBUF);
if (rvol0) free(rvol0, M_DEVBUF);
return EINVAL;
}
static void
mpt_bio_ioctl_disk_common(mpt_softc_t *mpt, struct bioc_disk *bd,
int address)
{
fCONFIG_PAGE_RAID_PHYS_DISK_0 *phys = NULL;
char vendor_id[9], product_id[17], product_rev_level[5];
phys = mpt_get_cfg_page_raid_phys_disk0(mpt, address);
if (phys == NULL)
return;
strnvisx(vendor_id, sizeof(vendor_id),
phys->InquiryData.VendorID, sizeof(phys->InquiryData.VendorID),
VIS_TRIM|VIS_SAFE|VIS_OCTAL);
strnvisx(product_id, sizeof(product_id),
phys->InquiryData.ProductID, sizeof(phys->InquiryData.ProductID),
VIS_TRIM|VIS_SAFE|VIS_OCTAL);
strnvisx(product_rev_level, sizeof(product_rev_level),
phys->InquiryData.ProductRevLevel,
sizeof(phys->InquiryData.ProductRevLevel),
VIS_TRIM|VIS_SAFE|VIS_OCTAL);
snprintf(bd->bd_vendor, sizeof(bd->bd_vendor), "%s %s %s",
vendor_id, product_id, product_rev_level);
strlcpy(bd->bd_serial, phys->InquiryData.Info, sizeof(bd->bd_serial));
bd->bd_procdev[0] = '\0';
bd->bd_channel = phys->PhysDiskBus;
bd->bd_target = phys->PhysDiskID;
bd->bd_lun = 0;
bd->bd_size = (uint64_t)phys->MaxLBA * 512;
switch (phys->PhysDiskStatus.State) {
case MPI_PHYSDISK0_STATUS_ONLINE:
bd->bd_status = BIOC_SDONLINE;
break;
case MPI_PHYSDISK0_STATUS_MISSING:
case MPI_PHYSDISK0_STATUS_FAILED:
bd->bd_status = BIOC_SDFAILED;
break;
case MPI_PHYSDISK0_STATUS_OFFLINE_REQUESTED:
case MPI_PHYSDISK0_STATUS_FAILED_REQUESTED:
case MPI_PHYSDISK0_STATUS_OTHER_OFFLINE:
bd->bd_status = BIOC_SDOFFLINE;
break;
case MPI_PHYSDISK0_STATUS_INITIALIZING:
bd->bd_status = BIOC_SDSCRUB;
break;
case MPI_PHYSDISK0_STATUS_NOT_COMPATIBLE:
default:
bd->bd_status = BIOC_SDINVALID;
break;
}
free(phys, M_DEVBUF);
}
static int
mpt_bio_ioctl_disk_novol(mpt_softc_t *mpt, struct bioc_disk *bd)
{
fCONFIG_PAGE_IOC_2 *ioc2 = NULL;
fCONFIG_PAGE_IOC_3 *ioc3 = NULL;
fCONFIG_PAGE_RAID_VOL_0 *rvol0 = NULL;
fCONFIG_PAGE_IOC_2_RAID_VOL *ioc2rvol;
int address, v, d;
ioc2 = mpt_get_cfg_page_ioc2(mpt);
if (ioc2 == NULL)
return EIO;
ioc3 = mpt_get_cfg_page_ioc3(mpt);
if (ioc3 == NULL) {
free(ioc2, M_DEVBUF);
return EIO;
}
if (bd->bd_diskid < 0 || bd->bd_diskid >= ioc3->NumPhysDisks)
goto fail;
address = ioc3->PhysDisk[bd->bd_diskid].PhysDiskNum;
mpt_bio_ioctl_disk_common(mpt, bd, address);
bd->bd_disknovol = true;
for (v = 0; bd->bd_disknovol && v < ioc2->NumActiveVolumes; v++) {
ioc2rvol = &ioc2->RaidVolume[v];
address = ioc2rvol->VolumeID | (ioc2rvol->VolumeBus << 8);
rvol0 = mpt_get_cfg_page_raid_vol0(mpt, address);
if (rvol0 == NULL)
continue;
for (d = 0; d < rvol0->NumPhysDisks; d++) {
if (rvol0->PhysDisk[d].PhysDiskNum ==
ioc3->PhysDisk[bd->bd_diskid].PhysDiskNum) {
bd->bd_disknovol = false;
bd->bd_volid = v;
break;
}
}
free(rvol0, M_DEVBUF);
}
free(ioc3, M_DEVBUF);
free(ioc2, M_DEVBUF);
return 0;
fail:
if (ioc3) free(ioc3, M_DEVBUF);
if (ioc2) free(ioc2, M_DEVBUF);
return EINVAL;
}
static int
mpt_bio_ioctl_disk(mpt_softc_t *mpt, struct bioc_disk *bd)
{
fCONFIG_PAGE_IOC_2 *ioc2 = NULL;
fCONFIG_PAGE_RAID_VOL_0 *rvol0 = NULL;
fCONFIG_PAGE_IOC_2_RAID_VOL *ioc2rvol;
int address;
ioc2 = mpt_get_cfg_page_ioc2(mpt);
if (ioc2 == NULL)
return EIO;
if (bd->bd_volid < 0 || bd->bd_volid >= ioc2->NumActiveVolumes)
goto fail;
ioc2rvol = &ioc2->RaidVolume[bd->bd_volid];
address = ioc2rvol->VolumeID | (ioc2rvol->VolumeBus << 8);
rvol0 = mpt_get_cfg_page_raid_vol0(mpt, address);
if (rvol0 == NULL)
goto fail;
if (bd->bd_diskid < 0 || bd->bd_diskid >= rvol0->NumPhysDisks)
goto fail;
address = rvol0->PhysDisk[bd->bd_diskid].PhysDiskNum;
mpt_bio_ioctl_disk_common(mpt, bd, address);
free(ioc2, M_DEVBUF);
return 0;
fail:
if (ioc2) free(ioc2, M_DEVBUF);
return EINVAL;
}
#endif