Port VLAN in this case means push and pop VLAN action on specific vid. There are a few limitation in hardware: - push and pop can't be used separately - if port VLAN is used there can't be any trunk VLANs, because pop action is done on all traffic received by VSI in port VLAN mode - port VLAN mode on uplink port isn't supported Reflect these limitations in code using dev_info to inform the user about unsupported configuration. In bridge mode there is a need to configure port vlan without resetting VFs. To do that implement ice_port_vlan_on/off() functions. They are only configuring correct vlan_ops to allow setting port vlan. We also need to clear port vlan without resetting the VF which is not supported right now. Change it by implementing clear_port_vlan ops. As previous VLAN configuration isn't always the same, store current config while creating port vlan and restore it in clear function. Configuration steps: - configure switchdev with bridge - #bridge vlan add dev eth0 vid 120 pvid untagged - #bridge vlan add dev eth1 vid 120 pvid untagged - ping from VF0 to VF1 Reviewed-by: Simon Horman <simon.horman@corigine.com> Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Signed-off-by: Wojciech Drewek <wojciech.drewek@intel.com> Tested-by: Sujai Buvaneswaran <sujai.buvaneswaran@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2019-2021, Intel Corporation. */
|
|
|
|
#ifndef _ICE_VSI_VLAN_LIB_H_
|
|
#define _ICE_VSI_VLAN_LIB_H_
|
|
|
|
#include <linux/types.h>
|
|
#include "ice_vlan.h"
|
|
|
|
struct ice_vsi_vlan_info {
|
|
u8 sw_flags2;
|
|
u8 inner_vlan_flags;
|
|
u8 outer_vlan_flags;
|
|
};
|
|
|
|
struct ice_vsi;
|
|
|
|
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_inner_stripping(struct ice_vsi *vsi, u16 tpid);
|
|
int ice_vsi_dis_inner_stripping(struct ice_vsi *vsi);
|
|
int ice_vsi_ena_inner_insertion(struct ice_vsi *vsi, u16 tpid);
|
|
int ice_vsi_dis_inner_insertion(struct ice_vsi *vsi);
|
|
int ice_vsi_set_inner_port_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan);
|
|
int ice_vsi_clear_inner_port_vlan(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_ena_rx_vlan_filtering(struct ice_vsi *vsi);
|
|
int ice_vsi_dis_rx_vlan_filtering(struct ice_vsi *vsi);
|
|
int ice_vsi_ena_tx_vlan_filtering(struct ice_vsi *vsi);
|
|
int ice_vsi_dis_tx_vlan_filtering(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_ena_outer_stripping(struct ice_vsi *vsi, u16 tpid);
|
|
int ice_vsi_dis_outer_stripping(struct ice_vsi *vsi);
|
|
int ice_vsi_ena_outer_insertion(struct ice_vsi *vsi, u16 tpid);
|
|
int ice_vsi_dis_outer_insertion(struct ice_vsi *vsi);
|
|
int ice_vsi_set_outer_port_vlan(struct ice_vsi *vsi, struct ice_vlan *vlan);
|
|
int ice_vsi_clear_outer_port_vlan(struct ice_vsi *vsi);
|
|
|
|
#endif /* _ICE_VSI_VLAN_LIB_H_ */
|