ef10_sriov.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /****************************************************************************
  3. * Driver for Solarflare network controllers and boards
  4. * Copyright 2015 Solarflare Communications Inc.
  5. */
  6. #ifndef EF10_SRIOV_H
  7. #define EF10_SRIOV_H
  8. #include "net_driver.h"
  9. /**
  10. * struct ef10_vf - PF's store of VF data
  11. * @efx: efx_nic struct for the current VF
  12. * @pci_dev: the pci_dev struct for the VF, retained while the VF is assigned
  13. * @vport_id: vport ID for the VF
  14. * @vport_assigned: record whether the vport is currently assigned to the VF
  15. * @mac: MAC address for the VF, zero when address is removed from the vport
  16. * @vlan: Default VLAN for the VF or #EFX_EF10_NO_VLAN
  17. */
  18. struct ef10_vf {
  19. struct efx_nic *efx;
  20. struct pci_dev *pci_dev;
  21. unsigned int vport_id;
  22. unsigned int vport_assigned;
  23. u8 mac[ETH_ALEN];
  24. u16 vlan;
  25. #define EFX_EF10_NO_VLAN 0
  26. };
  27. static inline bool efx_ef10_sriov_wanted(struct efx_nic *efx)
  28. {
  29. return false;
  30. }
  31. int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs);
  32. int efx_ef10_sriov_init(struct efx_nic *efx);
  33. void efx_ef10_sriov_fini(struct efx_nic *efx);
  34. int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, const u8 *mac);
  35. int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i,
  36. u16 vlan, u8 qos);
  37. int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf,
  38. bool spoofchk);
  39. int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i,
  40. struct ifla_vf_info *ivf);
  41. int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i,
  42. int link_state);
  43. int efx_ef10_vswitching_probe_pf(struct efx_nic *efx);
  44. int efx_ef10_vswitching_probe_vf(struct efx_nic *efx);
  45. int efx_ef10_vswitching_restore_pf(struct efx_nic *efx);
  46. int efx_ef10_vswitching_restore_vf(struct efx_nic *efx);
  47. void efx_ef10_vswitching_remove_pf(struct efx_nic *efx);
  48. void efx_ef10_vswitching_remove_vf(struct efx_nic *efx);
  49. int efx_ef10_vport_add_mac(struct efx_nic *efx,
  50. unsigned int port_id, const u8 *mac);
  51. int efx_ef10_vport_del_mac(struct efx_nic *efx,
  52. unsigned int port_id, const u8 *mac);
  53. int efx_ef10_vadaptor_alloc(struct efx_nic *efx, unsigned int port_id);
  54. int efx_ef10_vadaptor_query(struct efx_nic *efx, unsigned int port_id,
  55. u32 *port_flags, u32 *vadaptor_flags,
  56. unsigned int *vlan_tags);
  57. int efx_ef10_vadaptor_free(struct efx_nic *efx, unsigned int port_id);
  58. #endif /* EF10_SRIOV_H */