Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Don Skidmore | 9497182 | 2012-01-06 03:24:16 +0000 | [diff] [blame] | 4 | Copyright(c) 1999 - 2012 Intel Corporation. |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 5 | |
| 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Contact Information: |
| 23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 25 | |
| 26 | *******************************************************************************/ |
| 27 | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 28 | #include <linux/types.h> |
| 29 | #include <linux/module.h> |
| 30 | #include <linux/pci.h> |
| 31 | #include <linux/netdevice.h> |
| 32 | #include <linux/vmalloc.h> |
| 33 | #include <linux/string.h> |
| 34 | #include <linux/in.h> |
| 35 | #include <linux/ip.h> |
| 36 | #include <linux/tcp.h> |
| 37 | #include <linux/ipv6.h> |
| 38 | #ifdef NETIF_F_HW_VLAN_TX |
| 39 | #include <linux/if_vlan.h> |
| 40 | #endif |
| 41 | |
| 42 | #include "ixgbe.h" |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 43 | #include "ixgbe_type.h" |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 44 | #include "ixgbe_sriov.h" |
| 45 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 46 | #ifdef CONFIG_PCI_IOV |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 47 | void ixgbe_enable_sriov(struct ixgbe_adapter *adapter, |
| 48 | const struct ixgbe_info *ii) |
| 49 | { |
| 50 | struct ixgbe_hw *hw = &adapter->hw; |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 51 | int num_vf_macvlans, i; |
| 52 | struct vf_macvlans *mv_list; |
| 53 | int pre_existing_vfs = 0; |
| 54 | |
Alexander Duyck | 9297127 | 2012-05-23 02:58:40 +0000 | [diff] [blame] | 55 | pre_existing_vfs = pci_num_vf(adapter->pdev); |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 56 | if (!pre_existing_vfs && !adapter->num_vfs) |
| 57 | return; |
| 58 | |
| 59 | /* If there are pre-existing VFs then we have to force |
| 60 | * use of that many because they were not deleted the last |
| 61 | * time someone removed the PF driver. That would have |
| 62 | * been because they were allocated to guest VMs and can't |
| 63 | * be removed. Go ahead and just re-enable the old amount. |
| 64 | * If the user wants to change the number of VFs they can |
| 65 | * use ethtool while making sure no VFs are allocated to |
| 66 | * guest VMs... i.e. the right way. |
| 67 | */ |
| 68 | if (pre_existing_vfs) { |
| 69 | adapter->num_vfs = pre_existing_vfs; |
| 70 | dev_warn(&adapter->pdev->dev, "Virtual Functions already " |
| 71 | "enabled for this device - Please reload all " |
| 72 | "VF drivers to avoid spoofed packet errors\n"); |
| 73 | } else { |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 74 | int err; |
| 75 | /* |
| 76 | * The 82599 supports up to 64 VFs per physical function |
| 77 | * but this implementation limits allocation to 63 so that |
| 78 | * basic networking resources are still available to the |
| 79 | * physical function. If the user requests greater thn |
| 80 | * 63 VFs then it is an error - reset to default of zero. |
| 81 | */ |
| 82 | adapter->num_vfs = min_t(unsigned int, adapter->num_vfs, 63); |
| 83 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 84 | err = pci_enable_sriov(adapter->pdev, adapter->num_vfs); |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 85 | if (err) { |
| 86 | e_err(probe, "Failed to enable PCI sriov: %d\n", err); |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 87 | adapter->num_vfs = 0; |
| 88 | return; |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 89 | } |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 90 | } |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 91 | |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 92 | adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED; |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 93 | e_info(probe, "SR-IOV enabled with %d VFs\n", adapter->num_vfs); |
| 94 | |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 95 | /* Enable VMDq flag so device will be set in VM mode */ |
| 96 | adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED; |
| 97 | if (!adapter->ring_feature[RING_F_VMDQ].limit) |
| 98 | adapter->ring_feature[RING_F_VMDQ].limit = 1; |
| 99 | adapter->ring_feature[RING_F_VMDQ].offset = adapter->num_vfs; |
| 100 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 101 | num_vf_macvlans = hw->mac.num_rar_entries - |
| 102 | (IXGBE_MAX_PF_MACVLANS + 1 + adapter->num_vfs); |
| 103 | |
| 104 | adapter->mv_list = mv_list = kcalloc(num_vf_macvlans, |
| 105 | sizeof(struct vf_macvlans), |
| 106 | GFP_KERNEL); |
| 107 | if (mv_list) { |
| 108 | /* Initialize list of VF macvlans */ |
| 109 | INIT_LIST_HEAD(&adapter->vf_mvs.l); |
| 110 | for (i = 0; i < num_vf_macvlans; i++) { |
| 111 | mv_list->vf = -1; |
| 112 | mv_list->free = true; |
| 113 | mv_list->rar_entry = hw->mac.num_rar_entries - |
| 114 | (i + adapter->num_vfs + 1); |
| 115 | list_add(&mv_list->l, &adapter->vf_mvs.l); |
| 116 | mv_list++; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | /* If call to enable VFs succeeded then allocate memory |
| 121 | * for per VF control structures. |
| 122 | */ |
| 123 | adapter->vfinfo = |
| 124 | kcalloc(adapter->num_vfs, |
| 125 | sizeof(struct vf_data_storage), GFP_KERNEL); |
| 126 | if (adapter->vfinfo) { |
| 127 | /* Now that we're sure SR-IOV is enabled |
| 128 | * and memory allocated set up the mailbox parameters |
| 129 | */ |
| 130 | ixgbe_init_mbx_params_pf(hw); |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 131 | memcpy(&hw->mbx.ops, ii->mbx_ops, sizeof(hw->mbx.ops)); |
| 132 | |
| 133 | /* limit trafffic classes based on VFs enabled */ |
| 134 | if ((adapter->hw.mac.type == ixgbe_mac_82599EB) && |
| 135 | (adapter->num_vfs < 16)) { |
| 136 | adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS; |
| 137 | adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS; |
| 138 | } else if (adapter->num_vfs < 32) { |
| 139 | adapter->dcb_cfg.num_tcs.pg_tcs = 4; |
| 140 | adapter->dcb_cfg.num_tcs.pfc_tcs = 4; |
| 141 | } else { |
| 142 | adapter->dcb_cfg.num_tcs.pg_tcs = 1; |
| 143 | adapter->dcb_cfg.num_tcs.pfc_tcs = 1; |
| 144 | } |
| 145 | |
| 146 | /* We do not support RSS w/ SR-IOV */ |
| 147 | adapter->ring_feature[RING_F_RSS].limit = 1; |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 148 | |
| 149 | /* Disable RSC when in SR-IOV mode */ |
| 150 | adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE | |
| 151 | IXGBE_FLAG2_RSC_ENABLED); |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 152 | |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 153 | /* enable spoof checking for all VFs */ |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 154 | for (i = 0; i < adapter->num_vfs; i++) |
| 155 | adapter->vfinfo[i].spoofchk_enabled = true; |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 156 | return; |
| 157 | } |
| 158 | |
| 159 | /* Oh oh */ |
| 160 | e_err(probe, "Unable to allocate memory for VF Data Storage - " |
| 161 | "SRIOV disabled\n"); |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 162 | ixgbe_disable_sriov(adapter); |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 163 | } |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 164 | |
Alexander Duyck | 9297127 | 2012-05-23 02:58:40 +0000 | [diff] [blame] | 165 | static bool ixgbe_vfs_are_assigned(struct ixgbe_adapter *adapter) |
| 166 | { |
| 167 | struct pci_dev *pdev = adapter->pdev; |
| 168 | struct pci_dev *vfdev; |
| 169 | int dev_id; |
| 170 | |
| 171 | switch (adapter->hw.mac.type) { |
| 172 | case ixgbe_mac_82599EB: |
| 173 | dev_id = IXGBE_DEV_ID_82599_VF; |
| 174 | break; |
| 175 | case ixgbe_mac_X540: |
| 176 | dev_id = IXGBE_DEV_ID_X540_VF; |
| 177 | break; |
| 178 | default: |
| 179 | return false; |
| 180 | } |
| 181 | |
| 182 | /* loop through all the VFs to see if we own any that are assigned */ |
| 183 | vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, dev_id, NULL); |
| 184 | while (vfdev) { |
| 185 | /* if we don't own it we don't care */ |
| 186 | if (vfdev->is_virtfn && vfdev->physfn == pdev) { |
| 187 | /* if it is assigned we cannot release it */ |
| 188 | if (vfdev->dev_flags & PCI_DEV_FLAGS_ASSIGNED) |
| 189 | return true; |
| 190 | } |
| 191 | |
| 192 | vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, dev_id, vfdev); |
| 193 | } |
| 194 | |
| 195 | return false; |
| 196 | } |
| 197 | |
| 198 | #endif /* #ifdef CONFIG_PCI_IOV */ |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 199 | void ixgbe_disable_sriov(struct ixgbe_adapter *adapter) |
| 200 | { |
| 201 | struct ixgbe_hw *hw = &adapter->hw; |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 202 | u32 gpie; |
| 203 | u32 vmdctl; |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 204 | |
Alexander Duyck | d773d13 | 2012-05-05 05:32:26 +0000 | [diff] [blame] | 205 | /* set num VFs to 0 to prevent access to vfinfo */ |
| 206 | adapter->num_vfs = 0; |
| 207 | |
| 208 | /* free VF control structures */ |
| 209 | kfree(adapter->vfinfo); |
| 210 | adapter->vfinfo = NULL; |
| 211 | |
| 212 | /* free macvlan list */ |
| 213 | kfree(adapter->mv_list); |
| 214 | adapter->mv_list = NULL; |
| 215 | |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 216 | /* if SR-IOV is already disabled then there is nothing to do */ |
| 217 | if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) |
| 218 | return; |
| 219 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 220 | #ifdef CONFIG_PCI_IOV |
Alexander Duyck | 9297127 | 2012-05-23 02:58:40 +0000 | [diff] [blame] | 221 | /* |
| 222 | * If our VFs are assigned we cannot shut down SR-IOV |
| 223 | * without causing issues, so just leave the hardware |
| 224 | * available but disabled |
| 225 | */ |
| 226 | if (ixgbe_vfs_are_assigned(adapter)) { |
| 227 | e_dev_warn("Unloading driver while VFs are assigned - VFs will not be deallocated\n"); |
| 228 | return; |
David S. Miller | d47e12d | 2012-07-22 12:36:41 -0700 | [diff] [blame] | 229 | } |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 230 | /* disable iov and allow time for transactions to clear */ |
| 231 | pci_disable_sriov(adapter->pdev); |
| 232 | #endif |
| 233 | |
| 234 | /* turn off device IOV mode */ |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 235 | IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0); |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 236 | gpie = IXGBE_READ_REG(hw, IXGBE_GPIE); |
| 237 | gpie &= ~IXGBE_GPIE_VTMODE_MASK; |
| 238 | IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie); |
| 239 | |
| 240 | /* set default pool back to 0 */ |
| 241 | vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL); |
| 242 | vmdctl &= ~IXGBE_VT_CTL_POOL_MASK; |
| 243 | IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl); |
| 244 | IXGBE_WRITE_FLUSH(hw); |
| 245 | |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 246 | /* Disable VMDq flag so device will be set in VM mode */ |
| 247 | if (adapter->ring_feature[RING_F_VMDQ].limit == 1) |
| 248 | adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED; |
| 249 | adapter->ring_feature[RING_F_VMDQ].offset = 0; |
| 250 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 251 | /* take a breather then clean up driver data */ |
| 252 | msleep(100); |
| 253 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 254 | adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED; |
| 255 | } |
| 256 | |
Emil Tantilov | 5d5b7c3 | 2010-10-12 22:20:59 +0000 | [diff] [blame] | 257 | static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter, |
| 258 | int entries, u16 *hash_list, u32 vf) |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 259 | { |
| 260 | struct vf_data_storage *vfinfo = &adapter->vfinfo[vf]; |
Greg Rose | 8a07a22 | 2010-05-05 19:57:30 +0000 | [diff] [blame] | 261 | struct ixgbe_hw *hw = &adapter->hw; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 262 | int i; |
Greg Rose | 8a07a22 | 2010-05-05 19:57:30 +0000 | [diff] [blame] | 263 | u32 vector_bit; |
| 264 | u32 vector_reg; |
| 265 | u32 mta_reg; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 266 | |
| 267 | /* only so many hash values supported */ |
| 268 | entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES); |
| 269 | |
| 270 | /* |
| 271 | * salt away the number of multi cast addresses assigned |
| 272 | * to this VF for later use to restore when the PF multi cast |
| 273 | * list changes |
| 274 | */ |
| 275 | vfinfo->num_vf_mc_hashes = entries; |
| 276 | |
| 277 | /* |
| 278 | * VFs are limited to using the MTA hash table for their multicast |
| 279 | * addresses |
| 280 | */ |
| 281 | for (i = 0; i < entries; i++) { |
Joe Perches | e81a1ba | 2010-11-14 17:04:33 +0000 | [diff] [blame] | 282 | vfinfo->vf_mc_hashes[i] = hash_list[i]; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Greg Rose | 8a07a22 | 2010-05-05 19:57:30 +0000 | [diff] [blame] | 285 | for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) { |
| 286 | vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F; |
| 287 | vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F; |
| 288 | mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg)); |
| 289 | mta_reg |= (1 << vector_bit); |
| 290 | IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg); |
| 291 | } |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 292 | |
| 293 | return 0; |
| 294 | } |
| 295 | |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 296 | static void ixgbe_restore_vf_macvlans(struct ixgbe_adapter *adapter) |
| 297 | { |
| 298 | struct ixgbe_hw *hw = &adapter->hw; |
| 299 | struct list_head *pos; |
| 300 | struct vf_macvlans *entry; |
| 301 | |
| 302 | list_for_each(pos, &adapter->vf_mvs.l) { |
| 303 | entry = list_entry(pos, struct vf_macvlans, l); |
Joe Perches | 23677ce | 2012-02-09 11:17:23 +0000 | [diff] [blame] | 304 | if (!entry->free) |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 305 | hw->mac.ops.set_rar(hw, entry->rar_entry, |
| 306 | entry->vf_macvlan, |
| 307 | entry->vf, IXGBE_RAH_AV); |
| 308 | } |
| 309 | } |
| 310 | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 311 | void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter) |
| 312 | { |
| 313 | struct ixgbe_hw *hw = &adapter->hw; |
| 314 | struct vf_data_storage *vfinfo; |
| 315 | int i, j; |
| 316 | u32 vector_bit; |
| 317 | u32 vector_reg; |
| 318 | u32 mta_reg; |
| 319 | |
| 320 | for (i = 0; i < adapter->num_vfs; i++) { |
| 321 | vfinfo = &adapter->vfinfo[i]; |
| 322 | for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) { |
| 323 | hw->addr_ctrl.mta_in_use++; |
| 324 | vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F; |
| 325 | vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F; |
| 326 | mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg)); |
| 327 | mta_reg |= (1 << vector_bit); |
| 328 | IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg); |
| 329 | } |
| 330 | } |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 331 | |
| 332 | /* Restore any VF macvlans */ |
| 333 | ixgbe_restore_vf_macvlans(adapter); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Emil Tantilov | 5d5b7c3 | 2010-10-12 22:20:59 +0000 | [diff] [blame] | 336 | static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid, |
| 337 | u32 vf) |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 338 | { |
Alexander Duyck | b35d4d4 | 2012-05-23 05:39:25 +0000 | [diff] [blame] | 339 | /* VLAN 0 is a special case, don't allow it to be removed */ |
| 340 | if (!vid && !add) |
| 341 | return 0; |
| 342 | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 343 | return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add); |
| 344 | } |
| 345 | |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 346 | static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf) |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 347 | { |
| 348 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 349 | int max_frame = msgbuf[1]; |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 350 | u32 max_frs; |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 351 | |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 352 | /* |
| 353 | * For 82599EB we have to keep all PFs and VFs operating with |
| 354 | * the same max_frame value in order to avoid sending an oversize |
| 355 | * frame to a VF. In order to guarantee this is handled correctly |
| 356 | * for all cases we have several special exceptions to take into |
| 357 | * account before we can enable the VF for receive |
| 358 | */ |
| 359 | if (adapter->hw.mac.type == ixgbe_mac_82599EB) { |
| 360 | struct net_device *dev = adapter->netdev; |
| 361 | int pf_max_frame = dev->mtu + ETH_HLEN; |
| 362 | u32 reg_offset, vf_shift, vfre; |
| 363 | s32 err = 0; |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 364 | |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 365 | #ifdef CONFIG_FCOE |
| 366 | if (dev->features & NETIF_F_FCOE_MTU) |
| 367 | pf_max_frame = max_t(int, pf_max_frame, |
| 368 | IXGBE_FCOE_JUMBO_FRAME_SIZE); |
| 369 | |
| 370 | #endif /* CONFIG_FCOE */ |
| 371 | /* |
| 372 | * If the PF or VF are running w/ jumbo frames enabled we |
| 373 | * need to shut down the VF Rx path as we cannot support |
| 374 | * jumbo frames on legacy VFs |
| 375 | */ |
| 376 | if ((pf_max_frame > ETH_FRAME_LEN) || |
| 377 | (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN))) |
| 378 | err = -EINVAL; |
| 379 | |
| 380 | /* determine VF receive enable location */ |
| 381 | vf_shift = vf % 32; |
| 382 | reg_offset = vf / 32; |
| 383 | |
| 384 | /* enable or disable receive depending on error */ |
| 385 | vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset)); |
| 386 | if (err) |
| 387 | vfre &= ~(1 << vf_shift); |
| 388 | else |
| 389 | vfre |= 1 << vf_shift; |
| 390 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre); |
| 391 | |
| 392 | if (err) { |
| 393 | e_err(drv, "VF max_frame %d out of range\n", max_frame); |
| 394 | return err; |
| 395 | } |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 396 | } |
| 397 | |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 398 | /* MTU < 68 is an error and causes problems on some kernels */ |
| 399 | if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) { |
| 400 | e_err(drv, "VF max_frame %d out of range\n", max_frame); |
| 401 | return -EINVAL; |
| 402 | } |
| 403 | |
| 404 | /* pull current max frame size from hardware */ |
| 405 | max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS); |
| 406 | max_frs &= IXGBE_MHADD_MFS_MASK; |
| 407 | max_frs >>= IXGBE_MHADD_MFS_SHIFT; |
| 408 | |
| 409 | if (max_frs < max_frame) { |
| 410 | max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT; |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 411 | IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs); |
| 412 | } |
| 413 | |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 414 | e_info(hw, "VF requests change max MTU to %d\n", max_frame); |
| 415 | |
| 416 | return 0; |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 417 | } |
| 418 | |
Emil Tantilov | 5d5b7c3 | 2010-10-12 22:20:59 +0000 | [diff] [blame] | 419 | static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe) |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 420 | { |
| 421 | u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf)); |
Greg Rose | f041277 | 2010-05-04 22:11:46 +0000 | [diff] [blame] | 422 | vmolr |= (IXGBE_VMOLR_ROMPE | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 423 | IXGBE_VMOLR_BAM); |
Greg Rose | f041277 | 2010-05-04 22:11:46 +0000 | [diff] [blame] | 424 | if (aupe) |
| 425 | vmolr |= IXGBE_VMOLR_AUPE; |
| 426 | else |
| 427 | vmolr &= ~IXGBE_VMOLR_AUPE; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 428 | IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr); |
| 429 | } |
| 430 | |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 431 | static void ixgbe_set_vmvir(struct ixgbe_adapter *adapter, u32 vid, u32 vf) |
| 432 | { |
| 433 | struct ixgbe_hw *hw = &adapter->hw; |
| 434 | |
| 435 | if (vid) |
| 436 | IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), |
| 437 | (vid | IXGBE_VMVIR_VLANA_DEFAULT)); |
| 438 | else |
| 439 | IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0); |
| 440 | } |
| 441 | |
Emil Tantilov | 5d5b7c3 | 2010-10-12 22:20:59 +0000 | [diff] [blame] | 442 | static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf) |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 443 | { |
| 444 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 445 | int rar_entry = hw->mac.num_rar_entries - (vf + 1); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 446 | |
| 447 | /* reset offloads to defaults */ |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 448 | if (adapter->vfinfo[vf].pf_vlan) { |
| 449 | ixgbe_set_vf_vlan(adapter, true, |
| 450 | adapter->vfinfo[vf].pf_vlan, vf); |
| 451 | ixgbe_set_vmvir(adapter, |
| 452 | (adapter->vfinfo[vf].pf_vlan | |
| 453 | (adapter->vfinfo[vf].pf_qos << |
| 454 | VLAN_PRIO_SHIFT)), vf); |
| 455 | ixgbe_set_vmolr(hw, vf, false); |
| 456 | } else { |
Alexander Duyck | b35d4d4 | 2012-05-23 05:39:25 +0000 | [diff] [blame] | 457 | ixgbe_set_vf_vlan(adapter, true, 0, vf); |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 458 | ixgbe_set_vmvir(adapter, 0, vf); |
| 459 | ixgbe_set_vmolr(hw, vf, true); |
| 460 | } |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 461 | |
| 462 | /* reset multicast table array for vf */ |
| 463 | adapter->vfinfo[vf].num_vf_mc_hashes = 0; |
| 464 | |
| 465 | /* Flush and reset the mta with the new values */ |
| 466 | ixgbe_set_rx_mode(adapter->netdev); |
| 467 | |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 468 | hw->mac.ops.clear_rar(hw, rar_entry); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 469 | } |
| 470 | |
Emil Tantilov | 5d5b7c3 | 2010-10-12 22:20:59 +0000 | [diff] [blame] | 471 | static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter, |
| 472 | int vf, unsigned char *mac_addr) |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 473 | { |
| 474 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 475 | int rar_entry = hw->mac.num_rar_entries - (vf + 1); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 476 | |
| 477 | memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, 6); |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 478 | hw->mac.ops.set_rar(hw, rar_entry, mac_addr, vf, IXGBE_RAH_AV); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 479 | |
| 480 | return 0; |
| 481 | } |
| 482 | |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 483 | static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter, |
| 484 | int vf, int index, unsigned char *mac_addr) |
| 485 | { |
| 486 | struct ixgbe_hw *hw = &adapter->hw; |
| 487 | struct list_head *pos; |
| 488 | struct vf_macvlans *entry; |
| 489 | |
| 490 | if (index <= 1) { |
| 491 | list_for_each(pos, &adapter->vf_mvs.l) { |
| 492 | entry = list_entry(pos, struct vf_macvlans, l); |
| 493 | if (entry->vf == vf) { |
| 494 | entry->vf = -1; |
| 495 | entry->free = true; |
| 496 | entry->is_macvlan = false; |
| 497 | hw->mac.ops.clear_rar(hw, entry->rar_entry); |
| 498 | } |
| 499 | } |
| 500 | } |
| 501 | |
| 502 | /* |
| 503 | * If index was zero then we were asked to clear the uc list |
| 504 | * for the VF. We're done. |
| 505 | */ |
| 506 | if (!index) |
| 507 | return 0; |
| 508 | |
| 509 | entry = NULL; |
| 510 | |
| 511 | list_for_each(pos, &adapter->vf_mvs.l) { |
| 512 | entry = list_entry(pos, struct vf_macvlans, l); |
| 513 | if (entry->free) |
| 514 | break; |
| 515 | } |
| 516 | |
| 517 | /* |
| 518 | * If we traversed the entire list and didn't find a free entry |
| 519 | * then we're out of space on the RAR table. Also entry may |
| 520 | * be NULL because the original memory allocation for the list |
| 521 | * failed, which is not fatal but does mean we can't support |
| 522 | * VF requests for MACVLAN because we couldn't allocate |
| 523 | * memory for the list management required. |
| 524 | */ |
| 525 | if (!entry || !entry->free) |
| 526 | return -ENOSPC; |
| 527 | |
| 528 | entry->free = false; |
| 529 | entry->is_macvlan = true; |
| 530 | entry->vf = vf; |
| 531 | memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN); |
| 532 | |
| 533 | hw->mac.ops.set_rar(hw, entry->rar_entry, mac_addr, vf, IXGBE_RAH_AV); |
| 534 | |
| 535 | return 0; |
| 536 | } |
| 537 | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 538 | int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask) |
| 539 | { |
| 540 | unsigned char vf_mac_addr[6]; |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 541 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 542 | unsigned int vfn = (event_mask & 0x3f); |
| 543 | |
| 544 | bool enable = ((event_mask & 0x10000000U) != 0); |
| 545 | |
| 546 | if (enable) { |
Joe Perches | 7efd26d | 2012-07-12 19:33:06 +0000 | [diff] [blame] | 547 | eth_random_addr(vf_mac_addr); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 548 | e_info(probe, "IOV: VF %d is enabled MAC %pM\n", |
| 549 | vfn, vf_mac_addr); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 550 | /* |
| 551 | * Store away the VF "permananet" MAC address, it will ask |
| 552 | * for it later. |
| 553 | */ |
| 554 | memcpy(adapter->vfinfo[vfn].vf_mac_addresses, vf_mac_addr, 6); |
| 555 | } |
| 556 | |
| 557 | return 0; |
| 558 | } |
| 559 | |
Emil Tantilov | 5d5b7c3 | 2010-10-12 22:20:59 +0000 | [diff] [blame] | 560 | static inline void ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf) |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 561 | { |
| 562 | struct ixgbe_hw *hw = &adapter->hw; |
| 563 | u32 reg; |
| 564 | u32 reg_offset, vf_shift; |
| 565 | |
| 566 | vf_shift = vf % 32; |
| 567 | reg_offset = vf / 32; |
| 568 | |
| 569 | /* enable transmit and receive for vf */ |
| 570 | reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset)); |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 571 | reg |= 1 << vf_shift; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 572 | IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg); |
| 573 | |
| 574 | reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset)); |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 575 | reg |= 1 << vf_shift; |
| 576 | /* |
| 577 | * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs. |
| 578 | * For more info take a look at ixgbe_set_vf_lpe |
| 579 | */ |
| 580 | if (adapter->hw.mac.type == ixgbe_mac_82599EB) { |
| 581 | struct net_device *dev = adapter->netdev; |
| 582 | int pf_max_frame = dev->mtu + ETH_HLEN; |
| 583 | |
| 584 | #ifdef CONFIG_FCOE |
| 585 | if (dev->features & NETIF_F_FCOE_MTU) |
| 586 | pf_max_frame = max_t(int, pf_max_frame, |
| 587 | IXGBE_FCOE_JUMBO_FRAME_SIZE); |
| 588 | |
| 589 | #endif /* CONFIG_FCOE */ |
| 590 | if (pf_max_frame > ETH_FRAME_LEN) |
| 591 | reg &= ~(1 << vf_shift); |
| 592 | } |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 593 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg); |
| 594 | |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 595 | /* Enable counting of spoofed packets in the SSVPC register */ |
| 596 | reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset)); |
| 597 | reg |= (1 << vf_shift); |
| 598 | IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg); |
| 599 | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 600 | ixgbe_vf_reset_event(adapter, vf); |
| 601 | } |
| 602 | |
| 603 | static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf) |
| 604 | { |
| 605 | u32 mbx_size = IXGBE_VFMAILBOX_SIZE; |
Emil Tantilov | c050999 | 2011-05-07 06:49:18 +0000 | [diff] [blame] | 606 | u32 msgbuf[IXGBE_VFMAILBOX_SIZE]; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 607 | struct ixgbe_hw *hw = &adapter->hw; |
| 608 | s32 retval; |
| 609 | int entries; |
| 610 | u16 *hash_list; |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 611 | int add, vid, index; |
Greg Rose | d3306c2 | 2010-11-18 03:03:23 +0000 | [diff] [blame] | 612 | u8 *new_mac; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 613 | |
| 614 | retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf); |
| 615 | |
Alexander Duyck | dcaccc8 | 2012-03-28 08:03:38 +0000 | [diff] [blame] | 616 | if (retval) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 617 | pr_err("Error receiving message from VF\n"); |
Alexander Duyck | dcaccc8 | 2012-03-28 08:03:38 +0000 | [diff] [blame] | 618 | return retval; |
| 619 | } |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 620 | |
| 621 | /* this is a message we already processed, do nothing */ |
| 622 | if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK)) |
| 623 | return retval; |
| 624 | |
Alexander Duyck | dcaccc8 | 2012-03-28 08:03:38 +0000 | [diff] [blame] | 625 | /* flush the ack before we write any messages back */ |
| 626 | IXGBE_WRITE_FLUSH(hw); |
| 627 | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 628 | /* |
| 629 | * until the vf completes a virtual function reset it should not be |
| 630 | * allowed to start any configuration. |
| 631 | */ |
| 632 | |
| 633 | if (msgbuf[0] == IXGBE_VF_RESET) { |
| 634 | unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses; |
Greg Rose | d3306c2 | 2010-11-18 03:03:23 +0000 | [diff] [blame] | 635 | new_mac = (u8 *)(&msgbuf[1]); |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 636 | e_info(probe, "VF Reset msg received from vf %d\n", vf); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 637 | adapter->vfinfo[vf].clear_to_send = false; |
| 638 | ixgbe_vf_reset_msg(adapter, vf); |
| 639 | adapter->vfinfo[vf].clear_to_send = true; |
| 640 | |
Greg Rose | d3306c2 | 2010-11-18 03:03:23 +0000 | [diff] [blame] | 641 | if (is_valid_ether_addr(new_mac) && |
| 642 | !adapter->vfinfo[vf].pf_set_mac) |
| 643 | ixgbe_set_vf_mac(adapter, vf, vf_mac); |
| 644 | else |
| 645 | ixgbe_set_vf_mac(adapter, |
| 646 | vf, adapter->vfinfo[vf].vf_mac_addresses); |
| 647 | |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 648 | /* reply to reset with ack and vf mac address */ |
| 649 | msgbuf[0] = IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_ACK; |
Joe Perches | ea99d83 | 2011-09-20 15:32:52 +0000 | [diff] [blame] | 650 | memcpy(new_mac, vf_mac, ETH_ALEN); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 651 | /* |
| 652 | * Piggyback the multicast filter type so VF can compute the |
| 653 | * correct vectors |
| 654 | */ |
| 655 | msgbuf[3] = hw->mac.mc_filter_type; |
| 656 | ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf); |
| 657 | |
| 658 | return retval; |
| 659 | } |
| 660 | |
| 661 | if (!adapter->vfinfo[vf].clear_to_send) { |
| 662 | msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK; |
| 663 | ixgbe_write_mbx(hw, msgbuf, 1, vf); |
| 664 | return retval; |
| 665 | } |
| 666 | |
| 667 | switch ((msgbuf[0] & 0xFFFF)) { |
| 668 | case IXGBE_VF_SET_MAC_ADDR: |
Greg Rose | d3306c2 | 2010-11-18 03:03:23 +0000 | [diff] [blame] | 669 | new_mac = ((u8 *)(&msgbuf[1])); |
| 670 | if (is_valid_ether_addr(new_mac) && |
| 671 | !adapter->vfinfo[vf].pf_set_mac) { |
| 672 | ixgbe_set_vf_mac(adapter, vf, new_mac); |
| 673 | } else if (memcmp(adapter->vfinfo[vf].vf_mac_addresses, |
| 674 | new_mac, ETH_ALEN)) { |
| 675 | e_warn(drv, "VF %d attempted to override " |
| 676 | "administratively set MAC address\nReload " |
| 677 | "the VF driver to resume operations\n", vf); |
| 678 | retval = -1; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 679 | } |
| 680 | break; |
| 681 | case IXGBE_VF_SET_MULTICAST: |
| 682 | entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) |
| 683 | >> IXGBE_VT_MSGINFO_SHIFT; |
| 684 | hash_list = (u16 *)&msgbuf[1]; |
| 685 | retval = ixgbe_set_vf_multicasts(adapter, entries, |
| 686 | hash_list, vf); |
| 687 | break; |
| 688 | case IXGBE_VF_SET_LPE: |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame^] | 689 | retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 690 | break; |
| 691 | case IXGBE_VF_SET_VLAN: |
| 692 | add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) |
| 693 | >> IXGBE_VT_MSGINFO_SHIFT; |
| 694 | vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK); |
Greg Rose | d3306c2 | 2010-11-18 03:03:23 +0000 | [diff] [blame] | 695 | if (adapter->vfinfo[vf].pf_vlan) { |
| 696 | e_warn(drv, "VF %d attempted to override " |
| 697 | "administratively set VLAN configuration\n" |
| 698 | "Reload the VF driver to resume operations\n", |
| 699 | vf); |
| 700 | retval = -1; |
| 701 | } else { |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 702 | if (add) |
| 703 | adapter->vfinfo[vf].vlan_count++; |
| 704 | else if (adapter->vfinfo[vf].vlan_count) |
| 705 | adapter->vfinfo[vf].vlan_count--; |
Greg Rose | d3306c2 | 2010-11-18 03:03:23 +0000 | [diff] [blame] | 706 | retval = ixgbe_set_vf_vlan(adapter, add, vid, vf); |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 707 | if (!retval && adapter->vfinfo[vf].spoofchk_enabled) |
| 708 | hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf); |
Greg Rose | d3306c2 | 2010-11-18 03:03:23 +0000 | [diff] [blame] | 709 | } |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 710 | break; |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 711 | case IXGBE_VF_SET_MACVLAN: |
Greg Rose | 44b82dd | 2012-04-21 00:54:28 +0000 | [diff] [blame] | 712 | index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> |
| 713 | IXGBE_VT_MSGINFO_SHIFT; |
| 714 | if (adapter->vfinfo[vf].pf_set_mac && index > 0) { |
Greg Rose | 2ee7065 | 2012-03-24 00:26:44 +0000 | [diff] [blame] | 715 | e_warn(drv, "VF %d requested MACVLAN filter but is " |
| 716 | "administratively denied\n", vf); |
| 717 | retval = -1; |
| 718 | break; |
| 719 | } |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 720 | /* |
| 721 | * If the VF is allowed to set MAC filters then turn off |
| 722 | * anti-spoofing to avoid false positives. An index |
| 723 | * greater than 0 will indicate the VF is setting a |
| 724 | * macvlan MAC filter. |
| 725 | */ |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 726 | if (index > 0 && adapter->vfinfo[vf].spoofchk_enabled) |
| 727 | ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false); |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 728 | retval = ixgbe_set_vf_macvlan(adapter, vf, index, |
| 729 | (unsigned char *)(&msgbuf[1])); |
Greg Rose | 68d6d4a | 2012-01-05 07:58:11 +0000 | [diff] [blame] | 730 | if (retval == -ENOSPC) |
| 731 | e_warn(drv, "VF %d has requested a MACVLAN filter " |
| 732 | "but there is no space for it\n", vf); |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 733 | break; |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 734 | default: |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 735 | e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]); |
Greg Rose | 1736727 | 2010-01-09 02:25:48 +0000 | [diff] [blame] | 736 | retval = IXGBE_ERR_MBX; |
| 737 | break; |
| 738 | } |
| 739 | |
| 740 | /* notify the VF of the results of what it sent us */ |
| 741 | if (retval) |
| 742 | msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK; |
| 743 | else |
| 744 | msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK; |
| 745 | |
| 746 | msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS; |
| 747 | |
| 748 | ixgbe_write_mbx(hw, msgbuf, 1, vf); |
| 749 | |
| 750 | return retval; |
| 751 | } |
| 752 | |
| 753 | static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf) |
| 754 | { |
| 755 | struct ixgbe_hw *hw = &adapter->hw; |
| 756 | u32 msg = IXGBE_VT_MSGTYPE_NACK; |
| 757 | |
| 758 | /* if device isn't clear to send it shouldn't be reading either */ |
| 759 | if (!adapter->vfinfo[vf].clear_to_send) |
| 760 | ixgbe_write_mbx(hw, &msg, 1, vf); |
| 761 | } |
| 762 | |
| 763 | void ixgbe_msg_task(struct ixgbe_adapter *adapter) |
| 764 | { |
| 765 | struct ixgbe_hw *hw = &adapter->hw; |
| 766 | u32 vf; |
| 767 | |
| 768 | for (vf = 0; vf < adapter->num_vfs; vf++) { |
| 769 | /* process any reset requests */ |
| 770 | if (!ixgbe_check_for_rst(hw, vf)) |
| 771 | ixgbe_vf_reset_event(adapter, vf); |
| 772 | |
| 773 | /* process any messages pending */ |
| 774 | if (!ixgbe_check_for_msg(hw, vf)) |
| 775 | ixgbe_rcv_msg_from_vf(adapter, vf); |
| 776 | |
| 777 | /* process any acks */ |
| 778 | if (!ixgbe_check_for_ack(hw, vf)) |
| 779 | ixgbe_rcv_ack_from_vf(adapter, vf); |
| 780 | } |
| 781 | } |
| 782 | |
Greg Rose | 767081a | 2010-01-22 22:46:40 +0000 | [diff] [blame] | 783 | void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter) |
| 784 | { |
| 785 | struct ixgbe_hw *hw = &adapter->hw; |
| 786 | |
| 787 | /* disable transmit and receive for all vfs */ |
| 788 | IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0); |
| 789 | IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0); |
| 790 | |
| 791 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0); |
| 792 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0); |
| 793 | } |
| 794 | |
| 795 | void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter) |
| 796 | { |
| 797 | struct ixgbe_hw *hw = &adapter->hw; |
| 798 | u32 ping; |
| 799 | int i; |
| 800 | |
| 801 | for (i = 0 ; i < adapter->num_vfs; i++) { |
| 802 | ping = IXGBE_PF_CONTROL_MSG; |
| 803 | if (adapter->vfinfo[i].clear_to_send) |
| 804 | ping |= IXGBE_VT_MSGTYPE_CTS; |
| 805 | ixgbe_write_mbx(hw, &ping, 1, i); |
| 806 | } |
| 807 | } |
| 808 | |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 809 | int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac) |
| 810 | { |
| 811 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 812 | if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs)) |
| 813 | return -EINVAL; |
| 814 | adapter->vfinfo[vf].pf_set_mac = true; |
| 815 | dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf); |
| 816 | dev_info(&adapter->pdev->dev, "Reload the VF driver to make this" |
| 817 | " change effective."); |
| 818 | if (test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 819 | dev_warn(&adapter->pdev->dev, "The VF MAC address has been set," |
| 820 | " but the PF device is not up.\n"); |
| 821 | dev_warn(&adapter->pdev->dev, "Bring the PF device up before" |
| 822 | " attempting to use the VF device.\n"); |
| 823 | } |
| 824 | return ixgbe_set_vf_mac(adapter, vf, mac); |
| 825 | } |
| 826 | |
| 827 | int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos) |
| 828 | { |
| 829 | int err = 0; |
| 830 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 831 | struct ixgbe_hw *hw = &adapter->hw; |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 832 | |
| 833 | if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7)) |
| 834 | return -EINVAL; |
| 835 | if (vlan || qos) { |
| 836 | err = ixgbe_set_vf_vlan(adapter, true, vlan, vf); |
| 837 | if (err) |
| 838 | goto out; |
| 839 | ixgbe_set_vmvir(adapter, vlan | (qos << VLAN_PRIO_SHIFT), vf); |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 840 | ixgbe_set_vmolr(hw, vf, false); |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 841 | if (adapter->vfinfo[vf].spoofchk_enabled) |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 842 | hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf); |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 843 | adapter->vfinfo[vf].vlan_count++; |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 844 | adapter->vfinfo[vf].pf_vlan = vlan; |
| 845 | adapter->vfinfo[vf].pf_qos = qos; |
| 846 | dev_info(&adapter->pdev->dev, |
| 847 | "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf); |
| 848 | if (test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 849 | dev_warn(&adapter->pdev->dev, |
| 850 | "The VF VLAN has been set," |
| 851 | " but the PF device is not up.\n"); |
| 852 | dev_warn(&adapter->pdev->dev, |
| 853 | "Bring the PF device up before" |
| 854 | " attempting to use the VF device.\n"); |
| 855 | } |
| 856 | } else { |
| 857 | err = ixgbe_set_vf_vlan(adapter, false, |
| 858 | adapter->vfinfo[vf].pf_vlan, vf); |
| 859 | ixgbe_set_vmvir(adapter, vlan, vf); |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 860 | ixgbe_set_vmolr(hw, vf, true); |
| 861 | hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf); |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 862 | if (adapter->vfinfo[vf].vlan_count) |
| 863 | adapter->vfinfo[vf].vlan_count--; |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 864 | adapter->vfinfo[vf].pf_vlan = 0; |
| 865 | adapter->vfinfo[vf].pf_qos = 0; |
| 866 | } |
| 867 | out: |
| 868 | return err; |
| 869 | } |
| 870 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 871 | static int ixgbe_link_mbps(struct ixgbe_adapter *adapter) |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 872 | { |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 873 | switch (adapter->link_speed) { |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 874 | case IXGBE_LINK_SPEED_100_FULL: |
| 875 | return 100; |
| 876 | case IXGBE_LINK_SPEED_1GB_FULL: |
| 877 | return 1000; |
| 878 | case IXGBE_LINK_SPEED_10GB_FULL: |
| 879 | return 10000; |
| 880 | default: |
| 881 | return 0; |
| 882 | } |
| 883 | } |
| 884 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 885 | static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf) |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 886 | { |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 887 | struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ]; |
| 888 | struct ixgbe_hw *hw = &adapter->hw; |
| 889 | u32 bcnrc_val = 0; |
| 890 | u16 queue, queues_per_pool; |
| 891 | u16 tx_rate = adapter->vfinfo[vf].tx_rate; |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 892 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 893 | if (tx_rate) { |
| 894 | /* start with base link speed value */ |
| 895 | bcnrc_val = adapter->vf_rate_link_speed; |
| 896 | |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 897 | /* Calculate the rate factor values to set */ |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 898 | bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT; |
| 899 | bcnrc_val /= tx_rate; |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 900 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 901 | /* clear everything but the rate factor */ |
| 902 | bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK | |
| 903 | IXGBE_RTTBCNRC_RF_DEC_MASK; |
| 904 | |
| 905 | /* enable the rate scheduler */ |
| 906 | bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA; |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 907 | } |
| 908 | |
Lior Levy | 7555e83 | 2011-06-25 00:09:08 -0700 | [diff] [blame] | 909 | /* |
| 910 | * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM |
| 911 | * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported |
| 912 | * and 0x004 otherwise. |
| 913 | */ |
| 914 | switch (hw->mac.type) { |
| 915 | case ixgbe_mac_82599EB: |
| 916 | IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4); |
| 917 | break; |
| 918 | case ixgbe_mac_X540: |
| 919 | IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14); |
| 920 | break; |
| 921 | default: |
| 922 | break; |
| 923 | } |
| 924 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 925 | /* determine how many queues per pool based on VMDq mask */ |
| 926 | queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask); |
| 927 | |
| 928 | /* write value for all Tx queues belonging to VF */ |
| 929 | for (queue = 0; queue < queues_per_pool; queue++) { |
| 930 | unsigned int reg_idx = (vf * queues_per_pool) + queue; |
| 931 | |
| 932 | IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx); |
| 933 | IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val); |
| 934 | } |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 935 | } |
| 936 | |
| 937 | void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter) |
| 938 | { |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 939 | int i; |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 940 | |
| 941 | /* VF Tx rate limit was not set */ |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 942 | if (!adapter->vf_rate_link_speed) |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 943 | return; |
| 944 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 945 | if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) { |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 946 | adapter->vf_rate_link_speed = 0; |
| 947 | dev_info(&adapter->pdev->dev, |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 948 | "Link speed has been changed. VF Transmit rate is disabled\n"); |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | for (i = 0; i < adapter->num_vfs; i++) { |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 952 | if (!adapter->vf_rate_link_speed) |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 953 | adapter->vfinfo[i].tx_rate = 0; |
| 954 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 955 | ixgbe_set_vf_rate_limit(adapter, i); |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 956 | } |
| 957 | } |
| 958 | |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 959 | int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int tx_rate) |
| 960 | { |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 961 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 962 | int link_speed; |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 963 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 964 | /* verify VF is active */ |
| 965 | if (vf >= adapter->num_vfs) |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 966 | return -EINVAL; |
| 967 | |
Alexander Duyck | 9f66d3e | 2012-07-20 08:09:06 +0000 | [diff] [blame] | 968 | /* verify link is up */ |
| 969 | if (!adapter->link_up) |
| 970 | return -EINVAL; |
| 971 | |
| 972 | /* verify we are linked at 10Gbps */ |
| 973 | link_speed = ixgbe_link_mbps(adapter); |
| 974 | if (link_speed != 10000) |
| 975 | return -EINVAL; |
| 976 | |
| 977 | /* rate limit cannot be less than 10Mbs or greater than link speed */ |
| 978 | if (tx_rate && ((tx_rate <= 10) || (tx_rate > link_speed))) |
| 979 | return -EINVAL; |
| 980 | |
| 981 | /* store values */ |
| 982 | adapter->vf_rate_link_speed = link_speed; |
| 983 | adapter->vfinfo[vf].tx_rate = tx_rate; |
| 984 | |
| 985 | /* update hardware configuration */ |
| 986 | ixgbe_set_vf_rate_limit(adapter, vf); |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 987 | |
| 988 | return 0; |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 989 | } |
| 990 | |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 991 | int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting) |
| 992 | { |
| 993 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 994 | int vf_target_reg = vf >> 3; |
| 995 | int vf_target_shift = vf % 8; |
| 996 | struct ixgbe_hw *hw = &adapter->hw; |
| 997 | u32 regval; |
| 998 | |
| 999 | adapter->vfinfo[vf].spoofchk_enabled = setting; |
| 1000 | |
| 1001 | regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg)); |
| 1002 | regval &= ~(1 << vf_target_shift); |
| 1003 | regval |= (setting << vf_target_shift); |
| 1004 | IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval); |
| 1005 | |
| 1006 | if (adapter->vfinfo[vf].vlan_count) { |
| 1007 | vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT; |
| 1008 | regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg)); |
| 1009 | regval &= ~(1 << vf_target_shift); |
| 1010 | regval |= (setting << vf_target_shift); |
| 1011 | IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval); |
| 1012 | } |
| 1013 | |
| 1014 | return 0; |
| 1015 | } |
| 1016 | |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 1017 | int ixgbe_ndo_get_vf_config(struct net_device *netdev, |
| 1018 | int vf, struct ifla_vf_info *ivi) |
| 1019 | { |
| 1020 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 1021 | if (vf >= adapter->num_vfs) |
| 1022 | return -EINVAL; |
| 1023 | ivi->vf = vf; |
| 1024 | memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN); |
Lior Levy | ff4ab20 | 2011-03-11 02:03:07 +0000 | [diff] [blame] | 1025 | ivi->tx_rate = adapter->vfinfo[vf].tx_rate; |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 1026 | ivi->vlan = adapter->vfinfo[vf].pf_vlan; |
| 1027 | ivi->qos = adapter->vfinfo[vf].pf_qos; |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 1028 | ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled; |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 1029 | return 0; |
| 1030 | } |