From 67f03ba71dd050c41c3b98896e9a2446c2e8c48c Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Mon, 6 Nov 2023 00:05:57 +0000 Subject: iavf: interrupt mode support Type: improvement Change-Id: Ie5fcaa706ab0995e0021cf1ee74b95c5a3b30283 Signed-off-by: Damjan Marion --- src/plugins/dev_iavf/virtchnl.h | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src/plugins/dev_iavf/virtchnl.h') 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) \ -- cgit 1.2.3-korg