diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-03-15 12:28:48 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-03-15 12:28:48 +0000 |
commit | ab0a431be04c9b67631adcf5a7e6da59c5a8162b (patch) | |
tree | 1b51cbbd9cb6b094785f631101e47b8fcba858f1 /sys/dev/ic/qlwreg.h | |
parent | b723bc38e50ad96f50ea9b6410addf0fd213cfd7 (diff) |
The ISP1000 firmware doesn't support the _A64 mailbox command variants. Since
we don't actually need these as we always make sure our bus addresses fit into
32 bits, simply use the non-_A64 variants.
Diffstat (limited to 'sys/dev/ic/qlwreg.h')
-rw-r--r-- | sys/dev/ic/qlwreg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/qlwreg.h b/sys/dev/ic/qlwreg.h index 4fddfaf638a..07d78c0ff0d 100644 --- a/sys/dev/ic/qlwreg.h +++ b/sys/dev/ic/qlwreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: qlwreg.h,v 1.4 2014/03/08 18:30:54 kettenis Exp $ */ +/* $OpenBSD: qlwreg.h,v 1.5 2014/03/15 12:28:47 kettenis Exp $ */ /* * Copyright (c) 2013, 2014 Jonathan Matthew <jmatthew@openbsd.org> @@ -118,6 +118,8 @@ #define QLW_MBOX_REGISTER_TEST 0x0006 #define QLW_MBOX_VERIFY_CSUM 0x0007 #define QLW_MBOX_ABOUT_FIRMWARE 0x0008 +#define QLW_MBOX_INIT_REQ_QUEUE 0x0010 +#define QLW_MBOX_INIT_RSP_QUEUE 0x0011 #define QLW_MBOX_BUS_RESET 0x0018 #define QLW_MBOX_GET_FIRMWARE_STATUS 0x001F #define QLW_MBOX_SET_INITIATOR_ID 0x0030 |