|
@@ -2174,6 +2174,14 @@ enum {
|
|
|
#define IXGBE_MBVFICR(_i) (0x00710 + ((_i) * 4))
|
|
|
#define IXGBE_VFLRE(_i) ((((_i) & 1) ? 0x001C0 : 0x00600))
|
|
|
#define IXGBE_VFLREC(_i) (0x00700 + ((_i) * 4))
|
|
|
+/* Translated register #defines */
|
|
|
+#define IXGBE_PVFTDWBAL(P) (0x06038 + (0x40 * (P)))
|
|
|
+#define IXGBE_PVFTDWBAH(P) (0x0603C + (0x40 * (P)))
|
|
|
+
|
|
|
+#define IXGBE_PVFTDWBALn(q_per_pool, vf_number, vf_q_index) \
|
|
|
+ (IXGBE_PVFTDWBAL((q_per_pool)*(vf_number) + (vf_q_index)))
|
|
|
+#define IXGBE_PVFTDWBAHn(q_per_pool, vf_number, vf_q_index) \
|
|
|
+ (IXGBE_PVFTDWBAH((q_per_pool)*(vf_number) + (vf_q_index)))
|
|
|
|
|
|
enum ixgbe_fdir_pballoc_type {
|
|
|
IXGBE_FDIR_PBALLOC_NONE = 0,
|