2017-12-19 15:49:01 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2017 Intel Corporation
|
2014-06-05 05:08:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _I40E_PF_H_
|
|
|
|
#define _I40E_PF_H_
|
|
|
|
|
|
|
|
/* Default setting on number of VSIs that VF can contain */
|
|
|
|
#define I40E_DEFAULT_VF_VSI_NUM 1
|
|
|
|
|
2018-01-10 13:02:03 +00:00
|
|
|
#define I40E_VIRTCHNL_OFFLOAD_CAPS ( \
|
|
|
|
VIRTCHNL_VF_OFFLOAD_L2 | \
|
|
|
|
VIRTCHNL_VF_OFFLOAD_VLAN | \
|
|
|
|
VIRTCHNL_VF_OFFLOAD_RSS_PF | \
|
|
|
|
VIRTCHNL_VF_OFFLOAD_RX_POLLING)
|
|
|
|
|
2017-06-27 13:29:02 +00:00
|
|
|
struct virtchnl_vlan_offload_info {
|
2014-06-20 10:24:43 +00:00
|
|
|
uint16_t vsi_id;
|
|
|
|
uint8_t enable_vlan_strip;
|
|
|
|
uint8_t reserved;
|
|
|
|
};
|
|
|
|
|
2014-11-06 12:53:48 +00:00
|
|
|
/*
|
|
|
|
* Macro to calculate the memory size for configuring VSI queues
|
|
|
|
* via virtual channel.
|
|
|
|
*/
|
|
|
|
#define I40E_VIRTCHNL_CONFIG_VSI_QUEUES_SIZE(x, n) \
|
|
|
|
(sizeof(*(x)) + sizeof((x)->qpair[0]) * (n))
|
|
|
|
|
2014-06-05 05:08:46 +00:00
|
|
|
int i40e_pf_host_vf_reset(struct i40e_pf_vf *vf, bool do_hw_reset);
|
|
|
|
void i40e_pf_host_handle_vf_msg(struct rte_eth_dev *dev,
|
|
|
|
uint16_t abs_vf_id, uint32_t opcode,
|
2017-05-12 10:33:03 +00:00
|
|
|
uint32_t retval,
|
2014-06-05 05:08:46 +00:00
|
|
|
uint8_t *msg, uint16_t msglen);
|
|
|
|
int i40e_pf_host_init(struct rte_eth_dev *dev);
|
2015-07-03 14:03:54 +00:00
|
|
|
int i40e_pf_host_uninit(struct rte_eth_dev *dev);
|
2017-01-17 08:45:03 +00:00
|
|
|
void i40e_notify_vf_link_status(struct rte_eth_dev *dev,
|
|
|
|
struct i40e_pf_vf *vf);
|
2014-06-05 05:08:46 +00:00
|
|
|
|
|
|
|
#endif /* _I40E_PF_H_ */
|