]> git.baikalelectronics.ru Git - kernel.git/commitdiff
ice: Introduce ice_vlan struct
authorBrett Creeley <brett.creeley@intel.com>
Thu, 2 Dec 2021 16:38:42 +0000 (08:38 -0800)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Wed, 9 Feb 2022 17:24:45 +0000 (09:24 -0800)
Add a new struct for VLAN related information. Currently this holds
VLAN ID and priority values, but will be expanded to hold TPID value.
This reduces the changes necessary if any other values are added in
future. Remove the action argument from these calls as it's always
ICE_FWD_VSI.

Signed-off-by: Brett Creeley <brett.creeley@intel.com>
Tested-by: Gurucharan G <gurucharanx.g@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/ice/ice_fltr.c
drivers/net/ethernet/intel/ice/ice_fltr.h
drivers/net/ethernet/intel/ice/ice_lib.c
drivers/net/ethernet/intel/ice/ice_lib.h
drivers/net/ethernet/intel/ice/ice_main.c
drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
drivers/net/ethernet/intel/ice/ice_vlan.h [new file with mode: 0644]
drivers/net/ethernet/intel/ice/ice_vsi_vlan_lib.c
drivers/net/ethernet/intel/ice/ice_vsi_vlan_lib.h
drivers/net/ethernet/intel/ice/ice_vsi_vlan_ops.h

index c29177c6bb9de75865f56fea331ade6876fdcb58..0e6c4f0526863685cec05e6695551f0bb51014bd 100644 (file)
@@ -203,21 +203,20 @@ ice_fltr_add_mac_to_list(struct ice_vsi *vsi, struct list_head *list,
  * ice_fltr_add_vlan_to_list - add VLAN filter info to exsisting list
  * @vsi: pointer to VSI struct
  * @list: list to add filter info to
- * @vlan_id: VLAN ID to add
- * @action: filter action
+ * @vlan: VLAN filter details
  */
 static int
 ice_fltr_add_vlan_to_list(struct ice_vsi *vsi, struct list_head *list,
-                         u16 vlan_id, enum ice_sw_fwd_act_type action)
+                         struct ice_vlan *vlan)
 {
        struct ice_fltr_info info = { 0 };
 
        info.flag = ICE_FLTR_TX;
        info.src_id = ICE_SRC_ID_VSI;
        info.lkup_type = ICE_SW_LKUP_VLAN;
-       info.fltr_act = action;
+       info.fltr_act = ICE_FWD_TO_VSI;
        info.vsi_handle = vsi->idx;
-       info.l_data.vlan.vlan_id = vlan_id;
+       info.l_data.vlan.vlan_id = vlan->vid;
 
        return ice_fltr_add_entry_to_list(ice_pf_to_dev(vsi->back), &info,
                                          list);
@@ -310,19 +309,17 @@ ice_fltr_prepare_mac_and_broadcast(struct ice_vsi *vsi, const u8 *mac,
 /**
  * ice_fltr_prepare_vlan - add or remove VLAN filter
  * @vsi: pointer to VSI struct
- * @vlan_id: VLAN ID to add
- * @action: action to be performed on filter match
+ * @vlan: VLAN filter details
  * @vlan_action: pointer to add or remove VLAN function
  */
 static int
-ice_fltr_prepare_vlan(struct ice_vsi *vsi, u16 vlan_id,
-                     enum ice_sw_fwd_act_type action,
+ice_fltr_prepare_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan,
                      int (*vlan_action)(struct ice_vsi *, struct list_head *))
 {
        LIST_HEAD(tmp_list);
        int result;
 
-       if (ice_fltr_add_vlan_to_list(vsi, &tmp_list, vlan_id, action))
+       if (ice_fltr_add_vlan_to_list(vsi, &tmp_list, vlan))
                return -ENOMEM;
 
        result = vlan_action(vsi, &tmp_list);
@@ -395,27 +392,21 @@ int ice_fltr_remove_mac(struct ice_vsi *vsi, const u8 *mac,
 /**
  * ice_fltr_add_vlan - add single VLAN filter
  * @vsi: pointer to VSI struct
- * @vlan_id: VLAN ID to add
- * @action: action to be performed on filter match
+ * @vlan: VLAN filter details
  */
-int ice_fltr_add_vlan(struct ice_vsi *vsi, u16 vlan_id,
-                     enum ice_sw_fwd_act_type action)
+int ice_fltr_add_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan)
 {
-       return ice_fltr_prepare_vlan(vsi, vlan_id, action,
-                                    ice_fltr_add_vlan_list);
+       return ice_fltr_prepare_vlan(vsi, vlan, ice_fltr_add_vlan_list);
 }
 
 /**
  * ice_fltr_remove_vlan - remove VLAN filter
  * @vsi: pointer to VSI struct
- * @vlan_id: filter VLAN to remove
- * @action: action to remove
+ * @vlan: VLAN filter details
  */
-int ice_fltr_remove_vlan(struct ice_vsi *vsi, u16 vlan_id,
-                        enum ice_sw_fwd_act_type action)
+int ice_fltr_remove_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan)
 {
-       return ice_fltr_prepare_vlan(vsi, vlan_id, action,
-                                    ice_fltr_remove_vlan_list);
+       return ice_fltr_prepare_vlan(vsi, vlan, ice_fltr_remove_vlan_list);
 }
 
 /**
index 3eb42479175fe2515cc6ded351ad8a1fa1379eea..0f3dbc308eecec80ab19074834ef521c2e2bc9bc 100644 (file)
@@ -4,6 +4,8 @@
 #ifndef _ICE_FLTR_H_
 #define _ICE_FLTR_H_
 
+#include "ice_vlan.h"
+
 void ice_fltr_free_list(struct device *dev, struct list_head *h);
 int
 ice_fltr_set_vlan_vsi_promisc(struct ice_hw *hw, struct ice_vsi *vsi,
@@ -32,12 +34,8 @@ ice_fltr_remove_mac(struct ice_vsi *vsi, const u8 *mac,
                    enum ice_sw_fwd_act_type action);
 int ice_fltr_remove_mac_list(struct ice_vsi *vsi, struct list_head *list);
 
-int
-ice_fltr_add_vlan(struct ice_vsi *vsi, u16 vid,
-                 enum ice_sw_fwd_act_type action);
-int
-ice_fltr_remove_vlan(struct ice_vsi *vsi, u16 vid,
-                    enum ice_sw_fwd_act_type action);
+int ice_fltr_add_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan);
+int ice_fltr_remove_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan);
 
 int
 ice_fltr_add_eth(struct ice_vsi *vsi, u16 ethertype, u16 flag,
index e069722e3d85c6ab467d9972aa7b927039dde02c..58e796191a0f710af46c13df0aeaf6b95092c2c6 100644 (file)
@@ -3921,7 +3921,10 @@ int ice_set_link(struct ice_vsi *vsi, bool ena)
  */
 int ice_vsi_add_vlan_zero(struct ice_vsi *vsi)
 {
-       return vsi->vlan_ops.add_vlan(vsi, 0, ICE_FWD_TO_VSI);
+       struct ice_vlan vlan;
+
+       vlan = ICE_VLAN(0, 0);
+       return vsi->vlan_ops.add_vlan(vsi, &vlan);
 }
 
 /**
index de14e0f5fcfeb2b0a6083b0251911a3f2aaa120c..e3dabc9ec64e0eb29f9e0382d27991be0a9f1049 100644 (file)
@@ -5,6 +5,7 @@
 #define _ICE_LIB_H_
 
 #include "ice.h"
+#include "ice_vlan.h"
 
 const char *ice_vsi_type_str(enum ice_vsi_type vsi_type);
 
index 61be24ea8d0b6007731904e2055af4701cda172a..cc13943a1d8827a33211f2ff28ea92b9ebf9c5b3 100644 (file)
@@ -3413,6 +3413,7 @@ ice_vlan_rx_add_vid(struct net_device *netdev, __always_unused __be16 proto,
 {
        struct ice_netdev_priv *np = netdev_priv(netdev);
        struct ice_vsi *vsi = np->vsi;
+       struct ice_vlan vlan;
        int ret;
 
        /* VLAN 0 is added by default during load/reset */
@@ -3429,7 +3430,8 @@ ice_vlan_rx_add_vid(struct net_device *netdev, __always_unused __be16 proto,
        /* Add a switch rule for this VLAN ID so its corresponding VLAN tagged
         * packets aren't pruned by the device's internal switch on Rx
         */
-       ret = vsi->vlan_ops.add_vlan(vsi, vid, ICE_FWD_TO_VSI);
+       vlan = ICE_VLAN(vid, 0);
+       ret = vsi->vlan_ops.add_vlan(vsi, &vlan);
        if (!ret)
                set_bit(ICE_VSI_VLAN_FLTR_CHANGED, vsi->state);
 
@@ -3450,6 +3452,7 @@ ice_vlan_rx_kill_vid(struct net_device *netdev, __always_unused __be16 proto,
 {
        struct ice_netdev_priv *np = netdev_priv(netdev);
        struct ice_vsi *vsi = np->vsi;
+       struct ice_vlan vlan;
        int ret;
 
        /* don't allow removal of VLAN 0 */
@@ -3459,7 +3462,8 @@ ice_vlan_rx_kill_vid(struct net_device *netdev, __always_unused __be16 proto,
        /* Make sure VLAN delete is successful before updating VLAN
         * information
         */
-       ret = vsi->vlan_ops.del_vlan(vsi, vid);
+       vlan = ICE_VLAN(vid, 0);
+       ret = vsi->vlan_ops.del_vlan(vsi, &vlan);
        if (ret)
                return ret;
 
index 0033ef65db9683263a008cea261ea89dbdc18946..fdc50b42f8ee5d50db73e81d264a44695fdabc22 100644 (file)
@@ -760,24 +760,25 @@ static int ice_vf_rebuild_host_tx_rate_cfg(struct ice_vf *vf)
  */
 static int ice_vf_rebuild_host_vlan_cfg(struct ice_vf *vf)
 {
+       u8 vlan_prio = (vf->port_vlan_info & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
+       u16 vlan_id = vf->port_vlan_info & VLAN_VID_MASK;
        struct device *dev = ice_pf_to_dev(vf->pf);
        struct ice_vsi *vsi = ice_get_vf_vsi(vf);
-       u16 vlan_id = 0;
+       struct ice_vlan vlan;
        int err;
 
+       vlan = ICE_VLAN(vlan_id, vlan_prio);
        if (vf->port_vlan_info) {
-               err = vsi->vlan_ops.set_port_vlan(vsi, vf->port_vlan_info);
+               err = vsi->vlan_ops.set_port_vlan(vsi, &vlan);
                if (err) {
                        dev_err(dev, "failed to configure port VLAN via VSI parameters for VF %u, error %d\n",
                                vf->vf_id, err);
                        return err;
                }
-
-               vlan_id = vf->port_vlan_info & VLAN_VID_MASK;
        }
 
        /* vlan_id will either be 0 or the port VLAN number */
-       err = vsi->vlan_ops.add_vlan(vsi, vlan_id, ICE_FWD_TO_VSI);
+       err = vsi->vlan_ops.add_vlan(vsi, &vlan);
        if (err) {
                dev_err(dev, "failed to add %s VLAN %u filter for VF %u, error %d\n",
                        vf->port_vlan_info ? "port" : "", vlan_id, vf->vf_id,
@@ -4232,6 +4233,7 @@ static int ice_vc_process_vlan_msg(struct ice_vf *vf, u8 *msg, bool add_v)
        if (add_v) {
                for (i = 0; i < vfl->num_elements; i++) {
                        u16 vid = vfl->vlan_id[i];
+                       struct ice_vlan vlan;
 
                        if (!ice_is_vf_trusted(vf) &&
                            vsi->num_vlan >= ICE_MAX_VLAN_PER_VF) {
@@ -4251,7 +4253,8 @@ static int ice_vc_process_vlan_msg(struct ice_vf *vf, u8 *msg, bool add_v)
                        if (!vid)
                                continue;
 
-                       status = vsi->vlan_ops.add_vlan(vsi, vid, ICE_FWD_TO_VSI);
+                       vlan = ICE_VLAN(vid, 0);
+                       status = vsi->vlan_ops.add_vlan(vsi, &vlan);
                        if (status) {
                                v_ret = VIRTCHNL_STATUS_ERR_PARAM;
                                goto error_param;
@@ -4294,6 +4297,7 @@ static int ice_vc_process_vlan_msg(struct ice_vf *vf, u8 *msg, bool add_v)
                num_vf_vlan = vsi->num_vlan;
                for (i = 0; i < vfl->num_elements && i < num_vf_vlan; i++) {
                        u16 vid = vfl->vlan_id[i];
+                       struct ice_vlan vlan;
 
                        /* we add VLAN 0 by default for each VF so we can enable
                         * Tx VLAN anti-spoof without triggering MDD events so
@@ -4302,7 +4306,8 @@ static int ice_vc_process_vlan_msg(struct ice_vf *vf, u8 *msg, bool add_v)
                        if (!vid)
                                continue;
 
-                       status = vsi->vlan_ops.del_vlan(vsi, vid);
+                       vlan = ICE_VLAN(vid, 0);
+                       status = vsi->vlan_ops.del_vlan(vsi, &vlan);
                        if (status) {
                                v_ret = VIRTCHNL_STATUS_ERR_PARAM;
                                goto error_param;
diff --git a/drivers/net/ethernet/intel/ice/ice_vlan.h b/drivers/net/ethernet/intel/ice/ice_vlan.h
new file mode 100644 (file)
index 0000000..3fad0cb
--- /dev/null
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/* Copyright (C) 2019-2021, Intel Corporation. */
+
+#ifndef _ICE_VLAN_H_
+#define _ICE_VLAN_H_
+
+#include <linux/types.h>
+#include "ice_type.h"
+
+struct ice_vlan {
+       u16 vid;
+       u8 prio;
+};
+
+#define ICE_VLAN(vid, prio) ((struct ice_vlan){ vid, prio })
+
+#endif /* _ICE_VLAN_H_ */
index 6b0a4bf283057fbe35912f3e07ba504a04de4759..74b6dec0744b2c2f7f70077d1f7bbf2fd920bdd3 100644 (file)
@@ -9,20 +9,18 @@
 /**
  * ice_vsi_add_vlan - default add VLAN implementation for all VSI types
  * @vsi: VSI being configured
- * @vid: VLAN ID to be added
- * @action: filter action to be performed on match
+ * @vlan: VLAN filter to add
  */
-int
-ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid, enum ice_sw_fwd_act_type action)
+int ice_vsi_add_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan)
 {
        int err = 0;
 
-       if (!ice_fltr_add_vlan(vsi, vid, action)) {
+       if (!ice_fltr_add_vlan(vsi, vlan)) {
                vsi->num_vlan++;
        } else {
                err = -ENODEV;
                dev_err(ice_pf_to_dev(vsi->back), "Failure Adding VLAN %d on VSI %i\n",
-                       vid, vsi->vsi_num);
+                       vlan->vid, vsi->vsi_num);
        }
 
        return err;
@@ -31,9 +29,9 @@ ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid, enum ice_sw_fwd_act_type action)
 /**
  * ice_vsi_del_vlan - default del VLAN implementation for all VSI types
  * @vsi: VSI being configured
- * @vid: VLAN ID to be removed
+ * @vlan: VLAN filter to delete
  */
-int ice_vsi_del_vlan(struct ice_vsi *vsi, u16 vid)
+int ice_vsi_del_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan)
 {
        struct ice_pf *pf = vsi->back;
        struct device *dev;
@@ -41,16 +39,16 @@ int ice_vsi_del_vlan(struct ice_vsi *vsi, u16 vid)
 
        dev = ice_pf_to_dev(pf);
 
-       err = ice_fltr_remove_vlan(vsi, vid, ICE_FWD_TO_VSI);
+       err = ice_fltr_remove_vlan(vsi, vlan);
        if (!err) {
                vsi->num_vlan--;
        } else if (err == -ENOENT) {
                dev_dbg(dev, "Failed to remove VLAN %d on VSI %i, it does not exist\n",
-                       vid, vsi->vsi_num);
+                       vlan->vid, vsi->vsi_num);
                err = 0;
        } else {
                dev_err(dev, "Error removing VLAN %d on VSI %i error: %d\n",
-                       vid, vsi->vsi_num, err);
+                       vlan->vid, vsi->vsi_num, err);
        }
 
        return err;
@@ -214,9 +212,16 @@ out:
        return ret;
 }
 
-int ice_vsi_set_port_vlan(struct ice_vsi *vsi, u16 pvid_info)
+int ice_vsi_set_port_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan)
 {
-       return ice_vsi_manage_pvid(vsi, pvid_info, true);
+       u16 port_vlan_info;
+
+       if (vlan->prio > 7)
+               return -EINVAL;
+
+       port_vlan_info = vlan->vid | (vlan->prio << VLAN_PRIO_SHIFT);
+
+       return ice_vsi_manage_pvid(vsi, port_vlan_info, true);
 }
 
 /**
index f9fe3302630660a45cb1b0a88c234138f66bdf33..a0305007896ccc249384be291946f86385ec8703 100644 (file)
@@ -5,19 +5,18 @@
 #define _ICE_VSI_VLAN_LIB_H_
 
 #include <linux/types.h>
-#include "ice_type.h"
+#include "ice_vlan.h"
 
 struct ice_vsi;
 
-int
-ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid, enum ice_sw_fwd_act_type action);
-int ice_vsi_del_vlan(struct ice_vsi *vsi, u16 vid);
+int ice_vsi_add_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan);
+int ice_vsi_del_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan);
 
 int ice_vsi_ena_stripping(struct ice_vsi *vsi);
 int ice_vsi_dis_stripping(struct ice_vsi *vsi);
 int ice_vsi_ena_insertion(struct ice_vsi *vsi);
 int ice_vsi_dis_insertion(struct ice_vsi *vsi);
-int ice_vsi_set_port_vlan(struct ice_vsi *vsi, u16 pvid_info);
+int ice_vsi_set_port_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan);
 
 int ice_vsi_ena_rx_vlan_filtering(struct ice_vsi *vsi);
 int ice_vsi_dis_rx_vlan_filtering(struct ice_vsi *vsi);
index 522169742661b482e77e40499400f8e015c068b9..c944f04acd3c8472d93fd2aa9a3bb0b8a34ca32c 100644 (file)
@@ -10,8 +10,8 @@
 struct ice_vsi;
 
 struct ice_vsi_vlan_ops {
-       int (*add_vlan)(struct ice_vsi *vsi, u16 vid, enum ice_sw_fwd_act_type action);
-       int (*del_vlan)(struct ice_vsi *vsi, u16 vid);
+       int (*add_vlan)(struct ice_vsi *vsi, struct ice_vlan *vlan);
+       int (*del_vlan)(struct ice_vsi *vsi, struct ice_vlan *vlan);
        int (*ena_stripping)(struct ice_vsi *vsi);
        int (*dis_stripping)(struct ice_vsi *vsi);
        int (*ena_insertion)(struct ice_vsi *vsi);
@@ -20,7 +20,7 @@ struct ice_vsi_vlan_ops {
        int (*dis_rx_filtering)(struct ice_vsi *vsi);
        int (*ena_tx_filtering)(struct ice_vsi *vsi);
        int (*dis_tx_filtering)(struct ice_vsi *vsi);
-       int (*set_port_vlan)(struct ice_vsi *vsi, u16 pvid_info);
+       int (*set_port_vlan)(struct ice_vsi *vsi, struct ice_vlan *vlan);
 };
 
 void ice_vsi_init_vlan_ops(struct ice_vsi *vsi);