blob: 2d98ecdbd3d67cede0261ccf1309841a2b0cc293 [file] [log] [blame]
Greg Rose17367272010-01-09 02:25:48 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustade90dd262014-07-22 06:51:08 +00004 Copyright(c) 1999 - 2014 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:
Jacob Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Greg Rose17367272010-01-09 02:25:48 +000024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Greg Rose17367272010-01-09 02:25:48 +000029#include <linux/types.h>
30#include <linux/module.h>
31#include <linux/pci.h>
32#include <linux/netdevice.h>
33#include <linux/vmalloc.h>
34#include <linux/string.h>
35#include <linux/in.h>
36#include <linux/ip.h>
37#include <linux/tcp.h>
38#include <linux/ipv6.h>
Don Skidmoreaa2bacb2015-04-09 22:03:22 -070039#include <linux/if_bridge.h>
Patrick McHardyf6469682013-04-19 02:04:27 +000040#ifdef NETIF_F_HW_VLAN_CTAG_TX
Greg Rose17367272010-01-09 02:25:48 +000041#include <linux/if_vlan.h>
42#endif
43
44#include "ixgbe.h"
Greg Rosec6bda302011-08-24 02:37:55 +000045#include "ixgbe_type.h"
Greg Rose17367272010-01-09 02:25:48 +000046#include "ixgbe_sriov.h"
47
Greg Rosec6bda302011-08-24 02:37:55 +000048#ifdef CONFIG_PCI_IOV
Greg Rose66dcfd72012-12-11 08:26:38 +000049static int __ixgbe_enable_sriov(struct ixgbe_adapter *adapter)
Greg Rosec6bda302011-08-24 02:37:55 +000050{
51 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +000052 int num_vf_macvlans, i;
53 struct vf_macvlans *mv_list;
Greg Rosec6bda302011-08-24 02:37:55 +000054
Alexander Duyck73079ea2012-07-14 06:48:49 +000055 adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
Greg Rosec6bda302011-08-24 02:37:55 +000056 e_info(probe, "SR-IOV enabled with %d VFs\n", adapter->num_vfs);
57
Alexander Duyck73079ea2012-07-14 06:48:49 +000058 /* Enable VMDq flag so device will be set in VM mode */
59 adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED;
60 if (!adapter->ring_feature[RING_F_VMDQ].limit)
61 adapter->ring_feature[RING_F_VMDQ].limit = 1;
62 adapter->ring_feature[RING_F_VMDQ].offset = adapter->num_vfs;
63
Greg Rosec6bda302011-08-24 02:37:55 +000064 num_vf_macvlans = hw->mac.num_rar_entries -
65 (IXGBE_MAX_PF_MACVLANS + 1 + adapter->num_vfs);
66
67 adapter->mv_list = mv_list = kcalloc(num_vf_macvlans,
68 sizeof(struct vf_macvlans),
69 GFP_KERNEL);
70 if (mv_list) {
71 /* Initialize list of VF macvlans */
72 INIT_LIST_HEAD(&adapter->vf_mvs.l);
73 for (i = 0; i < num_vf_macvlans; i++) {
74 mv_list->vf = -1;
75 mv_list->free = true;
Greg Rosec6bda302011-08-24 02:37:55 +000076 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);
Don Skidmoreaa2bacb2015-04-09 22:03:22 -070083 adapter->bridge_mode = 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
Greg Rosec6bda302011-08-24 02:37:55 +0000105 /* Disable RSC when in SR-IOV mode */
106 adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
107 IXGBE_FLAG2_RSC_ENABLED);
Alexander Duyck73079ea2012-07-14 06:48:49 +0000108
Alexander Duyck73079ea2012-07-14 06:48:49 +0000109 /* enable spoof checking for all VFs */
Greg Rosede4c7f62011-09-29 05:57:33 +0000110 for (i = 0; i < adapter->num_vfs; i++)
111 adapter->vfinfo[i].spoofchk_enabled = true;
Greg Rose66dcfd72012-12-11 08:26:38 +0000112 return 0;
Greg Rosec6bda302011-08-24 02:37:55 +0000113 }
114
Greg Rose66dcfd72012-12-11 08:26:38 +0000115 return -ENOMEM;
116}
117
118/* Note this function is called when the user wants to enable SR-IOV
119 * VFs using the now deprecated module parameter
120 */
121void ixgbe_enable_sriov(struct ixgbe_adapter *adapter)
122{
123 int pre_existing_vfs = 0;
124
125 pre_existing_vfs = pci_num_vf(adapter->pdev);
126 if (!pre_existing_vfs && !adapter->num_vfs)
127 return;
128
Greg Rose66dcfd72012-12-11 08:26:38 +0000129 /* If there are pre-existing VFs then we have to force
130 * use of that many - over ride any module parameter value.
131 * This may result from the user unloading the PF driver
132 * while VFs were assigned to guest VMs or because the VFs
133 * have been created via the new PCI SR-IOV sysfs interface.
134 */
135 if (pre_existing_vfs) {
136 adapter->num_vfs = pre_existing_vfs;
137 dev_warn(&adapter->pdev->dev,
138 "Virtual Functions already enabled for this device - Please reload all VF drivers to avoid spoofed packet errors\n");
139 } else {
140 int err;
141 /*
142 * The 82599 supports up to 64 VFs per physical function
143 * but this implementation limits allocation to 63 so that
144 * basic networking resources are still available to the
Joe Perchesdbedd442015-03-06 20:49:12 -0800145 * physical function. If the user requests greater than
Greg Rose66dcfd72012-12-11 08:26:38 +0000146 * 63 VFs then it is an error - reset to default of zero.
147 */
ethan.zhaodcc23e32014-01-16 19:41:04 -0800148 adapter->num_vfs = min_t(unsigned int, adapter->num_vfs, IXGBE_MAX_VFS_DRV_LIMIT);
Greg Rose66dcfd72012-12-11 08:26:38 +0000149
150 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
151 if (err) {
152 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
153 adapter->num_vfs = 0;
154 return;
155 }
156 }
157
158 if (!__ixgbe_enable_sriov(adapter))
159 return;
160
161 /* If we have gotten to this point then there is no memory available
162 * to manage the VF devices - print message and bail.
163 */
Greg Rosec6bda302011-08-24 02:37:55 +0000164 e_err(probe, "Unable to allocate memory for VF Data Storage - "
165 "SRIOV disabled\n");
Alexander Duyck99d74482012-05-09 08:09:25 +0000166 ixgbe_disable_sriov(adapter);
Greg Rosec6bda302011-08-24 02:37:55 +0000167}
Greg Rosec6bda302011-08-24 02:37:55 +0000168
Alexander Duyck92971272012-05-23 02:58:40 +0000169#endif /* #ifdef CONFIG_PCI_IOV */
Greg Roseda36b642012-12-11 08:26:43 +0000170int ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
Greg Rosec6bda302011-08-24 02:37:55 +0000171{
172 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +0000173 u32 gpie;
174 u32 vmdctl;
Greg Roseda36b642012-12-11 08:26:43 +0000175 int rss;
Greg Rosec6bda302011-08-24 02:37:55 +0000176
Alexander Duyckd773d132012-05-05 05:32:26 +0000177 /* set num VFs to 0 to prevent access to vfinfo */
178 adapter->num_vfs = 0;
179
180 /* free VF control structures */
181 kfree(adapter->vfinfo);
182 adapter->vfinfo = NULL;
183
184 /* free macvlan list */
185 kfree(adapter->mv_list);
186 adapter->mv_list = NULL;
187
Alexander Duyck99d74482012-05-09 08:09:25 +0000188 /* if SR-IOV is already disabled then there is nothing to do */
189 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
Greg Roseda36b642012-12-11 08:26:43 +0000190 return 0;
Alexander Duyck99d74482012-05-09 08:09:25 +0000191
Greg Rosec6bda302011-08-24 02:37:55 +0000192#ifdef CONFIG_PCI_IOV
Alexander Duyck92971272012-05-23 02:58:40 +0000193 /*
194 * If our VFs are assigned we cannot shut down SR-IOV
195 * without causing issues, so just leave the hardware
196 * available but disabled
197 */
Alexander Duycke507d0c2013-03-26 00:03:21 +0000198 if (pci_vfs_assigned(adapter->pdev)) {
Alexander Duyck92971272012-05-23 02:58:40 +0000199 e_dev_warn("Unloading driver while VFs are assigned - VFs will not be deallocated\n");
Greg Roseda36b642012-12-11 08:26:43 +0000200 return -EPERM;
David S. Millerd47e12d2012-07-22 12:36:41 -0700201 }
Greg Rosec6bda302011-08-24 02:37:55 +0000202 /* disable iov and allow time for transactions to clear */
203 pci_disable_sriov(adapter->pdev);
204#endif
205
206 /* turn off device IOV mode */
Alexander Duyck73079ea2012-07-14 06:48:49 +0000207 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0);
Greg Rosec6bda302011-08-24 02:37:55 +0000208 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
209 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
210 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
211
212 /* set default pool back to 0 */
213 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
214 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
215 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
216 IXGBE_WRITE_FLUSH(hw);
217
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000218 /* Disable VMDq flag so device will be set in VM mode */
John Fastabend2a47fa42013-11-06 09:54:52 -0800219 if (adapter->ring_feature[RING_F_VMDQ].limit == 1) {
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000220 adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED;
John Fastabend2a47fa42013-11-06 09:54:52 -0800221 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
Don Skidmore0f9b2322014-11-18 09:35:08 +0000222 rss = min_t(int, ixgbe_max_rss_indices(adapter),
223 num_online_cpus());
John Fastabend2a47fa42013-11-06 09:54:52 -0800224 } else {
225 rss = min_t(int, IXGBE_MAX_L2A_QUEUES, num_online_cpus());
226 }
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000227
John Fastabend2a47fa42013-11-06 09:54:52 -0800228 adapter->ring_feature[RING_F_VMDQ].offset = 0;
Greg Roseda36b642012-12-11 08:26:43 +0000229 adapter->ring_feature[RING_F_RSS].limit = rss;
230
Greg Rosec6bda302011-08-24 02:37:55 +0000231 /* take a breather then clean up driver data */
232 msleep(100);
Greg Roseda36b642012-12-11 08:26:43 +0000233 return 0;
234}
235
236static int ixgbe_pci_sriov_enable(struct pci_dev *dev, int num_vfs)
237{
238#ifdef CONFIG_PCI_IOV
239 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
240 int err = 0;
241 int i;
242 int pre_existing_vfs = pci_num_vf(dev);
243
244 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
245 err = ixgbe_disable_sriov(adapter);
246 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
Mark Rustade90dd262014-07-22 06:51:08 +0000247 return num_vfs;
Greg Roseda36b642012-12-11 08:26:43 +0000248
249 if (err)
Mark Rustade90dd262014-07-22 06:51:08 +0000250 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000251
Jacob Kelleraac2f1b2014-08-21 06:17:59 +0000252 /* While the SR-IOV capability structure reports total VFs to be 64,
253 * we have to limit the actual number allocated based on two factors.
254 * First, we reserve some transmit/receive resources for the PF.
255 * Second, VMDQ also uses the same pools that SR-IOV does. We need to
256 * account for this, so that we don't accidentally allocate more VFs
257 * than we have available pools. The PCI bus driver already checks for
258 * other values out of range.
Greg Roseda36b642012-12-11 08:26:43 +0000259 */
Jacob Kelleraac2f1b2014-08-21 06:17:59 +0000260 if ((num_vfs + adapter->num_rx_pools) > IXGBE_MAX_VF_FUNCTIONS)
Mark Rustade90dd262014-07-22 06:51:08 +0000261 return -EPERM;
Greg Roseda36b642012-12-11 08:26:43 +0000262
263 adapter->num_vfs = num_vfs;
264
265 err = __ixgbe_enable_sriov(adapter);
266 if (err)
Mark Rustade90dd262014-07-22 06:51:08 +0000267 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000268
269 for (i = 0; i < adapter->num_vfs; i++)
270 ixgbe_vf_configuration(dev, (i | 0x10000000));
271
272 err = pci_enable_sriov(dev, num_vfs);
273 if (err) {
274 e_dev_warn("Failed to enable PCI sriov: %d\n", err);
Mark Rustade90dd262014-07-22 06:51:08 +0000275 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000276 }
277 ixgbe_sriov_reinit(adapter);
278
Greg Roseda36b642012-12-11 08:26:43 +0000279 return num_vfs;
Mark Rustade90dd262014-07-22 06:51:08 +0000280#else
Greg Roseda36b642012-12-11 08:26:43 +0000281 return 0;
Mark Rustade90dd262014-07-22 06:51:08 +0000282#endif
Greg Roseda36b642012-12-11 08:26:43 +0000283}
284
285static int ixgbe_pci_sriov_disable(struct pci_dev *dev)
286{
287 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
288 int err;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000289#ifdef CONFIG_PCI_IOV
Greg Roseda36b642012-12-11 08:26:43 +0000290 u32 current_flags = adapter->flags;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000291#endif
Greg Roseda36b642012-12-11 08:26:43 +0000292
293 err = ixgbe_disable_sriov(adapter);
294
295 /* Only reinit if no error and state changed */
Greg Roseda36b642012-12-11 08:26:43 +0000296#ifdef CONFIG_PCI_IOV
John Fastabend2a47fa42013-11-06 09:54:52 -0800297 if (!err && current_flags != adapter->flags)
Greg Roseda36b642012-12-11 08:26:43 +0000298 ixgbe_sriov_reinit(adapter);
299#endif
Greg Roseda36b642012-12-11 08:26:43 +0000300
301 return err;
302}
303
304int ixgbe_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
305{
306 if (num_vfs == 0)
307 return ixgbe_pci_sriov_disable(dev);
308 else
309 return ixgbe_pci_sriov_enable(dev, num_vfs);
Greg Rosec6bda302011-08-24 02:37:55 +0000310}
311
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000312static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
Alexander Duyck58a02be2012-07-20 08:09:17 +0000313 u32 *msgbuf, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000314{
Alexander Duyck58a02be2012-07-20 08:09:17 +0000315 int entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
316 >> IXGBE_VT_MSGINFO_SHIFT;
317 u16 *hash_list = (u16 *)&msgbuf[1];
Greg Rose17367272010-01-09 02:25:48 +0000318 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Greg Rose8a07a222010-05-05 19:57:30 +0000319 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose17367272010-01-09 02:25:48 +0000320 int i;
Greg Rose8a07a222010-05-05 19:57:30 +0000321 u32 vector_bit;
322 u32 vector_reg;
323 u32 mta_reg;
Jacob Kellerb335e752014-03-25 07:45:27 +0000324 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Greg Rose17367272010-01-09 02:25:48 +0000325
326 /* only so many hash values supported */
327 entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES);
328
329 /*
330 * salt away the number of multi cast addresses assigned
331 * to this VF for later use to restore when the PF multi cast
332 * list changes
333 */
334 vfinfo->num_vf_mc_hashes = entries;
335
336 /*
337 * VFs are limited to using the MTA hash table for their multicast
338 * addresses
339 */
340 for (i = 0; i < entries; i++) {
Joe Perchese81a1ba2010-11-14 17:04:33 +0000341 vfinfo->vf_mc_hashes[i] = hash_list[i];
Greg Rose17367272010-01-09 02:25:48 +0000342 }
343
Greg Rose8a07a222010-05-05 19:57:30 +0000344 for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
345 vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F;
346 vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F;
347 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
348 mta_reg |= (1 << vector_bit);
349 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
350 }
Jacob Kellerb335e752014-03-25 07:45:27 +0000351 vmolr |= IXGBE_VMOLR_ROMPE;
352 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
Greg Rose17367272010-01-09 02:25:48 +0000353
354 return 0;
355}
356
Jacob Kellerb335e752014-03-25 07:45:27 +0000357#ifdef CONFIG_PCI_IOV
Greg Rose17367272010-01-09 02:25:48 +0000358void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter)
359{
360 struct ixgbe_hw *hw = &adapter->hw;
361 struct vf_data_storage *vfinfo;
362 int i, j;
363 u32 vector_bit;
364 u32 vector_reg;
365 u32 mta_reg;
366
367 for (i = 0; i < adapter->num_vfs; i++) {
Jacob Kellerb335e752014-03-25 07:45:27 +0000368 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(i));
Greg Rose17367272010-01-09 02:25:48 +0000369 vfinfo = &adapter->vfinfo[i];
370 for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) {
371 hw->addr_ctrl.mta_in_use++;
372 vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F;
373 vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F;
374 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
375 mta_reg |= (1 << vector_bit);
376 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
377 }
Jacob Kellerb335e752014-03-25 07:45:27 +0000378
379 if (vfinfo->num_vf_mc_hashes)
380 vmolr |= IXGBE_VMOLR_ROMPE;
381 else
382 vmolr &= ~IXGBE_VMOLR_ROMPE;
383 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(i), vmolr);
Greg Rose17367272010-01-09 02:25:48 +0000384 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000385
386 /* Restore any VF macvlans */
Jacob Keller5d7daa32014-03-29 06:51:25 +0000387 ixgbe_full_sync_mac_table(adapter);
Greg Rose17367272010-01-09 02:25:48 +0000388}
Jacob Kellerb335e752014-03-25 07:45:27 +0000389#endif
Greg Rose17367272010-01-09 02:25:48 +0000390
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000391static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid,
392 u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000393{
Alexander Duyckb35d4d42012-05-23 05:39:25 +0000394 /* VLAN 0 is a special case, don't allow it to be removed */
395 if (!vid && !add)
396 return 0;
397
Greg Rose17367272010-01-09 02:25:48 +0000398 return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add);
399}
400
Alexander Duyck872844d2012-08-15 02:10:43 +0000401static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
Greg Rosee9f98072011-01-26 01:06:07 +0000402{
403 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck872844d2012-08-15 02:10:43 +0000404 int max_frame = msgbuf[1];
Greg Rosee9f98072011-01-26 01:06:07 +0000405 u32 max_frs;
Greg Rosee9f98072011-01-26 01:06:07 +0000406
Alexander Duyck872844d2012-08-15 02:10:43 +0000407 /*
408 * For 82599EB we have to keep all PFs and VFs operating with
409 * the same max_frame value in order to avoid sending an oversize
410 * frame to a VF. In order to guarantee this is handled correctly
411 * for all cases we have several special exceptions to take into
412 * account before we can enable the VF for receive
413 */
414 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
415 struct net_device *dev = adapter->netdev;
416 int pf_max_frame = dev->mtu + ETH_HLEN;
417 u32 reg_offset, vf_shift, vfre;
418 s32 err = 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000419
Alexander Duyck872844d2012-08-15 02:10:43 +0000420#ifdef CONFIG_FCOE
421 if (dev->features & NETIF_F_FCOE_MTU)
422 pf_max_frame = max_t(int, pf_max_frame,
423 IXGBE_FCOE_JUMBO_FRAME_SIZE);
424
425#endif /* CONFIG_FCOE */
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000426 switch (adapter->vfinfo[vf].vf_api) {
427 case ixgbe_mbox_api_11:
428 /*
429 * Version 1.1 supports jumbo frames on VFs if PF has
430 * jumbo frames enabled which means legacy VFs are
431 * disabled
432 */
433 if (pf_max_frame > ETH_FRAME_LEN)
434 break;
435 default:
436 /*
437 * If the PF or VF are running w/ jumbo frames enabled
438 * we need to shut down the VF Rx path as we cannot
439 * support jumbo frames on legacy VFs
440 */
441 if ((pf_max_frame > ETH_FRAME_LEN) ||
442 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
443 err = -EINVAL;
444 break;
445 }
Alexander Duyck872844d2012-08-15 02:10:43 +0000446
447 /* determine VF receive enable location */
448 vf_shift = vf % 32;
449 reg_offset = vf / 32;
450
451 /* enable or disable receive depending on error */
452 vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
453 if (err)
454 vfre &= ~(1 << vf_shift);
455 else
456 vfre |= 1 << vf_shift;
457 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre);
458
459 if (err) {
460 e_err(drv, "VF max_frame %d out of range\n", max_frame);
461 return err;
462 }
Greg Rosee9f98072011-01-26 01:06:07 +0000463 }
464
Alexander Duyck872844d2012-08-15 02:10:43 +0000465 /* MTU < 68 is an error and causes problems on some kernels */
466 if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) {
467 e_err(drv, "VF max_frame %d out of range\n", max_frame);
468 return -EINVAL;
469 }
470
471 /* pull current max frame size from hardware */
472 max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
473 max_frs &= IXGBE_MHADD_MFS_MASK;
474 max_frs >>= IXGBE_MHADD_MFS_SHIFT;
475
476 if (max_frs < max_frame) {
477 max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT;
Greg Rosee9f98072011-01-26 01:06:07 +0000478 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
479 }
480
Alexander Duyck872844d2012-08-15 02:10:43 +0000481 e_info(hw, "VF requests change max MTU to %d\n", max_frame);
482
483 return 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000484}
485
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000486static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
Greg Rose17367272010-01-09 02:25:48 +0000487{
488 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Jacob Kellerb335e752014-03-25 07:45:27 +0000489 vmolr |= IXGBE_VMOLR_BAM;
Greg Rosef0412772010-05-04 22:11:46 +0000490 if (aupe)
491 vmolr |= IXGBE_VMOLR_AUPE;
492 else
493 vmolr &= ~IXGBE_VMOLR_AUPE;
Greg Rose17367272010-01-09 02:25:48 +0000494 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
495}
496
Alexander Duyck107d3012012-10-02 00:17:03 +0000497static void ixgbe_clear_vmvir(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose7f016482010-05-04 22:12:06 +0000498{
499 struct ixgbe_hw *hw = &adapter->hw;
500
Alexander Duyck107d3012012-10-02 00:17:03 +0000501 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
Greg Rose7f016482010-05-04 22:12:06 +0000502}
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000503static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000504{
505 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck107d3012012-10-02 00:17:03 +0000506 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Alexander Duyck107d3012012-10-02 00:17:03 +0000507 u8 num_tcs = netdev_get_num_tc(adapter->netdev);
508
509 /* add PF assigned VLAN or VLAN 0 */
510 ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf);
Greg Rose17367272010-01-09 02:25:48 +0000511
512 /* reset offloads to defaults */
Alexander Duyck107d3012012-10-02 00:17:03 +0000513 ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan);
514
515 /* set outgoing tags for VFs */
516 if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) {
517 ixgbe_clear_vmvir(adapter, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000518 } else {
Alexander Duyck107d3012012-10-02 00:17:03 +0000519 if (vfinfo->pf_qos || !num_tcs)
520 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
521 vfinfo->pf_qos, vf);
522 else
523 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
524 adapter->default_up, vf);
525
526 if (vfinfo->spoofchk_enabled)
527 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000528 }
Greg Rose17367272010-01-09 02:25:48 +0000529
530 /* reset multicast table array for vf */
531 adapter->vfinfo[vf].num_vf_mc_hashes = 0;
532
533 /* Flush and reset the mta with the new values */
534 ixgbe_set_rx_mode(adapter->netdev);
535
Jacob Keller5d7daa32014-03-29 06:51:25 +0000536 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Alexander Duyck374c65d2012-07-20 08:09:22 +0000537
538 /* reset VF api back to unknown */
539 adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10;
Greg Rose17367272010-01-09 02:25:48 +0000540}
541
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000542static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
543 int vf, unsigned char *mac_addr)
Greg Rose17367272010-01-09 02:25:48 +0000544{
Jacob Keller5d7daa32014-03-29 06:51:25 +0000545 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Joe Perchesd458cdf2013-10-01 19:04:40 -0700546 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, ETH_ALEN);
Jacob Keller5d7daa32014-03-29 06:51:25 +0000547 ixgbe_add_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Greg Rose17367272010-01-09 02:25:48 +0000548
549 return 0;
550}
551
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000552static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter,
553 int vf, int index, unsigned char *mac_addr)
554{
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000555 struct list_head *pos;
556 struct vf_macvlans *entry;
557
558 if (index <= 1) {
559 list_for_each(pos, &adapter->vf_mvs.l) {
560 entry = list_entry(pos, struct vf_macvlans, l);
561 if (entry->vf == vf) {
562 entry->vf = -1;
563 entry->free = true;
564 entry->is_macvlan = false;
Jacob Keller5d7daa32014-03-29 06:51:25 +0000565 ixgbe_del_mac_filter(adapter,
566 entry->vf_macvlan, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000567 }
568 }
569 }
570
571 /*
572 * If index was zero then we were asked to clear the uc list
573 * for the VF. We're done.
574 */
575 if (!index)
576 return 0;
577
578 entry = NULL;
579
580 list_for_each(pos, &adapter->vf_mvs.l) {
581 entry = list_entry(pos, struct vf_macvlans, l);
582 if (entry->free)
583 break;
584 }
585
586 /*
587 * If we traversed the entire list and didn't find a free entry
588 * then we're out of space on the RAR table. Also entry may
589 * be NULL because the original memory allocation for the list
590 * failed, which is not fatal but does mean we can't support
591 * VF requests for MACVLAN because we couldn't allocate
592 * memory for the list management required.
593 */
594 if (!entry || !entry->free)
595 return -ENOSPC;
596
597 entry->free = false;
598 entry->is_macvlan = true;
599 entry->vf = vf;
600 memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN);
601
Jacob Keller5d7daa32014-03-29 06:51:25 +0000602 ixgbe_add_mac_filter(adapter, mac_addr, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000603
604 return 0;
605}
606
Greg Rose17367272010-01-09 02:25:48 +0000607int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
608{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800609 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Greg Rose17367272010-01-09 02:25:48 +0000610 unsigned int vfn = (event_mask & 0x3f);
611
612 bool enable = ((event_mask & 0x10000000U) != 0);
613
Joe Perchesd458cdf2013-10-01 19:04:40 -0700614 if (enable)
615 eth_zero_addr(adapter->vfinfo[vfn].vf_mac_addresses);
Greg Rose17367272010-01-09 02:25:48 +0000616
617 return 0;
618}
619
Don Skidmore8d697e72014-11-05 04:52:09 +0000620static inline void ixgbe_write_qde(struct ixgbe_adapter *adapter, u32 vf,
621 u32 qde)
622{
623 struct ixgbe_hw *hw = &adapter->hw;
624 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
625 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
626 int i;
627
628 for (i = vf * q_per_pool; i < ((vf + 1) * q_per_pool); i++) {
629 u32 reg;
630
631 /* flush previous write */
632 IXGBE_WRITE_FLUSH(hw);
633
634 /* indicate to hardware that we want to set drop enable */
635 reg = IXGBE_QDE_WRITE | IXGBE_QDE_ENABLE;
636 reg |= i << IXGBE_QDE_IDX_SHIFT;
637 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
638 }
639}
640
Alexander Duyck58a02be2012-07-20 08:09:17 +0000641static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000642{
Alexander Duyck87397372014-01-15 17:38:40 -0800643 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
Greg Rose17367272010-01-09 02:25:48 +0000644 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000645 unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
Emil Tantilovb08e1ed2013-07-26 07:34:54 +0000646 u32 reg, reg_offset, vf_shift;
647 u32 msgbuf[4] = {0, 0, 0, 0};
Alexander Duyck58a02be2012-07-20 08:09:17 +0000648 u8 *addr = (u8 *)(&msgbuf[1]);
Alexander Duyck87397372014-01-15 17:38:40 -0800649 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
650 int i;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000651
652 e_info(probe, "VF Reset msg received from vf %d\n", vf);
653
654 /* reset the filters for the device */
655 ixgbe_vf_reset_event(adapter, vf);
656
657 /* set vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000658 if (!is_zero_ether_addr(vf_mac))
659 ixgbe_set_vf_mac(adapter, vf, vf_mac);
Greg Rose17367272010-01-09 02:25:48 +0000660
661 vf_shift = vf % 32;
662 reg_offset = vf / 32;
663
Alexander Duyck58a02be2012-07-20 08:09:17 +0000664 /* enable transmit for vf */
Greg Rose17367272010-01-09 02:25:48 +0000665 reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000666 reg |= 1 << vf_shift;
Greg Rose17367272010-01-09 02:25:48 +0000667 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
668
Alexander Duyck87397372014-01-15 17:38:40 -0800669 /* force drop enable for all VF Rx queues */
Don Skidmore8d697e72014-11-05 04:52:09 +0000670 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
Alexander Duyck87397372014-01-15 17:38:40 -0800671
Alexander Duyck58a02be2012-07-20 08:09:17 +0000672 /* enable receive for vf */
Greg Rose17367272010-01-09 02:25:48 +0000673 reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000674 reg |= 1 << vf_shift;
675 /*
676 * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs.
677 * For more info take a look at ixgbe_set_vf_lpe
678 */
679 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
680 struct net_device *dev = adapter->netdev;
681 int pf_max_frame = dev->mtu + ETH_HLEN;
682
683#ifdef CONFIG_FCOE
684 if (dev->features & NETIF_F_FCOE_MTU)
685 pf_max_frame = max_t(int, pf_max_frame,
686 IXGBE_FCOE_JUMBO_FRAME_SIZE);
687
688#endif /* CONFIG_FCOE */
689 if (pf_max_frame > ETH_FRAME_LEN)
690 reg &= ~(1 << vf_shift);
691 }
Greg Rose17367272010-01-09 02:25:48 +0000692 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
693
Alexander Duyck58a02be2012-07-20 08:09:17 +0000694 /* enable VF mailbox for further messages */
695 adapter->vfinfo[vf].clear_to_send = true;
696
Greg Rosea985b6c32010-11-18 03:02:52 +0000697 /* Enable counting of spoofed packets in the SSVPC register */
698 reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
699 reg |= (1 << vf_shift);
700 IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
701
Alexander Duyckdbf231a2014-01-15 17:38:41 -0800702 /*
703 * Reset the VFs TDWBAL and TDWBAH registers
704 * which are not cleared by an FLR
705 */
706 for (i = 0; i < q_per_pool; i++) {
707 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBAHn(q_per_pool, vf, i), 0);
708 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBALn(q_per_pool, vf, i), 0);
709 }
710
Alexander Duyck58a02be2012-07-20 08:09:17 +0000711 /* reply to reset with ack and vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000712 msgbuf[0] = IXGBE_VF_RESET;
713 if (!is_zero_ether_addr(vf_mac)) {
714 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
715 memcpy(addr, vf_mac, ETH_ALEN);
716 } else {
717 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
718 dev_warn(&adapter->pdev->dev,
719 "VF %d has no MAC address assigned, you may have to assign one manually\n",
720 vf);
721 }
Alexander Duyck58a02be2012-07-20 08:09:17 +0000722
723 /*
724 * Piggyback the multicast filter type so VF can compute the
725 * correct vectors
726 */
727 msgbuf[3] = hw->mac.mc_filter_type;
728 ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
729
730 return 0;
731}
732
733static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter,
734 u32 *msgbuf, u32 vf)
735{
736 u8 *new_mac = ((u8 *)(&msgbuf[1]));
737
738 if (!is_valid_ether_addr(new_mac)) {
739 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
740 return -1;
741 }
742
743 if (adapter->vfinfo[vf].pf_set_mac &&
dingtianhong4012dda2013-12-30 15:40:50 +0800744 !ether_addr_equal(adapter->vfinfo[vf].vf_mac_addresses, new_mac)) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000745 e_warn(drv,
746 "VF %d attempted to override administratively set MAC address\n"
747 "Reload the VF driver to resume operations\n",
748 vf);
749 return -1;
750 }
751
Greg Rose3970c322012-09-25 02:25:30 +0000752 return ixgbe_set_vf_mac(adapter, vf, new_mac) < 0;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000753}
754
Greg Rose670224f2013-02-22 02:14:39 +0000755static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
756{
757 u32 vlvf;
758 s32 regindex;
759
760 /* short cut the special case */
761 if (vlan == 0)
762 return 0;
763
764 /* Search for the vlan id in the VLVF entries */
765 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
766 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
767 if ((vlvf & VLAN_VID_MASK) == vlan)
768 break;
769 }
770
771 /* Return a negative value if not found */
772 if (regindex >= IXGBE_VLVF_ENTRIES)
773 regindex = -1;
774
775 return regindex;
776}
777
Alexander Duyck58a02be2012-07-20 08:09:17 +0000778static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter,
779 u32 *msgbuf, u32 vf)
780{
781 struct ixgbe_hw *hw = &adapter->hw;
782 int add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT;
783 int vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
784 int err;
Greg Rose670224f2013-02-22 02:14:39 +0000785 s32 reg_ndx;
786 u32 vlvf;
787 u32 bits;
Alexander Duyck107d3012012-10-02 00:17:03 +0000788 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck58a02be2012-07-20 08:09:17 +0000789
Alexander Duyck107d3012012-10-02 00:17:03 +0000790 if (adapter->vfinfo[vf].pf_vlan || tcs) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000791 e_warn(drv,
792 "VF %d attempted to override administratively set VLAN configuration\n"
793 "Reload the VF driver to resume operations\n",
794 vf);
795 return -1;
796 }
797
798 if (add)
799 adapter->vfinfo[vf].vlan_count++;
800 else if (adapter->vfinfo[vf].vlan_count)
801 adapter->vfinfo[vf].vlan_count--;
802
Greg Rose670224f2013-02-22 02:14:39 +0000803 /* in case of promiscuous mode any VLAN filter set for a VF must
804 * also have the PF pool added to it.
805 */
806 if (add && adapter->netdev->flags & IFF_PROMISC)
807 err = ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
808
Alexander Duyck58a02be2012-07-20 08:09:17 +0000809 err = ixgbe_set_vf_vlan(adapter, add, vid, vf);
810 if (!err && adapter->vfinfo[vf].spoofchk_enabled)
811 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
812
Greg Rose670224f2013-02-22 02:14:39 +0000813 /* Go through all the checks to see if the VLAN filter should
814 * be wiped completely.
815 */
816 if (!add && adapter->netdev->flags & IFF_PROMISC) {
817 reg_ndx = ixgbe_find_vlvf_entry(hw, vid);
818 if (reg_ndx < 0)
Mark Rustade90dd262014-07-22 06:51:08 +0000819 return err;
Greg Rose670224f2013-02-22 02:14:39 +0000820 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_ndx));
821 /* See if any other pools are set for this VLAN filter
822 * entry other than the PF.
823 */
824 if (VMDQ_P(0) < 32) {
825 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
826 bits &= ~(1 << VMDQ_P(0));
827 bits |= IXGBE_READ_REG(hw,
828 IXGBE_VLVFB(reg_ndx * 2) + 1);
829 } else {
830 bits = IXGBE_READ_REG(hw,
831 IXGBE_VLVFB(reg_ndx * 2) + 1);
832 bits &= ~(1 << (VMDQ_P(0) - 32));
833 bits |= IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
834 }
835
836 /* If the filter was removed then ensure PF pool bit
837 * is cleared if the PF only added itself to the pool
838 * because the PF is in promiscuous mode.
839 */
840 if ((vlvf & VLAN_VID_MASK) == vid &&
841 !test_bit(vid, adapter->active_vlans) && !bits)
842 ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
843 }
844
Alexander Duyck58a02be2012-07-20 08:09:17 +0000845 return err;
846}
847
848static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter,
849 u32 *msgbuf, u32 vf)
850{
851 u8 *new_mac = ((u8 *)(&msgbuf[1]));
852 int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
853 IXGBE_VT_MSGINFO_SHIFT;
854 int err;
855
856 if (adapter->vfinfo[vf].pf_set_mac && index > 0) {
857 e_warn(drv,
858 "VF %d requested MACVLAN filter but is administratively denied\n",
859 vf);
860 return -1;
861 }
862
863 /* An non-zero index indicates the VF is setting a filter */
864 if (index) {
865 if (!is_valid_ether_addr(new_mac)) {
866 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
867 return -1;
868 }
869
870 /*
871 * If the VF is allowed to set MAC filters then turn off
872 * anti-spoofing to avoid false positives.
873 */
874 if (adapter->vfinfo[vf].spoofchk_enabled)
875 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false);
876 }
877
878 err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac);
879 if (err == -ENOSPC)
880 e_warn(drv,
881 "VF %d has requested a MACVLAN filter but there is no space for it\n",
882 vf);
Greg Rosea3013402012-10-30 00:40:02 +0000883
884 return err < 0;
Greg Rose17367272010-01-09 02:25:48 +0000885}
886
Alexander Duyck374c65d2012-07-20 08:09:22 +0000887static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter,
888 u32 *msgbuf, u32 vf)
889{
890 int api = msgbuf[1];
891
892 switch (api) {
893 case ixgbe_mbox_api_10:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000894 case ixgbe_mbox_api_11:
Alexander Duyck374c65d2012-07-20 08:09:22 +0000895 adapter->vfinfo[vf].vf_api = api;
896 return 0;
897 default:
898 break;
899 }
900
901 e_info(drv, "VF %d requested invalid api version %u\n", vf, api);
902
903 return -1;
904}
905
Alexander Duyckf591cd92012-07-20 08:09:32 +0000906static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter,
907 u32 *msgbuf, u32 vf)
908{
909 struct net_device *dev = adapter->netdev;
910 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
911 unsigned int default_tc = 0;
912 u8 num_tcs = netdev_get_num_tc(dev);
913
914 /* verify the PF is supporting the correct APIs */
915 switch (adapter->vfinfo[vf].vf_api) {
916 case ixgbe_mbox_api_20:
917 case ixgbe_mbox_api_11:
918 break;
919 default:
920 return -1;
921 }
922
923 /* only allow 1 Tx queue for bandwidth limiting */
924 msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
925 msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
926
927 /* if TCs > 1 determine which TC belongs to default user priority */
928 if (num_tcs > 1)
929 default_tc = netdev_get_prio_tc_map(dev, adapter->default_up);
930
931 /* notify VF of need for VLAN tag stripping, and correct queue */
932 if (num_tcs)
933 msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
934 else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos)
935 msgbuf[IXGBE_VF_TRANS_VLAN] = 1;
936 else
937 msgbuf[IXGBE_VF_TRANS_VLAN] = 0;
938
939 /* notify VF of default queue */
940 msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc;
941
942 return 0;
943}
944
Greg Rose17367272010-01-09 02:25:48 +0000945static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
946{
947 u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
Emil Tantilovc0509992011-05-07 06:49:18 +0000948 u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
Greg Rose17367272010-01-09 02:25:48 +0000949 struct ixgbe_hw *hw = &adapter->hw;
950 s32 retval;
Greg Rose17367272010-01-09 02:25:48 +0000951
952 retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
953
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000954 if (retval) {
Emil Tantilov849c4542010-06-03 16:53:41 +0000955 pr_err("Error receiving message from VF\n");
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000956 return retval;
957 }
Greg Rose17367272010-01-09 02:25:48 +0000958
959 /* this is a message we already processed, do nothing */
960 if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
Mark Rustade90dd262014-07-22 06:51:08 +0000961 return 0;
Greg Rose17367272010-01-09 02:25:48 +0000962
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000963 /* flush the ack before we write any messages back */
964 IXGBE_WRITE_FLUSH(hw);
965
Alexander Duyck374c65d2012-07-20 08:09:22 +0000966 if (msgbuf[0] == IXGBE_VF_RESET)
967 return ixgbe_vf_reset_msg(adapter, vf);
968
Greg Rose17367272010-01-09 02:25:48 +0000969 /*
970 * until the vf completes a virtual function reset it should not be
971 * allowed to start any configuration.
972 */
Greg Rose17367272010-01-09 02:25:48 +0000973 if (!adapter->vfinfo[vf].clear_to_send) {
974 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
975 ixgbe_write_mbx(hw, msgbuf, 1, vf);
Mark Rustade90dd262014-07-22 06:51:08 +0000976 return 0;
Greg Rose17367272010-01-09 02:25:48 +0000977 }
978
979 switch ((msgbuf[0] & 0xFFFF)) {
980 case IXGBE_VF_SET_MAC_ADDR:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000981 retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000982 break;
983 case IXGBE_VF_SET_MULTICAST:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000984 retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf);
985 break;
986 case IXGBE_VF_SET_VLAN:
987 retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000988 break;
989 case IXGBE_VF_SET_LPE:
Alexander Duyck872844d2012-08-15 02:10:43 +0000990 retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000991 break;
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000992 case IXGBE_VF_SET_MACVLAN:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000993 retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000994 break;
Alexander Duyck374c65d2012-07-20 08:09:22 +0000995 case IXGBE_VF_API_NEGOTIATE:
996 retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf);
997 break;
Alexander Duyckf591cd92012-07-20 08:09:32 +0000998 case IXGBE_VF_GET_QUEUES:
999 retval = ixgbe_get_vf_queues(adapter, msgbuf, vf);
1000 break;
Greg Rose17367272010-01-09 02:25:48 +00001001 default:
Emil Tantilov396e7992010-07-01 20:05:12 +00001002 e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]);
Greg Rose17367272010-01-09 02:25:48 +00001003 retval = IXGBE_ERR_MBX;
1004 break;
1005 }
1006
1007 /* notify the VF of the results of what it sent us */
1008 if (retval)
1009 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1010 else
1011 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
1012
1013 msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
1014
Alexander Duyck374c65d2012-07-20 08:09:22 +00001015 ixgbe_write_mbx(hw, msgbuf, mbx_size, vf);
Greg Rose17367272010-01-09 02:25:48 +00001016
1017 return retval;
1018}
1019
1020static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1021{
1022 struct ixgbe_hw *hw = &adapter->hw;
1023 u32 msg = IXGBE_VT_MSGTYPE_NACK;
1024
1025 /* if device isn't clear to send it shouldn't be reading either */
1026 if (!adapter->vfinfo[vf].clear_to_send)
1027 ixgbe_write_mbx(hw, &msg, 1, vf);
1028}
1029
1030void ixgbe_msg_task(struct ixgbe_adapter *adapter)
1031{
1032 struct ixgbe_hw *hw = &adapter->hw;
1033 u32 vf;
1034
1035 for (vf = 0; vf < adapter->num_vfs; vf++) {
1036 /* process any reset requests */
1037 if (!ixgbe_check_for_rst(hw, vf))
1038 ixgbe_vf_reset_event(adapter, vf);
1039
1040 /* process any messages pending */
1041 if (!ixgbe_check_for_msg(hw, vf))
1042 ixgbe_rcv_msg_from_vf(adapter, vf);
1043
1044 /* process any acks */
1045 if (!ixgbe_check_for_ack(hw, vf))
1046 ixgbe_rcv_ack_from_vf(adapter, vf);
1047 }
1048}
1049
Greg Rose767081a2010-01-22 22:46:40 +00001050void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
1051{
1052 struct ixgbe_hw *hw = &adapter->hw;
1053
1054 /* disable transmit and receive for all vfs */
1055 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
1056 IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
1057
1058 IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
1059 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
1060}
1061
1062void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
1063{
1064 struct ixgbe_hw *hw = &adapter->hw;
1065 u32 ping;
1066 int i;
1067
1068 for (i = 0 ; i < adapter->num_vfs; i++) {
1069 ping = IXGBE_PF_CONTROL_MSG;
1070 if (adapter->vfinfo[i].clear_to_send)
1071 ping |= IXGBE_VT_MSGTYPE_CTS;
1072 ixgbe_write_mbx(hw, &ping, 1, i);
1073 }
1074}
1075
Greg Rose7f016482010-05-04 22:12:06 +00001076int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1077{
1078 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1079 if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs))
1080 return -EINVAL;
1081 adapter->vfinfo[vf].pf_set_mac = true;
1082 dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf);
1083 dev_info(&adapter->pdev->dev, "Reload the VF driver to make this"
1084 " change effective.");
1085 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1086 dev_warn(&adapter->pdev->dev, "The VF MAC address has been set,"
1087 " but the PF device is not up.\n");
1088 dev_warn(&adapter->pdev->dev, "Bring the PF device up before"
1089 " attempting to use the VF device.\n");
1090 }
1091 return ixgbe_set_vf_mac(adapter, vf, mac);
1092}
1093
Don Skidmore2b509c02014-11-01 01:06:57 +00001094static int ixgbe_enable_port_vlan(struct ixgbe_adapter *adapter, int vf,
1095 u16 vlan, u8 qos)
1096{
1097 struct ixgbe_hw *hw = &adapter->hw;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001098 int err;
Don Skidmore2b509c02014-11-01 01:06:57 +00001099
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001100 err = ixgbe_set_vf_vlan(adapter, true, vlan, vf);
Don Skidmore2b509c02014-11-01 01:06:57 +00001101 if (err)
1102 goto out;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001103
Don Skidmore2b509c02014-11-01 01:06:57 +00001104 ixgbe_set_vmvir(adapter, vlan, qos, vf);
1105 ixgbe_set_vmolr(hw, vf, false);
1106 if (adapter->vfinfo[vf].spoofchk_enabled)
1107 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
1108 adapter->vfinfo[vf].vlan_count++;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001109
1110 /* enable hide vlan on X550 */
1111 if (hw->mac.type >= ixgbe_mac_X550)
1112 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE |
1113 IXGBE_QDE_HIDE_VLAN);
1114
Don Skidmore2b509c02014-11-01 01:06:57 +00001115 adapter->vfinfo[vf].pf_vlan = vlan;
1116 adapter->vfinfo[vf].pf_qos = qos;
1117 dev_info(&adapter->pdev->dev,
1118 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf);
1119 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1120 dev_warn(&adapter->pdev->dev,
1121 "The VF VLAN has been set, but the PF device is not up.\n");
1122 dev_warn(&adapter->pdev->dev,
1123 "Bring the PF device up before attempting to use the VF device.\n");
1124 }
1125
1126out:
1127 return err;
1128}
1129
1130static int ixgbe_disable_port_vlan(struct ixgbe_adapter *adapter, int vf)
1131{
1132 struct ixgbe_hw *hw = &adapter->hw;
1133 int err;
1134
1135 err = ixgbe_set_vf_vlan(adapter, false,
1136 adapter->vfinfo[vf].pf_vlan, vf);
1137 ixgbe_clear_vmvir(adapter, vf);
1138 ixgbe_set_vmolr(hw, vf, true);
1139 hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf);
1140 if (adapter->vfinfo[vf].vlan_count)
1141 adapter->vfinfo[vf].vlan_count--;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001142
1143 /* disable hide VLAN on X550 */
1144 if (hw->mac.type >= ixgbe_mac_X550)
1145 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
1146
Don Skidmore2b509c02014-11-01 01:06:57 +00001147 adapter->vfinfo[vf].pf_vlan = 0;
1148 adapter->vfinfo[vf].pf_qos = 0;
1149
1150 return err;
1151}
1152
Greg Rose7f016482010-05-04 22:12:06 +00001153int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos)
1154{
1155 int err = 0;
1156 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1157
1158 if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7))
1159 return -EINVAL;
1160 if (vlan || qos) {
Don Skidmore2b509c02014-11-01 01:06:57 +00001161 /* Check if there is already a port VLAN set, if so
1162 * we have to delete the old one first before we
1163 * can set the new one. The usage model had
1164 * previously assumed the user would delete the
1165 * old port VLAN before setting a new one but this
1166 * is not necessarily the case.
1167 */
Greg Rose026ac672013-04-17 20:41:35 +00001168 if (adapter->vfinfo[vf].pf_vlan)
Don Skidmore2b509c02014-11-01 01:06:57 +00001169 err = ixgbe_disable_port_vlan(adapter, vf);
Greg Rose026ac672013-04-17 20:41:35 +00001170 if (err)
1171 goto out;
Don Skidmore2b509c02014-11-01 01:06:57 +00001172 err = ixgbe_enable_port_vlan(adapter, vf, vlan, qos);
Greg Rose7f016482010-05-04 22:12:06 +00001173 } else {
Don Skidmore2b509c02014-11-01 01:06:57 +00001174 err = ixgbe_disable_port_vlan(adapter, vf);
Jacob Kellere7cf7452014-04-09 06:03:10 +00001175 }
Don Skidmore2b509c02014-11-01 01:06:57 +00001176
Greg Rose7f016482010-05-04 22:12:06 +00001177out:
Jacob Kellere7cf7452014-04-09 06:03:10 +00001178 return err;
Greg Rose7f016482010-05-04 22:12:06 +00001179}
1180
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001181static int ixgbe_link_mbps(struct ixgbe_adapter *adapter)
Lior Levyff4ab202011-03-11 02:03:07 +00001182{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001183 switch (adapter->link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001184 case IXGBE_LINK_SPEED_100_FULL:
1185 return 100;
1186 case IXGBE_LINK_SPEED_1GB_FULL:
1187 return 1000;
1188 case IXGBE_LINK_SPEED_10GB_FULL:
1189 return 10000;
1190 default:
1191 return 0;
1192 }
1193}
1194
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001195static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf)
Lior Levyff4ab202011-03-11 02:03:07 +00001196{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001197 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1198 struct ixgbe_hw *hw = &adapter->hw;
1199 u32 bcnrc_val = 0;
1200 u16 queue, queues_per_pool;
1201 u16 tx_rate = adapter->vfinfo[vf].tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001202
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001203 if (tx_rate) {
1204 /* start with base link speed value */
1205 bcnrc_val = adapter->vf_rate_link_speed;
1206
Lior Levyff4ab202011-03-11 02:03:07 +00001207 /* Calculate the rate factor values to set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001208 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1209 bcnrc_val /= tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001210
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001211 /* clear everything but the rate factor */
1212 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1213 IXGBE_RTTBCNRC_RF_DEC_MASK;
1214
1215 /* enable the rate scheduler */
1216 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
Lior Levyff4ab202011-03-11 02:03:07 +00001217 }
1218
Lior Levy7555e832011-06-25 00:09:08 -07001219 /*
1220 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
1221 * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported
1222 * and 0x004 otherwise.
1223 */
1224 switch (hw->mac.type) {
1225 case ixgbe_mac_82599EB:
1226 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4);
1227 break;
1228 case ixgbe_mac_X540:
1229 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14);
1230 break;
1231 default:
1232 break;
1233 }
1234
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001235 /* determine how many queues per pool based on VMDq mask */
1236 queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
1237
1238 /* write value for all Tx queues belonging to VF */
1239 for (queue = 0; queue < queues_per_pool; queue++) {
1240 unsigned int reg_idx = (vf * queues_per_pool) + queue;
1241
1242 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx);
1243 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1244 }
Lior Levyff4ab202011-03-11 02:03:07 +00001245}
1246
1247void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter)
1248{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001249 int i;
Lior Levyff4ab202011-03-11 02:03:07 +00001250
1251 /* VF Tx rate limit was not set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001252 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001253 return;
1254
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001255 if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001256 adapter->vf_rate_link_speed = 0;
1257 dev_info(&adapter->pdev->dev,
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001258 "Link speed has been changed. VF Transmit rate is disabled\n");
Lior Levyff4ab202011-03-11 02:03:07 +00001259 }
1260
1261 for (i = 0; i < adapter->num_vfs; i++) {
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001262 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001263 adapter->vfinfo[i].tx_rate = 0;
1264
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001265 ixgbe_set_vf_rate_limit(adapter, i);
Lior Levyff4ab202011-03-11 02:03:07 +00001266 }
1267}
1268
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001269int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int min_tx_rate,
1270 int max_tx_rate)
Greg Rose7f016482010-05-04 22:12:06 +00001271{
Lior Levyff4ab202011-03-11 02:03:07 +00001272 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001273 int link_speed;
Lior Levyff4ab202011-03-11 02:03:07 +00001274
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001275 /* verify VF is active */
1276 if (vf >= adapter->num_vfs)
Lior Levyff4ab202011-03-11 02:03:07 +00001277 return -EINVAL;
1278
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001279 /* verify link is up */
1280 if (!adapter->link_up)
1281 return -EINVAL;
1282
1283 /* verify we are linked at 10Gbps */
1284 link_speed = ixgbe_link_mbps(adapter);
1285 if (link_speed != 10000)
1286 return -EINVAL;
1287
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001288 if (min_tx_rate)
1289 return -EINVAL;
1290
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001291 /* rate limit cannot be less than 10Mbs or greater than link speed */
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001292 if (max_tx_rate && ((max_tx_rate <= 10) || (max_tx_rate > link_speed)))
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001293 return -EINVAL;
1294
1295 /* store values */
1296 adapter->vf_rate_link_speed = link_speed;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001297 adapter->vfinfo[vf].tx_rate = max_tx_rate;
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001298
1299 /* update hardware configuration */
1300 ixgbe_set_vf_rate_limit(adapter, vf);
Lior Levyff4ab202011-03-11 02:03:07 +00001301
1302 return 0;
Greg Rose7f016482010-05-04 22:12:06 +00001303}
1304
Greg Rosede4c7f62011-09-29 05:57:33 +00001305int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting)
1306{
1307 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1308 int vf_target_reg = vf >> 3;
1309 int vf_target_shift = vf % 8;
1310 struct ixgbe_hw *hw = &adapter->hw;
1311 u32 regval;
1312
Emil Tantilov600a5072014-10-16 15:49:02 +00001313 if (vf >= adapter->num_vfs)
1314 return -EINVAL;
1315
Greg Rosede4c7f62011-09-29 05:57:33 +00001316 adapter->vfinfo[vf].spoofchk_enabled = setting;
1317
1318 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1319 regval &= ~(1 << vf_target_shift);
1320 regval |= (setting << vf_target_shift);
1321 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1322
1323 if (adapter->vfinfo[vf].vlan_count) {
1324 vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT;
1325 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1326 regval &= ~(1 << vf_target_shift);
1327 regval |= (setting << vf_target_shift);
1328 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1329 }
1330
1331 return 0;
1332}
1333
Greg Rose7f016482010-05-04 22:12:06 +00001334int ixgbe_ndo_get_vf_config(struct net_device *netdev,
1335 int vf, struct ifla_vf_info *ivi)
1336{
1337 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1338 if (vf >= adapter->num_vfs)
1339 return -EINVAL;
1340 ivi->vf = vf;
1341 memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN);
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001342 ivi->max_tx_rate = adapter->vfinfo[vf].tx_rate;
1343 ivi->min_tx_rate = 0;
Greg Rose7f016482010-05-04 22:12:06 +00001344 ivi->vlan = adapter->vfinfo[vf].pf_vlan;
1345 ivi->qos = adapter->vfinfo[vf].pf_qos;
Greg Rosede4c7f62011-09-29 05:57:33 +00001346 ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled;
Greg Rose7f016482010-05-04 22:12:06 +00001347 return 0;
1348}