blob: 43e10c67ac4e278a08f2fe8c860635d275e31bc6 [file] [log] [blame]
Greg Rose17367272010-01-09 02:25:48 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore434c5e32013-01-08 05:02:28 +00004 Copyright(c) 1999 - 2013 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>
Patrick McHardyf6469682013-04-19 02:04:27 +000038#ifdef NETIF_F_HW_VLAN_CTAG_TX
Greg Rose17367272010-01-09 02:25:48 +000039#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 Rose66dcfd72012-12-11 08:26:38 +000047static int __ixgbe_enable_sriov(struct ixgbe_adapter *adapter)
Greg Rosec6bda302011-08-24 02:37:55 +000048{
49 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +000050 int num_vf_macvlans, i;
51 struct vf_macvlans *mv_list;
Greg Rosec6bda302011-08-24 02:37:55 +000052
Alexander Duyck73079ea2012-07-14 06:48:49 +000053 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
Greg Rosec6bda302011-08-24 02:37:55 +000054 e_info(probe, "SR-IOV enabled with %d VFs\n", adapter->num_vfs);
55
Alexander Duyck73079ea2012-07-14 06:48:49 +000056 /* Enable VMDq flag so device will be set in VM mode */
57 adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED;
58 if (!adapter->ring_feature[RING_F_VMDQ].limit)
59 adapter->ring_feature[RING_F_VMDQ].limit = 1;
60 adapter->ring_feature[RING_F_VMDQ].offset = adapter->num_vfs;
61
Greg Rosec6bda302011-08-24 02:37:55 +000062 num_vf_macvlans = hw->mac.num_rar_entries -
63 (IXGBE_MAX_PF_MACVLANS + 1 + adapter->num_vfs);
64
65 adapter->mv_list = mv_list = kcalloc(num_vf_macvlans,
66 sizeof(struct vf_macvlans),
67 GFP_KERNEL);
68 if (mv_list) {
69 /* Initialize list of VF macvlans */
70 INIT_LIST_HEAD(&adapter->vf_mvs.l);
71 for (i = 0; i < num_vf_macvlans; i++) {
72 mv_list->vf = -1;
73 mv_list->free = true;
74 mv_list->rar_entry = hw->mac.num_rar_entries -
75 (i + adapter->num_vfs + 1);
76 list_add(&mv_list->l, &adapter->vf_mvs.l);
77 mv_list++;
78 }
79 }
80
John Fastabend815cccb2012-10-24 08:13:09 +000081 /* Initialize default switching mode VEB */
82 IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
Greg Rose9b735982012-11-08 02:41:35 +000083 adapter->flags2 |= IXGBE_FLAG2_BRIDGE_MODE_VEB;
John Fastabend815cccb2012-10-24 08:13:09 +000084
Greg Rosec6bda302011-08-24 02:37:55 +000085 /* If call to enable VFs succeeded then allocate memory
86 * for per VF control structures.
87 */
88 adapter->vfinfo =
89 kcalloc(adapter->num_vfs,
90 sizeof(struct vf_data_storage), GFP_KERNEL);
91 if (adapter->vfinfo) {
Alexander Duyck73079ea2012-07-14 06:48:49 +000092 /* limit trafffic classes based on VFs enabled */
93 if ((adapter->hw.mac.type == ixgbe_mac_82599EB) &&
94 (adapter->num_vfs < 16)) {
95 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
96 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
97 } else if (adapter->num_vfs < 32) {
98 adapter->dcb_cfg.num_tcs.pg_tcs = 4;
99 adapter->dcb_cfg.num_tcs.pfc_tcs = 4;
100 } else {
101 adapter->dcb_cfg.num_tcs.pg_tcs = 1;
102 adapter->dcb_cfg.num_tcs.pfc_tcs = 1;
103 }
104
105 /* We do not support RSS w/ SR-IOV */
106 adapter->ring_feature[RING_F_RSS].limit = 1;
Greg Rosec6bda302011-08-24 02:37:55 +0000107
108 /* Disable RSC when in SR-IOV mode */
109 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
110 IXGBE_FLAG2_RSC_ENABLED);
Alexander Duyck73079ea2012-07-14 06:48:49 +0000111
Alexander Duyck73079ea2012-07-14 06:48:49 +0000112 /* enable spoof checking for all VFs */
Greg Rosede4c7f62011-09-29 05:57:33 +0000113 for (i = 0; i < adapter->num_vfs; i++)
114 adapter->vfinfo[i].spoofchk_enabled = true;
Greg Rose66dcfd72012-12-11 08:26:38 +0000115 return 0;
Greg Rosec6bda302011-08-24 02:37:55 +0000116 }
117
Greg Rose66dcfd72012-12-11 08:26:38 +0000118 return -ENOMEM;
119}
120
121/* Note this function is called when the user wants to enable SR-IOV
122 * VFs using the now deprecated module parameter
123 */
124void ixgbe_enable_sriov(struct ixgbe_adapter *adapter)
125{
126 int pre_existing_vfs = 0;
127
128 pre_existing_vfs = pci_num_vf(adapter->pdev);
129 if (!pre_existing_vfs && !adapter->num_vfs)
130 return;
131
Greg Rose66dcfd72012-12-11 08:26:38 +0000132 /* If there are pre-existing VFs then we have to force
133 * use of that many - over ride any module parameter value.
134 * This may result from the user unloading the PF driver
135 * while VFs were assigned to guest VMs or because the VFs
136 * have been created via the new PCI SR-IOV sysfs interface.
137 */
138 if (pre_existing_vfs) {
139 adapter->num_vfs = pre_existing_vfs;
140 dev_warn(&adapter->pdev->dev,
141 "Virtual Functions already enabled for this device - Please reload all VF drivers to avoid spoofed packet errors\n");
142 } else {
143 int err;
144 /*
145 * The 82599 supports up to 64 VFs per physical function
146 * but this implementation limits allocation to 63 so that
147 * basic networking resources are still available to the
148 * physical function. If the user requests greater thn
149 * 63 VFs then it is an error - reset to default of zero.
150 */
151 adapter->num_vfs = min_t(unsigned int, adapter->num_vfs, 63);
152
153 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
154 if (err) {
155 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
156 adapter->num_vfs = 0;
157 return;
158 }
159 }
160
161 if (!__ixgbe_enable_sriov(adapter))
162 return;
163
164 /* If we have gotten to this point then there is no memory available
165 * to manage the VF devices - print message and bail.
166 */
Greg Rosec6bda302011-08-24 02:37:55 +0000167 e_err(probe, "Unable to allocate memory for VF Data Storage - "
168 "SRIOV disabled\n");
Alexander Duyck99d74482012-05-09 08:09:25 +0000169 ixgbe_disable_sriov(adapter);
Greg Rosec6bda302011-08-24 02:37:55 +0000170}
Greg Rosec6bda302011-08-24 02:37:55 +0000171
Alexander Duyck92971272012-05-23 02:58:40 +0000172#endif /* #ifdef CONFIG_PCI_IOV */
Greg Roseda36b642012-12-11 08:26:43 +0000173int ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
Greg Rosec6bda302011-08-24 02:37:55 +0000174{
175 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +0000176 u32 gpie;
177 u32 vmdctl;
Greg Roseda36b642012-12-11 08:26:43 +0000178 int rss;
Greg Rosec6bda302011-08-24 02:37:55 +0000179
Alexander Duyckd773d132012-05-05 05:32:26 +0000180 /* set num VFs to 0 to prevent access to vfinfo */
181 adapter->num_vfs = 0;
182
183 /* free VF control structures */
184 kfree(adapter->vfinfo);
185 adapter->vfinfo = NULL;
186
187 /* free macvlan list */
188 kfree(adapter->mv_list);
189 adapter->mv_list = NULL;
190
Alexander Duyck99d74482012-05-09 08:09:25 +0000191 /* if SR-IOV is already disabled then there is nothing to do */
192 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
Greg Roseda36b642012-12-11 08:26:43 +0000193 return 0;
Alexander Duyck99d74482012-05-09 08:09:25 +0000194
Greg Rosec6bda302011-08-24 02:37:55 +0000195#ifdef CONFIG_PCI_IOV
Alexander Duyck92971272012-05-23 02:58:40 +0000196 /*
197 * If our VFs are assigned we cannot shut down SR-IOV
198 * without causing issues, so just leave the hardware
199 * available but disabled
200 */
Alexander Duycke507d0c2013-03-26 00:03:21 +0000201 if (pci_vfs_assigned(adapter->pdev)) {
Alexander Duyck92971272012-05-23 02:58:40 +0000202 e_dev_warn("Unloading driver while VFs are assigned - VFs will not be deallocated\n");
Greg Roseda36b642012-12-11 08:26:43 +0000203 return -EPERM;
David S. Millerd47e12d2012-07-22 12:36:41 -0700204 }
Greg Rosec6bda302011-08-24 02:37:55 +0000205 /* disable iov and allow time for transactions to clear */
206 pci_disable_sriov(adapter->pdev);
207#endif
208
209 /* turn off device IOV mode */
Alexander Duyck73079ea2012-07-14 06:48:49 +0000210 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0);
Greg Rosec6bda302011-08-24 02:37:55 +0000211 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
212 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
213 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
214
215 /* set default pool back to 0 */
216 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
217 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
218 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
219 IXGBE_WRITE_FLUSH(hw);
220
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000221 /* Disable VMDq flag so device will be set in VM mode */
John Fastabend2a47fa42013-11-06 09:54:52 -0800222 if (adapter->ring_feature[RING_F_VMDQ].limit == 1) {
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000223 adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED;
John Fastabend2a47fa42013-11-06 09:54:52 -0800224 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
225 rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus());
226 } else {
227 rss = min_t(int, IXGBE_MAX_L2A_QUEUES, num_online_cpus());
228 }
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000229
John Fastabend2a47fa42013-11-06 09:54:52 -0800230 adapter->ring_feature[RING_F_VMDQ].offset = 0;
Greg Roseda36b642012-12-11 08:26:43 +0000231 adapter->ring_feature[RING_F_RSS].limit = rss;
232
Greg Rosec6bda302011-08-24 02:37:55 +0000233 /* take a breather then clean up driver data */
234 msleep(100);
Greg Roseda36b642012-12-11 08:26:43 +0000235 return 0;
236}
237
238static int ixgbe_pci_sriov_enable(struct pci_dev *dev, int num_vfs)
239{
240#ifdef CONFIG_PCI_IOV
241 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
242 int err = 0;
243 int i;
244 int pre_existing_vfs = pci_num_vf(dev);
245
246 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
247 err = ixgbe_disable_sriov(adapter);
248 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
249 goto out;
250
251 if (err)
252 goto err_out;
253
254 /* While the SR-IOV capability structure reports total VFs to be
255 * 64 we limit the actual number that can be allocated to 63 so
256 * that some transmit/receive resources can be reserved to the
257 * PF. The PCI bus driver already checks for other values out of
258 * range.
259 */
260 if (num_vfs > 63) {
261 err = -EPERM;
262 goto err_out;
263 }
264
265 adapter->num_vfs = num_vfs;
266
267 err = __ixgbe_enable_sriov(adapter);
268 if (err)
269 goto err_out;
270
271 for (i = 0; i < adapter->num_vfs; i++)
272 ixgbe_vf_configuration(dev, (i | 0x10000000));
273
274 err = pci_enable_sriov(dev, num_vfs);
275 if (err) {
276 e_dev_warn("Failed to enable PCI sriov: %d\n", err);
277 goto err_out;
278 }
279 ixgbe_sriov_reinit(adapter);
280
281out:
282 return num_vfs;
283
284err_out:
285 return err;
286#endif
287 return 0;
288}
289
290static int ixgbe_pci_sriov_disable(struct pci_dev *dev)
291{
292 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
293 int err;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000294#ifdef CONFIG_PCI_IOV
Greg Roseda36b642012-12-11 08:26:43 +0000295 u32 current_flags = adapter->flags;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000296#endif
Greg Roseda36b642012-12-11 08:26:43 +0000297
298 err = ixgbe_disable_sriov(adapter);
299
300 /* Only reinit if no error and state changed */
Greg Roseda36b642012-12-11 08:26:43 +0000301#ifdef CONFIG_PCI_IOV
John Fastabend2a47fa42013-11-06 09:54:52 -0800302 if (!err && current_flags != adapter->flags)
Greg Roseda36b642012-12-11 08:26:43 +0000303 ixgbe_sriov_reinit(adapter);
304#endif
Greg Roseda36b642012-12-11 08:26:43 +0000305
306 return err;
307}
308
309int ixgbe_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
310{
311 if (num_vfs == 0)
312 return ixgbe_pci_sriov_disable(dev);
313 else
314 return ixgbe_pci_sriov_enable(dev, num_vfs);
Greg Rosec6bda302011-08-24 02:37:55 +0000315}
316
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000317static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
Alexander Duyck58a02be2012-07-20 08:09:17 +0000318 u32 *msgbuf, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000319{
Alexander Duyck58a02be2012-07-20 08:09:17 +0000320 int entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
321 >> IXGBE_VT_MSGINFO_SHIFT;
322 u16 *hash_list = (u16 *)&msgbuf[1];
Greg Rose17367272010-01-09 02:25:48 +0000323 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Greg Rose8a07a222010-05-05 19:57:30 +0000324 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose17367272010-01-09 02:25:48 +0000325 int i;
Greg Rose8a07a222010-05-05 19:57:30 +0000326 u32 vector_bit;
327 u32 vector_reg;
328 u32 mta_reg;
Greg Rose17367272010-01-09 02:25:48 +0000329
330 /* only so many hash values supported */
331 entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES);
332
333 /*
334 * salt away the number of multi cast addresses assigned
335 * to this VF for later use to restore when the PF multi cast
336 * list changes
337 */
338 vfinfo->num_vf_mc_hashes = entries;
339
340 /*
341 * VFs are limited to using the MTA hash table for their multicast
342 * addresses
343 */
344 for (i = 0; i < entries; i++) {
Joe Perchese81a1ba2010-11-14 17:04:33 +0000345 vfinfo->vf_mc_hashes[i] = hash_list[i];
Greg Rose17367272010-01-09 02:25:48 +0000346 }
347
Greg Rose8a07a222010-05-05 19:57:30 +0000348 for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
349 vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F;
350 vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F;
351 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
352 mta_reg |= (1 << vector_bit);
353 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
354 }
Greg Rose17367272010-01-09 02:25:48 +0000355
356 return 0;
357}
358
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000359static void ixgbe_restore_vf_macvlans(struct ixgbe_adapter *adapter)
360{
361 struct ixgbe_hw *hw = &adapter->hw;
362 struct list_head *pos;
363 struct vf_macvlans *entry;
364
365 list_for_each(pos, &adapter->vf_mvs.l) {
366 entry = list_entry(pos, struct vf_macvlans, l);
Joe Perches23677ce2012-02-09 11:17:23 +0000367 if (!entry->free)
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000368 hw->mac.ops.set_rar(hw, entry->rar_entry,
369 entry->vf_macvlan,
370 entry->vf, IXGBE_RAH_AV);
371 }
372}
373
Greg Rose17367272010-01-09 02:25:48 +0000374void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter)
375{
376 struct ixgbe_hw *hw = &adapter->hw;
377 struct vf_data_storage *vfinfo;
378 int i, j;
379 u32 vector_bit;
380 u32 vector_reg;
381 u32 mta_reg;
382
383 for (i = 0; i < adapter->num_vfs; i++) {
384 vfinfo = &adapter->vfinfo[i];
385 for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) {
386 hw->addr_ctrl.mta_in_use++;
387 vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F;
388 vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F;
389 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
390 mta_reg |= (1 << vector_bit);
391 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
392 }
393 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000394
395 /* Restore any VF macvlans */
396 ixgbe_restore_vf_macvlans(adapter);
Greg Rose17367272010-01-09 02:25:48 +0000397}
398
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000399static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid,
400 u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000401{
Alexander Duyckb35d4d42012-05-23 05:39:25 +0000402 /* VLAN 0 is a special case, don't allow it to be removed */
403 if (!vid && !add)
404 return 0;
405
Greg Rose17367272010-01-09 02:25:48 +0000406 return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add);
407}
408
Alexander Duyck872844d2012-08-15 02:10:43 +0000409static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
Greg Rosee9f98072011-01-26 01:06:07 +0000410{
411 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck872844d2012-08-15 02:10:43 +0000412 int max_frame = msgbuf[1];
Greg Rosee9f98072011-01-26 01:06:07 +0000413 u32 max_frs;
Greg Rosee9f98072011-01-26 01:06:07 +0000414
Alexander Duyck872844d2012-08-15 02:10:43 +0000415 /*
416 * For 82599EB we have to keep all PFs and VFs operating with
417 * the same max_frame value in order to avoid sending an oversize
418 * frame to a VF. In order to guarantee this is handled correctly
419 * for all cases we have several special exceptions to take into
420 * account before we can enable the VF for receive
421 */
422 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
423 struct net_device *dev = adapter->netdev;
424 int pf_max_frame = dev->mtu + ETH_HLEN;
425 u32 reg_offset, vf_shift, vfre;
426 s32 err = 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000427
Alexander Duyck872844d2012-08-15 02:10:43 +0000428#ifdef CONFIG_FCOE
429 if (dev->features & NETIF_F_FCOE_MTU)
430 pf_max_frame = max_t(int, pf_max_frame,
431 IXGBE_FCOE_JUMBO_FRAME_SIZE);
432
433#endif /* CONFIG_FCOE */
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000434 switch (adapter->vfinfo[vf].vf_api) {
435 case ixgbe_mbox_api_11:
436 /*
437 * Version 1.1 supports jumbo frames on VFs if PF has
438 * jumbo frames enabled which means legacy VFs are
439 * disabled
440 */
441 if (pf_max_frame > ETH_FRAME_LEN)
442 break;
443 default:
444 /*
445 * If the PF or VF are running w/ jumbo frames enabled
446 * we need to shut down the VF Rx path as we cannot
447 * support jumbo frames on legacy VFs
448 */
449 if ((pf_max_frame > ETH_FRAME_LEN) ||
450 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
451 err = -EINVAL;
452 break;
453 }
Alexander Duyck872844d2012-08-15 02:10:43 +0000454
455 /* determine VF receive enable location */
456 vf_shift = vf % 32;
457 reg_offset = vf / 32;
458
459 /* enable or disable receive depending on error */
460 vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
461 if (err)
462 vfre &= ~(1 << vf_shift);
463 else
464 vfre |= 1 << vf_shift;
465 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre);
466
467 if (err) {
468 e_err(drv, "VF max_frame %d out of range\n", max_frame);
469 return err;
470 }
Greg Rosee9f98072011-01-26 01:06:07 +0000471 }
472
Alexander Duyck872844d2012-08-15 02:10:43 +0000473 /* MTU < 68 is an error and causes problems on some kernels */
474 if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) {
475 e_err(drv, "VF max_frame %d out of range\n", max_frame);
476 return -EINVAL;
477 }
478
479 /* pull current max frame size from hardware */
480 max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
481 max_frs &= IXGBE_MHADD_MFS_MASK;
482 max_frs >>= IXGBE_MHADD_MFS_SHIFT;
483
484 if (max_frs < max_frame) {
485 max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT;
Greg Rosee9f98072011-01-26 01:06:07 +0000486 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
487 }
488
Alexander Duyck872844d2012-08-15 02:10:43 +0000489 e_info(hw, "VF requests change max MTU to %d\n", max_frame);
490
491 return 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000492}
493
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000494static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
Greg Rose17367272010-01-09 02:25:48 +0000495{
496 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Greg Rosef0412772010-05-04 22:11:46 +0000497 vmolr |= (IXGBE_VMOLR_ROMPE |
Greg Rose17367272010-01-09 02:25:48 +0000498 IXGBE_VMOLR_BAM);
Greg Rosef0412772010-05-04 22:11:46 +0000499 if (aupe)
500 vmolr |= IXGBE_VMOLR_AUPE;
501 else
502 vmolr &= ~IXGBE_VMOLR_AUPE;
Greg Rose17367272010-01-09 02:25:48 +0000503 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
504}
505
Alexander Duyck107d3012012-10-02 00:17:03 +0000506static void ixgbe_clear_vmvir(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose7f016482010-05-04 22:12:06 +0000507{
508 struct ixgbe_hw *hw = &adapter->hw;
509
Alexander Duyck107d3012012-10-02 00:17:03 +0000510 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
Greg Rose7f016482010-05-04 22:12:06 +0000511}
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000512static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000513{
514 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck107d3012012-10-02 00:17:03 +0000515 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Alexander Duyck28500622010-06-15 09:25:48 +0000516 int rar_entry = hw->mac.num_rar_entries - (vf + 1);
Alexander Duyck107d3012012-10-02 00:17:03 +0000517 u8 num_tcs = netdev_get_num_tc(adapter->netdev);
518
519 /* add PF assigned VLAN or VLAN 0 */
520 ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf);
Greg Rose17367272010-01-09 02:25:48 +0000521
522 /* reset offloads to defaults */
Alexander Duyck107d3012012-10-02 00:17:03 +0000523 ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan);
524
525 /* set outgoing tags for VFs */
526 if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) {
527 ixgbe_clear_vmvir(adapter, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000528 } else {
Alexander Duyck107d3012012-10-02 00:17:03 +0000529 if (vfinfo->pf_qos || !num_tcs)
530 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
531 vfinfo->pf_qos, vf);
532 else
533 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
534 adapter->default_up, vf);
535
536 if (vfinfo->spoofchk_enabled)
537 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000538 }
Greg Rose17367272010-01-09 02:25:48 +0000539
540 /* reset multicast table array for vf */
541 adapter->vfinfo[vf].num_vf_mc_hashes = 0;
542
543 /* Flush and reset the mta with the new values */
544 ixgbe_set_rx_mode(adapter->netdev);
545
Alexander Duyck28500622010-06-15 09:25:48 +0000546 hw->mac.ops.clear_rar(hw, rar_entry);
Alexander Duyck374c65d2012-07-20 08:09:22 +0000547
548 /* reset VF api back to unknown */
549 adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10;
Greg Rose17367272010-01-09 02:25:48 +0000550}
551
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000552static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
553 int vf, unsigned char *mac_addr)
Greg Rose17367272010-01-09 02:25:48 +0000554{
555 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck28500622010-06-15 09:25:48 +0000556 int rar_entry = hw->mac.num_rar_entries - (vf + 1);
Greg Rose17367272010-01-09 02:25:48 +0000557
Joe Perchesd458cdf2013-10-01 19:04:40 -0700558 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, ETH_ALEN);
Alexander Duyck28500622010-06-15 09:25:48 +0000559 hw->mac.ops.set_rar(hw, rar_entry, mac_addr, vf, IXGBE_RAH_AV);
Greg Rose17367272010-01-09 02:25:48 +0000560
561 return 0;
562}
563
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000564static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter,
565 int vf, int index, unsigned char *mac_addr)
566{
567 struct ixgbe_hw *hw = &adapter->hw;
568 struct list_head *pos;
569 struct vf_macvlans *entry;
570
571 if (index <= 1) {
572 list_for_each(pos, &adapter->vf_mvs.l) {
573 entry = list_entry(pos, struct vf_macvlans, l);
574 if (entry->vf == vf) {
575 entry->vf = -1;
576 entry->free = true;
577 entry->is_macvlan = false;
578 hw->mac.ops.clear_rar(hw, entry->rar_entry);
579 }
580 }
581 }
582
583 /*
584 * If index was zero then we were asked to clear the uc list
585 * for the VF. We're done.
586 */
587 if (!index)
588 return 0;
589
590 entry = NULL;
591
592 list_for_each(pos, &adapter->vf_mvs.l) {
593 entry = list_entry(pos, struct vf_macvlans, l);
594 if (entry->free)
595 break;
596 }
597
598 /*
599 * If we traversed the entire list and didn't find a free entry
600 * then we're out of space on the RAR table. Also entry may
601 * be NULL because the original memory allocation for the list
602 * failed, which is not fatal but does mean we can't support
603 * VF requests for MACVLAN because we couldn't allocate
604 * memory for the list management required.
605 */
606 if (!entry || !entry->free)
607 return -ENOSPC;
608
609 entry->free = false;
610 entry->is_macvlan = true;
611 entry->vf = vf;
612 memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN);
613
614 hw->mac.ops.set_rar(hw, entry->rar_entry, mac_addr, vf, IXGBE_RAH_AV);
615
616 return 0;
617}
618
Greg Rose17367272010-01-09 02:25:48 +0000619int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
620{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800621 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Greg Rose17367272010-01-09 02:25:48 +0000622 unsigned int vfn = (event_mask & 0x3f);
623
624 bool enable = ((event_mask & 0x10000000U) != 0);
625
Joe Perchesd458cdf2013-10-01 19:04:40 -0700626 if (enable)
627 eth_zero_addr(adapter->vfinfo[vfn].vf_mac_addresses);
Greg Rose17367272010-01-09 02:25:48 +0000628
629 return 0;
630}
631
Alexander Duyck58a02be2012-07-20 08:09:17 +0000632static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000633{
Alexander Duyck87397372014-01-15 17:38:40 -0800634 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
Greg Rose17367272010-01-09 02:25:48 +0000635 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000636 unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
Emil Tantilovb08e1ed2013-07-26 07:34:54 +0000637 u32 reg, reg_offset, vf_shift;
638 u32 msgbuf[4] = {0, 0, 0, 0};
Alexander Duyck58a02be2012-07-20 08:09:17 +0000639 u8 *addr = (u8 *)(&msgbuf[1]);
Alexander Duyck87397372014-01-15 17:38:40 -0800640 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
641 int i;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000642
643 e_info(probe, "VF Reset msg received from vf %d\n", vf);
644
645 /* reset the filters for the device */
646 ixgbe_vf_reset_event(adapter, vf);
647
648 /* set vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000649 if (!is_zero_ether_addr(vf_mac))
650 ixgbe_set_vf_mac(adapter, vf, vf_mac);
Greg Rose17367272010-01-09 02:25:48 +0000651
652 vf_shift = vf % 32;
653 reg_offset = vf / 32;
654
Alexander Duyck58a02be2012-07-20 08:09:17 +0000655 /* enable transmit for vf */
Greg Rose17367272010-01-09 02:25:48 +0000656 reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000657 reg |= 1 << vf_shift;
Greg Rose17367272010-01-09 02:25:48 +0000658 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
659
Alexander Duyck87397372014-01-15 17:38:40 -0800660 /* force drop enable for all VF Rx queues */
661 for (i = vf * q_per_pool; i < ((vf + 1) * q_per_pool); i++) {
662 /* flush previous write */
663 IXGBE_WRITE_FLUSH(hw);
664
665 /* indicate to hardware that we want to set drop enable */
666 reg = IXGBE_QDE_WRITE | IXGBE_QDE_ENABLE;
667 reg |= i << IXGBE_QDE_IDX_SHIFT;
668 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
669 }
670
Alexander Duyck58a02be2012-07-20 08:09:17 +0000671 /* enable receive for vf */
Greg Rose17367272010-01-09 02:25:48 +0000672 reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000673 reg |= 1 << vf_shift;
674 /*
675 * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs.
676 * For more info take a look at ixgbe_set_vf_lpe
677 */
678 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
679 struct net_device *dev = adapter->netdev;
680 int pf_max_frame = dev->mtu + ETH_HLEN;
681
682#ifdef CONFIG_FCOE
683 if (dev->features & NETIF_F_FCOE_MTU)
684 pf_max_frame = max_t(int, pf_max_frame,
685 IXGBE_FCOE_JUMBO_FRAME_SIZE);
686
687#endif /* CONFIG_FCOE */
688 if (pf_max_frame > ETH_FRAME_LEN)
689 reg &= ~(1 << vf_shift);
690 }
Greg Rose17367272010-01-09 02:25:48 +0000691 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
692
Alexander Duyck58a02be2012-07-20 08:09:17 +0000693 /* enable VF mailbox for further messages */
694 adapter->vfinfo[vf].clear_to_send = true;
695
Greg Rosea985b6c32010-11-18 03:02:52 +0000696 /* Enable counting of spoofed packets in the SSVPC register */
697 reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
698 reg |= (1 << vf_shift);
699 IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
700
Alexander Duyck58a02be2012-07-20 08:09:17 +0000701 /* reply to reset with ack and vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000702 msgbuf[0] = IXGBE_VF_RESET;
703 if (!is_zero_ether_addr(vf_mac)) {
704 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
705 memcpy(addr, vf_mac, ETH_ALEN);
706 } else {
707 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
708 dev_warn(&adapter->pdev->dev,
709 "VF %d has no MAC address assigned, you may have to assign one manually\n",
710 vf);
711 }
Alexander Duyck58a02be2012-07-20 08:09:17 +0000712
713 /*
714 * Piggyback the multicast filter type so VF can compute the
715 * correct vectors
716 */
717 msgbuf[3] = hw->mac.mc_filter_type;
718 ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
719
720 return 0;
721}
722
723static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter,
724 u32 *msgbuf, u32 vf)
725{
726 u8 *new_mac = ((u8 *)(&msgbuf[1]));
727
728 if (!is_valid_ether_addr(new_mac)) {
729 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
730 return -1;
731 }
732
733 if (adapter->vfinfo[vf].pf_set_mac &&
dingtianhong4012dda2013-12-30 15:40:50 +0800734 !ether_addr_equal(adapter->vfinfo[vf].vf_mac_addresses, new_mac)) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000735 e_warn(drv,
736 "VF %d attempted to override administratively set MAC address\n"
737 "Reload the VF driver to resume operations\n",
738 vf);
739 return -1;
740 }
741
Greg Rose3970c322012-09-25 02:25:30 +0000742 return ixgbe_set_vf_mac(adapter, vf, new_mac) < 0;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000743}
744
Greg Rose670224f2013-02-22 02:14:39 +0000745static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
746{
747 u32 vlvf;
748 s32 regindex;
749
750 /* short cut the special case */
751 if (vlan == 0)
752 return 0;
753
754 /* Search for the vlan id in the VLVF entries */
755 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
756 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
757 if ((vlvf & VLAN_VID_MASK) == vlan)
758 break;
759 }
760
761 /* Return a negative value if not found */
762 if (regindex >= IXGBE_VLVF_ENTRIES)
763 regindex = -1;
764
765 return regindex;
766}
767
Alexander Duyck58a02be2012-07-20 08:09:17 +0000768static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter,
769 u32 *msgbuf, u32 vf)
770{
771 struct ixgbe_hw *hw = &adapter->hw;
772 int add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT;
773 int vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
774 int err;
Greg Rose670224f2013-02-22 02:14:39 +0000775 s32 reg_ndx;
776 u32 vlvf;
777 u32 bits;
Alexander Duyck107d3012012-10-02 00:17:03 +0000778 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck58a02be2012-07-20 08:09:17 +0000779
Alexander Duyck107d3012012-10-02 00:17:03 +0000780 if (adapter->vfinfo[vf].pf_vlan || tcs) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000781 e_warn(drv,
782 "VF %d attempted to override administratively set VLAN configuration\n"
783 "Reload the VF driver to resume operations\n",
784 vf);
785 return -1;
786 }
787
788 if (add)
789 adapter->vfinfo[vf].vlan_count++;
790 else if (adapter->vfinfo[vf].vlan_count)
791 adapter->vfinfo[vf].vlan_count--;
792
Greg Rose670224f2013-02-22 02:14:39 +0000793 /* in case of promiscuous mode any VLAN filter set for a VF must
794 * also have the PF pool added to it.
795 */
796 if (add && adapter->netdev->flags & IFF_PROMISC)
797 err = ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
798
Alexander Duyck58a02be2012-07-20 08:09:17 +0000799 err = ixgbe_set_vf_vlan(adapter, add, vid, vf);
800 if (!err && adapter->vfinfo[vf].spoofchk_enabled)
801 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
802
Greg Rose670224f2013-02-22 02:14:39 +0000803 /* Go through all the checks to see if the VLAN filter should
804 * be wiped completely.
805 */
806 if (!add && adapter->netdev->flags & IFF_PROMISC) {
807 reg_ndx = ixgbe_find_vlvf_entry(hw, vid);
808 if (reg_ndx < 0)
809 goto out;
810 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_ndx));
811 /* See if any other pools are set for this VLAN filter
812 * entry other than the PF.
813 */
814 if (VMDQ_P(0) < 32) {
815 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
816 bits &= ~(1 << VMDQ_P(0));
817 bits |= IXGBE_READ_REG(hw,
818 IXGBE_VLVFB(reg_ndx * 2) + 1);
819 } else {
820 bits = IXGBE_READ_REG(hw,
821 IXGBE_VLVFB(reg_ndx * 2) + 1);
822 bits &= ~(1 << (VMDQ_P(0) - 32));
823 bits |= IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
824 }
825
826 /* If the filter was removed then ensure PF pool bit
827 * is cleared if the PF only added itself to the pool
828 * because the PF is in promiscuous mode.
829 */
830 if ((vlvf & VLAN_VID_MASK) == vid &&
831 !test_bit(vid, adapter->active_vlans) && !bits)
832 ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
833 }
834
835out:
836
Alexander Duyck58a02be2012-07-20 08:09:17 +0000837 return err;
838}
839
840static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter,
841 u32 *msgbuf, u32 vf)
842{
843 u8 *new_mac = ((u8 *)(&msgbuf[1]));
844 int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
845 IXGBE_VT_MSGINFO_SHIFT;
846 int err;
847
848 if (adapter->vfinfo[vf].pf_set_mac && index > 0) {
849 e_warn(drv,
850 "VF %d requested MACVLAN filter but is administratively denied\n",
851 vf);
852 return -1;
853 }
854
855 /* An non-zero index indicates the VF is setting a filter */
856 if (index) {
857 if (!is_valid_ether_addr(new_mac)) {
858 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
859 return -1;
860 }
861
862 /*
863 * If the VF is allowed to set MAC filters then turn off
864 * anti-spoofing to avoid false positives.
865 */
866 if (adapter->vfinfo[vf].spoofchk_enabled)
867 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false);
868 }
869
870 err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac);
871 if (err == -ENOSPC)
872 e_warn(drv,
873 "VF %d has requested a MACVLAN filter but there is no space for it\n",
874 vf);
Greg Rosea3013402012-10-30 00:40:02 +0000875
876 return err < 0;
Greg Rose17367272010-01-09 02:25:48 +0000877}
878
Alexander Duyck374c65d2012-07-20 08:09:22 +0000879static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter,
880 u32 *msgbuf, u32 vf)
881{
882 int api = msgbuf[1];
883
884 switch (api) {
885 case ixgbe_mbox_api_10:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000886 case ixgbe_mbox_api_11:
Alexander Duyck374c65d2012-07-20 08:09:22 +0000887 adapter->vfinfo[vf].vf_api = api;
888 return 0;
889 default:
890 break;
891 }
892
893 e_info(drv, "VF %d requested invalid api version %u\n", vf, api);
894
895 return -1;
896}
897
Alexander Duyckf591cd92012-07-20 08:09:32 +0000898static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter,
899 u32 *msgbuf, u32 vf)
900{
901 struct net_device *dev = adapter->netdev;
902 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
903 unsigned int default_tc = 0;
904 u8 num_tcs = netdev_get_num_tc(dev);
905
906 /* verify the PF is supporting the correct APIs */
907 switch (adapter->vfinfo[vf].vf_api) {
908 case ixgbe_mbox_api_20:
909 case ixgbe_mbox_api_11:
910 break;
911 default:
912 return -1;
913 }
914
915 /* only allow 1 Tx queue for bandwidth limiting */
916 msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
917 msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
918
919 /* if TCs > 1 determine which TC belongs to default user priority */
920 if (num_tcs > 1)
921 default_tc = netdev_get_prio_tc_map(dev, adapter->default_up);
922
923 /* notify VF of need for VLAN tag stripping, and correct queue */
924 if (num_tcs)
925 msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
926 else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos)
927 msgbuf[IXGBE_VF_TRANS_VLAN] = 1;
928 else
929 msgbuf[IXGBE_VF_TRANS_VLAN] = 0;
930
931 /* notify VF of default queue */
932 msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc;
933
934 return 0;
935}
936
Greg Rose17367272010-01-09 02:25:48 +0000937static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
938{
939 u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
Emil Tantilovc0509992011-05-07 06:49:18 +0000940 u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
Greg Rose17367272010-01-09 02:25:48 +0000941 struct ixgbe_hw *hw = &adapter->hw;
942 s32 retval;
Greg Rose17367272010-01-09 02:25:48 +0000943
944 retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
945
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000946 if (retval) {
Emil Tantilov849c4542010-06-03 16:53:41 +0000947 pr_err("Error receiving message from VF\n");
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000948 return retval;
949 }
Greg Rose17367272010-01-09 02:25:48 +0000950
951 /* this is a message we already processed, do nothing */
952 if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
953 return retval;
954
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000955 /* flush the ack before we write any messages back */
956 IXGBE_WRITE_FLUSH(hw);
957
Alexander Duyck374c65d2012-07-20 08:09:22 +0000958 if (msgbuf[0] == IXGBE_VF_RESET)
959 return ixgbe_vf_reset_msg(adapter, vf);
960
Greg Rose17367272010-01-09 02:25:48 +0000961 /*
962 * until the vf completes a virtual function reset it should not be
963 * allowed to start any configuration.
964 */
Greg Rose17367272010-01-09 02:25:48 +0000965 if (!adapter->vfinfo[vf].clear_to_send) {
966 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
967 ixgbe_write_mbx(hw, msgbuf, 1, vf);
968 return retval;
969 }
970
971 switch ((msgbuf[0] & 0xFFFF)) {
972 case IXGBE_VF_SET_MAC_ADDR:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000973 retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000974 break;
975 case IXGBE_VF_SET_MULTICAST:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000976 retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf);
977 break;
978 case IXGBE_VF_SET_VLAN:
979 retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000980 break;
981 case IXGBE_VF_SET_LPE:
Alexander Duyck872844d2012-08-15 02:10:43 +0000982 retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000983 break;
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000984 case IXGBE_VF_SET_MACVLAN:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000985 retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000986 break;
Alexander Duyck374c65d2012-07-20 08:09:22 +0000987 case IXGBE_VF_API_NEGOTIATE:
988 retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf);
989 break;
Alexander Duyckf591cd92012-07-20 08:09:32 +0000990 case IXGBE_VF_GET_QUEUES:
991 retval = ixgbe_get_vf_queues(adapter, msgbuf, vf);
992 break;
Greg Rose17367272010-01-09 02:25:48 +0000993 default:
Emil Tantilov396e7992010-07-01 20:05:12 +0000994 e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]);
Greg Rose17367272010-01-09 02:25:48 +0000995 retval = IXGBE_ERR_MBX;
996 break;
997 }
998
999 /* notify the VF of the results of what it sent us */
1000 if (retval)
1001 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1002 else
1003 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
1004
1005 msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
1006
Alexander Duyck374c65d2012-07-20 08:09:22 +00001007 ixgbe_write_mbx(hw, msgbuf, mbx_size, vf);
Greg Rose17367272010-01-09 02:25:48 +00001008
1009 return retval;
1010}
1011
1012static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1013{
1014 struct ixgbe_hw *hw = &adapter->hw;
1015 u32 msg = IXGBE_VT_MSGTYPE_NACK;
1016
1017 /* if device isn't clear to send it shouldn't be reading either */
1018 if (!adapter->vfinfo[vf].clear_to_send)
1019 ixgbe_write_mbx(hw, &msg, 1, vf);
1020}
1021
1022void ixgbe_msg_task(struct ixgbe_adapter *adapter)
1023{
1024 struct ixgbe_hw *hw = &adapter->hw;
1025 u32 vf;
1026
1027 for (vf = 0; vf < adapter->num_vfs; vf++) {
1028 /* process any reset requests */
1029 if (!ixgbe_check_for_rst(hw, vf))
1030 ixgbe_vf_reset_event(adapter, vf);
1031
1032 /* process any messages pending */
1033 if (!ixgbe_check_for_msg(hw, vf))
1034 ixgbe_rcv_msg_from_vf(adapter, vf);
1035
1036 /* process any acks */
1037 if (!ixgbe_check_for_ack(hw, vf))
1038 ixgbe_rcv_ack_from_vf(adapter, vf);
1039 }
1040}
1041
Greg Rose767081a2010-01-22 22:46:40 +00001042void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
1043{
1044 struct ixgbe_hw *hw = &adapter->hw;
1045
1046 /* disable transmit and receive for all vfs */
1047 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
1048 IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
1049
1050 IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
1051 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
1052}
1053
1054void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
1055{
1056 struct ixgbe_hw *hw = &adapter->hw;
1057 u32 ping;
1058 int i;
1059
1060 for (i = 0 ; i < adapter->num_vfs; i++) {
1061 ping = IXGBE_PF_CONTROL_MSG;
1062 if (adapter->vfinfo[i].clear_to_send)
1063 ping |= IXGBE_VT_MSGTYPE_CTS;
1064 ixgbe_write_mbx(hw, &ping, 1, i);
1065 }
1066}
1067
Greg Rose7f016482010-05-04 22:12:06 +00001068int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1069{
1070 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1071 if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs))
1072 return -EINVAL;
1073 adapter->vfinfo[vf].pf_set_mac = true;
1074 dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf);
1075 dev_info(&adapter->pdev->dev, "Reload the VF driver to make this"
1076 " change effective.");
1077 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1078 dev_warn(&adapter->pdev->dev, "The VF MAC address has been set,"
1079 " but the PF device is not up.\n");
1080 dev_warn(&adapter->pdev->dev, "Bring the PF device up before"
1081 " attempting to use the VF device.\n");
1082 }
1083 return ixgbe_set_vf_mac(adapter, vf, mac);
1084}
1085
1086int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos)
1087{
1088 int err = 0;
1089 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Greg Rosea985b6c32010-11-18 03:02:52 +00001090 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose7f016482010-05-04 22:12:06 +00001091
1092 if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7))
1093 return -EINVAL;
1094 if (vlan || qos) {
Greg Rose026ac672013-04-17 20:41:35 +00001095 if (adapter->vfinfo[vf].pf_vlan)
1096 err = ixgbe_set_vf_vlan(adapter, false,
1097 adapter->vfinfo[vf].pf_vlan,
1098 vf);
1099 if (err)
1100 goto out;
Greg Rose7f016482010-05-04 22:12:06 +00001101 err = ixgbe_set_vf_vlan(adapter, true, vlan, vf);
1102 if (err)
1103 goto out;
Alexander Duyck107d3012012-10-02 00:17:03 +00001104 ixgbe_set_vmvir(adapter, vlan, qos, vf);
Greg Rosea985b6c32010-11-18 03:02:52 +00001105 ixgbe_set_vmolr(hw, vf, false);
Greg Rosede4c7f62011-09-29 05:57:33 +00001106 if (adapter->vfinfo[vf].spoofchk_enabled)
Greg Rosea1cbb15c2011-05-13 01:33:48 +00001107 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rosede4c7f62011-09-29 05:57:33 +00001108 adapter->vfinfo[vf].vlan_count++;
Greg Rose7f016482010-05-04 22:12:06 +00001109 adapter->vfinfo[vf].pf_vlan = vlan;
1110 adapter->vfinfo[vf].pf_qos = qos;
1111 dev_info(&adapter->pdev->dev,
1112 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf);
1113 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1114 dev_warn(&adapter->pdev->dev,
1115 "The VF VLAN has been set,"
1116 " but the PF device is not up.\n");
1117 dev_warn(&adapter->pdev->dev,
1118 "Bring the PF device up before"
1119 " attempting to use the VF device.\n");
1120 }
1121 } else {
1122 err = ixgbe_set_vf_vlan(adapter, false,
1123 adapter->vfinfo[vf].pf_vlan, vf);
Alexander Duyck107d3012012-10-02 00:17:03 +00001124 ixgbe_clear_vmvir(adapter, vf);
Greg Rosea985b6c32010-11-18 03:02:52 +00001125 ixgbe_set_vmolr(hw, vf, true);
1126 hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf);
Greg Rosede4c7f62011-09-29 05:57:33 +00001127 if (adapter->vfinfo[vf].vlan_count)
1128 adapter->vfinfo[vf].vlan_count--;
Greg Rose7f016482010-05-04 22:12:06 +00001129 adapter->vfinfo[vf].pf_vlan = 0;
1130 adapter->vfinfo[vf].pf_qos = 0;
1131 }
1132out:
1133 return err;
1134}
1135
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001136static int ixgbe_link_mbps(struct ixgbe_adapter *adapter)
Lior Levyff4ab202011-03-11 02:03:07 +00001137{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001138 switch (adapter->link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001139 case IXGBE_LINK_SPEED_100_FULL:
1140 return 100;
1141 case IXGBE_LINK_SPEED_1GB_FULL:
1142 return 1000;
1143 case IXGBE_LINK_SPEED_10GB_FULL:
1144 return 10000;
1145 default:
1146 return 0;
1147 }
1148}
1149
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001150static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf)
Lior Levyff4ab202011-03-11 02:03:07 +00001151{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001152 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1153 struct ixgbe_hw *hw = &adapter->hw;
1154 u32 bcnrc_val = 0;
1155 u16 queue, queues_per_pool;
1156 u16 tx_rate = adapter->vfinfo[vf].tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001157
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001158 if (tx_rate) {
1159 /* start with base link speed value */
1160 bcnrc_val = adapter->vf_rate_link_speed;
1161
Lior Levyff4ab202011-03-11 02:03:07 +00001162 /* Calculate the rate factor values to set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001163 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1164 bcnrc_val /= tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001165
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001166 /* clear everything but the rate factor */
1167 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1168 IXGBE_RTTBCNRC_RF_DEC_MASK;
1169
1170 /* enable the rate scheduler */
1171 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
Lior Levyff4ab202011-03-11 02:03:07 +00001172 }
1173
Lior Levy7555e832011-06-25 00:09:08 -07001174 /*
1175 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
1176 * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported
1177 * and 0x004 otherwise.
1178 */
1179 switch (hw->mac.type) {
1180 case ixgbe_mac_82599EB:
1181 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4);
1182 break;
1183 case ixgbe_mac_X540:
1184 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14);
1185 break;
1186 default:
1187 break;
1188 }
1189
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001190 /* determine how many queues per pool based on VMDq mask */
1191 queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
1192
1193 /* write value for all Tx queues belonging to VF */
1194 for (queue = 0; queue < queues_per_pool; queue++) {
1195 unsigned int reg_idx = (vf * queues_per_pool) + queue;
1196
1197 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx);
1198 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1199 }
Lior Levyff4ab202011-03-11 02:03:07 +00001200}
1201
1202void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter)
1203{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001204 int i;
Lior Levyff4ab202011-03-11 02:03:07 +00001205
1206 /* VF Tx rate limit was not set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001207 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001208 return;
1209
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001210 if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001211 adapter->vf_rate_link_speed = 0;
1212 dev_info(&adapter->pdev->dev,
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001213 "Link speed has been changed. VF Transmit rate is disabled\n");
Lior Levyff4ab202011-03-11 02:03:07 +00001214 }
1215
1216 for (i = 0; i < adapter->num_vfs; i++) {
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001217 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001218 adapter->vfinfo[i].tx_rate = 0;
1219
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001220 ixgbe_set_vf_rate_limit(adapter, i);
Lior Levyff4ab202011-03-11 02:03:07 +00001221 }
1222}
1223
Greg Rose7f016482010-05-04 22:12:06 +00001224int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int tx_rate)
1225{
Lior Levyff4ab202011-03-11 02:03:07 +00001226 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001227 int link_speed;
Lior Levyff4ab202011-03-11 02:03:07 +00001228
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001229 /* verify VF is active */
1230 if (vf >= adapter->num_vfs)
Lior Levyff4ab202011-03-11 02:03:07 +00001231 return -EINVAL;
1232
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001233 /* verify link is up */
1234 if (!adapter->link_up)
1235 return -EINVAL;
1236
1237 /* verify we are linked at 10Gbps */
1238 link_speed = ixgbe_link_mbps(adapter);
1239 if (link_speed != 10000)
1240 return -EINVAL;
1241
1242 /* rate limit cannot be less than 10Mbs or greater than link speed */
1243 if (tx_rate && ((tx_rate <= 10) || (tx_rate > link_speed)))
1244 return -EINVAL;
1245
1246 /* store values */
1247 adapter->vf_rate_link_speed = link_speed;
1248 adapter->vfinfo[vf].tx_rate = tx_rate;
1249
1250 /* update hardware configuration */
1251 ixgbe_set_vf_rate_limit(adapter, vf);
Lior Levyff4ab202011-03-11 02:03:07 +00001252
1253 return 0;
Greg Rose7f016482010-05-04 22:12:06 +00001254}
1255
Greg Rosede4c7f62011-09-29 05:57:33 +00001256int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting)
1257{
1258 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1259 int vf_target_reg = vf >> 3;
1260 int vf_target_shift = vf % 8;
1261 struct ixgbe_hw *hw = &adapter->hw;
1262 u32 regval;
1263
1264 adapter->vfinfo[vf].spoofchk_enabled = setting;
1265
1266 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1267 regval &= ~(1 << vf_target_shift);
1268 regval |= (setting << vf_target_shift);
1269 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1270
1271 if (adapter->vfinfo[vf].vlan_count) {
1272 vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT;
1273 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1274 regval &= ~(1 << vf_target_shift);
1275 regval |= (setting << vf_target_shift);
1276 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1277 }
1278
1279 return 0;
1280}
1281
Greg Rose7f016482010-05-04 22:12:06 +00001282int ixgbe_ndo_get_vf_config(struct net_device *netdev,
1283 int vf, struct ifla_vf_info *ivi)
1284{
1285 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1286 if (vf >= adapter->num_vfs)
1287 return -EINVAL;
1288 ivi->vf = vf;
1289 memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN);
Lior Levyff4ab202011-03-11 02:03:07 +00001290 ivi->tx_rate = adapter->vfinfo[vf].tx_rate;
Greg Rose7f016482010-05-04 22:12:06 +00001291 ivi->vlan = adapter->vfinfo[vf].pf_vlan;
1292 ivi->qos = adapter->vfinfo[vf].pf_qos;
Greg Rosede4c7f62011-09-29 05:57:33 +00001293 ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled;
Greg Rose7f016482010-05-04 22:12:06 +00001294 return 0;
1295}