summaryrefslogtreecommitdiffstats
path: root/sys/dev/isp
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2004-01-23 23:22:11 +0000
committermjacob <mjacob@FreeBSD.org>2004-01-23 23:22:11 +0000
commitec1bdb4850889fa117bd8d1003aeda729451b246 (patch)
tree2c4739be0a9ac5aa04efa9a6e1fbd0d9a1f3fe4d /sys/dev/isp
parent3e2b8ddfa1d68a57914e95cc3d6a892e79443e77 (diff)
downloadFreeBSD-src-ec1bdb4850889fa117bd8d1003aeda729451b246.zip
FreeBSD-src-ec1bdb4850889fa117bd8d1003aeda729451b246.tar.gz
Add firmware major, minor and micro revsions to the ISP_FC_GETHINFO ioctl
structure.
Diffstat (limited to 'sys/dev/isp')
-rw-r--r--sys/dev/isp/isp_freebsd.c3
-rw-r--r--sys/dev/isp/isp_ioctl.h4
2 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/isp/isp_freebsd.c b/sys/dev/isp/isp_freebsd.c
index bd41b70..e8f9640 100644
--- a/sys/dev/isp/isp_freebsd.c
+++ b/sys/dev/isp/isp_freebsd.c
@@ -394,6 +394,9 @@ ispioctl(dev_t dev, u_long cmd, caddr_t addr, int flags, struct thread *td)
struct isp_hba_device *hba = (struct isp_hba_device *) addr;
MEMZERO(hba, sizeof (*hba));
ISP_LOCK(isp);
+ hba->fc_fw_major = ISP_FW_MAJORX(isp->isp_fwrev);
+ hba->fc_fw_minor = ISP_FW_MINORX(isp->isp_fwrev);
+ hba->fc_fw_micro = ISP_FW_MICROX(isp->isp_fwrev);
hba->fc_speed = FCPARAM(isp)->isp_gbspeed;
hba->fc_scsi_supported = 1;
hba->fc_topology = FCPARAM(isp)->isp_topo + 1;
diff --git a/sys/dev/isp/isp_ioctl.h b/sys/dev/isp/isp_ioctl.h
index 5b975e5..f4d3c15 100644
--- a/sys/dev/isp/isp_ioctl.h
+++ b/sys/dev/isp/isp_ioctl.h
@@ -143,6 +143,10 @@ struct isp_hba_device {
fc_scsi_supported : 1,
fc_topology : 3,
fc_loopid : 8;
+ u_int8_t fc_fw_major;
+ u_int8_t fc_fw_minor;
+ u_int8_t fc_fw_micro;
+ u_int8_t reserved;
u_int64_t nvram_node_wwn;
u_int64_t nvram_port_wwn;
u_int64_t active_node_wwn;
OpenPOWER on IntegriCloud