Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 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 | |
| 10 | #ifndef EF10_SRIOV_H |
| 11 | #define EF10_SRIOV_H |
| 12 | |
| 13 | #include "net_driver.h" |
| 14 | |
Shradha Shah | 3c5eb87 | 2015-05-06 00:58:31 +0100 | [diff] [blame] | 15 | /** |
| 16 | * struct ef10_vf - PF's store of VF data |
Shradha Shah | f1122a3 | 2015-05-20 11:09:46 +0100 | [diff] [blame] | 17 | * @efx: efx_nic struct for the current VF |
Daniel Pieczko | 6598dad | 2015-06-02 11:41:00 +0100 | [diff] [blame] | 18 | * @pci_dev: the pci_dev struct for the VF, retained while the VF is assigned |
Shradha Shah | 3c5eb87 | 2015-05-06 00:58:31 +0100 | [diff] [blame] | 19 | * @vport_id: vport ID for the VF |
| 20 | * @vport_assigned: record whether the vport is currently assigned to the VF |
| 21 | * @mac: MAC address for the VF, zero when address is removed from the vport |
Shradha Shah | 2d432f2 | 2015-05-20 11:11:54 +0100 | [diff] [blame] | 22 | * @vlan: Default VLAN for the VF or #EFX_EF10_NO_VLAN |
Shradha Shah | 3c5eb87 | 2015-05-06 00:58:31 +0100 | [diff] [blame] | 23 | */ |
| 24 | struct ef10_vf { |
Shradha Shah | f1122a3 | 2015-05-20 11:09:46 +0100 | [diff] [blame] | 25 | struct efx_nic *efx; |
Daniel Pieczko | 6598dad | 2015-06-02 11:41:00 +0100 | [diff] [blame] | 26 | struct pci_dev *pci_dev; |
Shradha Shah | 3c5eb87 | 2015-05-06 00:58:31 +0100 | [diff] [blame] | 27 | unsigned int vport_id; |
| 28 | unsigned int vport_assigned; |
| 29 | u8 mac[ETH_ALEN]; |
Shradha Shah | 2d432f2 | 2015-05-20 11:11:54 +0100 | [diff] [blame] | 30 | u16 vlan; |
| 31 | #define EFX_EF10_NO_VLAN 0 |
Shradha Shah | 3c5eb87 | 2015-05-06 00:58:31 +0100 | [diff] [blame] | 32 | }; |
| 33 | |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 34 | static inline bool efx_ef10_sriov_wanted(struct efx_nic *efx) |
| 35 | { |
| 36 | return false; |
| 37 | } |
| 38 | |
Shradha Shah | 834e23d | 2015-05-06 00:55:58 +0100 | [diff] [blame] | 39 | int efx_ef10_sriov_configure(struct efx_nic *efx, int num_vfs); |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 40 | int efx_ef10_sriov_init(struct efx_nic *efx); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 41 | static inline void efx_ef10_sriov_reset(struct efx_nic *efx) {} |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 42 | void efx_ef10_sriov_fini(struct efx_nic *efx); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 43 | static inline void efx_ef10_sriov_flr(struct efx_nic *efx, unsigned vf_i) {} |
| 44 | |
Shradha Shah | e340be9 | 2015-05-20 11:11:03 +0100 | [diff] [blame] | 45 | int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, u8 *mac); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 46 | |
Shradha Shah | 2d432f2 | 2015-05-20 11:11:54 +0100 | [diff] [blame] | 47 | int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i, |
| 48 | u16 vlan, u8 qos); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 49 | |
Shradha Shah | 860d2ff | 2015-05-20 11:12:30 +0100 | [diff] [blame] | 50 | int efx_ef10_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf, |
| 51 | bool spoofchk); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 52 | |
Shradha Shah | b9af904 | 2015-05-20 11:11:18 +0100 | [diff] [blame] | 53 | int efx_ef10_sriov_get_vf_config(struct efx_nic *efx, int vf_i, |
| 54 | struct ifla_vf_info *ivf); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 55 | |
Edward Cree | 4392dc6 | 2015-05-20 11:12:13 +0100 | [diff] [blame] | 56 | int efx_ef10_sriov_set_vf_link_state(struct efx_nic *efx, int vf_i, |
| 57 | int link_state); |
| 58 | |
Shradha Shah | 7b8c7b5 | 2015-05-06 00:58:54 +0100 | [diff] [blame] | 59 | int efx_ef10_vswitching_probe_pf(struct efx_nic *efx); |
| 60 | int efx_ef10_vswitching_probe_vf(struct efx_nic *efx); |
| 61 | int efx_ef10_vswitching_restore_pf(struct efx_nic *efx); |
| 62 | int efx_ef10_vswitching_restore_vf(struct efx_nic *efx); |
| 63 | void efx_ef10_vswitching_remove_pf(struct efx_nic *efx); |
| 64 | void efx_ef10_vswitching_remove_vf(struct efx_nic *efx); |
Daniel Pieczko | 7a186f4 | 2015-07-07 11:37:19 +0100 | [diff] [blame] | 65 | int efx_ef10_vport_add_mac(struct efx_nic *efx, |
| 66 | unsigned int port_id, u8 *mac); |
| 67 | int efx_ef10_vport_del_mac(struct efx_nic *efx, |
| 68 | unsigned int port_id, u8 *mac); |
| 69 | int efx_ef10_vadaptor_alloc(struct efx_nic *efx, unsigned int port_id); |
Andrew Rybchenko | 38d27f3 | 2016-06-15 17:52:08 +0100 | [diff] [blame] | 70 | int efx_ef10_vadaptor_query(struct efx_nic *efx, unsigned int port_id, |
| 71 | u32 *port_flags, u32 *vadaptor_flags, |
| 72 | unsigned int *vlan_tags); |
Daniel Pieczko | 7a186f4 | 2015-07-07 11:37:19 +0100 | [diff] [blame] | 73 | int efx_ef10_vadaptor_free(struct efx_nic *efx, unsigned int port_id); |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 74 | |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 75 | #endif /* EF10_SRIOV_H */ |