diff options
author | mjacob <mjacob@cvs.openbsd.org> | 2002-08-17 17:43:48 +0000 |
---|---|---|
committer | mjacob <mjacob@cvs.openbsd.org> | 2002-08-17 17:43:48 +0000 |
commit | 608e44c285d44c613a180d187247d4a2f451ca35 (patch) | |
tree | e7d5d22f309da47caba21389a440995c67343b8b /sys/dev | |
parent | 771033d3d5fe6d5733e2d4d2df86eee9d8632a98 (diff) |
Add ISPASYNC_FW_CRASH case.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/isp_openbsd.c | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/sys/dev/ic/isp_openbsd.c b/sys/dev/ic/isp_openbsd.c index e2c921aa3e5..24c915b44da 100644 --- a/sys/dev/ic/isp_openbsd.c +++ b/sys/dev/ic/isp_openbsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_openbsd.c,v 1.23 2002/05/17 01:32:35 mjacob Exp $ */ +/* $OpenBSD: isp_openbsd.c,v 1.24 2002/08/17 17:43:47 mjacob Exp $ */ /* * Platform (OpenBSD) dependent common attachment code for Qlogic adapters. * @@ -779,7 +779,7 @@ isp_async(struct ispsoftc *isp, ispasync_t cmd, void *arg) const char *fmt = "Target %d (Loop 0x%x) Port ID 0x%x " "role %s %s\n Port WWN 0x%08x%08x\n Node WWN 0x%08x%08x"; const static char *roles[4] = { - "None", "Target", "Initiator", "Target/Initiator" + "No", "Target", "Initiator", "Target/Initiator" }; fcparam *fcp = isp->isp_param; int tgt = *((int *) arg); @@ -915,6 +915,28 @@ isp_async(struct ispsoftc *isp, ispasync_t cmd, void *arg) lp->fabric_dev = 1; break; } + case ISPASYNC_FW_CRASH: + { + u_int16_t mbox1, mbox6; + mbox1 = ISP_READ(isp, OUTMAILBOX1); + if (IS_DUALBUS(isp)) { + mbox6 = ISP_READ(isp, OUTMAILBOX6); + } else { + mbox6 = 0; + } + isp_prt(isp, ISP_LOGERR, + "Internal Firmware Error on bus %d @ RISC Address 0x%x", + mbox6, mbox1); +#ifdef ISP_FW_CRASH_DUMP + if (IS_FC(isp)) { + isp->isp_osinfo.blocked |= 1; + isp_fw_dump(isp); + } + isp_reinit(isp); + isp_async(isp, ISPASYNC_FW_RESTART, NULL); +#endif + break; + } default: break; } |