5566a3e358
Replace the BSD license header with the SPDX tag for files with only an Intel copyright on them. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
35 lines
959 B
C
35 lines
959 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2010-2017 Intel Corporation
|
|
*/
|
|
|
|
#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
|
|
|
|
struct virtchnl_vlan_offload_info {
|
|
uint16_t vsi_id;
|
|
uint8_t enable_vlan_strip;
|
|
uint8_t reserved;
|
|
};
|
|
|
|
/*
|
|
* 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))
|
|
|
|
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,
|
|
uint32_t retval,
|
|
uint8_t *msg, uint16_t msglen);
|
|
int i40e_pf_host_init(struct rte_eth_dev *dev);
|
|
int i40e_pf_host_uninit(struct rte_eth_dev *dev);
|
|
void i40e_notify_vf_link_status(struct rte_eth_dev *dev,
|
|
struct i40e_pf_vf *vf);
|
|
|
|
#endif /* _I40E_PF_H_ */
|