ef10_sriov.h 2.1 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 17 18 19 20 21 22 23 24 25 26
/**
 * struct ef10_vf - PF's store of VF data
 * @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
 */
struct ef10_vf {
	unsigned int vport_id;
	unsigned int vport_assigned;
	u8 mac[ETH_ALEN];
};

27 28 29 30 31
static inline bool efx_ef10_sriov_wanted(struct efx_nic *efx)
{
	return false;
}

32
int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs);
33
int efx_ef10_sriov_init(struct efx_nic *efx);
34 35 36 37
static inline int efx_ef10_sriov_mac_address_changed(struct efx_nic *efx)
{
	return -EOPNOTSUPP;
}
38
static inline void efx_ef10_sriov_reset(struct efx_nic *efx) {}
39
void efx_ef10_sriov_fini(struct efx_nic *efx);
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
static inline void efx_ef10_sriov_flr(struct efx_nic *efx, unsigned vf_i) {}

static inline int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf,
					    u8 *mac)
{
	return -EOPNOTSUPP;
}

static inline int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf,
					     u16 vlan, u8 qos)
{
	return -EOPNOTSUPP;
}

static inline int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf,
						 bool spoofchk)
{
	return -EOPNOTSUPP;
}

static inline int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf,
					       struct ifla_vf_info *ivf)
{
	return -EOPNOTSUPP;
}

66 67 68 69 70 71
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);
72

73
#endif /* EF10_SRIOV_H */