linux/drivers/net/ethernet/wangxun/libwx/wx_sriov.h
Mengyuan Lou a9843689e2 net: txgbe: add sriov function support
Add sriov_configure for driver ops.
Add mailbox handler wx_msg_task for txgbe.

Signed-off-by: Mengyuan Lou <mengyuanlou@net-swift.com>
Link: https://patch.msgid.link/ECDC57CF4F2316B9+20250408091556.9640-7-mengyuanlou@net-swift.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2025-04-09 19:29:06 -07:00

18 lines
643 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2015 - 2025 Beijing WangXun Technology Co., Ltd. */
#ifndef _WX_SRIOV_H_
#define _WX_SRIOV_H_
#define WX_VF_ENABLE_CHECK(_m) FIELD_GET(BIT(31), (_m))
#define WX_VF_NUM_GET(_m) FIELD_GET(GENMASK(5, 0), (_m))
#define WX_VF_ENABLE BIT(31)
void wx_disable_sriov(struct wx *wx);
int wx_pci_sriov_configure(struct pci_dev *pdev, int num_vfs);
void wx_msg_task(struct wx *wx);
void wx_disable_vf_rx_tx(struct wx *wx);
void wx_ping_all_vfs_with_link_status(struct wx *wx, bool link_up);
void wx_set_all_vfs(struct wx *wx);
#endif /* _WX_SRIOV_H_ */