diff options
author | mjacob <mjacob@FreeBSD.org> | 2002-09-23 05:04:16 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2002-09-23 05:04:16 +0000 |
commit | ad5c6d4c485af259578a9870cab27cf423dfa85b (patch) | |
tree | 7c357c14aa82aa992d260cb27ff2bc4111af8bbc /sys/dev/isp | |
parent | c853ce6ce70c2949b9eae4dafaeaa4b3ddc84fc3 (diff) | |
download | FreeBSD-src-ad5c6d4c485af259578a9870cab27cf423dfa85b.zip FreeBSD-src-ad5c6d4c485af259578a9870cab27cf423dfa85b.tar.gz |
Add MBOX_INIT_REQ_QUEUE_A64/MBOX_INIT_RES_QUEUE_A64 definitions.
Define ispreq64_t to be the same as ispreqt3_t.
Diffstat (limited to 'sys/dev/isp')
-rw-r--r-- | sys/dev/isp/ispmbox.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/isp/ispmbox.h b/sys/dev/isp/ispmbox.h index 5fee105..678c989 100644 --- a/sys/dev/isp/ispmbox.h +++ b/sys/dev/isp/ispmbox.h @@ -109,6 +109,9 @@ #define FW_FEATURE_RIO_32BIT 0x4 #define FW_FEATURE_RIO_16BIT 0x8 +#define MBOX_INIT_REQ_QUEUE_A64 0x0052 +#define MBOX_INIT_RES_QUEUE_A64 0x0053 + #define MBOX_ENABLE_TARGET_MODE 0x0055 #define ENABLE_TARGET_FLAG 0x8000 #define ENABLE_TQING_FLAG 0x0004 @@ -338,6 +341,9 @@ typedef struct { ispds_t req_dataseg[ISP_RQDSEG]; } ispreq_t; +#define ispreq64_t ispreqt3_t /* same as.... */ +#define ISP_RQDSEG_A64 2 + /* * A request packet can also be a marker packet. */ |