diff options
author | Damjan Marion <damarion@cisco.com> | 2023-11-06 00:05:57 +0000 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2023-11-09 19:56:35 +0000 |
commit | 67f03ba71dd050c41c3b98896e9a2446c2e8c48c (patch) | |
tree | 2588019b5e3214481e9619a594f76a12f5f96ad0 /src/plugins/dev_iavf/virtchnl.h | |
parent | 14bfd3d8b81f91caacd572ad426638e5375d2eb3 (diff) |
iavf: interrupt mode support
Type: improvement
Change-Id: Ie5fcaa706ab0995e0021cf1ee74b95c5a3b30283
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dev_iavf/virtchnl.h')
-rw-r--r-- | src/plugins/dev_iavf/virtchnl.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/plugins/dev_iavf/virtchnl.h b/src/plugins/dev_iavf/virtchnl.h index d1410129ba1..2099104c8ad 100644 --- a/src/plugins/dev_iavf/virtchnl.h +++ b/src/plugins/dev_iavf/virtchnl.h @@ -19,23 +19,23 @@ enum #undef _ }; -#define AVFINT_DYN_CTLN(x) (0x00003800 + (0x4 * x)) -#define AVFINT_ICR0 0x00004800 -#define AVFINT_ICR0_ENA1 0x00005000 -#define AVFINT_DYN_CTL0 0x00005C00 -#define IAVF_ARQBAH 0x00006000 -#define IAVF_ATQH 0x00006400 -#define IAVF_ATQLEN 0x00006800 -#define IAVF_ARQBAL 0x00006C00 -#define IAVF_ARQT 0x00007000 -#define IAVF_ARQH 0x00007400 -#define IAVF_ATQBAH 0x00007800 -#define IAVF_ATQBAL 0x00007C00 -#define IAVF_ARQLEN 0x00008000 -#define IAVF_ATQT 0x00008400 -#define VFGEN_RSTAT 0x00008800 -#define IAVF_QTX_TAIL(q) (0x00000000 + (0x4 * q)) -#define IAVF_QRX_TAIL(q) (0x00002000 + (0x4 * q)) +#define IAVF_VFINT_DYN_CTLN(x) (0x00003800 + (0x4 * x)) +#define IAVF_VFINT_ICR0 0x00004800 +#define IAVF_VFINT_ICR0_ENA1 0x00005000 +#define IAVF_VFINT_DYN_CTL0 0x00005C00 +#define IAVF_ARQBAH 0x00006000 +#define IAVF_ATQH 0x00006400 +#define IAVF_ATQLEN 0x00006800 +#define IAVF_ARQBAL 0x00006C00 +#define IAVF_ARQT 0x00007000 +#define IAVF_ARQH 0x00007400 +#define IAVF_ATQBAH 0x00007800 +#define IAVF_ATQBAL 0x00007C00 +#define IAVF_ARQLEN 0x00008000 +#define IAVF_ATQT 0x00008400 +#define IAVF_VFGEN_RSTAT 0x00008800 +#define IAVF_QTX_TAIL(q) (0x00000000 + (0x4 * q)) +#define IAVF_QRX_TAIL(q) (0x00002000 + (0x4 * q)) #define foreach_virtchnl_op \ _ (0, UNKNOWN) \ |