blob: 96876b7442b12a0d85fc9c974043d5e2d1ad7a43 [file] [log] [blame]
Greg Rose17367272010-01-09 02:25:48 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore94971822012-01-06 03:24:16 +00004 Copyright(c) 1999 - 2012 Intel Corporation.
Greg Rose17367272010-01-09 02:25:48 +00005
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 Rose17367272010-01-09 02:25:48 +000028#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 Rosec6bda302011-08-24 02:37:55 +000043#include "ixgbe_type.h"
Greg Rose17367272010-01-09 02:25:48 +000044#include "ixgbe_sriov.h"
45
Greg Rosec6bda302011-08-24 02:37:55 +000046#ifdef CONFIG_PCI_IOV
Greg Rosec6bda302011-08-24 02:37:55 +000047void ixgbe_enable_sriov(struct ixgbe_adapter *adapter,
48 const struct ixgbe_info *ii)
49{
50 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +000051 int num_vf_macvlans, i;
52 struct vf_macvlans *mv_list;
53 int pre_existing_vfs = 0;
54
Alexander Duyck92971272012-05-23 02:58:40 +000055 pre_existing_vfs = pci_num_vf(adapter->pdev);
Greg Rosec6bda302011-08-24 02:37:55 +000056 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 Duyck99d74482012-05-09 08:09:25 +000074 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 Rosec6bda302011-08-24 02:37:55 +000084 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
Alexander Duyck73079ea2012-07-14 06:48:49 +000085 if (err) {
86 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
Alexander Duyck99d74482012-05-09 08:09:25 +000087 adapter->num_vfs = 0;
88 return;
Alexander Duyck73079ea2012-07-14 06:48:49 +000089 }
Greg Rosec6bda302011-08-24 02:37:55 +000090 }
Greg Rosec6bda302011-08-24 02:37:55 +000091
Alexander Duyck73079ea2012-07-14 06:48:49 +000092 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
Greg Rosec6bda302011-08-24 02:37:55 +000093 e_info(probe, "SR-IOV enabled with %d VFs\n", adapter->num_vfs);
94
Alexander Duyck73079ea2012-07-14 06:48:49 +000095 /* 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 Rosec6bda302011-08-24 02:37:55 +0000101 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 Duyck73079ea2012-07-14 06:48:49 +0000131 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 Rosec6bda302011-08-24 02:37:55 +0000148
149 /* Disable RSC when in SR-IOV mode */
150 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
151 IXGBE_FLAG2_RSC_ENABLED);
Alexander Duyck73079ea2012-07-14 06:48:49 +0000152
Alexander Duyck73079ea2012-07-14 06:48:49 +0000153 /* enable spoof checking for all VFs */
Greg Rosede4c7f62011-09-29 05:57:33 +0000154 for (i = 0; i < adapter->num_vfs; i++)
155 adapter->vfinfo[i].spoofchk_enabled = true;
Greg Rosec6bda302011-08-24 02:37:55 +0000156 return;
157 }
158
159 /* Oh oh */
160 e_err(probe, "Unable to allocate memory for VF Data Storage - "
161 "SRIOV disabled\n");
Alexander Duyck99d74482012-05-09 08:09:25 +0000162 ixgbe_disable_sriov(adapter);
Greg Rosec6bda302011-08-24 02:37:55 +0000163}
Greg Rosec6bda302011-08-24 02:37:55 +0000164
Alexander Duyck92971272012-05-23 02:58:40 +0000165static 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 Rosec6bda302011-08-24 02:37:55 +0000199void ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
200{
201 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +0000202 u32 gpie;
203 u32 vmdctl;
Greg Rosec6bda302011-08-24 02:37:55 +0000204
Alexander Duyckd773d132012-05-05 05:32:26 +0000205 /* 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 Duyck99d74482012-05-09 08:09:25 +0000216 /* if SR-IOV is already disabled then there is nothing to do */
217 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
218 return;
219
Greg Rosec6bda302011-08-24 02:37:55 +0000220#ifdef CONFIG_PCI_IOV
Alexander Duyck92971272012-05-23 02:58:40 +0000221 /*
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. Millerd47e12d2012-07-22 12:36:41 -0700229 }
Greg Rosec6bda302011-08-24 02:37:55 +0000230 /* 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 Duyck73079ea2012-07-14 06:48:49 +0000235 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0);
Greg Rosec6bda302011-08-24 02:37:55 +0000236 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 Duyck1d9c0bf2012-05-05 05:32:21 +0000246 /* 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 Rosec6bda302011-08-24 02:37:55 +0000251 /* take a breather then clean up driver data */
252 msleep(100);
253
Greg Rosec6bda302011-08-24 02:37:55 +0000254 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
255}
256
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000257static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
Alexander Duyck58a02be2012-07-20 08:09:17 +0000258 u32 *msgbuf, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000259{
Alexander Duyck58a02be2012-07-20 08:09:17 +0000260 int entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
261 >> IXGBE_VT_MSGINFO_SHIFT;
262 u16 *hash_list = (u16 *)&msgbuf[1];
Greg Rose17367272010-01-09 02:25:48 +0000263 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Greg Rose8a07a222010-05-05 19:57:30 +0000264 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose17367272010-01-09 02:25:48 +0000265 int i;
Greg Rose8a07a222010-05-05 19:57:30 +0000266 u32 vector_bit;
267 u32 vector_reg;
268 u32 mta_reg;
Greg Rose17367272010-01-09 02:25:48 +0000269
270 /* only so many hash values supported */
271 entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES);
272
273 /*
274 * salt away the number of multi cast addresses assigned
275 * to this VF for later use to restore when the PF multi cast
276 * list changes
277 */
278 vfinfo->num_vf_mc_hashes = entries;
279
280 /*
281 * VFs are limited to using the MTA hash table for their multicast
282 * addresses
283 */
284 for (i = 0; i < entries; i++) {
Joe Perchese81a1ba2010-11-14 17:04:33 +0000285 vfinfo->vf_mc_hashes[i] = hash_list[i];
Greg Rose17367272010-01-09 02:25:48 +0000286 }
287
Greg Rose8a07a222010-05-05 19:57:30 +0000288 for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
289 vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F;
290 vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F;
291 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
292 mta_reg |= (1 << vector_bit);
293 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
294 }
Greg Rose17367272010-01-09 02:25:48 +0000295
296 return 0;
297}
298
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000299static void ixgbe_restore_vf_macvlans(struct ixgbe_adapter *adapter)
300{
301 struct ixgbe_hw *hw = &adapter->hw;
302 struct list_head *pos;
303 struct vf_macvlans *entry;
304
305 list_for_each(pos, &adapter->vf_mvs.l) {
306 entry = list_entry(pos, struct vf_macvlans, l);
Joe Perches23677ce2012-02-09 11:17:23 +0000307 if (!entry->free)
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000308 hw->mac.ops.set_rar(hw, entry->rar_entry,
309 entry->vf_macvlan,
310 entry->vf, IXGBE_RAH_AV);
311 }
312}
313
Greg Rose17367272010-01-09 02:25:48 +0000314void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter)
315{
316 struct ixgbe_hw *hw = &adapter->hw;
317 struct vf_data_storage *vfinfo;
318 int i, j;
319 u32 vector_bit;
320 u32 vector_reg;
321 u32 mta_reg;
322
323 for (i = 0; i < adapter->num_vfs; i++) {
324 vfinfo = &adapter->vfinfo[i];
325 for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) {
326 hw->addr_ctrl.mta_in_use++;
327 vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F;
328 vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F;
329 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
330 mta_reg |= (1 << vector_bit);
331 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
332 }
333 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000334
335 /* Restore any VF macvlans */
336 ixgbe_restore_vf_macvlans(adapter);
Greg Rose17367272010-01-09 02:25:48 +0000337}
338
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000339static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid,
340 u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000341{
Alexander Duyckb35d4d42012-05-23 05:39:25 +0000342 /* VLAN 0 is a special case, don't allow it to be removed */
343 if (!vid && !add)
344 return 0;
345
Greg Rose17367272010-01-09 02:25:48 +0000346 return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add);
347}
348
Alexander Duyck872844d2012-08-15 02:10:43 +0000349static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
Greg Rosee9f98072011-01-26 01:06:07 +0000350{
351 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck872844d2012-08-15 02:10:43 +0000352 int max_frame = msgbuf[1];
Greg Rosee9f98072011-01-26 01:06:07 +0000353 u32 max_frs;
Greg Rosee9f98072011-01-26 01:06:07 +0000354
Alexander Duyck872844d2012-08-15 02:10:43 +0000355 /*
356 * For 82599EB we have to keep all PFs and VFs operating with
357 * the same max_frame value in order to avoid sending an oversize
358 * frame to a VF. In order to guarantee this is handled correctly
359 * for all cases we have several special exceptions to take into
360 * account before we can enable the VF for receive
361 */
362 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
363 struct net_device *dev = adapter->netdev;
364 int pf_max_frame = dev->mtu + ETH_HLEN;
365 u32 reg_offset, vf_shift, vfre;
366 s32 err = 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000367
Alexander Duyck872844d2012-08-15 02:10:43 +0000368#ifdef CONFIG_FCOE
369 if (dev->features & NETIF_F_FCOE_MTU)
370 pf_max_frame = max_t(int, pf_max_frame,
371 IXGBE_FCOE_JUMBO_FRAME_SIZE);
372
373#endif /* CONFIG_FCOE */
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000374 switch (adapter->vfinfo[vf].vf_api) {
375 case ixgbe_mbox_api_11:
376 /*
377 * Version 1.1 supports jumbo frames on VFs if PF has
378 * jumbo frames enabled which means legacy VFs are
379 * disabled
380 */
381 if (pf_max_frame > ETH_FRAME_LEN)
382 break;
383 default:
384 /*
385 * If the PF or VF are running w/ jumbo frames enabled
386 * we need to shut down the VF Rx path as we cannot
387 * support jumbo frames on legacy VFs
388 */
389 if ((pf_max_frame > ETH_FRAME_LEN) ||
390 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
391 err = -EINVAL;
392 break;
393 }
Alexander Duyck872844d2012-08-15 02:10:43 +0000394
395 /* determine VF receive enable location */
396 vf_shift = vf % 32;
397 reg_offset = vf / 32;
398
399 /* enable or disable receive depending on error */
400 vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
401 if (err)
402 vfre &= ~(1 << vf_shift);
403 else
404 vfre |= 1 << vf_shift;
405 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre);
406
407 if (err) {
408 e_err(drv, "VF max_frame %d out of range\n", max_frame);
409 return err;
410 }
Greg Rosee9f98072011-01-26 01:06:07 +0000411 }
412
Alexander Duyck872844d2012-08-15 02:10:43 +0000413 /* MTU < 68 is an error and causes problems on some kernels */
414 if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) {
415 e_err(drv, "VF max_frame %d out of range\n", max_frame);
416 return -EINVAL;
417 }
418
419 /* pull current max frame size from hardware */
420 max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
421 max_frs &= IXGBE_MHADD_MFS_MASK;
422 max_frs >>= IXGBE_MHADD_MFS_SHIFT;
423
424 if (max_frs < max_frame) {
425 max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT;
Greg Rosee9f98072011-01-26 01:06:07 +0000426 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
427 }
428
Alexander Duyck872844d2012-08-15 02:10:43 +0000429 e_info(hw, "VF requests change max MTU to %d\n", max_frame);
430
431 return 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000432}
433
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000434static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
Greg Rose17367272010-01-09 02:25:48 +0000435{
436 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Greg Rosef0412772010-05-04 22:11:46 +0000437 vmolr |= (IXGBE_VMOLR_ROMPE |
Greg Rose17367272010-01-09 02:25:48 +0000438 IXGBE_VMOLR_BAM);
Greg Rosef0412772010-05-04 22:11:46 +0000439 if (aupe)
440 vmolr |= IXGBE_VMOLR_AUPE;
441 else
442 vmolr &= ~IXGBE_VMOLR_AUPE;
Greg Rose17367272010-01-09 02:25:48 +0000443 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
444}
445
Alexander Duyck107d3012012-10-02 00:17:03 +0000446static void ixgbe_set_vmvir(struct ixgbe_adapter *adapter,
447 u16 vid, u16 qos, u32 vf)
448{
449 struct ixgbe_hw *hw = &adapter->hw;
450 u32 vmvir = vid | (qos << VLAN_PRIO_SHIFT) | IXGBE_VMVIR_VLANA_DEFAULT;
451
452 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), vmvir);
453}
454
455static void ixgbe_clear_vmvir(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose7f016482010-05-04 22:12:06 +0000456{
457 struct ixgbe_hw *hw = &adapter->hw;
458
Alexander Duyck107d3012012-10-02 00:17:03 +0000459 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
Greg Rose7f016482010-05-04 22:12:06 +0000460}
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000461static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000462{
463 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck107d3012012-10-02 00:17:03 +0000464 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Alexander Duyck28500622010-06-15 09:25:48 +0000465 int rar_entry = hw->mac.num_rar_entries - (vf + 1);
Alexander Duyck107d3012012-10-02 00:17:03 +0000466 u8 num_tcs = netdev_get_num_tc(adapter->netdev);
467
468 /* add PF assigned VLAN or VLAN 0 */
469 ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf);
Greg Rose17367272010-01-09 02:25:48 +0000470
471 /* reset offloads to defaults */
Alexander Duyck107d3012012-10-02 00:17:03 +0000472 ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan);
473
474 /* set outgoing tags for VFs */
475 if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) {
476 ixgbe_clear_vmvir(adapter, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000477 } else {
Alexander Duyck107d3012012-10-02 00:17:03 +0000478 if (vfinfo->pf_qos || !num_tcs)
479 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
480 vfinfo->pf_qos, vf);
481 else
482 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
483 adapter->default_up, vf);
484
485 if (vfinfo->spoofchk_enabled)
486 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000487 }
Greg Rose17367272010-01-09 02:25:48 +0000488
489 /* reset multicast table array for vf */
490 adapter->vfinfo[vf].num_vf_mc_hashes = 0;
491
492 /* Flush and reset the mta with the new values */
493 ixgbe_set_rx_mode(adapter->netdev);
494
Alexander Duyck28500622010-06-15 09:25:48 +0000495 hw->mac.ops.clear_rar(hw, rar_entry);
Alexander Duyck374c65d2012-07-20 08:09:22 +0000496
497 /* reset VF api back to unknown */
498 adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10;
Greg Rose17367272010-01-09 02:25:48 +0000499}
500
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000501static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
502 int vf, unsigned char *mac_addr)
Greg Rose17367272010-01-09 02:25:48 +0000503{
504 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +0000505 int rar_entry = hw->mac.num_rar_entries - (vf + 1);
Greg Rose17367272010-01-09 02:25:48 +0000506
507 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, 6);
Alexander Duyck28500622010-06-15 09:25:48 +0000508 hw->mac.ops.set_rar(hw, rar_entry, mac_addr, vf, IXGBE_RAH_AV);
Greg Rose17367272010-01-09 02:25:48 +0000509
510 return 0;
511}
512
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000513static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter,
514 int vf, int index, unsigned char *mac_addr)
515{
516 struct ixgbe_hw *hw = &adapter->hw;
517 struct list_head *pos;
518 struct vf_macvlans *entry;
519
520 if (index <= 1) {
521 list_for_each(pos, &adapter->vf_mvs.l) {
522 entry = list_entry(pos, struct vf_macvlans, l);
523 if (entry->vf == vf) {
524 entry->vf = -1;
525 entry->free = true;
526 entry->is_macvlan = false;
527 hw->mac.ops.clear_rar(hw, entry->rar_entry);
528 }
529 }
530 }
531
532 /*
533 * If index was zero then we were asked to clear the uc list
534 * for the VF. We're done.
535 */
536 if (!index)
537 return 0;
538
539 entry = NULL;
540
541 list_for_each(pos, &adapter->vf_mvs.l) {
542 entry = list_entry(pos, struct vf_macvlans, l);
543 if (entry->free)
544 break;
545 }
546
547 /*
548 * If we traversed the entire list and didn't find a free entry
549 * then we're out of space on the RAR table. Also entry may
550 * be NULL because the original memory allocation for the list
551 * failed, which is not fatal but does mean we can't support
552 * VF requests for MACVLAN because we couldn't allocate
553 * memory for the list management required.
554 */
555 if (!entry || !entry->free)
556 return -ENOSPC;
557
558 entry->free = false;
559 entry->is_macvlan = true;
560 entry->vf = vf;
561 memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN);
562
563 hw->mac.ops.set_rar(hw, entry->rar_entry, mac_addr, vf, IXGBE_RAH_AV);
564
565 return 0;
566}
567
Greg Rose17367272010-01-09 02:25:48 +0000568int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
569{
570 unsigned char vf_mac_addr[6];
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800571 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Greg Rose17367272010-01-09 02:25:48 +0000572 unsigned int vfn = (event_mask & 0x3f);
573
574 bool enable = ((event_mask & 0x10000000U) != 0);
575
576 if (enable) {
Joe Perches7efd26d2012-07-12 19:33:06 +0000577 eth_random_addr(vf_mac_addr);
Emil Tantilov396e7992010-07-01 20:05:12 +0000578 e_info(probe, "IOV: VF %d is enabled MAC %pM\n",
579 vfn, vf_mac_addr);
Greg Rose17367272010-01-09 02:25:48 +0000580 /*
581 * Store away the VF "permananet" MAC address, it will ask
582 * for it later.
583 */
584 memcpy(adapter->vfinfo[vfn].vf_mac_addresses, vf_mac_addr, 6);
585 }
586
587 return 0;
588}
589
Alexander Duyck58a02be2012-07-20 08:09:17 +0000590static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000591{
592 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000593 unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
594 u32 reg, msgbuf[4];
Greg Rose17367272010-01-09 02:25:48 +0000595 u32 reg_offset, vf_shift;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000596 u8 *addr = (u8 *)(&msgbuf[1]);
597
598 e_info(probe, "VF Reset msg received from vf %d\n", vf);
599
600 /* reset the filters for the device */
601 ixgbe_vf_reset_event(adapter, vf);
602
603 /* set vf mac address */
604 ixgbe_set_vf_mac(adapter, vf, vf_mac);
Greg Rose17367272010-01-09 02:25:48 +0000605
606 vf_shift = vf % 32;
607 reg_offset = vf / 32;
608
Alexander Duyck58a02be2012-07-20 08:09:17 +0000609 /* enable transmit for vf */
Greg Rose17367272010-01-09 02:25:48 +0000610 reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000611 reg |= 1 << vf_shift;
Greg Rose17367272010-01-09 02:25:48 +0000612 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
613
Alexander Duyck58a02be2012-07-20 08:09:17 +0000614 /* enable receive for vf */
Greg Rose17367272010-01-09 02:25:48 +0000615 reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000616 reg |= 1 << vf_shift;
617 /*
618 * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs.
619 * For more info take a look at ixgbe_set_vf_lpe
620 */
621 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
622 struct net_device *dev = adapter->netdev;
623 int pf_max_frame = dev->mtu + ETH_HLEN;
624
625#ifdef CONFIG_FCOE
626 if (dev->features & NETIF_F_FCOE_MTU)
627 pf_max_frame = max_t(int, pf_max_frame,
628 IXGBE_FCOE_JUMBO_FRAME_SIZE);
629
630#endif /* CONFIG_FCOE */
631 if (pf_max_frame > ETH_FRAME_LEN)
632 reg &= ~(1 << vf_shift);
633 }
Greg Rose17367272010-01-09 02:25:48 +0000634 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
635
Alexander Duyck58a02be2012-07-20 08:09:17 +0000636 /* enable VF mailbox for further messages */
637 adapter->vfinfo[vf].clear_to_send = true;
638
Greg Rosea985b6c32010-11-18 03:02:52 +0000639 /* Enable counting of spoofed packets in the SSVPC register */
640 reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
641 reg |= (1 << vf_shift);
642 IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
643
Alexander Duyck58a02be2012-07-20 08:09:17 +0000644 /* reply to reset with ack and vf mac address */
645 msgbuf[0] = IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_ACK;
646 memcpy(addr, vf_mac, ETH_ALEN);
647
648 /*
649 * Piggyback the multicast filter type so VF can compute the
650 * correct vectors
651 */
652 msgbuf[3] = hw->mac.mc_filter_type;
653 ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
654
655 return 0;
656}
657
658static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter,
659 u32 *msgbuf, u32 vf)
660{
661 u8 *new_mac = ((u8 *)(&msgbuf[1]));
662
663 if (!is_valid_ether_addr(new_mac)) {
664 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
665 return -1;
666 }
667
668 if (adapter->vfinfo[vf].pf_set_mac &&
669 memcmp(adapter->vfinfo[vf].vf_mac_addresses, new_mac,
670 ETH_ALEN)) {
671 e_warn(drv,
672 "VF %d attempted to override administratively set MAC address\n"
673 "Reload the VF driver to resume operations\n",
674 vf);
675 return -1;
676 }
677
678 return ixgbe_set_vf_mac(adapter, vf, new_mac);
679}
680
681static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter,
682 u32 *msgbuf, u32 vf)
683{
684 struct ixgbe_hw *hw = &adapter->hw;
685 int add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT;
686 int vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
687 int err;
Alexander Duyck107d3012012-10-02 00:17:03 +0000688 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck58a02be2012-07-20 08:09:17 +0000689
Alexander Duyck107d3012012-10-02 00:17:03 +0000690 if (adapter->vfinfo[vf].pf_vlan || tcs) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000691 e_warn(drv,
692 "VF %d attempted to override administratively set VLAN configuration\n"
693 "Reload the VF driver to resume operations\n",
694 vf);
695 return -1;
696 }
697
698 if (add)
699 adapter->vfinfo[vf].vlan_count++;
700 else if (adapter->vfinfo[vf].vlan_count)
701 adapter->vfinfo[vf].vlan_count--;
702
703 err = ixgbe_set_vf_vlan(adapter, add, vid, vf);
704 if (!err && adapter->vfinfo[vf].spoofchk_enabled)
705 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
706
707 return err;
708}
709
710static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter,
711 u32 *msgbuf, u32 vf)
712{
713 u8 *new_mac = ((u8 *)(&msgbuf[1]));
714 int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
715 IXGBE_VT_MSGINFO_SHIFT;
716 int err;
717
718 if (adapter->vfinfo[vf].pf_set_mac && index > 0) {
719 e_warn(drv,
720 "VF %d requested MACVLAN filter but is administratively denied\n",
721 vf);
722 return -1;
723 }
724
725 /* An non-zero index indicates the VF is setting a filter */
726 if (index) {
727 if (!is_valid_ether_addr(new_mac)) {
728 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
729 return -1;
730 }
731
732 /*
733 * If the VF is allowed to set MAC filters then turn off
734 * anti-spoofing to avoid false positives.
735 */
736 if (adapter->vfinfo[vf].spoofchk_enabled)
737 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false);
738 }
739
740 err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac);
741 if (err == -ENOSPC)
742 e_warn(drv,
743 "VF %d has requested a MACVLAN filter but there is no space for it\n",
744 vf);
745 return err;
Greg Rose17367272010-01-09 02:25:48 +0000746}
747
Alexander Duyck374c65d2012-07-20 08:09:22 +0000748static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter,
749 u32 *msgbuf, u32 vf)
750{
751 int api = msgbuf[1];
752
753 switch (api) {
754 case ixgbe_mbox_api_10:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000755 case ixgbe_mbox_api_11:
Alexander Duyck374c65d2012-07-20 08:09:22 +0000756 adapter->vfinfo[vf].vf_api = api;
757 return 0;
758 default:
759 break;
760 }
761
762 e_info(drv, "VF %d requested invalid api version %u\n", vf, api);
763
764 return -1;
765}
766
Alexander Duyckf591cd92012-07-20 08:09:32 +0000767static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter,
768 u32 *msgbuf, u32 vf)
769{
770 struct net_device *dev = adapter->netdev;
771 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
772 unsigned int default_tc = 0;
773 u8 num_tcs = netdev_get_num_tc(dev);
774
775 /* verify the PF is supporting the correct APIs */
776 switch (adapter->vfinfo[vf].vf_api) {
777 case ixgbe_mbox_api_20:
778 case ixgbe_mbox_api_11:
779 break;
780 default:
781 return -1;
782 }
783
784 /* only allow 1 Tx queue for bandwidth limiting */
785 msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
786 msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
787
788 /* if TCs > 1 determine which TC belongs to default user priority */
789 if (num_tcs > 1)
790 default_tc = netdev_get_prio_tc_map(dev, adapter->default_up);
791
792 /* notify VF of need for VLAN tag stripping, and correct queue */
793 if (num_tcs)
794 msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
795 else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos)
796 msgbuf[IXGBE_VF_TRANS_VLAN] = 1;
797 else
798 msgbuf[IXGBE_VF_TRANS_VLAN] = 0;
799
800 /* notify VF of default queue */
801 msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc;
802
803 return 0;
804}
805
Greg Rose17367272010-01-09 02:25:48 +0000806static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
807{
808 u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
Emil Tantilovc0509992011-05-07 06:49:18 +0000809 u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
Greg Rose17367272010-01-09 02:25:48 +0000810 struct ixgbe_hw *hw = &adapter->hw;
811 s32 retval;
Greg Rose17367272010-01-09 02:25:48 +0000812
813 retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
814
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000815 if (retval) {
Emil Tantilov849c4542010-06-03 16:53:41 +0000816 pr_err("Error receiving message from VF\n");
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000817 return retval;
818 }
Greg Rose17367272010-01-09 02:25:48 +0000819
820 /* this is a message we already processed, do nothing */
821 if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
822 return retval;
823
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000824 /* flush the ack before we write any messages back */
825 IXGBE_WRITE_FLUSH(hw);
826
Alexander Duyck374c65d2012-07-20 08:09:22 +0000827 if (msgbuf[0] == IXGBE_VF_RESET)
828 return ixgbe_vf_reset_msg(adapter, vf);
829
Greg Rose17367272010-01-09 02:25:48 +0000830 /*
831 * until the vf completes a virtual function reset it should not be
832 * allowed to start any configuration.
833 */
Greg Rose17367272010-01-09 02:25:48 +0000834 if (!adapter->vfinfo[vf].clear_to_send) {
835 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
836 ixgbe_write_mbx(hw, msgbuf, 1, vf);
837 return retval;
838 }
839
840 switch ((msgbuf[0] & 0xFFFF)) {
841 case IXGBE_VF_SET_MAC_ADDR:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000842 retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000843 break;
844 case IXGBE_VF_SET_MULTICAST:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000845 retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf);
846 break;
847 case IXGBE_VF_SET_VLAN:
848 retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000849 break;
850 case IXGBE_VF_SET_LPE:
Alexander Duyck872844d2012-08-15 02:10:43 +0000851 retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000852 break;
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000853 case IXGBE_VF_SET_MACVLAN:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000854 retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000855 break;
Alexander Duyck374c65d2012-07-20 08:09:22 +0000856 case IXGBE_VF_API_NEGOTIATE:
857 retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf);
858 break;
Alexander Duyckf591cd92012-07-20 08:09:32 +0000859 case IXGBE_VF_GET_QUEUES:
860 retval = ixgbe_get_vf_queues(adapter, msgbuf, vf);
861 break;
Greg Rose17367272010-01-09 02:25:48 +0000862 default:
Emil Tantilov396e7992010-07-01 20:05:12 +0000863 e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]);
Greg Rose17367272010-01-09 02:25:48 +0000864 retval = IXGBE_ERR_MBX;
865 break;
866 }
867
868 /* notify the VF of the results of what it sent us */
869 if (retval)
870 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
871 else
872 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
873
874 msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
875
Alexander Duyck374c65d2012-07-20 08:09:22 +0000876 ixgbe_write_mbx(hw, msgbuf, mbx_size, vf);
Greg Rose17367272010-01-09 02:25:48 +0000877
878 return retval;
879}
880
881static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
882{
883 struct ixgbe_hw *hw = &adapter->hw;
884 u32 msg = IXGBE_VT_MSGTYPE_NACK;
885
886 /* if device isn't clear to send it shouldn't be reading either */
887 if (!adapter->vfinfo[vf].clear_to_send)
888 ixgbe_write_mbx(hw, &msg, 1, vf);
889}
890
891void ixgbe_msg_task(struct ixgbe_adapter *adapter)
892{
893 struct ixgbe_hw *hw = &adapter->hw;
894 u32 vf;
895
896 for (vf = 0; vf < adapter->num_vfs; vf++) {
897 /* process any reset requests */
898 if (!ixgbe_check_for_rst(hw, vf))
899 ixgbe_vf_reset_event(adapter, vf);
900
901 /* process any messages pending */
902 if (!ixgbe_check_for_msg(hw, vf))
903 ixgbe_rcv_msg_from_vf(adapter, vf);
904
905 /* process any acks */
906 if (!ixgbe_check_for_ack(hw, vf))
907 ixgbe_rcv_ack_from_vf(adapter, vf);
908 }
909}
910
Greg Rose767081a2010-01-22 22:46:40 +0000911void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
912{
913 struct ixgbe_hw *hw = &adapter->hw;
914
915 /* disable transmit and receive for all vfs */
916 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
917 IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
918
919 IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
920 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
921}
922
923void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
924{
925 struct ixgbe_hw *hw = &adapter->hw;
926 u32 ping;
927 int i;
928
929 for (i = 0 ; i < adapter->num_vfs; i++) {
930 ping = IXGBE_PF_CONTROL_MSG;
931 if (adapter->vfinfo[i].clear_to_send)
932 ping |= IXGBE_VT_MSGTYPE_CTS;
933 ixgbe_write_mbx(hw, &ping, 1, i);
934 }
935}
936
Greg Rose7f016482010-05-04 22:12:06 +0000937int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
938{
939 struct ixgbe_adapter *adapter = netdev_priv(netdev);
940 if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs))
941 return -EINVAL;
942 adapter->vfinfo[vf].pf_set_mac = true;
943 dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf);
944 dev_info(&adapter->pdev->dev, "Reload the VF driver to make this"
945 " change effective.");
946 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
947 dev_warn(&adapter->pdev->dev, "The VF MAC address has been set,"
948 " but the PF device is not up.\n");
949 dev_warn(&adapter->pdev->dev, "Bring the PF device up before"
950 " attempting to use the VF device.\n");
951 }
952 return ixgbe_set_vf_mac(adapter, vf, mac);
953}
954
955int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos)
956{
957 int err = 0;
958 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Greg Rosea985b6c32010-11-18 03:02:52 +0000959 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose7f016482010-05-04 22:12:06 +0000960
961 if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7))
962 return -EINVAL;
963 if (vlan || qos) {
964 err = ixgbe_set_vf_vlan(adapter, true, vlan, vf);
965 if (err)
966 goto out;
Alexander Duyck107d3012012-10-02 00:17:03 +0000967 ixgbe_set_vmvir(adapter, vlan, qos, vf);
Greg Rosea985b6c32010-11-18 03:02:52 +0000968 ixgbe_set_vmolr(hw, vf, false);
Greg Rosede4c7f62011-09-29 05:57:33 +0000969 if (adapter->vfinfo[vf].spoofchk_enabled)
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000970 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rosede4c7f62011-09-29 05:57:33 +0000971 adapter->vfinfo[vf].vlan_count++;
Greg Rose7f016482010-05-04 22:12:06 +0000972 adapter->vfinfo[vf].pf_vlan = vlan;
973 adapter->vfinfo[vf].pf_qos = qos;
974 dev_info(&adapter->pdev->dev,
975 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf);
976 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
977 dev_warn(&adapter->pdev->dev,
978 "The VF VLAN has been set,"
979 " but the PF device is not up.\n");
980 dev_warn(&adapter->pdev->dev,
981 "Bring the PF device up before"
982 " attempting to use the VF device.\n");
983 }
984 } else {
985 err = ixgbe_set_vf_vlan(adapter, false,
986 adapter->vfinfo[vf].pf_vlan, vf);
Alexander Duyck107d3012012-10-02 00:17:03 +0000987 ixgbe_clear_vmvir(adapter, vf);
Greg Rosea985b6c32010-11-18 03:02:52 +0000988 ixgbe_set_vmolr(hw, vf, true);
989 hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf);
Greg Rosede4c7f62011-09-29 05:57:33 +0000990 if (adapter->vfinfo[vf].vlan_count)
991 adapter->vfinfo[vf].vlan_count--;
Greg Rose7f016482010-05-04 22:12:06 +0000992 adapter->vfinfo[vf].pf_vlan = 0;
993 adapter->vfinfo[vf].pf_qos = 0;
994 }
995out:
996 return err;
997}
998
Alexander Duyck9f66d3e2012-07-20 08:09:06 +0000999static int ixgbe_link_mbps(struct ixgbe_adapter *adapter)
Lior Levyff4ab202011-03-11 02:03:07 +00001000{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001001 switch (adapter->link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001002 case IXGBE_LINK_SPEED_100_FULL:
1003 return 100;
1004 case IXGBE_LINK_SPEED_1GB_FULL:
1005 return 1000;
1006 case IXGBE_LINK_SPEED_10GB_FULL:
1007 return 10000;
1008 default:
1009 return 0;
1010 }
1011}
1012
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001013static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf)
Lior Levyff4ab202011-03-11 02:03:07 +00001014{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001015 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1016 struct ixgbe_hw *hw = &adapter->hw;
1017 u32 bcnrc_val = 0;
1018 u16 queue, queues_per_pool;
1019 u16 tx_rate = adapter->vfinfo[vf].tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001020
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001021 if (tx_rate) {
1022 /* start with base link speed value */
1023 bcnrc_val = adapter->vf_rate_link_speed;
1024
Lior Levyff4ab202011-03-11 02:03:07 +00001025 /* Calculate the rate factor values to set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001026 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1027 bcnrc_val /= tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001028
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001029 /* clear everything but the rate factor */
1030 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1031 IXGBE_RTTBCNRC_RF_DEC_MASK;
1032
1033 /* enable the rate scheduler */
1034 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
Lior Levyff4ab202011-03-11 02:03:07 +00001035 }
1036
Lior Levy7555e832011-06-25 00:09:08 -07001037 /*
1038 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
1039 * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported
1040 * and 0x004 otherwise.
1041 */
1042 switch (hw->mac.type) {
1043 case ixgbe_mac_82599EB:
1044 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4);
1045 break;
1046 case ixgbe_mac_X540:
1047 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14);
1048 break;
1049 default:
1050 break;
1051 }
1052
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001053 /* determine how many queues per pool based on VMDq mask */
1054 queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
1055
1056 /* write value for all Tx queues belonging to VF */
1057 for (queue = 0; queue < queues_per_pool; queue++) {
1058 unsigned int reg_idx = (vf * queues_per_pool) + queue;
1059
1060 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx);
1061 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1062 }
Lior Levyff4ab202011-03-11 02:03:07 +00001063}
1064
1065void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter)
1066{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001067 int i;
Lior Levyff4ab202011-03-11 02:03:07 +00001068
1069 /* VF Tx rate limit was not set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001070 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001071 return;
1072
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001073 if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001074 adapter->vf_rate_link_speed = 0;
1075 dev_info(&adapter->pdev->dev,
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001076 "Link speed has been changed. VF Transmit rate is disabled\n");
Lior Levyff4ab202011-03-11 02:03:07 +00001077 }
1078
1079 for (i = 0; i < adapter->num_vfs; i++) {
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001080 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001081 adapter->vfinfo[i].tx_rate = 0;
1082
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001083 ixgbe_set_vf_rate_limit(adapter, i);
Lior Levyff4ab202011-03-11 02:03:07 +00001084 }
1085}
1086
Greg Rose7f016482010-05-04 22:12:06 +00001087int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int tx_rate)
1088{
Lior Levyff4ab202011-03-11 02:03:07 +00001089 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001090 int link_speed;
Lior Levyff4ab202011-03-11 02:03:07 +00001091
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001092 /* verify VF is active */
1093 if (vf >= adapter->num_vfs)
Lior Levyff4ab202011-03-11 02:03:07 +00001094 return -EINVAL;
1095
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001096 /* verify link is up */
1097 if (!adapter->link_up)
1098 return -EINVAL;
1099
1100 /* verify we are linked at 10Gbps */
1101 link_speed = ixgbe_link_mbps(adapter);
1102 if (link_speed != 10000)
1103 return -EINVAL;
1104
1105 /* rate limit cannot be less than 10Mbs or greater than link speed */
1106 if (tx_rate && ((tx_rate <= 10) || (tx_rate > link_speed)))
1107 return -EINVAL;
1108
1109 /* store values */
1110 adapter->vf_rate_link_speed = link_speed;
1111 adapter->vfinfo[vf].tx_rate = tx_rate;
1112
1113 /* update hardware configuration */
1114 ixgbe_set_vf_rate_limit(adapter, vf);
Lior Levyff4ab202011-03-11 02:03:07 +00001115
1116 return 0;
Greg Rose7f016482010-05-04 22:12:06 +00001117}
1118
Greg Rosede4c7f62011-09-29 05:57:33 +00001119int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting)
1120{
1121 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1122 int vf_target_reg = vf >> 3;
1123 int vf_target_shift = vf % 8;
1124 struct ixgbe_hw *hw = &adapter->hw;
1125 u32 regval;
1126
1127 adapter->vfinfo[vf].spoofchk_enabled = setting;
1128
1129 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1130 regval &= ~(1 << vf_target_shift);
1131 regval |= (setting << vf_target_shift);
1132 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1133
1134 if (adapter->vfinfo[vf].vlan_count) {
1135 vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT;
1136 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1137 regval &= ~(1 << vf_target_shift);
1138 regval |= (setting << vf_target_shift);
1139 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1140 }
1141
1142 return 0;
1143}
1144
Greg Rose7f016482010-05-04 22:12:06 +00001145int ixgbe_ndo_get_vf_config(struct net_device *netdev,
1146 int vf, struct ifla_vf_info *ivi)
1147{
1148 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1149 if (vf >= adapter->num_vfs)
1150 return -EINVAL;
1151 ivi->vf = vf;
1152 memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN);
Lior Levyff4ab202011-03-11 02:03:07 +00001153 ivi->tx_rate = adapter->vfinfo[vf].tx_rate;
Greg Rose7f016482010-05-04 22:12:06 +00001154 ivi->vlan = adapter->vfinfo[vf].pf_vlan;
1155 ivi->qos = adapter->vfinfo[vf].pf_qos;
Greg Rosede4c7f62011-09-29 05:57:33 +00001156 ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled;
Greg Rose7f016482010-05-04 22:12:06 +00001157 return 0;
1158}