Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue
Tony Nguyen says: ==================== 100GbE Intel Wired LAN Driver Updates 2022-03-15 Jacob Keller says: The ice_sriov.c file now houses almost all of the virtualization code in the ice driver. This includes both Single Root specific implementation as well as generic functionality such as the virtchnl interface. We are planning to implement support for Scalable IOV in the ice driver in the future. This implementation will want to use the generic functionality in ice_sriov.c Rather than dump the Scalable IOV code into ice_sriov.c, we will want to implement it in a separate file, ice_siov.c To help with this, refactor the code in ice_sriov.c and split the generic functionality out into separate files. Reorganize code to make the non-implementation specific bits into new files with the following general guidelines: * ice_vf_lib.[ch] Basic VF structures and accessors. This is where scheme-independent code will reside. * ice_virtchnl.[ch] Virtchnl message handling. This is where the bulk of the logic for processing messages from VFs using the virtchnl messaging scheme will reside. This is separated from ice_vf_lib.c because it is somewhat distinct and stand alone. * ice_sriov.[ch] Single Root IOV implementation, including initialization and the routines for interacting with SR-IOV based netdev operations. * (future) ice_siov.[ch] Scalable IOV implementation. The end goal is to make it easier to re-use the generic parts of the virtualization logic while keeping separate the concerns of the Single Root implementation. In addition to the pure code moves, this series has a reset refactor which clean up the functionality to make it easier to reuse the reset code. A new ops table is introduced to make the VF reset logic more generic. The Single Root specific details are implemented in ice_sriov.c. A future series implementing Scalable IOV support will use this ops table to allow re-use of the reset logic which is now in ice_vf_lib.c ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
79b0410841
@ -34,11 +34,13 @@ ice-y := ice_main.o \
|
||||
ice_repr.o \
|
||||
ice_tc_lib.o
|
||||
ice-$(CONFIG_PCI_IOV) += \
|
||||
ice_sriov.o \
|
||||
ice_virtchnl.o \
|
||||
ice_virtchnl_allowlist.o \
|
||||
ice_virtchnl_fdir.o \
|
||||
ice_vf_mbx.o \
|
||||
ice_vf_vsi_vlan_ops.o \
|
||||
ice_sriov.o
|
||||
ice_vf_lib.o
|
||||
ice-$(CONFIG_PTP_1588_CLOCK) += ice_ptp.o ice_ptp_hw.o
|
||||
ice-$(CONFIG_TTY) += ice_gnss.o
|
||||
ice-$(CONFIG_DCB) += ice_dcb.o ice_dcb_nl.o ice_dcb_lib.o
|
||||
|
@ -634,7 +634,7 @@ static void ice_do_reset(struct ice_pf *pf, enum ice_reset_req reset_type)
|
||||
clear_bit(ICE_PREPARED_FOR_RESET, pf->state);
|
||||
clear_bit(ICE_PFR_REQ, pf->state);
|
||||
wake_up(&pf->reset_wait_queue);
|
||||
ice_reset_all_vfs(pf, true);
|
||||
ice_reset_all_vfs(pf);
|
||||
}
|
||||
}
|
||||
|
||||
@ -685,7 +685,7 @@ static void ice_reset_subtask(struct ice_pf *pf)
|
||||
clear_bit(ICE_CORER_REQ, pf->state);
|
||||
clear_bit(ICE_GLOBR_REQ, pf->state);
|
||||
wake_up(&pf->reset_wait_queue);
|
||||
ice_reset_all_vfs(pf, true);
|
||||
ice_reset_all_vfs(pf);
|
||||
}
|
||||
|
||||
return;
|
||||
@ -1823,9 +1823,7 @@ static void ice_handle_mdd_event(struct ice_pf *pf)
|
||||
* reset, so print the event prior to reset.
|
||||
*/
|
||||
ice_print_vf_rx_mdd_event(vf);
|
||||
mutex_lock(&vf->cfg_lock);
|
||||
ice_reset_vf(vf, false);
|
||||
mutex_unlock(&vf->cfg_lock);
|
||||
ice_reset_vf(vf, ICE_VF_RESET_LOCK);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,14 +4,8 @@
|
||||
#ifndef _ICE_SRIOV_H_
|
||||
#define _ICE_SRIOV_H_
|
||||
#include "ice_virtchnl_fdir.h"
|
||||
#include "ice_vsi_vlan_ops.h"
|
||||
|
||||
/* Restrict number of MAC Addr and VLAN that non-trusted VF can programmed */
|
||||
#define ICE_MAX_VLAN_PER_VF 8
|
||||
/* MAC filters: 1 is reserved for the VF's default/perm_addr/LAA MAC, 1 for
|
||||
* broadcast, and 16 for additional unicast/multicast filters
|
||||
*/
|
||||
#define ICE_MAX_MACADDR_PER_VF 18
|
||||
#include "ice_vf_lib.h"
|
||||
#include "ice_virtchnl.h"
|
||||
|
||||
/* Static VF transaction/status register def */
|
||||
#define VF_DEVICE_STATUS 0xAA
|
||||
@ -22,10 +16,8 @@
|
||||
#define ICE_PCI_CIAD_WAIT_DELAY_US 1
|
||||
|
||||
/* VF resource constraints */
|
||||
#define ICE_MAX_SRIOV_VFS 256
|
||||
#define ICE_MIN_QS_PER_VF 1
|
||||
#define ICE_NONQ_VECS_VF 1
|
||||
#define ICE_MAX_RSS_QS_PER_VF 16
|
||||
#define ICE_NUM_VF_MSIX_MED 17
|
||||
#define ICE_NUM_VF_MSIX_SMALL 5
|
||||
#define ICE_NUM_VF_MSIX_MULTIQ_MIN 3
|
||||
@ -33,186 +25,7 @@
|
||||
#define ICE_MAX_VF_RESET_TRIES 40
|
||||
#define ICE_MAX_VF_RESET_SLEEP_MS 20
|
||||
|
||||
/* VF Hash Table access functions
|
||||
*
|
||||
* These functions provide abstraction for interacting with the VF hash table.
|
||||
* In general, direct access to the hash table should be avoided outside of
|
||||
* these functions where possible.
|
||||
*
|
||||
* The VF entries in the hash table are protected by reference counting to
|
||||
* track lifetime of accesses from the table. The ice_get_vf_by_id() function
|
||||
* obtains a reference to the VF structure which must be dropped by using
|
||||
* ice_put_vf().
|
||||
*/
|
||||
|
||||
/**
|
||||
* ice_for_each_vf - Iterate over each VF entry
|
||||
* @pf: pointer to the PF private structure
|
||||
* @bkt: bucket index used for iteration
|
||||
* @vf: pointer to the VF entry currently being processed in the loop.
|
||||
*
|
||||
* The bkt variable is an unsigned integer iterator used to traverse the VF
|
||||
* entries. It is *not* guaranteed to be the VF's vf_id. Do not assume it is.
|
||||
* Use vf->vf_id to get the id number if needed.
|
||||
*
|
||||
* The caller is expected to be under the table_lock mutex for the entire
|
||||
* loop. Use this iterator if your loop is long or if it might sleep.
|
||||
*/
|
||||
#define ice_for_each_vf(pf, bkt, vf) \
|
||||
hash_for_each((pf)->vfs.table, (bkt), (vf), entry)
|
||||
|
||||
/**
|
||||
* ice_for_each_vf_rcu - Iterate over each VF entry protected by RCU
|
||||
* @pf: pointer to the PF private structure
|
||||
* @bkt: bucket index used for iteration
|
||||
* @vf: pointer to the VF entry currently being processed in the loop.
|
||||
*
|
||||
* The bkt variable is an unsigned integer iterator used to traverse the VF
|
||||
* entries. It is *not* guaranteed to be the VF's vf_id. Do not assume it is.
|
||||
* Use vf->vf_id to get the id number if needed.
|
||||
*
|
||||
* The caller is expected to be under rcu_read_lock() for the entire loop.
|
||||
* Only use this iterator if your loop is short and you can guarantee it does
|
||||
* not sleep.
|
||||
*/
|
||||
#define ice_for_each_vf_rcu(pf, bkt, vf) \
|
||||
hash_for_each_rcu((pf)->vfs.table, (bkt), (vf), entry)
|
||||
|
||||
/* Specific VF states */
|
||||
enum ice_vf_states {
|
||||
ICE_VF_STATE_INIT = 0, /* PF is initializing VF */
|
||||
ICE_VF_STATE_ACTIVE, /* VF resources are allocated for use */
|
||||
ICE_VF_STATE_QS_ENA, /* VF queue(s) enabled */
|
||||
ICE_VF_STATE_DIS,
|
||||
ICE_VF_STATE_MC_PROMISC,
|
||||
ICE_VF_STATE_UC_PROMISC,
|
||||
ICE_VF_STATES_NBITS
|
||||
};
|
||||
|
||||
/* VF capabilities */
|
||||
enum ice_virtchnl_cap {
|
||||
ICE_VIRTCHNL_VF_CAP_PRIVILEGE = 0,
|
||||
};
|
||||
|
||||
struct ice_time_mac {
|
||||
unsigned long time_modified;
|
||||
u8 addr[ETH_ALEN];
|
||||
};
|
||||
|
||||
/* VF MDD events print structure */
|
||||
struct ice_mdd_vf_events {
|
||||
u16 count; /* total count of Rx|Tx events */
|
||||
/* count number of the last printed event */
|
||||
u16 last_printed;
|
||||
};
|
||||
|
||||
struct ice_vf;
|
||||
|
||||
struct ice_virtchnl_ops {
|
||||
int (*get_ver_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*get_vf_res_msg)(struct ice_vf *vf, u8 *msg);
|
||||
void (*reset_vf)(struct ice_vf *vf);
|
||||
int (*add_mac_addr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*del_mac_addr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*cfg_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*dis_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*request_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*cfg_irq_map_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*config_rss_key)(struct ice_vf *vf, u8 *msg);
|
||||
int (*config_rss_lut)(struct ice_vf *vf, u8 *msg);
|
||||
int (*get_stats_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*cfg_promiscuous_mode_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*add_vlan_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*remove_vlan_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_vlan_stripping)(struct ice_vf *vf);
|
||||
int (*dis_vlan_stripping)(struct ice_vf *vf);
|
||||
int (*handle_rss_cfg_msg)(struct ice_vf *vf, u8 *msg, bool add);
|
||||
int (*add_fdir_fltr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*del_fdir_fltr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*get_offload_vlan_v2_caps)(struct ice_vf *vf);
|
||||
int (*add_vlan_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*remove_vlan_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_vlan_stripping_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*dis_vlan_stripping_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_vlan_insertion_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*dis_vlan_insertion_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
};
|
||||
|
||||
/* Virtchnl/SR-IOV config info */
|
||||
struct ice_vfs {
|
||||
DECLARE_HASHTABLE(table, 8); /* table of VF entries */
|
||||
struct mutex table_lock; /* Lock for protecting the hash table */
|
||||
u16 num_supported; /* max supported VFs on this PF */
|
||||
u16 num_qps_per; /* number of queue pairs per VF */
|
||||
u16 num_msix_per; /* number of MSI-X vectors per VF */
|
||||
unsigned long last_printed_mdd_jiffies; /* MDD message rate limit */
|
||||
DECLARE_BITMAP(malvfs, ICE_MAX_SRIOV_VFS); /* malicious VF indicator */
|
||||
};
|
||||
|
||||
/* VF information structure */
|
||||
struct ice_vf {
|
||||
struct hlist_node entry;
|
||||
struct rcu_head rcu;
|
||||
struct kref refcnt;
|
||||
struct ice_pf *pf;
|
||||
|
||||
/* Used during virtchnl message handling and NDO ops against the VF
|
||||
* that will trigger a VFR
|
||||
*/
|
||||
struct mutex cfg_lock;
|
||||
|
||||
u16 vf_id; /* VF ID in the PF space */
|
||||
u16 lan_vsi_idx; /* index into PF struct */
|
||||
u16 ctrl_vsi_idx;
|
||||
struct ice_vf_fdir fdir;
|
||||
/* first vector index of this VF in the PF space */
|
||||
int first_vector_idx;
|
||||
struct ice_sw *vf_sw_id; /* switch ID the VF VSIs connect to */
|
||||
struct virtchnl_version_info vf_ver;
|
||||
u32 driver_caps; /* reported by VF driver */
|
||||
struct virtchnl_ether_addr dev_lan_addr;
|
||||
struct virtchnl_ether_addr hw_lan_addr;
|
||||
struct ice_time_mac legacy_last_added_umac;
|
||||
DECLARE_BITMAP(txq_ena, ICE_MAX_RSS_QS_PER_VF);
|
||||
DECLARE_BITMAP(rxq_ena, ICE_MAX_RSS_QS_PER_VF);
|
||||
struct ice_vlan port_vlan_info; /* Port VLAN ID, QoS, and TPID */
|
||||
struct virtchnl_vlan_caps vlan_v2_caps;
|
||||
u8 pf_set_mac:1; /* VF MAC address set by VMM admin */
|
||||
u8 trusted:1;
|
||||
u8 spoofchk:1;
|
||||
u8 link_forced:1;
|
||||
u8 link_up:1; /* only valid if VF link is forced */
|
||||
/* VSI indices - actual VSI pointers are maintained in the PF structure
|
||||
* When assigned, these will be non-zero, because VSI 0 is always
|
||||
* the main LAN VSI for the PF.
|
||||
*/
|
||||
u16 lan_vsi_num; /* ID as used by firmware */
|
||||
unsigned int min_tx_rate; /* Minimum Tx bandwidth limit in Mbps */
|
||||
unsigned int max_tx_rate; /* Maximum Tx bandwidth limit in Mbps */
|
||||
DECLARE_BITMAP(vf_states, ICE_VF_STATES_NBITS); /* VF runtime states */
|
||||
|
||||
unsigned long vf_caps; /* VF's adv. capabilities */
|
||||
u8 num_req_qs; /* num of queue pairs requested by VF */
|
||||
u16 num_mac;
|
||||
u16 num_vf_qs; /* num of queue configured per VF */
|
||||
struct ice_mdd_vf_events mdd_rx_events;
|
||||
struct ice_mdd_vf_events mdd_tx_events;
|
||||
DECLARE_BITMAP(opcodes_allowlist, VIRTCHNL_OP_MAX);
|
||||
|
||||
struct ice_repr *repr;
|
||||
const struct ice_virtchnl_ops *virtchnl_ops;
|
||||
|
||||
/* devlink port data */
|
||||
struct devlink_port devlink_port;
|
||||
};
|
||||
|
||||
#ifdef CONFIG_PCI_IOV
|
||||
struct ice_vf *ice_get_vf_by_id(struct ice_pf *pf, u16 vf_id);
|
||||
void ice_put_vf(struct ice_vf *vf);
|
||||
bool ice_has_vfs(struct ice_pf *pf);
|
||||
u16 ice_get_num_vfs(struct ice_pf *pf);
|
||||
struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf);
|
||||
void ice_process_vflr_event(struct ice_pf *pf);
|
||||
int ice_sriov_configure(struct pci_dev *pdev, int num_vfs);
|
||||
int ice_set_vf_mac(struct net_device *netdev, int vf_id, u8 *mac);
|
||||
@ -221,13 +34,6 @@ ice_get_vf_cfg(struct net_device *netdev, int vf_id, struct ifla_vf_info *ivi);
|
||||
|
||||
void ice_free_vfs(struct ice_pf *pf);
|
||||
void ice_vc_process_vf_msg(struct ice_pf *pf, struct ice_rq_event_info *event);
|
||||
void ice_vc_notify_link_state(struct ice_pf *pf);
|
||||
void ice_vc_notify_reset(struct ice_pf *pf);
|
||||
void ice_vc_notify_vf_link_state(struct ice_vf *vf);
|
||||
void ice_virtchnl_set_repr_ops(struct ice_vf *vf);
|
||||
void ice_virtchnl_set_dflt_ops(struct ice_vf *vf);
|
||||
bool ice_reset_all_vfs(struct ice_pf *pf, bool is_vflr);
|
||||
bool ice_reset_vf(struct ice_vf *vf, bool is_vflr);
|
||||
void ice_restore_all_vfs_msi_state(struct pci_dev *pdev);
|
||||
bool
|
||||
ice_is_malicious_vf(struct ice_pf *pf, struct ice_rq_event_info *event,
|
||||
@ -245,82 +51,30 @@ int ice_set_vf_trust(struct net_device *netdev, int vf_id, bool trusted);
|
||||
|
||||
int ice_set_vf_link_state(struct net_device *netdev, int vf_id, int link_state);
|
||||
|
||||
int ice_check_vf_ready_for_cfg(struct ice_vf *vf);
|
||||
|
||||
bool ice_is_vf_disabled(struct ice_vf *vf);
|
||||
|
||||
int ice_set_vf_spoofchk(struct net_device *netdev, int vf_id, bool ena);
|
||||
|
||||
int ice_calc_vf_reg_idx(struct ice_vf *vf, struct ice_q_vector *q_vector);
|
||||
|
||||
void ice_set_vf_state_qs_dis(struct ice_vf *vf);
|
||||
int
|
||||
ice_get_vf_stats(struct net_device *netdev, int vf_id,
|
||||
struct ifla_vf_stats *vf_stats);
|
||||
bool ice_is_any_vf_in_promisc(struct ice_pf *pf);
|
||||
void
|
||||
ice_vf_lan_overflow_event(struct ice_pf *pf, struct ice_rq_event_info *event);
|
||||
void ice_print_vfs_mdd_events(struct ice_pf *pf);
|
||||
void ice_print_vf_rx_mdd_event(struct ice_vf *vf);
|
||||
bool
|
||||
ice_vc_validate_pattern(struct ice_vf *vf, struct virtchnl_proto_hdrs *proto);
|
||||
struct ice_vsi *ice_vf_ctrl_vsi_setup(struct ice_vf *vf);
|
||||
int
|
||||
ice_vc_send_msg_to_vf(struct ice_vf *vf, u32 v_opcode,
|
||||
enum virtchnl_status_code v_retval, u8 *msg, u16 msglen);
|
||||
bool ice_vc_isvalid_vsi_id(struct ice_vf *vf, u16 vsi_id);
|
||||
bool ice_vf_is_port_vlan_ena(struct ice_vf *vf);
|
||||
#else /* CONFIG_PCI_IOV */
|
||||
static inline struct ice_vf *ice_get_vf_by_id(struct ice_pf *pf, u16 vf_id)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline void ice_put_vf(struct ice_vf *vf)
|
||||
{
|
||||
}
|
||||
|
||||
static inline bool ice_has_vfs(struct ice_pf *pf)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
static inline u16 ice_get_num_vfs(struct ice_pf *pf)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline void ice_process_vflr_event(struct ice_pf *pf) { }
|
||||
static inline void ice_free_vfs(struct ice_pf *pf) { }
|
||||
static inline
|
||||
void ice_vc_process_vf_msg(struct ice_pf *pf, struct ice_rq_event_info *event) { }
|
||||
static inline void ice_vc_notify_link_state(struct ice_pf *pf) { }
|
||||
static inline void ice_vc_notify_reset(struct ice_pf *pf) { }
|
||||
static inline void ice_vc_notify_vf_link_state(struct ice_vf *vf) { }
|
||||
static inline void ice_virtchnl_set_repr_ops(struct ice_vf *vf) { }
|
||||
static inline void ice_virtchnl_set_dflt_ops(struct ice_vf *vf) { }
|
||||
static inline void ice_set_vf_state_qs_dis(struct ice_vf *vf) { }
|
||||
static inline
|
||||
void ice_vf_lan_overflow_event(struct ice_pf *pf, struct ice_rq_event_info *event) { }
|
||||
static inline void ice_print_vfs_mdd_events(struct ice_pf *pf) { }
|
||||
static inline void ice_print_vf_rx_mdd_event(struct ice_vf *vf) { }
|
||||
static inline void ice_restore_all_vfs_msi_state(struct pci_dev *pdev) { }
|
||||
|
||||
static inline int ice_check_vf_ready_for_cfg(struct ice_vf *vf)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
static inline bool ice_is_vf_disabled(struct ice_vf *vf)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static inline struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline bool
|
||||
ice_is_malicious_vf(struct ice_pf __always_unused *pf,
|
||||
struct ice_rq_event_info __always_unused *event,
|
||||
@ -330,19 +84,6 @@ ice_is_malicious_vf(struct ice_pf __always_unused *pf,
|
||||
return false;
|
||||
}
|
||||
|
||||
static inline bool
|
||||
ice_reset_all_vfs(struct ice_pf __always_unused *pf,
|
||||
bool __always_unused is_vflr)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static inline bool
|
||||
ice_reset_vf(struct ice_vf __always_unused *vf, bool __always_unused is_vflr)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static inline int
|
||||
ice_sriov_configure(struct pci_dev __always_unused *pdev,
|
||||
int __always_unused num_vfs)
|
||||
@ -416,15 +157,5 @@ ice_get_vf_stats(struct net_device __always_unused *netdev,
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
static inline bool ice_is_any_vf_in_promisc(struct ice_pf __always_unused *pf)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
static inline bool ice_vf_is_port_vlan_ena(struct ice_vf __always_unused *vf)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
#endif /* CONFIG_PCI_IOV */
|
||||
#endif /* _ICE_SRIOV_H_ */
|
||||
|
1029
drivers/net/ethernet/intel/ice/ice_vf_lib.c
Normal file
1029
drivers/net/ethernet/intel/ice/ice_vf_lib.c
Normal file
File diff suppressed because it is too large
Load Diff
290
drivers/net/ethernet/intel/ice/ice_vf_lib.h
Normal file
290
drivers/net/ethernet/intel/ice/ice_vf_lib.h
Normal file
@ -0,0 +1,290 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/* Copyright (C) 2018-2021, Intel Corporation. */
|
||||
|
||||
#ifndef _ICE_VF_LIB_H_
|
||||
#define _ICE_VF_LIB_H_
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <linux/hashtable.h>
|
||||
#include <linux/bitmap.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/pci.h>
|
||||
#include <net/devlink.h>
|
||||
#include <linux/avf/virtchnl.h>
|
||||
#include "ice_type.h"
|
||||
#include "ice_virtchnl_fdir.h"
|
||||
#include "ice_vsi_vlan_ops.h"
|
||||
|
||||
#define ICE_MAX_SRIOV_VFS 256
|
||||
|
||||
/* VF resource constraints */
|
||||
#define ICE_MAX_RSS_QS_PER_VF 16
|
||||
|
||||
struct ice_pf;
|
||||
struct ice_vf;
|
||||
struct ice_virtchnl_ops;
|
||||
|
||||
/* VF capabilities */
|
||||
enum ice_virtchnl_cap {
|
||||
ICE_VIRTCHNL_VF_CAP_PRIVILEGE = 0,
|
||||
};
|
||||
|
||||
/* Specific VF states */
|
||||
enum ice_vf_states {
|
||||
ICE_VF_STATE_INIT = 0, /* PF is initializing VF */
|
||||
ICE_VF_STATE_ACTIVE, /* VF resources are allocated for use */
|
||||
ICE_VF_STATE_QS_ENA, /* VF queue(s) enabled */
|
||||
ICE_VF_STATE_DIS,
|
||||
ICE_VF_STATE_MC_PROMISC,
|
||||
ICE_VF_STATE_UC_PROMISC,
|
||||
ICE_VF_STATES_NBITS
|
||||
};
|
||||
|
||||
struct ice_time_mac {
|
||||
unsigned long time_modified;
|
||||
u8 addr[ETH_ALEN];
|
||||
};
|
||||
|
||||
/* VF MDD events print structure */
|
||||
struct ice_mdd_vf_events {
|
||||
u16 count; /* total count of Rx|Tx events */
|
||||
/* count number of the last printed event */
|
||||
u16 last_printed;
|
||||
};
|
||||
|
||||
/* VF operations */
|
||||
struct ice_vf_ops {
|
||||
enum ice_disq_rst_src reset_type;
|
||||
void (*free)(struct ice_vf *vf);
|
||||
void (*clear_mbx_register)(struct ice_vf *vf);
|
||||
void (*trigger_reset_register)(struct ice_vf *vf, bool is_vflr);
|
||||
bool (*poll_reset_status)(struct ice_vf *vf);
|
||||
void (*clear_reset_trigger)(struct ice_vf *vf);
|
||||
int (*vsi_rebuild)(struct ice_vf *vf);
|
||||
void (*post_vsi_rebuild)(struct ice_vf *vf);
|
||||
};
|
||||
|
||||
/* Virtchnl/SR-IOV config info */
|
||||
struct ice_vfs {
|
||||
DECLARE_HASHTABLE(table, 8); /* table of VF entries */
|
||||
struct mutex table_lock; /* Lock for protecting the hash table */
|
||||
u16 num_supported; /* max supported VFs on this PF */
|
||||
u16 num_qps_per; /* number of queue pairs per VF */
|
||||
u16 num_msix_per; /* number of MSI-X vectors per VF */
|
||||
unsigned long last_printed_mdd_jiffies; /* MDD message rate limit */
|
||||
DECLARE_BITMAP(malvfs, ICE_MAX_SRIOV_VFS); /* malicious VF indicator */
|
||||
};
|
||||
|
||||
/* VF information structure */
|
||||
struct ice_vf {
|
||||
struct hlist_node entry;
|
||||
struct rcu_head rcu;
|
||||
struct kref refcnt;
|
||||
struct ice_pf *pf;
|
||||
|
||||
/* Used during virtchnl message handling and NDO ops against the VF
|
||||
* that will trigger a VFR
|
||||
*/
|
||||
struct mutex cfg_lock;
|
||||
|
||||
u16 vf_id; /* VF ID in the PF space */
|
||||
u16 lan_vsi_idx; /* index into PF struct */
|
||||
u16 ctrl_vsi_idx;
|
||||
struct ice_vf_fdir fdir;
|
||||
/* first vector index of this VF in the PF space */
|
||||
int first_vector_idx;
|
||||
struct ice_sw *vf_sw_id; /* switch ID the VF VSIs connect to */
|
||||
struct virtchnl_version_info vf_ver;
|
||||
u32 driver_caps; /* reported by VF driver */
|
||||
struct virtchnl_ether_addr dev_lan_addr;
|
||||
struct virtchnl_ether_addr hw_lan_addr;
|
||||
struct ice_time_mac legacy_last_added_umac;
|
||||
DECLARE_BITMAP(txq_ena, ICE_MAX_RSS_QS_PER_VF);
|
||||
DECLARE_BITMAP(rxq_ena, ICE_MAX_RSS_QS_PER_VF);
|
||||
struct ice_vlan port_vlan_info; /* Port VLAN ID, QoS, and TPID */
|
||||
struct virtchnl_vlan_caps vlan_v2_caps;
|
||||
u8 pf_set_mac:1; /* VF MAC address set by VMM admin */
|
||||
u8 trusted:1;
|
||||
u8 spoofchk:1;
|
||||
u8 link_forced:1;
|
||||
u8 link_up:1; /* only valid if VF link is forced */
|
||||
/* VSI indices - actual VSI pointers are maintained in the PF structure
|
||||
* When assigned, these will be non-zero, because VSI 0 is always
|
||||
* the main LAN VSI for the PF.
|
||||
*/
|
||||
u16 lan_vsi_num; /* ID as used by firmware */
|
||||
unsigned int min_tx_rate; /* Minimum Tx bandwidth limit in Mbps */
|
||||
unsigned int max_tx_rate; /* Maximum Tx bandwidth limit in Mbps */
|
||||
DECLARE_BITMAP(vf_states, ICE_VF_STATES_NBITS); /* VF runtime states */
|
||||
|
||||
unsigned long vf_caps; /* VF's adv. capabilities */
|
||||
u8 num_req_qs; /* num of queue pairs requested by VF */
|
||||
u16 num_mac;
|
||||
u16 num_vf_qs; /* num of queue configured per VF */
|
||||
struct ice_mdd_vf_events mdd_rx_events;
|
||||
struct ice_mdd_vf_events mdd_tx_events;
|
||||
DECLARE_BITMAP(opcodes_allowlist, VIRTCHNL_OP_MAX);
|
||||
|
||||
struct ice_repr *repr;
|
||||
const struct ice_virtchnl_ops *virtchnl_ops;
|
||||
const struct ice_vf_ops *vf_ops;
|
||||
|
||||
/* devlink port data */
|
||||
struct devlink_port devlink_port;
|
||||
};
|
||||
|
||||
/* Flags for controlling behavior of ice_reset_vf */
|
||||
enum ice_vf_reset_flags {
|
||||
ICE_VF_RESET_VFLR = BIT(0), /* Indicate a VFLR reset */
|
||||
ICE_VF_RESET_NOTIFY = BIT(1), /* Notify VF prior to reset */
|
||||
ICE_VF_RESET_LOCK = BIT(2), /* Acquire the VF cfg_lock */
|
||||
};
|
||||
|
||||
static inline u16 ice_vf_get_port_vlan_id(struct ice_vf *vf)
|
||||
{
|
||||
return vf->port_vlan_info.vid;
|
||||
}
|
||||
|
||||
static inline u8 ice_vf_get_port_vlan_prio(struct ice_vf *vf)
|
||||
{
|
||||
return vf->port_vlan_info.prio;
|
||||
}
|
||||
|
||||
static inline bool ice_vf_is_port_vlan_ena(struct ice_vf *vf)
|
||||
{
|
||||
return (ice_vf_get_port_vlan_id(vf) || ice_vf_get_port_vlan_prio(vf));
|
||||
}
|
||||
|
||||
static inline u16 ice_vf_get_port_vlan_tpid(struct ice_vf *vf)
|
||||
{
|
||||
return vf->port_vlan_info.tpid;
|
||||
}
|
||||
|
||||
/* VF Hash Table access functions
|
||||
*
|
||||
* These functions provide abstraction for interacting with the VF hash table.
|
||||
* In general, direct access to the hash table should be avoided outside of
|
||||
* these functions where possible.
|
||||
*
|
||||
* The VF entries in the hash table are protected by reference counting to
|
||||
* track lifetime of accesses from the table. The ice_get_vf_by_id() function
|
||||
* obtains a reference to the VF structure which must be dropped by using
|
||||
* ice_put_vf().
|
||||
*/
|
||||
|
||||
/**
|
||||
* ice_for_each_vf - Iterate over each VF entry
|
||||
* @pf: pointer to the PF private structure
|
||||
* @bkt: bucket index used for iteration
|
||||
* @vf: pointer to the VF entry currently being processed in the loop.
|
||||
*
|
||||
* The bkt variable is an unsigned integer iterator used to traverse the VF
|
||||
* entries. It is *not* guaranteed to be the VF's vf_id. Do not assume it is.
|
||||
* Use vf->vf_id to get the id number if needed.
|
||||
*
|
||||
* The caller is expected to be under the table_lock mutex for the entire
|
||||
* loop. Use this iterator if your loop is long or if it might sleep.
|
||||
*/
|
||||
#define ice_for_each_vf(pf, bkt, vf) \
|
||||
hash_for_each((pf)->vfs.table, (bkt), (vf), entry)
|
||||
|
||||
/**
|
||||
* ice_for_each_vf_rcu - Iterate over each VF entry protected by RCU
|
||||
* @pf: pointer to the PF private structure
|
||||
* @bkt: bucket index used for iteration
|
||||
* @vf: pointer to the VF entry currently being processed in the loop.
|
||||
*
|
||||
* The bkt variable is an unsigned integer iterator used to traverse the VF
|
||||
* entries. It is *not* guaranteed to be the VF's vf_id. Do not assume it is.
|
||||
* Use vf->vf_id to get the id number if needed.
|
||||
*
|
||||
* The caller is expected to be under rcu_read_lock() for the entire loop.
|
||||
* Only use this iterator if your loop is short and you can guarantee it does
|
||||
* not sleep.
|
||||
*/
|
||||
#define ice_for_each_vf_rcu(pf, bkt, vf) \
|
||||
hash_for_each_rcu((pf)->vfs.table, (bkt), (vf), entry)
|
||||
|
||||
#ifdef CONFIG_PCI_IOV
|
||||
struct ice_vf *ice_get_vf_by_id(struct ice_pf *pf, u16 vf_id);
|
||||
void ice_put_vf(struct ice_vf *vf);
|
||||
bool ice_has_vfs(struct ice_pf *pf);
|
||||
u16 ice_get_num_vfs(struct ice_pf *pf);
|
||||
struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf);
|
||||
bool ice_is_vf_disabled(struct ice_vf *vf);
|
||||
int ice_check_vf_ready_for_cfg(struct ice_vf *vf);
|
||||
void ice_set_vf_state_qs_dis(struct ice_vf *vf);
|
||||
bool ice_is_any_vf_in_promisc(struct ice_pf *pf);
|
||||
int
|
||||
ice_vf_set_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m);
|
||||
int
|
||||
ice_vf_clear_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m);
|
||||
int ice_reset_vf(struct ice_vf *vf, u32 flags);
|
||||
void ice_reset_all_vfs(struct ice_pf *pf);
|
||||
#else /* CONFIG_PCI_IOV */
|
||||
static inline struct ice_vf *ice_get_vf_by_id(struct ice_pf *pf, u16 vf_id)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline void ice_put_vf(struct ice_vf *vf)
|
||||
{
|
||||
}
|
||||
|
||||
static inline bool ice_has_vfs(struct ice_pf *pf)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
static inline u16 ice_get_num_vfs(struct ice_pf *pf)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline struct ice_vsi *ice_get_vf_vsi(struct ice_vf *vf)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static inline bool ice_is_vf_disabled(struct ice_vf *vf)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static inline int ice_check_vf_ready_for_cfg(struct ice_vf *vf)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
static inline void ice_set_vf_state_qs_dis(struct ice_vf *vf)
|
||||
{
|
||||
}
|
||||
|
||||
static inline bool ice_is_any_vf_in_promisc(struct ice_pf *pf)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
static inline int
|
||||
ice_vf_set_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
static inline int
|
||||
ice_vf_clear_vsi_promisc(struct ice_vf *vf, struct ice_vsi *vsi, u8 promisc_m)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
static inline int ice_reset_vf(struct ice_vf *vf, u32 flags)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline void ice_reset_all_vfs(struct ice_pf *pf)
|
||||
{
|
||||
}
|
||||
#endif /* !CONFIG_PCI_IOV */
|
||||
|
||||
#endif /* _ICE_VF_LIB_H_ */
|
40
drivers/net/ethernet/intel/ice/ice_vf_lib_private.h
Normal file
40
drivers/net/ethernet/intel/ice/ice_vf_lib_private.h
Normal file
@ -0,0 +1,40 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/* Copyright (C) 2018-2021, Intel Corporation. */
|
||||
|
||||
#ifndef _ICE_VF_LIB_PRIVATE_H_
|
||||
#define _ICE_VF_LIB_PRIVATE_H_
|
||||
|
||||
#include "ice_vf_lib.h"
|
||||
|
||||
/* This header file is for exposing functions in ice_vf_lib.c to other files
|
||||
* which are also conditionally compiled depending on CONFIG_PCI_IOV.
|
||||
* Functions which may be used by other files should be exposed as part of
|
||||
* ice_vf_lib.h
|
||||
*
|
||||
* Functions in this file are exposed only when CONFIG_PCI_IOV is enabled, and
|
||||
* thus this header must not be included by .c files which may be compiled
|
||||
* with CONFIG_PCI_IOV disabled.
|
||||
*
|
||||
* To avoid this, only include this header file directly within .c files that
|
||||
* are conditionally enabled in the "ice-$(CONFIG_PCI_IOV)" block.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_PCI_IOV
|
||||
#warning "Only include ice_vf_lib_private.h in CONFIG_PCI_IOV virtualization files"
|
||||
#endif
|
||||
|
||||
void ice_dis_vf_qs(struct ice_vf *vf);
|
||||
int ice_check_vf_init(struct ice_vf *vf);
|
||||
struct ice_port_info *ice_vf_get_port_info(struct ice_vf *vf);
|
||||
int ice_vsi_apply_spoofchk(struct ice_vsi *vsi, bool enable);
|
||||
bool ice_is_vf_trusted(struct ice_vf *vf);
|
||||
bool ice_vf_has_no_qs_ena(struct ice_vf *vf);
|
||||
bool ice_is_vf_link_up(struct ice_vf *vf);
|
||||
void ice_vf_rebuild_host_cfg(struct ice_vf *vf);
|
||||
void ice_vf_ctrl_invalidate_vsi(struct ice_vf *vf);
|
||||
void ice_vf_ctrl_vsi_release(struct ice_vf *vf);
|
||||
struct ice_vsi *ice_vf_ctrl_vsi_setup(struct ice_vf *vf);
|
||||
void ice_vf_invalidate_vsi(struct ice_vf *vf);
|
||||
void ice_vf_set_initialized(struct ice_vf *vf);
|
||||
|
||||
#endif /* _ICE_VF_LIB_PRIVATE_H_ */
|
3785
drivers/net/ethernet/intel/ice/ice_virtchnl.c
Normal file
3785
drivers/net/ethernet/intel/ice/ice_virtchnl.c
Normal file
File diff suppressed because it is too large
Load Diff
82
drivers/net/ethernet/intel/ice/ice_virtchnl.h
Normal file
82
drivers/net/ethernet/intel/ice/ice_virtchnl.h
Normal file
@ -0,0 +1,82 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/* Copyright (C) 2022, Intel Corporation. */
|
||||
|
||||
#ifndef _ICE_VIRTCHNL_H_
|
||||
#define _ICE_VIRTCHNL_H_
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <linux/bitops.h>
|
||||
#include <linux/if_ether.h>
|
||||
#include <linux/avf/virtchnl.h>
|
||||
#include "ice_vf_lib.h"
|
||||
|
||||
/* Restrict number of MAC Addr and VLAN that non-trusted VF can programmed */
|
||||
#define ICE_MAX_VLAN_PER_VF 8
|
||||
|
||||
/* MAC filters: 1 is reserved for the VF's default/perm_addr/LAA MAC, 1 for
|
||||
* broadcast, and 16 for additional unicast/multicast filters
|
||||
*/
|
||||
#define ICE_MAX_MACADDR_PER_VF 18
|
||||
|
||||
struct ice_virtchnl_ops {
|
||||
int (*get_ver_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*get_vf_res_msg)(struct ice_vf *vf, u8 *msg);
|
||||
void (*reset_vf)(struct ice_vf *vf);
|
||||
int (*add_mac_addr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*del_mac_addr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*cfg_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*dis_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*request_qs_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*cfg_irq_map_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*config_rss_key)(struct ice_vf *vf, u8 *msg);
|
||||
int (*config_rss_lut)(struct ice_vf *vf, u8 *msg);
|
||||
int (*get_stats_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*cfg_promiscuous_mode_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*add_vlan_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*remove_vlan_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_vlan_stripping)(struct ice_vf *vf);
|
||||
int (*dis_vlan_stripping)(struct ice_vf *vf);
|
||||
int (*handle_rss_cfg_msg)(struct ice_vf *vf, u8 *msg, bool add);
|
||||
int (*add_fdir_fltr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*del_fdir_fltr_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*get_offload_vlan_v2_caps)(struct ice_vf *vf);
|
||||
int (*add_vlan_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*remove_vlan_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_vlan_stripping_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*dis_vlan_stripping_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*ena_vlan_insertion_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
int (*dis_vlan_insertion_v2_msg)(struct ice_vf *vf, u8 *msg);
|
||||
};
|
||||
|
||||
#ifdef CONFIG_PCI_IOV
|
||||
void ice_virtchnl_set_dflt_ops(struct ice_vf *vf);
|
||||
void ice_virtchnl_set_repr_ops(struct ice_vf *vf);
|
||||
void ice_vc_notify_vf_link_state(struct ice_vf *vf);
|
||||
void ice_vc_notify_link_state(struct ice_pf *pf);
|
||||
void ice_vc_notify_reset(struct ice_pf *pf);
|
||||
int
|
||||
ice_vc_send_msg_to_vf(struct ice_vf *vf, u32 v_opcode,
|
||||
enum virtchnl_status_code v_retval, u8 *msg, u16 msglen);
|
||||
bool ice_vc_isvalid_vsi_id(struct ice_vf *vf, u16 vsi_id);
|
||||
#else /* CONFIG_PCI_IOV */
|
||||
static inline void ice_virtchnl_set_dflt_ops(struct ice_vf *vf) { }
|
||||
static inline void ice_virtchnl_set_repr_ops(struct ice_vf *vf) { }
|
||||
static inline void ice_vc_notify_vf_link_state(struct ice_vf *vf) { }
|
||||
static inline void ice_vc_notify_link_state(struct ice_pf *pf) { }
|
||||
static inline void ice_vc_notify_reset(struct ice_pf *pf) { }
|
||||
|
||||
static inline int
|
||||
ice_vc_send_msg_to_vf(struct ice_vf *vf, u32 v_opcode,
|
||||
enum virtchnl_status_code v_retval, u8 *msg, u16 msglen)
|
||||
{
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
static inline bool ice_vc_isvalid_vsi_id(struct ice_vf *vf, u16 vsi_id)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
#endif /* !CONFIG_PCI_IOV */
|
||||
|
||||
#endif /* _ICE_VIRTCHNL_H_ */
|
@ -5,6 +5,7 @@
|
||||
#include "ice_base.h"
|
||||
#include "ice_lib.h"
|
||||
#include "ice_flow.h"
|
||||
#include "ice_vf_lib_private.h"
|
||||
|
||||
#define to_fltr_conf_from_desc(p) \
|
||||
container_of(p, struct virtchnl_fdir_fltr_conf, input)
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
struct ice_vf;
|
||||
struct ice_pf;
|
||||
struct ice_vsi;
|
||||
|
||||
enum ice_fdir_ctx_stat {
|
||||
ICE_FDIR_CTX_READY,
|
||||
|
Loading…
x
Reference in New Issue
Block a user