blob: 94fc43a5f9f7cde20d30821fc7cc418c90641927 [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
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +0300109 for (i = 0; i < adapter->num_vfs; i++) {
110 /* enable spoof checking for all VFs */
Greg Rosede4c7f62011-09-29 05:57:33 +0000111 adapter->vfinfo[i].spoofchk_enabled = true;
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +0300112
113 /* We support VF RSS querying only for 82599 and x540
114 * devices at the moment. These devices share RSS
115 * indirection table and RSS hash key with PF therefore
116 * we want to disable the querying by default.
117 */
118 adapter->vfinfo[i].rss_query_enabled = 0;
119 }
120
Greg Rose66dcfd72012-12-11 08:26:38 +0000121 return 0;
Greg Rosec6bda302011-08-24 02:37:55 +0000122 }
123
Greg Rose66dcfd72012-12-11 08:26:38 +0000124 return -ENOMEM;
125}
126
127/* Note this function is called when the user wants to enable SR-IOV
128 * VFs using the now deprecated module parameter
129 */
130void ixgbe_enable_sriov(struct ixgbe_adapter *adapter)
131{
132 int pre_existing_vfs = 0;
133
134 pre_existing_vfs = pci_num_vf(adapter->pdev);
135 if (!pre_existing_vfs && !adapter->num_vfs)
136 return;
137
Greg Rose66dcfd72012-12-11 08:26:38 +0000138 /* If there are pre-existing VFs then we have to force
139 * use of that many - over ride any module parameter value.
140 * This may result from the user unloading the PF driver
141 * while VFs were assigned to guest VMs or because the VFs
142 * have been created via the new PCI SR-IOV sysfs interface.
143 */
144 if (pre_existing_vfs) {
145 adapter->num_vfs = pre_existing_vfs;
146 dev_warn(&adapter->pdev->dev,
147 "Virtual Functions already enabled for this device - Please reload all VF drivers to avoid spoofed packet errors\n");
148 } else {
149 int err;
150 /*
151 * The 82599 supports up to 64 VFs per physical function
152 * but this implementation limits allocation to 63 so that
153 * basic networking resources are still available to the
Joe Perchesdbedd442015-03-06 20:49:12 -0800154 * physical function. If the user requests greater than
Greg Rose66dcfd72012-12-11 08:26:38 +0000155 * 63 VFs then it is an error - reset to default of zero.
156 */
ethan.zhaodcc23e32014-01-16 19:41:04 -0800157 adapter->num_vfs = min_t(unsigned int, adapter->num_vfs, IXGBE_MAX_VFS_DRV_LIMIT);
Greg Rose66dcfd72012-12-11 08:26:38 +0000158
159 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
160 if (err) {
161 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
162 adapter->num_vfs = 0;
163 return;
164 }
165 }
166
167 if (!__ixgbe_enable_sriov(adapter))
168 return;
169
170 /* If we have gotten to this point then there is no memory available
171 * to manage the VF devices - print message and bail.
172 */
Greg Rosec6bda302011-08-24 02:37:55 +0000173 e_err(probe, "Unable to allocate memory for VF Data Storage - "
174 "SRIOV disabled\n");
Alexander Duyck99d74482012-05-09 08:09:25 +0000175 ixgbe_disable_sriov(adapter);
Greg Rosec6bda302011-08-24 02:37:55 +0000176}
Greg Rosec6bda302011-08-24 02:37:55 +0000177
Alexander Duyck92971272012-05-23 02:58:40 +0000178#endif /* #ifdef CONFIG_PCI_IOV */
Greg Roseda36b642012-12-11 08:26:43 +0000179int ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
Greg Rosec6bda302011-08-24 02:37:55 +0000180{
181 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +0000182 u32 gpie;
183 u32 vmdctl;
Greg Roseda36b642012-12-11 08:26:43 +0000184 int rss;
Greg Rosec6bda302011-08-24 02:37:55 +0000185
Alexander Duyckd773d132012-05-05 05:32:26 +0000186 /* set num VFs to 0 to prevent access to vfinfo */
187 adapter->num_vfs = 0;
188
189 /* free VF control structures */
190 kfree(adapter->vfinfo);
191 adapter->vfinfo = NULL;
192
193 /* free macvlan list */
194 kfree(adapter->mv_list);
195 adapter->mv_list = NULL;
196
Alexander Duyck99d74482012-05-09 08:09:25 +0000197 /* if SR-IOV is already disabled then there is nothing to do */
198 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
Greg Roseda36b642012-12-11 08:26:43 +0000199 return 0;
Alexander Duyck99d74482012-05-09 08:09:25 +0000200
Greg Rosec6bda302011-08-24 02:37:55 +0000201#ifdef CONFIG_PCI_IOV
Alexander Duyck92971272012-05-23 02:58:40 +0000202 /*
203 * If our VFs are assigned we cannot shut down SR-IOV
204 * without causing issues, so just leave the hardware
205 * available but disabled
206 */
Alexander Duycke507d0c2013-03-26 00:03:21 +0000207 if (pci_vfs_assigned(adapter->pdev)) {
Alexander Duyck92971272012-05-23 02:58:40 +0000208 e_dev_warn("Unloading driver while VFs are assigned - VFs will not be deallocated\n");
Greg Roseda36b642012-12-11 08:26:43 +0000209 return -EPERM;
David S. Millerd47e12d2012-07-22 12:36:41 -0700210 }
Greg Rosec6bda302011-08-24 02:37:55 +0000211 /* disable iov and allow time for transactions to clear */
212 pci_disable_sriov(adapter->pdev);
213#endif
214
215 /* turn off device IOV mode */
Alexander Duyck73079ea2012-07-14 06:48:49 +0000216 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0);
Greg Rosec6bda302011-08-24 02:37:55 +0000217 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
218 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
219 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
220
221 /* set default pool back to 0 */
222 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
223 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
224 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
225 IXGBE_WRITE_FLUSH(hw);
226
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000227 /* Disable VMDq flag so device will be set in VM mode */
John Fastabend2a47fa42013-11-06 09:54:52 -0800228 if (adapter->ring_feature[RING_F_VMDQ].limit == 1) {
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000229 adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED;
John Fastabend2a47fa42013-11-06 09:54:52 -0800230 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
Don Skidmore0f9b2322014-11-18 09:35:08 +0000231 rss = min_t(int, ixgbe_max_rss_indices(adapter),
232 num_online_cpus());
John Fastabend2a47fa42013-11-06 09:54:52 -0800233 } else {
234 rss = min_t(int, IXGBE_MAX_L2A_QUEUES, num_online_cpus());
235 }
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000236
John Fastabend2a47fa42013-11-06 09:54:52 -0800237 adapter->ring_feature[RING_F_VMDQ].offset = 0;
Greg Roseda36b642012-12-11 08:26:43 +0000238 adapter->ring_feature[RING_F_RSS].limit = rss;
239
Greg Rosec6bda302011-08-24 02:37:55 +0000240 /* take a breather then clean up driver data */
241 msleep(100);
Greg Roseda36b642012-12-11 08:26:43 +0000242 return 0;
243}
244
245static int ixgbe_pci_sriov_enable(struct pci_dev *dev, int num_vfs)
246{
247#ifdef CONFIG_PCI_IOV
248 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
249 int err = 0;
250 int i;
251 int pre_existing_vfs = pci_num_vf(dev);
252
253 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
254 err = ixgbe_disable_sriov(adapter);
255 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
Mark Rustade90dd262014-07-22 06:51:08 +0000256 return num_vfs;
Greg Roseda36b642012-12-11 08:26:43 +0000257
258 if (err)
Mark Rustade90dd262014-07-22 06:51:08 +0000259 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000260
Jacob Kelleraac2f1b2014-08-21 06:17:59 +0000261 /* While the SR-IOV capability structure reports total VFs to be 64,
262 * we have to limit the actual number allocated based on two factors.
263 * First, we reserve some transmit/receive resources for the PF.
264 * Second, VMDQ also uses the same pools that SR-IOV does. We need to
265 * account for this, so that we don't accidentally allocate more VFs
266 * than we have available pools. The PCI bus driver already checks for
267 * other values out of range.
Greg Roseda36b642012-12-11 08:26:43 +0000268 */
Jacob Kelleraac2f1b2014-08-21 06:17:59 +0000269 if ((num_vfs + adapter->num_rx_pools) > IXGBE_MAX_VF_FUNCTIONS)
Mark Rustade90dd262014-07-22 06:51:08 +0000270 return -EPERM;
Greg Roseda36b642012-12-11 08:26:43 +0000271
272 adapter->num_vfs = num_vfs;
273
274 err = __ixgbe_enable_sriov(adapter);
275 if (err)
Mark Rustade90dd262014-07-22 06:51:08 +0000276 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000277
278 for (i = 0; i < adapter->num_vfs; i++)
279 ixgbe_vf_configuration(dev, (i | 0x10000000));
280
281 err = pci_enable_sriov(dev, num_vfs);
282 if (err) {
283 e_dev_warn("Failed to enable PCI sriov: %d\n", err);
Mark Rustade90dd262014-07-22 06:51:08 +0000284 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000285 }
286 ixgbe_sriov_reinit(adapter);
287
Greg Roseda36b642012-12-11 08:26:43 +0000288 return num_vfs;
Mark Rustade90dd262014-07-22 06:51:08 +0000289#else
Greg Roseda36b642012-12-11 08:26:43 +0000290 return 0;
Mark Rustade90dd262014-07-22 06:51:08 +0000291#endif
Greg Roseda36b642012-12-11 08:26:43 +0000292}
293
294static int ixgbe_pci_sriov_disable(struct pci_dev *dev)
295{
296 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
297 int err;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000298#ifdef CONFIG_PCI_IOV
Greg Roseda36b642012-12-11 08:26:43 +0000299 u32 current_flags = adapter->flags;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000300#endif
Greg Roseda36b642012-12-11 08:26:43 +0000301
302 err = ixgbe_disable_sriov(adapter);
303
304 /* Only reinit if no error and state changed */
Greg Roseda36b642012-12-11 08:26:43 +0000305#ifdef CONFIG_PCI_IOV
John Fastabend2a47fa42013-11-06 09:54:52 -0800306 if (!err && current_flags != adapter->flags)
Greg Roseda36b642012-12-11 08:26:43 +0000307 ixgbe_sriov_reinit(adapter);
308#endif
Greg Roseda36b642012-12-11 08:26:43 +0000309
310 return err;
311}
312
313int ixgbe_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
314{
315 if (num_vfs == 0)
316 return ixgbe_pci_sriov_disable(dev);
317 else
318 return ixgbe_pci_sriov_enable(dev, num_vfs);
Greg Rosec6bda302011-08-24 02:37:55 +0000319}
320
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000321static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
Alexander Duyck58a02be2012-07-20 08:09:17 +0000322 u32 *msgbuf, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000323{
Alexander Duyck58a02be2012-07-20 08:09:17 +0000324 int entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
325 >> IXGBE_VT_MSGINFO_SHIFT;
326 u16 *hash_list = (u16 *)&msgbuf[1];
Greg Rose17367272010-01-09 02:25:48 +0000327 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Greg Rose8a07a222010-05-05 19:57:30 +0000328 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose17367272010-01-09 02:25:48 +0000329 int i;
Greg Rose8a07a222010-05-05 19:57:30 +0000330 u32 vector_bit;
331 u32 vector_reg;
332 u32 mta_reg;
Jacob Kellerb335e752014-03-25 07:45:27 +0000333 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Greg Rose17367272010-01-09 02:25:48 +0000334
335 /* only so many hash values supported */
336 entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES);
337
338 /*
339 * salt away the number of multi cast addresses assigned
340 * to this VF for later use to restore when the PF multi cast
341 * list changes
342 */
343 vfinfo->num_vf_mc_hashes = entries;
344
345 /*
346 * VFs are limited to using the MTA hash table for their multicast
347 * addresses
348 */
349 for (i = 0; i < entries; i++) {
Joe Perchese81a1ba2010-11-14 17:04:33 +0000350 vfinfo->vf_mc_hashes[i] = hash_list[i];
Greg Rose17367272010-01-09 02:25:48 +0000351 }
352
Greg Rose8a07a222010-05-05 19:57:30 +0000353 for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
354 vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F;
355 vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F;
356 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
357 mta_reg |= (1 << vector_bit);
358 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
359 }
Jacob Kellerb335e752014-03-25 07:45:27 +0000360 vmolr |= IXGBE_VMOLR_ROMPE;
361 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
Greg Rose17367272010-01-09 02:25:48 +0000362
363 return 0;
364}
365
Jacob Kellerb335e752014-03-25 07:45:27 +0000366#ifdef CONFIG_PCI_IOV
Greg Rose17367272010-01-09 02:25:48 +0000367void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter)
368{
369 struct ixgbe_hw *hw = &adapter->hw;
370 struct vf_data_storage *vfinfo;
371 int i, j;
372 u32 vector_bit;
373 u32 vector_reg;
374 u32 mta_reg;
375
376 for (i = 0; i < adapter->num_vfs; i++) {
Jacob Kellerb335e752014-03-25 07:45:27 +0000377 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(i));
Greg Rose17367272010-01-09 02:25:48 +0000378 vfinfo = &adapter->vfinfo[i];
379 for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) {
380 hw->addr_ctrl.mta_in_use++;
381 vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F;
382 vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F;
383 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
384 mta_reg |= (1 << vector_bit);
385 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
386 }
Jacob Kellerb335e752014-03-25 07:45:27 +0000387
388 if (vfinfo->num_vf_mc_hashes)
389 vmolr |= IXGBE_VMOLR_ROMPE;
390 else
391 vmolr &= ~IXGBE_VMOLR_ROMPE;
392 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(i), vmolr);
Greg Rose17367272010-01-09 02:25:48 +0000393 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000394
395 /* Restore any VF macvlans */
Jacob Keller5d7daa32014-03-29 06:51:25 +0000396 ixgbe_full_sync_mac_table(adapter);
Greg Rose17367272010-01-09 02:25:48 +0000397}
Jacob Kellerb335e752014-03-25 07:45:27 +0000398#endif
Greg Rose17367272010-01-09 02:25:48 +0000399
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000400static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid,
401 u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000402{
Alexander Duyckb35d4d42012-05-23 05:39:25 +0000403 /* VLAN 0 is a special case, don't allow it to be removed */
404 if (!vid && !add)
405 return 0;
406
Greg Rose17367272010-01-09 02:25:48 +0000407 return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add);
408}
409
Alexander Duyck872844d2012-08-15 02:10:43 +0000410static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
Greg Rosee9f98072011-01-26 01:06:07 +0000411{
412 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck872844d2012-08-15 02:10:43 +0000413 int max_frame = msgbuf[1];
Greg Rosee9f98072011-01-26 01:06:07 +0000414 u32 max_frs;
Greg Rosee9f98072011-01-26 01:06:07 +0000415
Alexander Duyck872844d2012-08-15 02:10:43 +0000416 /*
417 * For 82599EB we have to keep all PFs and VFs operating with
418 * the same max_frame value in order to avoid sending an oversize
419 * frame to a VF. In order to guarantee this is handled correctly
420 * for all cases we have several special exceptions to take into
421 * account before we can enable the VF for receive
422 */
423 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
424 struct net_device *dev = adapter->netdev;
425 int pf_max_frame = dev->mtu + ETH_HLEN;
426 u32 reg_offset, vf_shift, vfre;
427 s32 err = 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000428
Alexander Duyck872844d2012-08-15 02:10:43 +0000429#ifdef CONFIG_FCOE
430 if (dev->features & NETIF_F_FCOE_MTU)
431 pf_max_frame = max_t(int, pf_max_frame,
432 IXGBE_FCOE_JUMBO_FRAME_SIZE);
433
434#endif /* CONFIG_FCOE */
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000435 switch (adapter->vfinfo[vf].vf_api) {
436 case ixgbe_mbox_api_11:
437 /*
438 * Version 1.1 supports jumbo frames on VFs if PF has
439 * jumbo frames enabled which means legacy VFs are
440 * disabled
441 */
442 if (pf_max_frame > ETH_FRAME_LEN)
443 break;
444 default:
445 /*
446 * If the PF or VF are running w/ jumbo frames enabled
447 * we need to shut down the VF Rx path as we cannot
448 * support jumbo frames on legacy VFs
449 */
450 if ((pf_max_frame > ETH_FRAME_LEN) ||
451 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
452 err = -EINVAL;
453 break;
454 }
Alexander Duyck872844d2012-08-15 02:10:43 +0000455
456 /* determine VF receive enable location */
457 vf_shift = vf % 32;
458 reg_offset = vf / 32;
459
460 /* enable or disable receive depending on error */
461 vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
462 if (err)
463 vfre &= ~(1 << vf_shift);
464 else
465 vfre |= 1 << vf_shift;
466 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre);
467
468 if (err) {
469 e_err(drv, "VF max_frame %d out of range\n", max_frame);
470 return err;
471 }
Greg Rosee9f98072011-01-26 01:06:07 +0000472 }
473
Alexander Duyck872844d2012-08-15 02:10:43 +0000474 /* MTU < 68 is an error and causes problems on some kernels */
475 if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) {
476 e_err(drv, "VF max_frame %d out of range\n", max_frame);
477 return -EINVAL;
478 }
479
480 /* pull current max frame size from hardware */
481 max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
482 max_frs &= IXGBE_MHADD_MFS_MASK;
483 max_frs >>= IXGBE_MHADD_MFS_SHIFT;
484
485 if (max_frs < max_frame) {
486 max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT;
Greg Rosee9f98072011-01-26 01:06:07 +0000487 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
488 }
489
Alexander Duyck872844d2012-08-15 02:10:43 +0000490 e_info(hw, "VF requests change max MTU to %d\n", max_frame);
491
492 return 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000493}
494
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000495static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
Greg Rose17367272010-01-09 02:25:48 +0000496{
497 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Jacob Kellerb335e752014-03-25 07:45:27 +0000498 vmolr |= 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 Duyck107d3012012-10-02 00:17:03 +0000516 u8 num_tcs = netdev_get_num_tc(adapter->netdev);
517
518 /* add PF assigned VLAN or VLAN 0 */
519 ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf);
Greg Rose17367272010-01-09 02:25:48 +0000520
521 /* reset offloads to defaults */
Alexander Duyck107d3012012-10-02 00:17:03 +0000522 ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan);
523
524 /* set outgoing tags for VFs */
525 if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) {
526 ixgbe_clear_vmvir(adapter, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000527 } else {
Alexander Duyck107d3012012-10-02 00:17:03 +0000528 if (vfinfo->pf_qos || !num_tcs)
529 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
530 vfinfo->pf_qos, vf);
531 else
532 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
533 adapter->default_up, vf);
534
535 if (vfinfo->spoofchk_enabled)
536 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000537 }
Greg Rose17367272010-01-09 02:25:48 +0000538
539 /* reset multicast table array for vf */
540 adapter->vfinfo[vf].num_vf_mc_hashes = 0;
541
542 /* Flush and reset the mta with the new values */
543 ixgbe_set_rx_mode(adapter->netdev);
544
Jacob Keller5d7daa32014-03-29 06:51:25 +0000545 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Alexander Duyck374c65d2012-07-20 08:09:22 +0000546
547 /* reset VF api back to unknown */
548 adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10;
Greg Rose17367272010-01-09 02:25:48 +0000549}
550
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000551static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
552 int vf, unsigned char *mac_addr)
Greg Rose17367272010-01-09 02:25:48 +0000553{
Jacob Keller5d7daa32014-03-29 06:51:25 +0000554 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Joe Perchesd458cdf2013-10-01 19:04:40 -0700555 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, ETH_ALEN);
Jacob Keller5d7daa32014-03-29 06:51:25 +0000556 ixgbe_add_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Greg Rose17367272010-01-09 02:25:48 +0000557
558 return 0;
559}
560
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000561static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter,
562 int vf, int index, unsigned char *mac_addr)
563{
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000564 struct list_head *pos;
565 struct vf_macvlans *entry;
566
567 if (index <= 1) {
568 list_for_each(pos, &adapter->vf_mvs.l) {
569 entry = list_entry(pos, struct vf_macvlans, l);
570 if (entry->vf == vf) {
571 entry->vf = -1;
572 entry->free = true;
573 entry->is_macvlan = false;
Jacob Keller5d7daa32014-03-29 06:51:25 +0000574 ixgbe_del_mac_filter(adapter,
575 entry->vf_macvlan, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000576 }
577 }
578 }
579
580 /*
581 * If index was zero then we were asked to clear the uc list
582 * for the VF. We're done.
583 */
584 if (!index)
585 return 0;
586
587 entry = NULL;
588
589 list_for_each(pos, &adapter->vf_mvs.l) {
590 entry = list_entry(pos, struct vf_macvlans, l);
591 if (entry->free)
592 break;
593 }
594
595 /*
596 * If we traversed the entire list and didn't find a free entry
597 * then we're out of space on the RAR table. Also entry may
598 * be NULL because the original memory allocation for the list
599 * failed, which is not fatal but does mean we can't support
600 * VF requests for MACVLAN because we couldn't allocate
601 * memory for the list management required.
602 */
603 if (!entry || !entry->free)
604 return -ENOSPC;
605
606 entry->free = false;
607 entry->is_macvlan = true;
608 entry->vf = vf;
609 memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN);
610
Jacob Keller5d7daa32014-03-29 06:51:25 +0000611 ixgbe_add_mac_filter(adapter, mac_addr, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000612
613 return 0;
614}
615
Greg Rose17367272010-01-09 02:25:48 +0000616int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
617{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800618 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Greg Rose17367272010-01-09 02:25:48 +0000619 unsigned int vfn = (event_mask & 0x3f);
620
621 bool enable = ((event_mask & 0x10000000U) != 0);
622
Joe Perchesd458cdf2013-10-01 19:04:40 -0700623 if (enable)
624 eth_zero_addr(adapter->vfinfo[vfn].vf_mac_addresses);
Greg Rose17367272010-01-09 02:25:48 +0000625
626 return 0;
627}
628
Don Skidmore8d697e72014-11-05 04:52:09 +0000629static inline void ixgbe_write_qde(struct ixgbe_adapter *adapter, u32 vf,
630 u32 qde)
631{
632 struct ixgbe_hw *hw = &adapter->hw;
633 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
634 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
635 int i;
636
637 for (i = vf * q_per_pool; i < ((vf + 1) * q_per_pool); i++) {
638 u32 reg;
639
640 /* flush previous write */
641 IXGBE_WRITE_FLUSH(hw);
642
643 /* indicate to hardware that we want to set drop enable */
644 reg = IXGBE_QDE_WRITE | IXGBE_QDE_ENABLE;
645 reg |= i << IXGBE_QDE_IDX_SHIFT;
646 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
647 }
648}
649
Alexander Duyck58a02be2012-07-20 08:09:17 +0000650static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000651{
Alexander Duyck87397372014-01-15 17:38:40 -0800652 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
Greg Rose17367272010-01-09 02:25:48 +0000653 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000654 unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
Emil Tantilovb08e1ed2013-07-26 07:34:54 +0000655 u32 reg, reg_offset, vf_shift;
656 u32 msgbuf[4] = {0, 0, 0, 0};
Alexander Duyck58a02be2012-07-20 08:09:17 +0000657 u8 *addr = (u8 *)(&msgbuf[1]);
Alexander Duyck87397372014-01-15 17:38:40 -0800658 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
659 int i;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000660
661 e_info(probe, "VF Reset msg received from vf %d\n", vf);
662
663 /* reset the filters for the device */
664 ixgbe_vf_reset_event(adapter, vf);
665
666 /* set vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000667 if (!is_zero_ether_addr(vf_mac))
668 ixgbe_set_vf_mac(adapter, vf, vf_mac);
Greg Rose17367272010-01-09 02:25:48 +0000669
670 vf_shift = vf % 32;
671 reg_offset = vf / 32;
672
Alexander Duyck58a02be2012-07-20 08:09:17 +0000673 /* enable transmit for vf */
Greg Rose17367272010-01-09 02:25:48 +0000674 reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000675 reg |= 1 << vf_shift;
Greg Rose17367272010-01-09 02:25:48 +0000676 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
677
Alexander Duyck87397372014-01-15 17:38:40 -0800678 /* force drop enable for all VF Rx queues */
Don Skidmore8d697e72014-11-05 04:52:09 +0000679 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
Alexander Duyck87397372014-01-15 17:38:40 -0800680
Alexander Duyck58a02be2012-07-20 08:09:17 +0000681 /* enable receive for vf */
Greg Rose17367272010-01-09 02:25:48 +0000682 reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000683 reg |= 1 << vf_shift;
684 /*
685 * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs.
686 * For more info take a look at ixgbe_set_vf_lpe
687 */
688 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
689 struct net_device *dev = adapter->netdev;
690 int pf_max_frame = dev->mtu + ETH_HLEN;
691
692#ifdef CONFIG_FCOE
693 if (dev->features & NETIF_F_FCOE_MTU)
694 pf_max_frame = max_t(int, pf_max_frame,
695 IXGBE_FCOE_JUMBO_FRAME_SIZE);
696
697#endif /* CONFIG_FCOE */
698 if (pf_max_frame > ETH_FRAME_LEN)
699 reg &= ~(1 << vf_shift);
700 }
Greg Rose17367272010-01-09 02:25:48 +0000701 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
702
Alexander Duyck58a02be2012-07-20 08:09:17 +0000703 /* enable VF mailbox for further messages */
704 adapter->vfinfo[vf].clear_to_send = true;
705
Greg Rosea985b6c32010-11-18 03:02:52 +0000706 /* Enable counting of spoofed packets in the SSVPC register */
707 reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
708 reg |= (1 << vf_shift);
709 IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
710
Alexander Duyckdbf231a2014-01-15 17:38:41 -0800711 /*
712 * Reset the VFs TDWBAL and TDWBAH registers
713 * which are not cleared by an FLR
714 */
715 for (i = 0; i < q_per_pool; i++) {
716 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBAHn(q_per_pool, vf, i), 0);
717 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBALn(q_per_pool, vf, i), 0);
718 }
719
Alexander Duyck58a02be2012-07-20 08:09:17 +0000720 /* reply to reset with ack and vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000721 msgbuf[0] = IXGBE_VF_RESET;
722 if (!is_zero_ether_addr(vf_mac)) {
723 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
724 memcpy(addr, vf_mac, ETH_ALEN);
725 } else {
726 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
727 dev_warn(&adapter->pdev->dev,
728 "VF %d has no MAC address assigned, you may have to assign one manually\n",
729 vf);
730 }
Alexander Duyck58a02be2012-07-20 08:09:17 +0000731
732 /*
733 * Piggyback the multicast filter type so VF can compute the
734 * correct vectors
735 */
736 msgbuf[3] = hw->mac.mc_filter_type;
737 ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
738
739 return 0;
740}
741
742static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter,
743 u32 *msgbuf, u32 vf)
744{
745 u8 *new_mac = ((u8 *)(&msgbuf[1]));
746
747 if (!is_valid_ether_addr(new_mac)) {
748 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
749 return -1;
750 }
751
752 if (adapter->vfinfo[vf].pf_set_mac &&
dingtianhong4012dda2013-12-30 15:40:50 +0800753 !ether_addr_equal(adapter->vfinfo[vf].vf_mac_addresses, new_mac)) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000754 e_warn(drv,
755 "VF %d attempted to override administratively set MAC address\n"
756 "Reload the VF driver to resume operations\n",
757 vf);
758 return -1;
759 }
760
Greg Rose3970c322012-09-25 02:25:30 +0000761 return ixgbe_set_vf_mac(adapter, vf, new_mac) < 0;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000762}
763
Greg Rose670224f2013-02-22 02:14:39 +0000764static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
765{
766 u32 vlvf;
767 s32 regindex;
768
769 /* short cut the special case */
770 if (vlan == 0)
771 return 0;
772
773 /* Search for the vlan id in the VLVF entries */
774 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
775 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
776 if ((vlvf & VLAN_VID_MASK) == vlan)
777 break;
778 }
779
780 /* Return a negative value if not found */
781 if (regindex >= IXGBE_VLVF_ENTRIES)
782 regindex = -1;
783
784 return regindex;
785}
786
Alexander Duyck58a02be2012-07-20 08:09:17 +0000787static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter,
788 u32 *msgbuf, u32 vf)
789{
790 struct ixgbe_hw *hw = &adapter->hw;
791 int add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT;
792 int vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
793 int err;
Greg Rose670224f2013-02-22 02:14:39 +0000794 s32 reg_ndx;
795 u32 vlvf;
796 u32 bits;
Alexander Duyck107d3012012-10-02 00:17:03 +0000797 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck58a02be2012-07-20 08:09:17 +0000798
Alexander Duyck107d3012012-10-02 00:17:03 +0000799 if (adapter->vfinfo[vf].pf_vlan || tcs) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000800 e_warn(drv,
801 "VF %d attempted to override administratively set VLAN configuration\n"
802 "Reload the VF driver to resume operations\n",
803 vf);
804 return -1;
805 }
806
807 if (add)
808 adapter->vfinfo[vf].vlan_count++;
809 else if (adapter->vfinfo[vf].vlan_count)
810 adapter->vfinfo[vf].vlan_count--;
811
Greg Rose670224f2013-02-22 02:14:39 +0000812 /* in case of promiscuous mode any VLAN filter set for a VF must
813 * also have the PF pool added to it.
814 */
815 if (add && adapter->netdev->flags & IFF_PROMISC)
816 err = ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
817
Alexander Duyck58a02be2012-07-20 08:09:17 +0000818 err = ixgbe_set_vf_vlan(adapter, add, vid, vf);
819 if (!err && adapter->vfinfo[vf].spoofchk_enabled)
820 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
821
Greg Rose670224f2013-02-22 02:14:39 +0000822 /* Go through all the checks to see if the VLAN filter should
823 * be wiped completely.
824 */
825 if (!add && adapter->netdev->flags & IFF_PROMISC) {
826 reg_ndx = ixgbe_find_vlvf_entry(hw, vid);
827 if (reg_ndx < 0)
Mark Rustade90dd262014-07-22 06:51:08 +0000828 return err;
Greg Rose670224f2013-02-22 02:14:39 +0000829 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_ndx));
830 /* See if any other pools are set for this VLAN filter
831 * entry other than the PF.
832 */
833 if (VMDQ_P(0) < 32) {
834 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
835 bits &= ~(1 << VMDQ_P(0));
836 bits |= IXGBE_READ_REG(hw,
837 IXGBE_VLVFB(reg_ndx * 2) + 1);
838 } else {
839 bits = IXGBE_READ_REG(hw,
840 IXGBE_VLVFB(reg_ndx * 2) + 1);
841 bits &= ~(1 << (VMDQ_P(0) - 32));
842 bits |= IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
843 }
844
845 /* If the filter was removed then ensure PF pool bit
846 * is cleared if the PF only added itself to the pool
847 * because the PF is in promiscuous mode.
848 */
849 if ((vlvf & VLAN_VID_MASK) == vid &&
850 !test_bit(vid, adapter->active_vlans) && !bits)
851 ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
852 }
853
Alexander Duyck58a02be2012-07-20 08:09:17 +0000854 return err;
855}
856
857static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter,
858 u32 *msgbuf, u32 vf)
859{
860 u8 *new_mac = ((u8 *)(&msgbuf[1]));
861 int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
862 IXGBE_VT_MSGINFO_SHIFT;
863 int err;
864
865 if (adapter->vfinfo[vf].pf_set_mac && index > 0) {
866 e_warn(drv,
867 "VF %d requested MACVLAN filter but is administratively denied\n",
868 vf);
869 return -1;
870 }
871
872 /* An non-zero index indicates the VF is setting a filter */
873 if (index) {
874 if (!is_valid_ether_addr(new_mac)) {
875 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
876 return -1;
877 }
878
879 /*
880 * If the VF is allowed to set MAC filters then turn off
881 * anti-spoofing to avoid false positives.
882 */
883 if (adapter->vfinfo[vf].spoofchk_enabled)
884 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false);
885 }
886
887 err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac);
888 if (err == -ENOSPC)
889 e_warn(drv,
890 "VF %d has requested a MACVLAN filter but there is no space for it\n",
891 vf);
Greg Rosea3013402012-10-30 00:40:02 +0000892
893 return err < 0;
Greg Rose17367272010-01-09 02:25:48 +0000894}
895
Alexander Duyck374c65d2012-07-20 08:09:22 +0000896static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter,
897 u32 *msgbuf, u32 vf)
898{
899 int api = msgbuf[1];
900
901 switch (api) {
902 case ixgbe_mbox_api_10:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000903 case ixgbe_mbox_api_11:
Alexander Duyck374c65d2012-07-20 08:09:22 +0000904 adapter->vfinfo[vf].vf_api = api;
905 return 0;
906 default:
907 break;
908 }
909
910 e_info(drv, "VF %d requested invalid api version %u\n", vf, api);
911
912 return -1;
913}
914
Alexander Duyckf591cd92012-07-20 08:09:32 +0000915static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter,
916 u32 *msgbuf, u32 vf)
917{
918 struct net_device *dev = adapter->netdev;
919 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
920 unsigned int default_tc = 0;
921 u8 num_tcs = netdev_get_num_tc(dev);
922
923 /* verify the PF is supporting the correct APIs */
924 switch (adapter->vfinfo[vf].vf_api) {
925 case ixgbe_mbox_api_20:
926 case ixgbe_mbox_api_11:
927 break;
928 default:
929 return -1;
930 }
931
932 /* only allow 1 Tx queue for bandwidth limiting */
933 msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
934 msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
935
936 /* if TCs > 1 determine which TC belongs to default user priority */
937 if (num_tcs > 1)
938 default_tc = netdev_get_prio_tc_map(dev, adapter->default_up);
939
940 /* notify VF of need for VLAN tag stripping, and correct queue */
941 if (num_tcs)
942 msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
943 else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos)
944 msgbuf[IXGBE_VF_TRANS_VLAN] = 1;
945 else
946 msgbuf[IXGBE_VF_TRANS_VLAN] = 0;
947
948 /* notify VF of default queue */
949 msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc;
950
951 return 0;
952}
953
Greg Rose17367272010-01-09 02:25:48 +0000954static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
955{
956 u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
Emil Tantilovc0509992011-05-07 06:49:18 +0000957 u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
Greg Rose17367272010-01-09 02:25:48 +0000958 struct ixgbe_hw *hw = &adapter->hw;
959 s32 retval;
Greg Rose17367272010-01-09 02:25:48 +0000960
961 retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
962
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000963 if (retval) {
Emil Tantilov849c4542010-06-03 16:53:41 +0000964 pr_err("Error receiving message from VF\n");
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000965 return retval;
966 }
Greg Rose17367272010-01-09 02:25:48 +0000967
968 /* this is a message we already processed, do nothing */
969 if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
Mark Rustade90dd262014-07-22 06:51:08 +0000970 return 0;
Greg Rose17367272010-01-09 02:25:48 +0000971
Alexander Duyckdcaccc82012-03-28 08:03:38 +0000972 /* flush the ack before we write any messages back */
973 IXGBE_WRITE_FLUSH(hw);
974
Alexander Duyck374c65d2012-07-20 08:09:22 +0000975 if (msgbuf[0] == IXGBE_VF_RESET)
976 return ixgbe_vf_reset_msg(adapter, vf);
977
Greg Rose17367272010-01-09 02:25:48 +0000978 /*
979 * until the vf completes a virtual function reset it should not be
980 * allowed to start any configuration.
981 */
Greg Rose17367272010-01-09 02:25:48 +0000982 if (!adapter->vfinfo[vf].clear_to_send) {
983 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
984 ixgbe_write_mbx(hw, msgbuf, 1, vf);
Mark Rustade90dd262014-07-22 06:51:08 +0000985 return 0;
Greg Rose17367272010-01-09 02:25:48 +0000986 }
987
988 switch ((msgbuf[0] & 0xFFFF)) {
989 case IXGBE_VF_SET_MAC_ADDR:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000990 retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000991 break;
992 case IXGBE_VF_SET_MULTICAST:
Alexander Duyck58a02be2012-07-20 08:09:17 +0000993 retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf);
994 break;
995 case IXGBE_VF_SET_VLAN:
996 retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +0000997 break;
998 case IXGBE_VF_SET_LPE:
Alexander Duyck872844d2012-08-15 02:10:43 +0000999 retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +00001000 break;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00001001 case IXGBE_VF_SET_MACVLAN:
Alexander Duyck58a02be2012-07-20 08:09:17 +00001002 retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +00001003 break;
Alexander Duyck374c65d2012-07-20 08:09:22 +00001004 case IXGBE_VF_API_NEGOTIATE:
1005 retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf);
1006 break;
Alexander Duyckf591cd92012-07-20 08:09:32 +00001007 case IXGBE_VF_GET_QUEUES:
1008 retval = ixgbe_get_vf_queues(adapter, msgbuf, vf);
1009 break;
Greg Rose17367272010-01-09 02:25:48 +00001010 default:
Emil Tantilov396e7992010-07-01 20:05:12 +00001011 e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]);
Greg Rose17367272010-01-09 02:25:48 +00001012 retval = IXGBE_ERR_MBX;
1013 break;
1014 }
1015
1016 /* notify the VF of the results of what it sent us */
1017 if (retval)
1018 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1019 else
1020 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
1021
1022 msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
1023
Alexander Duyck374c65d2012-07-20 08:09:22 +00001024 ixgbe_write_mbx(hw, msgbuf, mbx_size, vf);
Greg Rose17367272010-01-09 02:25:48 +00001025
1026 return retval;
1027}
1028
1029static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1030{
1031 struct ixgbe_hw *hw = &adapter->hw;
1032 u32 msg = IXGBE_VT_MSGTYPE_NACK;
1033
1034 /* if device isn't clear to send it shouldn't be reading either */
1035 if (!adapter->vfinfo[vf].clear_to_send)
1036 ixgbe_write_mbx(hw, &msg, 1, vf);
1037}
1038
1039void ixgbe_msg_task(struct ixgbe_adapter *adapter)
1040{
1041 struct ixgbe_hw *hw = &adapter->hw;
1042 u32 vf;
1043
1044 for (vf = 0; vf < adapter->num_vfs; vf++) {
1045 /* process any reset requests */
1046 if (!ixgbe_check_for_rst(hw, vf))
1047 ixgbe_vf_reset_event(adapter, vf);
1048
1049 /* process any messages pending */
1050 if (!ixgbe_check_for_msg(hw, vf))
1051 ixgbe_rcv_msg_from_vf(adapter, vf);
1052
1053 /* process any acks */
1054 if (!ixgbe_check_for_ack(hw, vf))
1055 ixgbe_rcv_ack_from_vf(adapter, vf);
1056 }
1057}
1058
Greg Rose767081a2010-01-22 22:46:40 +00001059void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
1060{
1061 struct ixgbe_hw *hw = &adapter->hw;
1062
1063 /* disable transmit and receive for all vfs */
1064 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
1065 IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
1066
1067 IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
1068 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
1069}
1070
1071void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
1072{
1073 struct ixgbe_hw *hw = &adapter->hw;
1074 u32 ping;
1075 int i;
1076
1077 for (i = 0 ; i < adapter->num_vfs; i++) {
1078 ping = IXGBE_PF_CONTROL_MSG;
1079 if (adapter->vfinfo[i].clear_to_send)
1080 ping |= IXGBE_VT_MSGTYPE_CTS;
1081 ixgbe_write_mbx(hw, &ping, 1, i);
1082 }
1083}
1084
Greg Rose7f016482010-05-04 22:12:06 +00001085int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1086{
1087 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1088 if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs))
1089 return -EINVAL;
1090 adapter->vfinfo[vf].pf_set_mac = true;
1091 dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf);
1092 dev_info(&adapter->pdev->dev, "Reload the VF driver to make this"
1093 " change effective.");
1094 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1095 dev_warn(&adapter->pdev->dev, "The VF MAC address has been set,"
1096 " but the PF device is not up.\n");
1097 dev_warn(&adapter->pdev->dev, "Bring the PF device up before"
1098 " attempting to use the VF device.\n");
1099 }
1100 return ixgbe_set_vf_mac(adapter, vf, mac);
1101}
1102
Don Skidmore2b509c02014-11-01 01:06:57 +00001103static int ixgbe_enable_port_vlan(struct ixgbe_adapter *adapter, int vf,
1104 u16 vlan, u8 qos)
1105{
1106 struct ixgbe_hw *hw = &adapter->hw;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001107 int err;
Don Skidmore2b509c02014-11-01 01:06:57 +00001108
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001109 err = ixgbe_set_vf_vlan(adapter, true, vlan, vf);
Don Skidmore2b509c02014-11-01 01:06:57 +00001110 if (err)
1111 goto out;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001112
Don Skidmore2b509c02014-11-01 01:06:57 +00001113 ixgbe_set_vmvir(adapter, vlan, qos, vf);
1114 ixgbe_set_vmolr(hw, vf, false);
1115 if (adapter->vfinfo[vf].spoofchk_enabled)
1116 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
1117 adapter->vfinfo[vf].vlan_count++;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001118
1119 /* enable hide vlan on X550 */
1120 if (hw->mac.type >= ixgbe_mac_X550)
1121 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE |
1122 IXGBE_QDE_HIDE_VLAN);
1123
Don Skidmore2b509c02014-11-01 01:06:57 +00001124 adapter->vfinfo[vf].pf_vlan = vlan;
1125 adapter->vfinfo[vf].pf_qos = qos;
1126 dev_info(&adapter->pdev->dev,
1127 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf);
1128 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1129 dev_warn(&adapter->pdev->dev,
1130 "The VF VLAN has been set, but the PF device is not up.\n");
1131 dev_warn(&adapter->pdev->dev,
1132 "Bring the PF device up before attempting to use the VF device.\n");
1133 }
1134
1135out:
1136 return err;
1137}
1138
1139static int ixgbe_disable_port_vlan(struct ixgbe_adapter *adapter, int vf)
1140{
1141 struct ixgbe_hw *hw = &adapter->hw;
1142 int err;
1143
1144 err = ixgbe_set_vf_vlan(adapter, false,
1145 adapter->vfinfo[vf].pf_vlan, vf);
1146 ixgbe_clear_vmvir(adapter, vf);
1147 ixgbe_set_vmolr(hw, vf, true);
1148 hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf);
1149 if (adapter->vfinfo[vf].vlan_count)
1150 adapter->vfinfo[vf].vlan_count--;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001151
1152 /* disable hide VLAN on X550 */
1153 if (hw->mac.type >= ixgbe_mac_X550)
1154 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
1155
Don Skidmore2b509c02014-11-01 01:06:57 +00001156 adapter->vfinfo[vf].pf_vlan = 0;
1157 adapter->vfinfo[vf].pf_qos = 0;
1158
1159 return err;
1160}
1161
Greg Rose7f016482010-05-04 22:12:06 +00001162int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos)
1163{
1164 int err = 0;
1165 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1166
1167 if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7))
1168 return -EINVAL;
1169 if (vlan || qos) {
Don Skidmore2b509c02014-11-01 01:06:57 +00001170 /* Check if there is already a port VLAN set, if so
1171 * we have to delete the old one first before we
1172 * can set the new one. The usage model had
1173 * previously assumed the user would delete the
1174 * old port VLAN before setting a new one but this
1175 * is not necessarily the case.
1176 */
Greg Rose026ac672013-04-17 20:41:35 +00001177 if (adapter->vfinfo[vf].pf_vlan)
Don Skidmore2b509c02014-11-01 01:06:57 +00001178 err = ixgbe_disable_port_vlan(adapter, vf);
Greg Rose026ac672013-04-17 20:41:35 +00001179 if (err)
1180 goto out;
Don Skidmore2b509c02014-11-01 01:06:57 +00001181 err = ixgbe_enable_port_vlan(adapter, vf, vlan, qos);
Greg Rose7f016482010-05-04 22:12:06 +00001182 } else {
Don Skidmore2b509c02014-11-01 01:06:57 +00001183 err = ixgbe_disable_port_vlan(adapter, vf);
Jacob Kellere7cf7452014-04-09 06:03:10 +00001184 }
Don Skidmore2b509c02014-11-01 01:06:57 +00001185
Greg Rose7f016482010-05-04 22:12:06 +00001186out:
Jacob Kellere7cf7452014-04-09 06:03:10 +00001187 return err;
Greg Rose7f016482010-05-04 22:12:06 +00001188}
1189
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001190static int ixgbe_link_mbps(struct ixgbe_adapter *adapter)
Lior Levyff4ab202011-03-11 02:03:07 +00001191{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001192 switch (adapter->link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001193 case IXGBE_LINK_SPEED_100_FULL:
1194 return 100;
1195 case IXGBE_LINK_SPEED_1GB_FULL:
1196 return 1000;
1197 case IXGBE_LINK_SPEED_10GB_FULL:
1198 return 10000;
1199 default:
1200 return 0;
1201 }
1202}
1203
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001204static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf)
Lior Levyff4ab202011-03-11 02:03:07 +00001205{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001206 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1207 struct ixgbe_hw *hw = &adapter->hw;
1208 u32 bcnrc_val = 0;
1209 u16 queue, queues_per_pool;
1210 u16 tx_rate = adapter->vfinfo[vf].tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001211
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001212 if (tx_rate) {
1213 /* start with base link speed value */
1214 bcnrc_val = adapter->vf_rate_link_speed;
1215
Lior Levyff4ab202011-03-11 02:03:07 +00001216 /* Calculate the rate factor values to set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001217 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1218 bcnrc_val /= tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001219
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001220 /* clear everything but the rate factor */
1221 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1222 IXGBE_RTTBCNRC_RF_DEC_MASK;
1223
1224 /* enable the rate scheduler */
1225 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
Lior Levyff4ab202011-03-11 02:03:07 +00001226 }
1227
Lior Levy7555e832011-06-25 00:09:08 -07001228 /*
1229 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
1230 * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported
1231 * and 0x004 otherwise.
1232 */
1233 switch (hw->mac.type) {
1234 case ixgbe_mac_82599EB:
1235 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4);
1236 break;
1237 case ixgbe_mac_X540:
1238 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14);
1239 break;
1240 default:
1241 break;
1242 }
1243
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001244 /* determine how many queues per pool based on VMDq mask */
1245 queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
1246
1247 /* write value for all Tx queues belonging to VF */
1248 for (queue = 0; queue < queues_per_pool; queue++) {
1249 unsigned int reg_idx = (vf * queues_per_pool) + queue;
1250
1251 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx);
1252 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1253 }
Lior Levyff4ab202011-03-11 02:03:07 +00001254}
1255
1256void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter)
1257{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001258 int i;
Lior Levyff4ab202011-03-11 02:03:07 +00001259
1260 /* VF Tx rate limit was not set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001261 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001262 return;
1263
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001264 if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001265 adapter->vf_rate_link_speed = 0;
1266 dev_info(&adapter->pdev->dev,
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001267 "Link speed has been changed. VF Transmit rate is disabled\n");
Lior Levyff4ab202011-03-11 02:03:07 +00001268 }
1269
1270 for (i = 0; i < adapter->num_vfs; i++) {
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001271 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001272 adapter->vfinfo[i].tx_rate = 0;
1273
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001274 ixgbe_set_vf_rate_limit(adapter, i);
Lior Levyff4ab202011-03-11 02:03:07 +00001275 }
1276}
1277
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001278int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int min_tx_rate,
1279 int max_tx_rate)
Greg Rose7f016482010-05-04 22:12:06 +00001280{
Lior Levyff4ab202011-03-11 02:03:07 +00001281 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001282 int link_speed;
Lior Levyff4ab202011-03-11 02:03:07 +00001283
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001284 /* verify VF is active */
1285 if (vf >= adapter->num_vfs)
Lior Levyff4ab202011-03-11 02:03:07 +00001286 return -EINVAL;
1287
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001288 /* verify link is up */
1289 if (!adapter->link_up)
1290 return -EINVAL;
1291
1292 /* verify we are linked at 10Gbps */
1293 link_speed = ixgbe_link_mbps(adapter);
1294 if (link_speed != 10000)
1295 return -EINVAL;
1296
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001297 if (min_tx_rate)
1298 return -EINVAL;
1299
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001300 /* rate limit cannot be less than 10Mbs or greater than link speed */
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001301 if (max_tx_rate && ((max_tx_rate <= 10) || (max_tx_rate > link_speed)))
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001302 return -EINVAL;
1303
1304 /* store values */
1305 adapter->vf_rate_link_speed = link_speed;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001306 adapter->vfinfo[vf].tx_rate = max_tx_rate;
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001307
1308 /* update hardware configuration */
1309 ixgbe_set_vf_rate_limit(adapter, vf);
Lior Levyff4ab202011-03-11 02:03:07 +00001310
1311 return 0;
Greg Rose7f016482010-05-04 22:12:06 +00001312}
1313
Greg Rosede4c7f62011-09-29 05:57:33 +00001314int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting)
1315{
1316 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1317 int vf_target_reg = vf >> 3;
1318 int vf_target_shift = vf % 8;
1319 struct ixgbe_hw *hw = &adapter->hw;
1320 u32 regval;
1321
Emil Tantilov600a5072014-10-16 15:49:02 +00001322 if (vf >= adapter->num_vfs)
1323 return -EINVAL;
1324
Greg Rosede4c7f62011-09-29 05:57:33 +00001325 adapter->vfinfo[vf].spoofchk_enabled = setting;
1326
1327 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1328 regval &= ~(1 << vf_target_shift);
1329 regval |= (setting << vf_target_shift);
1330 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1331
1332 if (adapter->vfinfo[vf].vlan_count) {
1333 vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT;
1334 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1335 regval &= ~(1 << vf_target_shift);
1336 regval |= (setting << vf_target_shift);
1337 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1338 }
1339
1340 return 0;
1341}
1342
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03001343int ixgbe_ndo_set_vf_rss_query_en(struct net_device *netdev, int vf,
1344 bool setting)
1345{
1346 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1347
1348 /* This operation is currently supported only for 82599 and x540
1349 * devices.
1350 */
1351 if (adapter->hw.mac.type < ixgbe_mac_82599EB ||
1352 adapter->hw.mac.type >= ixgbe_mac_X550)
1353 return -EOPNOTSUPP;
1354
1355 if (vf >= adapter->num_vfs)
1356 return -EINVAL;
1357
1358 adapter->vfinfo[vf].rss_query_enabled = setting;
1359
1360 return 0;
1361}
1362
Greg Rose7f016482010-05-04 22:12:06 +00001363int ixgbe_ndo_get_vf_config(struct net_device *netdev,
1364 int vf, struct ifla_vf_info *ivi)
1365{
1366 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1367 if (vf >= adapter->num_vfs)
1368 return -EINVAL;
1369 ivi->vf = vf;
1370 memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN);
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001371 ivi->max_tx_rate = adapter->vfinfo[vf].tx_rate;
1372 ivi->min_tx_rate = 0;
Greg Rose7f016482010-05-04 22:12:06 +00001373 ivi->vlan = adapter->vfinfo[vf].pf_vlan;
1374 ivi->qos = adapter->vfinfo[vf].pf_qos;
Greg Rosede4c7f62011-09-29 05:57:33 +00001375 ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled;
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03001376 ivi->rss_query_en = adapter->vfinfo[vf].rss_query_enabled;
Greg Rose7f016482010-05-04 22:12:06 +00001377 return 0;
1378}