mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

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>
18 lines
643 B
C
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_ */
|