1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Copyright (c) 2015 - 2025 Beijing WangXun Technology Co., Ltd. */ 3 4 #ifndef _WX_SRIOV_H_ 5 #define _WX_SRIOV_H_ 6 7 #define WX_VF_ENABLE_CHECK(_m) FIELD_GET(BIT(31), (_m)) 8 #define WX_VF_NUM_GET(_m) FIELD_GET(GENMASK(5, 0), (_m)) 9 #define WX_VF_ENABLE BIT(31) 10 11 void wx_disable_sriov(struct wx *wx); 12 int wx_pci_sriov_configure(struct pci_dev *pdev, int num_vfs); 13 void wx_msg_task(struct wx *wx); 14 void wx_disable_vf_rx_tx(struct wx *wx); 15 void wx_ping_all_vfs_with_link_status(struct wx *wx, bool link_up); 16 void wx_set_all_vfs(struct wx *wx); 17 18 #endif /* _WX_SRIOV_H_ */ 19