ef10_sriov.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /****************************************************************************
  2. * Driver for Solarflare network controllers and boards
  3. * Copyright 2015 Solarflare Communications Inc.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 as published
  7. * by the Free Software Foundation, incorporated herein by reference.
  8. */
  9. #ifndef EF10_SRIOV_H
  10. #define EF10_SRIOV_H
  11. #include "net_driver.h"
  12. /**
  13. * struct ef10_vf - PF's store of VF data
  14. * @efx: efx_nic struct for the current VF
  15. * @pci_dev: the pci_dev struct for the VF, retained while the VF is assigned
  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
  19. * @vlan: Default VLAN for the VF or #EFX_EF10_NO_VLAN
  20. */
  21. struct ef10_vf {
  22. struct efx_nic *efx;
  23. struct pci_dev *pci_dev;
  24. unsigned int vport_id;
  25. unsigned int vport_assigned;
  26. u8 mac[ETH_ALEN];
  27. u16 vlan;
  28. #define EFX_EF10_NO_VLAN 0
  29. };
  30. static inline bool efx_ef10_sriov_wanted(struct efx_nic *efx)
  31. {
  32. return false;
  33. }
  34. int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs);
  35. int efx_ef10_sriov_init(struct efx_nic *efx);
  36. static inline void efx_ef10_sriov_reset(struct efx_nic *efx) {}
  37. void efx_ef10_sriov_fini(struct efx_nic *efx);
  38. static inline void efx_ef10_sriov_flr(struct efx_nic *efx, unsigned vf_i) {}
  39. int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, u8 *mac);
  40. int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i,
  41. u16 vlan, u8 qos);
  42. int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf,
  43. bool spoofchk);
  44. int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i,
  45. struct ifla_vf_info *ivf);
  46. int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i,
  47. int link_state);
  48. int efx_ef10_sriov_get_phys_port_id(struct efx_nic *efx,
  49. struct netdev_phys_item_id *ppid);
  50. int efx_ef10_vswitching_probe_pf(struct efx_nic *efx);
  51. int efx_ef10_vswitching_probe_vf(struct efx_nic *efx);
  52. int efx_ef10_vswitching_restore_pf(struct efx_nic *efx);
  53. int efx_ef10_vswitching_restore_vf(struct efx_nic *efx);
  54. void efx_ef10_vswitching_remove_pf(struct efx_nic *efx);
  55. void efx_ef10_vswitching_remove_vf(struct efx_nic *efx);
  56. int efx_ef10_vport_add_mac(struct efx_nic *efx,
  57. unsigned int port_id, u8 *mac);
  58. int efx_ef10_vport_del_mac(struct efx_nic *efx,
  59. unsigned int port_id, u8 *mac);
  60. int efx_ef10_vadaptor_alloc(struct efx_nic *efx, unsigned int port_id);
  61. int efx_ef10_vadaptor_free(struct efx_nic *efx, unsigned int port_id);
  62. #endif /* EF10_SRIOV_H */