Add new VLAN opcode support.

Signed-off-by: Haiyue Wang <haiyue.w...@intel.com>
---
 drivers/common/iavf/virtchnl.h | 259 +++++++++++++++++++++++++++++++++
 1 file changed, 259 insertions(+)

diff --git a/drivers/common/iavf/virtchnl.h b/drivers/common/iavf/virtchnl.h
index fcbaa31fa..13788e46b 100644
--- a/drivers/common/iavf/virtchnl.h
+++ b/drivers/common/iavf/virtchnl.h
@@ -129,6 +129,7 @@ enum virtchnl_ops {
        VIRTCHNL_OP_ADD_CLOUD_FILTER = 32,
        VIRTCHNL_OP_DEL_CLOUD_FILTER = 33,
        /* opcodes 34, 35, 36, 37 and 38 are reserved */
+       VIRTCHNL_OP_DCF_VLAN_OFFLOAD = 38,
        VIRTCHNL_OP_DCF_CMD_DESC = 39,
        VIRTCHNL_OP_DCF_CMD_BUFF = 40,
        VIRTCHNL_OP_DCF_DISABLE = 41,
@@ -141,6 +142,11 @@ enum virtchnl_ops {
        VIRTCHNL_OP_DEL_FDIR_FILTER = 48,
        VIRTCHNL_OP_QUERY_FDIR_FILTER = 49,
        VIRTCHNL_OP_GET_MAX_RSS_QREGION = 50,
+       VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS = 51,
+       VIRTCHNL_OP_ADD_VLAN_V2 = 52,
+       VIRTCHNL_OP_DEL_VLAN_V2 = 53,
+       VIRTCHNL_OP_ENABLE_VLAN_STRIPPING_V2 = 54,
+       VIRTCHNL_OP_DISABLE_VLAN_STRIPPING_V2 = 55,
        VIRTCHNL_OP_ENABLE_QUEUES_V2 = 107,
        VIRTCHNL_OP_DISABLE_QUEUES_V2 = 108,
        VIRTCHNL_OP_MAP_QUEUE_VECTOR = 111,
@@ -251,6 +257,7 @@ VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_vsi_resource);
 #define VIRTCHNL_VF_OFFLOAD_CRC                        0x00000080
        /* 0X00000100 is reserved */
 #define VIRTCHNL_VF_LARGE_NUM_QPAIRS           0x00000200
+#define VIRTCHNL_VF_OFFLOAD_VLAN_V2            0x00008000
 #define VIRTCHNL_VF_OFFLOAD_VLAN               0x00010000
 #define VIRTCHNL_VF_OFFLOAD_RX_POLLING         0x00020000
 #define VIRTCHNL_VF_OFFLOAD_RSS_PCTYPE_V2      0x00040000
@@ -536,6 +543,202 @@ struct virtchnl_vlan_filter_list {
 
 VIRTCHNL_CHECK_STRUCT_LEN(6, virtchnl_vlan_filter_list);
 
+/* This enum is used for all of the VIRTCHNL_VF_OFFLOAD_VLAN_V2_CAPS related
+ * structures and opcodes.
+ *
+ * VIRTCHNL_VLAN_UNSUPPORTED - This field is not supported and if a VF driver
+ * populates it the PF should return VIRTCHNL_STATUS_ERR_NOT_SUPPORTED.
+ *
+ * VIRTCHNL_VLAN_ETHERTYPE_8100 - This field supports 0x8100 ethertype.
+ * VIRTCHNL_VLAN_ETHERTYPE_88A8 - This field supports 0x88A8 ethertype.
+ * VIRTCHNL_VLAN_ETHERTYPE_9100 - This field supports 0x9100 ethertype.
+ *
+ * VIRTCHNL_VLAN_ETHERTYPE_AND - Used when multiple ethertypes can be supported
+ * by the PF concurrently. For example, if the PF can support
+ * VIRTCHNL_VLAN_ETHERTYPE_8100 AND VIRTCHNL_VLAN_ETHERTYPE_88A8 filters it
+ * would OR the following in the virtchnl_vlan_filtering_caps.outer field:
+ *
+ *     VIRTHCNL_VLAN_ETHERTYPE_8100 |
+ *     VIRTCHNL_VLAN_ETHERTYPE_88A8 |
+ *     VIRTCHNL_VLAN_ETHERTYPE_AND;
+ *
+ * The VF would interpret this as VLAN filtering can be supported on both 
0x8100
+ * and 0x88A8 VLAN ethertypes.
+ *
+ * VIRTCHNL_ETHERTYPE_XOR - Used when only a single ethertype can be supported
+ * by the PF concurrently. For example if the PF can support
+ * VIRTCHNL_VLAN_ETHERTYPE_8100 XOR VIRTCHNL_VLAN_ETHERTYPE_88A8 stripping
+ * offload it would OR the following in the
+ * virtchnl_vlan_offload_caps.outer_stripping field:
+ *
+ *     VIRTCHNL_VLAN_ETHERTYPE_8100 |
+ *     VIRTCHNL_VLAN_ETHERTYPE_88A8 |
+ *     VIRTCHNL_VLAN_ETHERTYPE_XOR;
+ *
+ * The VF would interpret this as VLAN stripping can be supported on either
+ * 0x8100 or 0x88a8 VLAN ethertypes. So when requesting VLAN stripping via
+ * VIRTCHNL_OP_ENABLE_VLAN_STRIPPING_V2 the specified ethertype will override
+ * the previously set value.
+ *
+ * VIRTCHNL_VLAN_PRIO - This field supports VLAN priority bits. This is used 
for
+ * VLAN filtering if the underlying PF supports it.
+ *
+ * VIRTCHNL_VLAN_TOGGLE_ALLOWED - This field is used to say whether a
+ * certain VLAN capability can be toggled. For example if the underlying PF/CP
+ * allows the VF to toggle VLAN filtering, stripping, and/or insertion it 
should
+ * set this bit along with the supported ethertypes.
+ */
+enum virtchnl_vlan_support {
+       VIRTCHNL_VLAN_UNSUPPORTED =     0,
+       VIRTCHNL_VLAN_ETHERTYPE_8100 =  0x0001,
+       VIRTCHNL_VLAN_ETHERTYPE_88A8 =  0x0002,
+       VIRTCHNL_VLAN_ETHERTYPE_9100 =  0x0004,
+       VIRTCHNL_VLAN_PRIO =            0x0100,
+       VIRTCHNL_VLAN_FILTER_MASK =     0x1000,
+       VIRTCHNL_VLAN_ETHERTYPE_AND =   0x2000,
+       VIRTCHNL_VLAN_ETHERTYPE_XOR =   0x4000,
+       VIRTCHNL_VLAN_TOGGLE =          0x8000,
+};
+
+/* The PF populates these fields based on the supported VLAN filtering. If a
+ * field is VIRTCHNL_VLAN_UNSUPPORTED then it's not supported and the PF will
+ * reject any VIRTCHNL_OP_ADD_VLAN_V2 or VIRTCHNL_OP_DEL_VLAN_V2 messages using
+ * the unsupported fields.
+ *
+ * Also, a VF is only allowed to toggle its VLAN filtering setting if the
+ * VIRTCHNL_VFLAN_TOGGLE_ALLOWED bit is set.
+ *
+ * The max_filters field tells the VF how many VLAN filters it's allowed to 
have
+ * at any one time. If it exceeds this amount and tries to add another filter,
+ * then the request will be rejected by the PF.
+ */
+struct virtchnl_vlan_filtering_caps {
+       u16 outer;
+       u16 inner;
+       u16 max_filters;
+       u8 pad[4];
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(10, virtchnl_vlan_filtering_caps);
+
+/* This enum is used for the virtchnl_vlan_offload_caps structure to specify
+ * if the PF supports a different ethertype for stripping and insertion.
+ *
+ * VIRTCHNL_ETHERTYPE_STRIPPING_MATCHES_INSERTION - The ethertype(s) specified
+ * for stripping affect the ethertype(s) sepcified for insertion and visa versa
+ * as well. If the VF tries to configure VLAN stripping via
+ * VIRTCHNL_OP_ENABLE_VLAN_STRIPPING_V2 with VIRTCHNL_VLAN_ETHERTYPE_8100 then
+ * that will be the ethertype for both stripping and insertion.
+ *
+ * VIRTCHNL_ETHERTYPE_MATCH_NOT_REQUIRED - The ethertype(s) specified for
+ * stripping do not affect the ethertype(s) specified for insertion and visa
+ * versa.
+ */
+enum virtchnl_vlan_ethertype_match {
+       VIRTCHNL_ETHERTYPE_STRIPPING_MATCHES_INSERTION = 0,
+       VIRTCHNL_ETHERTYPE_MATCH_NOT_REQUIRED = 1,
+};
+
+/* The PF populates these fields based on the supported VLAN offloads. If a
+ * field is VIRTCHNL_VLAN_UNSUPPORTED then it's not supported and the PF will
+ * reject any VIRTCHNL_OP_ENABLE_VLAN_STRIPPING_V2 or
+ * VIRTCHNL_OP_DISABLE_VLAN_STRIPPING_V2 messages using the unsupported fields.
+ *
+ * Also, a VF is only allowed to toggle its VLAN offload setting if the
+ * VIRTCHNL_VFLAN_TOGGLE_ALLOWED bit is set.
+ *
+ * The VF driver needs to be aware of how the tags are stipped by hardware and
+ * inserted by the VF driver based on the level of offload support.
+ *
+ * outer_stripping supported - VLAN tag stripped into L2TAG2 field by hardware
+ * outer_insertion supported - VLAN tag inserted into L2TAG2 field by VF driver
+ *
+ * inner_stripping supported - VLAN tag stripped into L2TAG1 field by hardware
+ * inner_insertion supported - VLAN tag inserted into L2TAG1 field by VF driver
+ */
+struct virtchnl_vlan_offload_caps {
+       u16 outer_stripping;
+       u16 inner_stripping;
+       u16 outer_insertion;
+       u16 inner_insertion;
+       u16 ethertype_init;
+       u8 ethertype_match;
+       u8 pad[3];
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(14, virtchnl_vlan_offload_caps);
+
+/* VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS
+ * VF sends this message to determine its VLAN capabilities.
+ *
+ * PF will mark which capabilities it supports based on hardware support and
+ * current configuration. For example, if a port VLAN is configured the PF will
+ * not allow outer VLAN filtering, stripping, or insertion to be configured so
+ * it will block these features from the VF.
+ *
+ * The VF will need to cross reference its capabilities with the PFs
+ * capabilities in the response message from the PF to determine the VLAN
+ * support.
+ */
+struct virtchnl_vlan_caps {
+       struct virtchnl_vlan_filtering_caps filtering;
+       struct virtchnl_vlan_offload_caps offloads;
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(24, virtchnl_vlan_caps);
+
+struct virtchnl_vlan {
+       u16 tci;        /* tci[15:13] = PCP and tci[11:0] = VID */
+       u16 tci_mask;   /* only valid if VIRTCHNL_VLAN_FILTER_MASK set in 
filtering caps */
+       u16 tpid;       /* 0x8100, 0x88a8, etc. and only type(s) set in 
filtering caps */
+       u8 pad[2];
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_vlan);
+
+struct virtchnl_vlan_filter {
+       struct virtchnl_vlan inner;
+       struct virtchnl_vlan outer;
+       u8 pad[16];
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(32, virtchnl_vlan_filter);
+
+/* VIRTCHNL_OP_ADD_VLAN_V2
+ * VIRTCHNL_OP_DEL_VLAN_V2
+ *
+ * VF sends these messages to add/del one or more VLAN tag filters for Rx 
traffic.
+ *
+ * The PF/CP attempts to add the filters and returns status.
+ *
+ * The VF should only ever attempt to add/del virtchnl_vlan_filter(s) using the
+ * supported fields negotiated via VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS.
+ */
+struct virtchnl_vlan_filter_list_v2 {
+       u16 vport_id;
+       u16 num_elements;
+       u8 pad[4];
+       struct virtchnl_vlan_filter filters[1];
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(40, virtchnl_vlan_filter_list_v2);
+
+/* VIRTCHNL_OP_ENABLE_VLAN_STRIPPING_V2
+ * VIRTCHNL_OP_DISABLE_VLAN_STRIPPING_V2
+ *
+ * VF sends this message to enable or disable VLAN stripping. It also needs to
+ * specify an ethertype. The VF knows which virtchnl_vlan_filter fields are
+ * allowed via the VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS message.
+ */
+struct virtchnl_vlan_strip {
+       u16 vsi_id;
+       u16 outer_ethertype_setting;    /* 0x8100, 0x88a8, etc. and only 
type(s) set in the offload caps */
+       u16 inner_ethertype_setting;    /* 0x8100, 0x88a8, etc. and only 
type(s) set in the offload caps */
+       u8 pad[2];
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_vlan_strip);
+
 /* VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE
  * VF sends VSI id and flags.
  * PF returns status code in retval.
@@ -754,6 +957,32 @@ struct virtchnl_pkg_info {
 
 VIRTCHNL_CHECK_STRUCT_LEN(48, virtchnl_pkg_info);
 
+struct virtchnl_dcf_vlan_offload {
+       u16 vf_id;
+       u16 tpid;
+       u16 vlan_flags;
+#define VIRTCHNL_DCF_VLAN_TYPE_S               0
+#define VIRTCHNL_DCF_VLAN_TYPE_M               \
+                       (0x1 << VIRTCHNL_DCF_VLAN_TYPE_S)
+#define VIRTCHNL_DCF_VLAN_TYPE_INNER           0x0
+#define VIRTCHNL_DCF_VLAN_TYPE_OUTER           0x1
+#define VIRTCHNL_DCF_VLAN_INSERT_MODE_S                1
+#define VIRTCHNL_DCF_VLAN_INSERT_MODE_M        \
+                       (0x7 << VIRTCHNL_DCF_VLAN_INSERT_MODE_S)
+#define VIRTCHNL_DCF_VLAN_INSERT_DISABLE       0x1
+#define VIRTCHNL_DCF_VLAN_INSERT_PORT_BASED    0x2
+#define VIRTCHNL_DCF_VLAN_INSERT_VIA_TX_DESC   0x3
+#define VIRTCHNL_DCF_VLAN_STRIP_MODE_S         4
+#define VIRTCHNL_DCF_VLAN_STRIP_MODE_M         \
+                       (0x7 << VIRTCHNL_DCF_VLAN_STRIP_MODE_S)
+#define VIRTCHNL_DCF_VLAN_STRIP_DISABLE                0x1
+#define VIRTCHNL_DCF_VLAN_STRIP_ONLY           0x2
+#define VIRTCHNL_DCF_VLAN_STRIP_INTO_RX_DESC   0x3
+       u16 vlan_id;
+};
+
+VIRTCHNL_CHECK_STRUCT_LEN(8, virtchnl_dcf_vlan_offload);
+
 struct virtchnl_supported_rxdids {
        u64 supported_rxdids;
 };
@@ -1291,6 +1520,10 @@ enum virtchnl_vector_limits {
        VIRTCHNL_OP_MAP_UNMAP_QUEUE_VECTOR_MAX  =
                ((u16)(~0) - sizeof(struct virtchnl_queue_vector_maps)) /
                sizeof(struct virtchnl_queue_vector),
+
+       VIRTCHNL_OP_ADD_DEL_VLAN_V2_MAX         =
+               ((u16)(~0) - sizeof(struct virtchnl_vlan_filter_list_v2)) /
+               sizeof(struct virtchnl_vlan_filter),
 };
 
 /**
@@ -1465,6 +1698,9 @@ virtchnl_vc_validate_vf_msg(struct virtchnl_version_info 
*ver, u32 v_opcode,
        case VIRTCHNL_OP_DEL_CLOUD_FILTER:
                valid_len = sizeof(struct virtchnl_filter);
                break;
+       case VIRTCHNL_OP_DCF_VLAN_OFFLOAD:
+               valid_len = sizeof(struct virtchnl_dcf_vlan_offload);
+               break;
        case VIRTCHNL_OP_DCF_CMD_DESC:
        case VIRTCHNL_OP_DCF_CMD_BUFF:
                /* These two opcodes are specific to handle the AdminQ command,
@@ -1491,6 +1727,29 @@ virtchnl_vc_validate_vf_msg(struct virtchnl_version_info 
*ver, u32 v_opcode,
        case VIRTCHNL_OP_QUERY_FDIR_FILTER:
                valid_len = sizeof(struct virtchnl_fdir_query);
                break;
+       case VIRTCHNL_OP_GET_OFFLOAD_VLAN_V2_CAPS:
+               break;
+       case VIRTCHNL_OP_ADD_VLAN_V2:
+       case VIRTCHNL_OP_DEL_VLAN_V2:
+               valid_len = sizeof(struct virtchnl_vlan_filter_list_v2);
+               if (msglen >= valid_len) {
+                       struct virtchnl_vlan_filter_list_v2 *vfl =
+                           (struct virtchnl_vlan_filter_list_v2 *)msg;
+
+                       if (vfl->num_elements == 0 || vfl->num_elements >
+                           VIRTCHNL_OP_ADD_DEL_VLAN_V2_MAX) {
+                               err_msg_format = true;
+                               break;
+                       }
+
+                       valid_len += (vfl->num_elements - 1) *
+                               sizeof(struct virtchnl_vlan_filter);
+               }
+               break;
+       case VIRTCHNL_OP_ENABLE_VLAN_STRIPPING_V2:
+       case VIRTCHNL_OP_DISABLE_VLAN_STRIPPING_V2:
+               valid_len = sizeof(struct virtchnl_vlan_strip);
+               break;
        case VIRTCHNL_OP_ENABLE_QUEUES_V2:
        case VIRTCHNL_OP_DISABLE_QUEUES_V2:
                valid_len = sizeof(struct virtchnl_del_ena_dis_queues);
-- 
2.29.2

Reply via email to