ef10_sriov.h 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/****************************************************************************
 * Driver for Solarflare network controllers and boards
 * Copyright 2015 Solarflare Communications Inc.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published
 * by the Free Software Foundation, incorporated herein by reference.
 */

#ifndef EF10_SRIOV_H
#define EF10_SRIOV_H

#include "net_driver.h"

15 16
/**
 * struct ef10_vf - PF's store of VF data
17
 * @efx: efx_nic struct for the current VF
18
 * @pci_dev: the pci_dev struct for the VF, retained while the VF is assigned
19 20 21
 * @vport_id: vport ID for the VF
 * @vport_assigned: record whether the vport is currently assigned to the VF
 * @mac: MAC address for the VF, zero when address is removed from the vport
22
 * @vlan: Default VLAN for the VF or #EFX_EF10_NO_VLAN
23 24
 */
struct ef10_vf {
25
	struct efx_nic *efx;
26
	struct pci_dev *pci_dev;
27 28 29
	unsigned int vport_id;
	unsigned int vport_assigned;
	u8 mac[ETH_ALEN];
30 31
	u16 vlan;
#define EFX_EF10_NO_VLAN       0
32 33
};

34 35 36 37 38
static inline bool efx_ef10_sriov_wanted(struct efx_nic *efx)
{
	return false;
}

39
int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs);
40
int efx_ef10_sriov_init(struct efx_nic *efx);
41
static inline void efx_ef10_sriov_reset(struct efx_nic *efx) {}
42
void efx_ef10_sriov_fini(struct efx_nic *efx);
43 44
static inline void efx_ef10_sriov_flr(struct efx_nic *efx, unsigned vf_i) {}

45
int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, u8 *mac);
46

47 48
int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i,
			       u16 vlan, u8 qos);
49

50 51
int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf,
				   bool spoofchk);
52

53 54
int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i,
				 struct ifla_vf_info *ivf);
55

56 57 58
int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i,
				     int link_state);

59 60 61 62 63 64
int efx_ef10_vswitching_probe_pf(struct efx_nic *efx);
int efx_ef10_vswitching_probe_vf(struct efx_nic *efx);
int efx_ef10_vswitching_restore_pf(struct efx_nic *efx);
int efx_ef10_vswitching_restore_vf(struct efx_nic *efx);
void efx_ef10_vswitching_remove_pf(struct efx_nic *efx);
void efx_ef10_vswitching_remove_vf(struct efx_nic *efx);
65 66 67 68 69
int efx_ef10_vport_add_mac(struct efx_nic *efx,
			   unsigned int port_id, u8 *mac);
int efx_ef10_vport_del_mac(struct efx_nic *efx,
			   unsigned int port_id, u8 *mac);
int efx_ef10_vadaptor_alloc(struct efx_nic *efx, unsigned int port_id);
70 71 72
int efx_ef10_vadaptor_query(struct efx_nic *efx, unsigned int port_id,
			    u32 *port_flags, u32 *vadaptor_flags,
			    unsigned int *vlan_tags);
73
int efx_ef10_vadaptor_free(struct efx_nic *efx, unsigned int port_id);
74

75
#endif /* EF10_SRIOV_H */