Merge tag 'rust-fixes-6.12' of https://github.com/Rust-for-Linux/linux
[linux-block.git] / drivers / net / ethernet / sfc / ef10_sriov.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
7fa8d547
SS
2/****************************************************************************
3 * Driver for Solarflare network controllers and boards
4 * Copyright 2015 Solarflare Communications Inc.
7fa8d547
SS
5 */
6
7#ifndef EF10_SRIOV_H
8#define EF10_SRIOV_H
9
10#include "net_driver.h"
11
3c5eb876
SS
12/**
13 * struct ef10_vf - PF's store of VF data
f1122a34 14 * @efx: efx_nic struct for the current VF
6598dad2 15 * @pci_dev: the pci_dev struct for the VF, retained while the VF is assigned
3c5eb876
SS
16 * @vport_id: vport ID for the VF
17 * @vport_assigned: record whether the vport is currently assigned to the VF
18 * @mac: MAC address for the VF, zero when address is removed from the vport
2d432f20 19 * @vlan: Default VLAN for the VF or #EFX_EF10_NO_VLAN
3c5eb876
SS
20 */
21struct ef10_vf {
f1122a34 22 struct efx_nic *efx;
6598dad2 23 struct pci_dev *pci_dev;
3c5eb876
SS
24 unsigned int vport_id;
25 unsigned int vport_assigned;
26 u8 mac[ETH_ALEN];
2d432f20
SS
27 u16 vlan;
28#define EFX_EF10_NO_VLAN 0
3c5eb876
SS
29};
30
7fa8d547
SS
31static inline bool efx_ef10_sriov_wanted(struct efx_nic *efx)
32{
33 return false;
34}
35
834e23dd 36int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs);
02246a7f 37int efx_ef10_sriov_init(struct efx_nic *efx);
02246a7f 38void efx_ef10_sriov_fini(struct efx_nic *efx);
7fa8d547 39
76660757 40int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, const u8 *mac);
7fa8d547 41
2d432f20
SS
42int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i,
43 u16 vlan, u8 qos);
7fa8d547 44
860d2ffa
SS
45int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf,
46 bool spoofchk);
7fa8d547 47
b9af9049
SS
48int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i,
49 struct ifla_vf_info *ivf);
7fa8d547 50
4392dc69
EC
51int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i,
52 int link_state);
53
7b8c7b54
SS
54int efx_ef10_vswitching_probe_pf(struct efx_nic *efx);
55int efx_ef10_vswitching_probe_vf(struct efx_nic *efx);
56int efx_ef10_vswitching_restore_pf(struct efx_nic *efx);
57int efx_ef10_vswitching_restore_vf(struct efx_nic *efx);
58void efx_ef10_vswitching_remove_pf(struct efx_nic *efx);
59void efx_ef10_vswitching_remove_vf(struct efx_nic *efx);
7a186f47 60int efx_ef10_vport_add_mac(struct efx_nic *efx,
76660757 61 unsigned int port_id, const u8 *mac);
7a186f47 62int efx_ef10_vport_del_mac(struct efx_nic *efx,
76660757 63 unsigned int port_id, const u8 *mac);
7a186f47 64int efx_ef10_vadaptor_alloc(struct efx_nic *efx, unsigned int port_id);
38d27f38
AR
65int efx_ef10_vadaptor_query(struct efx_nic *efx, unsigned int port_id,
66 u32 *port_flags, u32 *vadaptor_flags,
67 unsigned int *vlan_tags);
7a186f47 68int efx_ef10_vadaptor_free(struct efx_nic *efx, unsigned int port_id);
6d8aaaf6 69
7fa8d547 70#endif /* EF10_SRIOV_H */