bnxt_sriov.h 920 B

12345678910111213141516171819202122232425
  1. /* Broadcom NetXtreme-C/E network driver.
  2. *
  3. * Copyright (c) 2014-2016 Broadcom Corporation
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation.
  8. */
  9. #ifndef BNXT_SRIOV_H
  10. #define BNXT_SRIOV_H
  11. int bnxt_get_vf_config(struct net_device *, int, struct ifla_vf_info *);
  12. int bnxt_set_vf_mac(struct net_device *, int, u8 *);
  13. int bnxt_set_vf_vlan(struct net_device *, int, u16, u8, __be16);
  14. int bnxt_set_vf_bw(struct net_device *, int, int, int);
  15. int bnxt_set_vf_link_state(struct net_device *, int, int);
  16. int bnxt_set_vf_spoofchk(struct net_device *, int, bool);
  17. int bnxt_sriov_configure(struct pci_dev *pdev, int num_vfs);
  18. void bnxt_sriov_disable(struct bnxt *);
  19. void bnxt_hwrm_exec_fwd_req(struct bnxt *);
  20. void bnxt_update_vf_mac(struct bnxt *);
  21. int bnxt_approve_mac(struct bnxt *, u8 *);
  22. #endif