blob: 31de6cf7adb010c3e98ba72a5e8589756a86f90e [file] [log] [blame]
Greg Rose17367272010-01-09 02:25:48 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad988d1302015-10-30 15:29:34 -07004 Copyright(c) 1999 - 2015 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;
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +0000119
120 /* Untrust all VFs */
121 adapter->vfinfo[i].trusted = false;
Hiroshi Shimamoto8443c1a42015-08-28 06:59:03 +0000122
123 /* set the default xcast mode */
124 adapter->vfinfo[i].xcast_mode = IXGBEVF_XCAST_MODE_NONE;
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +0300125 }
126
Greg Rose66dcfd72012-12-11 08:26:38 +0000127 return 0;
Greg Rosec6bda302011-08-24 02:37:55 +0000128 }
129
Greg Rose66dcfd72012-12-11 08:26:38 +0000130 return -ENOMEM;
131}
132
Mark Rustad988d1302015-10-30 15:29:34 -0700133/**
134 * ixgbe_get_vfs - Find and take references to all vf devices
135 * @adapter: Pointer to adapter struct
136 */
137static void ixgbe_get_vfs(struct ixgbe_adapter *adapter)
138{
139 struct pci_dev *pdev = adapter->pdev;
140 u16 vendor = pdev->vendor;
141 struct pci_dev *vfdev;
142 int vf = 0;
143 u16 vf_id;
144 int pos;
145
146 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
147 if (!pos)
148 return;
149 pci_read_config_word(pdev, pos + PCI_SRIOV_VF_DID, &vf_id);
150
151 vfdev = pci_get_device(vendor, vf_id, NULL);
152 for (; vfdev; vfdev = pci_get_device(vendor, vf_id, vfdev)) {
153 if (!vfdev->is_virtfn)
154 continue;
155 if (vfdev->physfn != pdev)
156 continue;
157 if (vf >= adapter->num_vfs)
158 continue;
159 pci_dev_get(vfdev);
160 adapter->vfinfo[vf].vfdev = vfdev;
161 ++vf;
162 }
163}
164
Greg Rose66dcfd72012-12-11 08:26:38 +0000165/* Note this function is called when the user wants to enable SR-IOV
166 * VFs using the now deprecated module parameter
167 */
168void ixgbe_enable_sriov(struct ixgbe_adapter *adapter)
169{
170 int pre_existing_vfs = 0;
171
172 pre_existing_vfs = pci_num_vf(adapter->pdev);
173 if (!pre_existing_vfs && !adapter->num_vfs)
174 return;
175
Greg Rose66dcfd72012-12-11 08:26:38 +0000176 /* If there are pre-existing VFs then we have to force
177 * use of that many - over ride any module parameter value.
178 * This may result from the user unloading the PF driver
179 * while VFs were assigned to guest VMs or because the VFs
180 * have been created via the new PCI SR-IOV sysfs interface.
181 */
182 if (pre_existing_vfs) {
183 adapter->num_vfs = pre_existing_vfs;
184 dev_warn(&adapter->pdev->dev,
185 "Virtual Functions already enabled for this device - Please reload all VF drivers to avoid spoofed packet errors\n");
186 } else {
187 int err;
188 /*
189 * The 82599 supports up to 64 VFs per physical function
190 * but this implementation limits allocation to 63 so that
191 * basic networking resources are still available to the
Joe Perchesdbedd442015-03-06 20:49:12 -0800192 * physical function. If the user requests greater than
Greg Rose66dcfd72012-12-11 08:26:38 +0000193 * 63 VFs then it is an error - reset to default of zero.
194 */
ethan.zhaodcc23e32014-01-16 19:41:04 -0800195 adapter->num_vfs = min_t(unsigned int, adapter->num_vfs, IXGBE_MAX_VFS_DRV_LIMIT);
Greg Rose66dcfd72012-12-11 08:26:38 +0000196
197 err = pci_enable_sriov(adapter->pdev, adapter->num_vfs);
198 if (err) {
199 e_err(probe, "Failed to enable PCI sriov: %d\n", err);
200 adapter->num_vfs = 0;
201 return;
202 }
203 }
204
Mark Rustad988d1302015-10-30 15:29:34 -0700205 if (!__ixgbe_enable_sriov(adapter)) {
206 ixgbe_get_vfs(adapter);
Greg Rose66dcfd72012-12-11 08:26:38 +0000207 return;
Mark Rustad988d1302015-10-30 15:29:34 -0700208 }
Greg Rose66dcfd72012-12-11 08:26:38 +0000209
210 /* If we have gotten to this point then there is no memory available
211 * to manage the VF devices - print message and bail.
212 */
Greg Rosec6bda302011-08-24 02:37:55 +0000213 e_err(probe, "Unable to allocate memory for VF Data Storage - "
214 "SRIOV disabled\n");
Alexander Duyck99d74482012-05-09 08:09:25 +0000215 ixgbe_disable_sriov(adapter);
Greg Rosec6bda302011-08-24 02:37:55 +0000216}
Greg Rosec6bda302011-08-24 02:37:55 +0000217
Alexander Duyck92971272012-05-23 02:58:40 +0000218#endif /* #ifdef CONFIG_PCI_IOV */
Greg Roseda36b642012-12-11 08:26:43 +0000219int ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
Greg Rosec6bda302011-08-24 02:37:55 +0000220{
Mark Rustad988d1302015-10-30 15:29:34 -0700221 unsigned int num_vfs = adapter->num_vfs, vf;
Greg Rosec6bda302011-08-24 02:37:55 +0000222 struct ixgbe_hw *hw = &adapter->hw;
Greg Rosec6bda302011-08-24 02:37:55 +0000223 u32 gpie;
224 u32 vmdctl;
Greg Roseda36b642012-12-11 08:26:43 +0000225 int rss;
Greg Rosec6bda302011-08-24 02:37:55 +0000226
Alexander Duyckd773d132012-05-05 05:32:26 +0000227 /* set num VFs to 0 to prevent access to vfinfo */
228 adapter->num_vfs = 0;
229
Mark Rustad988d1302015-10-30 15:29:34 -0700230 /* put the reference to all of the vf devices */
231 for (vf = 0; vf < num_vfs; ++vf) {
232 struct pci_dev *vfdev = adapter->vfinfo[vf].vfdev;
233
234 if (!vfdev)
235 continue;
236 adapter->vfinfo[vf].vfdev = NULL;
237 pci_dev_put(vfdev);
238 }
239
Alexander Duyckd773d132012-05-05 05:32:26 +0000240 /* free VF control structures */
241 kfree(adapter->vfinfo);
242 adapter->vfinfo = NULL;
243
244 /* free macvlan list */
245 kfree(adapter->mv_list);
246 adapter->mv_list = NULL;
247
Alexander Duyck99d74482012-05-09 08:09:25 +0000248 /* if SR-IOV is already disabled then there is nothing to do */
249 if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
Greg Roseda36b642012-12-11 08:26:43 +0000250 return 0;
Alexander Duyck99d74482012-05-09 08:09:25 +0000251
Greg Rosec6bda302011-08-24 02:37:55 +0000252#ifdef CONFIG_PCI_IOV
Alexander Duyck92971272012-05-23 02:58:40 +0000253 /*
254 * If our VFs are assigned we cannot shut down SR-IOV
255 * without causing issues, so just leave the hardware
256 * available but disabled
257 */
Alexander Duycke507d0c2013-03-26 00:03:21 +0000258 if (pci_vfs_assigned(adapter->pdev)) {
Alexander Duyck92971272012-05-23 02:58:40 +0000259 e_dev_warn("Unloading driver while VFs are assigned - VFs will not be deallocated\n");
Greg Roseda36b642012-12-11 08:26:43 +0000260 return -EPERM;
David S. Millerd47e12d2012-07-22 12:36:41 -0700261 }
Greg Rosec6bda302011-08-24 02:37:55 +0000262 /* disable iov and allow time for transactions to clear */
263 pci_disable_sriov(adapter->pdev);
264#endif
265
266 /* turn off device IOV mode */
Alexander Duyck73079ea2012-07-14 06:48:49 +0000267 IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0);
Greg Rosec6bda302011-08-24 02:37:55 +0000268 gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
269 gpie &= ~IXGBE_GPIE_VTMODE_MASK;
270 IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
271
272 /* set default pool back to 0 */
273 vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
274 vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
275 IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
276 IXGBE_WRITE_FLUSH(hw);
277
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000278 /* Disable VMDq flag so device will be set in VM mode */
John Fastabend2a47fa42013-11-06 09:54:52 -0800279 if (adapter->ring_feature[RING_F_VMDQ].limit == 1) {
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000280 adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED;
John Fastabend2a47fa42013-11-06 09:54:52 -0800281 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
Don Skidmore0f9b2322014-11-18 09:35:08 +0000282 rss = min_t(int, ixgbe_max_rss_indices(adapter),
283 num_online_cpus());
John Fastabend2a47fa42013-11-06 09:54:52 -0800284 } else {
285 rss = min_t(int, IXGBE_MAX_L2A_QUEUES, num_online_cpus());
286 }
Alexander Duyck1d9c0bf2012-05-05 05:32:21 +0000287
John Fastabend2a47fa42013-11-06 09:54:52 -0800288 adapter->ring_feature[RING_F_VMDQ].offset = 0;
Greg Roseda36b642012-12-11 08:26:43 +0000289 adapter->ring_feature[RING_F_RSS].limit = rss;
290
Greg Rosec6bda302011-08-24 02:37:55 +0000291 /* take a breather then clean up driver data */
292 msleep(100);
Greg Roseda36b642012-12-11 08:26:43 +0000293 return 0;
294}
295
296static int ixgbe_pci_sriov_enable(struct pci_dev *dev, int num_vfs)
297{
298#ifdef CONFIG_PCI_IOV
299 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
300 int err = 0;
301 int i;
302 int pre_existing_vfs = pci_num_vf(dev);
303
304 if (pre_existing_vfs && pre_existing_vfs != num_vfs)
305 err = ixgbe_disable_sriov(adapter);
306 else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
Mark Rustade90dd262014-07-22 06:51:08 +0000307 return num_vfs;
Greg Roseda36b642012-12-11 08:26:43 +0000308
309 if (err)
Mark Rustade90dd262014-07-22 06:51:08 +0000310 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000311
Jacob Kelleraac2f1b2014-08-21 06:17:59 +0000312 /* While the SR-IOV capability structure reports total VFs to be 64,
313 * we have to limit the actual number allocated based on two factors.
314 * First, we reserve some transmit/receive resources for the PF.
315 * Second, VMDQ also uses the same pools that SR-IOV does. We need to
316 * account for this, so that we don't accidentally allocate more VFs
317 * than we have available pools. The PCI bus driver already checks for
318 * other values out of range.
Greg Roseda36b642012-12-11 08:26:43 +0000319 */
Jacob Kelleraac2f1b2014-08-21 06:17:59 +0000320 if ((num_vfs + adapter->num_rx_pools) > IXGBE_MAX_VF_FUNCTIONS)
Mark Rustade90dd262014-07-22 06:51:08 +0000321 return -EPERM;
Greg Roseda36b642012-12-11 08:26:43 +0000322
323 adapter->num_vfs = num_vfs;
324
325 err = __ixgbe_enable_sriov(adapter);
326 if (err)
Mark Rustade90dd262014-07-22 06:51:08 +0000327 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000328
329 for (i = 0; i < adapter->num_vfs; i++)
330 ixgbe_vf_configuration(dev, (i | 0x10000000));
331
332 err = pci_enable_sriov(dev, num_vfs);
333 if (err) {
334 e_dev_warn("Failed to enable PCI sriov: %d\n", err);
Mark Rustade90dd262014-07-22 06:51:08 +0000335 return err;
Greg Roseda36b642012-12-11 08:26:43 +0000336 }
Mark Rustad988d1302015-10-30 15:29:34 -0700337 ixgbe_get_vfs(adapter);
Greg Roseda36b642012-12-11 08:26:43 +0000338 ixgbe_sriov_reinit(adapter);
339
Greg Roseda36b642012-12-11 08:26:43 +0000340 return num_vfs;
Mark Rustade90dd262014-07-22 06:51:08 +0000341#else
Greg Roseda36b642012-12-11 08:26:43 +0000342 return 0;
Mark Rustade90dd262014-07-22 06:51:08 +0000343#endif
Greg Roseda36b642012-12-11 08:26:43 +0000344}
345
346static int ixgbe_pci_sriov_disable(struct pci_dev *dev)
347{
348 struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
349 int err;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000350#ifdef CONFIG_PCI_IOV
Greg Roseda36b642012-12-11 08:26:43 +0000351 u32 current_flags = adapter->flags;
Don Skidmore8f48f5b2013-11-22 04:27:23 +0000352#endif
Greg Roseda36b642012-12-11 08:26:43 +0000353
354 err = ixgbe_disable_sriov(adapter);
355
356 /* Only reinit if no error and state changed */
Greg Roseda36b642012-12-11 08:26:43 +0000357#ifdef CONFIG_PCI_IOV
John Fastabend2a47fa42013-11-06 09:54:52 -0800358 if (!err && current_flags != adapter->flags)
Greg Roseda36b642012-12-11 08:26:43 +0000359 ixgbe_sriov_reinit(adapter);
360#endif
Greg Roseda36b642012-12-11 08:26:43 +0000361
362 return err;
363}
364
365int ixgbe_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
366{
367 if (num_vfs == 0)
368 return ixgbe_pci_sriov_disable(dev);
369 else
370 return ixgbe_pci_sriov_enable(dev, num_vfs);
Greg Rosec6bda302011-08-24 02:37:55 +0000371}
372
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000373static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
Alexander Duyck58a02be2012-07-20 08:09:17 +0000374 u32 *msgbuf, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000375{
Alexander Duyck58a02be2012-07-20 08:09:17 +0000376 int entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
377 >> IXGBE_VT_MSGINFO_SHIFT;
378 u16 *hash_list = (u16 *)&msgbuf[1];
Greg Rose17367272010-01-09 02:25:48 +0000379 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Greg Rose8a07a222010-05-05 19:57:30 +0000380 struct ixgbe_hw *hw = &adapter->hw;
Greg Rose17367272010-01-09 02:25:48 +0000381 int i;
Greg Rose8a07a222010-05-05 19:57:30 +0000382 u32 vector_bit;
383 u32 vector_reg;
384 u32 mta_reg;
Jacob Kellerb335e752014-03-25 07:45:27 +0000385 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Greg Rose17367272010-01-09 02:25:48 +0000386
387 /* only so many hash values supported */
388 entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES);
389
390 /*
391 * salt away the number of multi cast addresses assigned
392 * to this VF for later use to restore when the PF multi cast
393 * list changes
394 */
395 vfinfo->num_vf_mc_hashes = entries;
396
397 /*
398 * VFs are limited to using the MTA hash table for their multicast
399 * addresses
400 */
401 for (i = 0; i < entries; i++) {
Joe Perchese81a1ba2010-11-14 17:04:33 +0000402 vfinfo->vf_mc_hashes[i] = hash_list[i];
Greg Rose17367272010-01-09 02:25:48 +0000403 }
404
Greg Rose8a07a222010-05-05 19:57:30 +0000405 for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
406 vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F;
407 vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F;
408 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
409 mta_reg |= (1 << vector_bit);
410 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
411 }
Jacob Kellerb335e752014-03-25 07:45:27 +0000412 vmolr |= IXGBE_VMOLR_ROMPE;
413 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
Greg Rose17367272010-01-09 02:25:48 +0000414
415 return 0;
416}
417
Jacob Kellerb335e752014-03-25 07:45:27 +0000418#ifdef CONFIG_PCI_IOV
Greg Rose17367272010-01-09 02:25:48 +0000419void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter)
420{
421 struct ixgbe_hw *hw = &adapter->hw;
422 struct vf_data_storage *vfinfo;
423 int i, j;
424 u32 vector_bit;
425 u32 vector_reg;
426 u32 mta_reg;
427
428 for (i = 0; i < adapter->num_vfs; i++) {
Jacob Kellerb335e752014-03-25 07:45:27 +0000429 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(i));
Greg Rose17367272010-01-09 02:25:48 +0000430 vfinfo = &adapter->vfinfo[i];
431 for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) {
432 hw->addr_ctrl.mta_in_use++;
433 vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F;
434 vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F;
435 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
436 mta_reg |= (1 << vector_bit);
437 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
438 }
Jacob Kellerb335e752014-03-25 07:45:27 +0000439
440 if (vfinfo->num_vf_mc_hashes)
441 vmolr |= IXGBE_VMOLR_ROMPE;
442 else
443 vmolr &= ~IXGBE_VMOLR_ROMPE;
444 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(i), vmolr);
Greg Rose17367272010-01-09 02:25:48 +0000445 }
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000446
447 /* Restore any VF macvlans */
Jacob Keller5d7daa32014-03-29 06:51:25 +0000448 ixgbe_full_sync_mac_table(adapter);
Greg Rose17367272010-01-09 02:25:48 +0000449}
Jacob Kellerb335e752014-03-25 07:45:27 +0000450#endif
Greg Rose17367272010-01-09 02:25:48 +0000451
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000452static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid,
453 u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000454{
Alexander Duyckb35d4d42012-05-23 05:39:25 +0000455 /* VLAN 0 is a special case, don't allow it to be removed */
456 if (!vid && !add)
457 return 0;
458
Greg Rose17367272010-01-09 02:25:48 +0000459 return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add);
460}
461
Alexander Duyck872844d2012-08-15 02:10:43 +0000462static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
Greg Rosee9f98072011-01-26 01:06:07 +0000463{
464 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck872844d2012-08-15 02:10:43 +0000465 int max_frame = msgbuf[1];
Greg Rosee9f98072011-01-26 01:06:07 +0000466 u32 max_frs;
Greg Rosee9f98072011-01-26 01:06:07 +0000467
Alexander Duyck872844d2012-08-15 02:10:43 +0000468 /*
469 * For 82599EB we have to keep all PFs and VFs operating with
470 * the same max_frame value in order to avoid sending an oversize
471 * frame to a VF. In order to guarantee this is handled correctly
472 * for all cases we have several special exceptions to take into
473 * account before we can enable the VF for receive
474 */
475 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
476 struct net_device *dev = adapter->netdev;
477 int pf_max_frame = dev->mtu + ETH_HLEN;
478 u32 reg_offset, vf_shift, vfre;
479 s32 err = 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000480
Alexander Duyck872844d2012-08-15 02:10:43 +0000481#ifdef CONFIG_FCOE
482 if (dev->features & NETIF_F_FCOE_MTU)
483 pf_max_frame = max_t(int, pf_max_frame,
484 IXGBE_FCOE_JUMBO_FRAME_SIZE);
485
486#endif /* CONFIG_FCOE */
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000487 switch (adapter->vfinfo[vf].vf_api) {
488 case ixgbe_mbox_api_11:
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +0300489 case ixgbe_mbox_api_12:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000490 /*
491 * Version 1.1 supports jumbo frames on VFs if PF has
492 * jumbo frames enabled which means legacy VFs are
493 * disabled
494 */
495 if (pf_max_frame > ETH_FRAME_LEN)
496 break;
497 default:
498 /*
499 * If the PF or VF are running w/ jumbo frames enabled
500 * we need to shut down the VF Rx path as we cannot
501 * support jumbo frames on legacy VFs
502 */
503 if ((pf_max_frame > ETH_FRAME_LEN) ||
504 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
505 err = -EINVAL;
506 break;
507 }
Alexander Duyck872844d2012-08-15 02:10:43 +0000508
509 /* determine VF receive enable location */
510 vf_shift = vf % 32;
511 reg_offset = vf / 32;
512
513 /* enable or disable receive depending on error */
514 vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
515 if (err)
516 vfre &= ~(1 << vf_shift);
517 else
518 vfre |= 1 << vf_shift;
519 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre);
520
521 if (err) {
522 e_err(drv, "VF max_frame %d out of range\n", max_frame);
523 return err;
524 }
Greg Rosee9f98072011-01-26 01:06:07 +0000525 }
526
Alexander Duyck872844d2012-08-15 02:10:43 +0000527 /* MTU < 68 is an error and causes problems on some kernels */
528 if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) {
529 e_err(drv, "VF max_frame %d out of range\n", max_frame);
530 return -EINVAL;
531 }
532
533 /* pull current max frame size from hardware */
534 max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
535 max_frs &= IXGBE_MHADD_MFS_MASK;
536 max_frs >>= IXGBE_MHADD_MFS_SHIFT;
537
538 if (max_frs < max_frame) {
539 max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT;
Greg Rosee9f98072011-01-26 01:06:07 +0000540 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
541 }
542
Alexander Duyck872844d2012-08-15 02:10:43 +0000543 e_info(hw, "VF requests change max MTU to %d\n", max_frame);
544
545 return 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000546}
547
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000548static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
Greg Rose17367272010-01-09 02:25:48 +0000549{
550 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Jacob Kellerb335e752014-03-25 07:45:27 +0000551 vmolr |= IXGBE_VMOLR_BAM;
Greg Rosef0412772010-05-04 22:11:46 +0000552 if (aupe)
553 vmolr |= IXGBE_VMOLR_AUPE;
554 else
555 vmolr &= ~IXGBE_VMOLR_AUPE;
Greg Rose17367272010-01-09 02:25:48 +0000556 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
557}
558
Alexander Duyck107d3012012-10-02 00:17:03 +0000559static void ixgbe_clear_vmvir(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose7f016482010-05-04 22:12:06 +0000560{
561 struct ixgbe_hw *hw = &adapter->hw;
562
Alexander Duyck107d3012012-10-02 00:17:03 +0000563 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
Greg Rose7f016482010-05-04 22:12:06 +0000564}
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000565static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000566{
567 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck107d3012012-10-02 00:17:03 +0000568 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Alexander Duyck107d3012012-10-02 00:17:03 +0000569 u8 num_tcs = netdev_get_num_tc(adapter->netdev);
570
571 /* add PF assigned VLAN or VLAN 0 */
572 ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf);
Greg Rose17367272010-01-09 02:25:48 +0000573
574 /* reset offloads to defaults */
Alexander Duyck107d3012012-10-02 00:17:03 +0000575 ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan);
576
577 /* set outgoing tags for VFs */
578 if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) {
579 ixgbe_clear_vmvir(adapter, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000580 } else {
Alexander Duyck107d3012012-10-02 00:17:03 +0000581 if (vfinfo->pf_qos || !num_tcs)
582 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
583 vfinfo->pf_qos, vf);
584 else
585 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
586 adapter->default_up, vf);
587
588 if (vfinfo->spoofchk_enabled)
589 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000590 }
Greg Rose17367272010-01-09 02:25:48 +0000591
592 /* reset multicast table array for vf */
593 adapter->vfinfo[vf].num_vf_mc_hashes = 0;
594
595 /* Flush and reset the mta with the new values */
596 ixgbe_set_rx_mode(adapter->netdev);
597
Jacob Keller5d7daa32014-03-29 06:51:25 +0000598 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Alexander Duyck374c65d2012-07-20 08:09:22 +0000599
600 /* reset VF api back to unknown */
601 adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10;
Greg Rose17367272010-01-09 02:25:48 +0000602}
603
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000604static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
605 int vf, unsigned char *mac_addr)
Greg Rose17367272010-01-09 02:25:48 +0000606{
Jacob Keller5d7daa32014-03-29 06:51:25 +0000607 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Joe Perchesd458cdf2013-10-01 19:04:40 -0700608 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, ETH_ALEN);
Jacob Keller5d7daa32014-03-29 06:51:25 +0000609 ixgbe_add_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Greg Rose17367272010-01-09 02:25:48 +0000610
611 return 0;
612}
613
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000614static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter,
615 int vf, int index, unsigned char *mac_addr)
616{
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000617 struct list_head *pos;
618 struct vf_macvlans *entry;
619
620 if (index <= 1) {
621 list_for_each(pos, &adapter->vf_mvs.l) {
622 entry = list_entry(pos, struct vf_macvlans, l);
623 if (entry->vf == vf) {
624 entry->vf = -1;
625 entry->free = true;
626 entry->is_macvlan = false;
Jacob Keller5d7daa32014-03-29 06:51:25 +0000627 ixgbe_del_mac_filter(adapter,
628 entry->vf_macvlan, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000629 }
630 }
631 }
632
633 /*
634 * If index was zero then we were asked to clear the uc list
635 * for the VF. We're done.
636 */
637 if (!index)
638 return 0;
639
640 entry = NULL;
641
642 list_for_each(pos, &adapter->vf_mvs.l) {
643 entry = list_entry(pos, struct vf_macvlans, l);
644 if (entry->free)
645 break;
646 }
647
648 /*
649 * If we traversed the entire list and didn't find a free entry
650 * then we're out of space on the RAR table. Also entry may
651 * be NULL because the original memory allocation for the list
652 * failed, which is not fatal but does mean we can't support
653 * VF requests for MACVLAN because we couldn't allocate
654 * memory for the list management required.
655 */
656 if (!entry || !entry->free)
657 return -ENOSPC;
658
659 entry->free = false;
660 entry->is_macvlan = true;
661 entry->vf = vf;
662 memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN);
663
Jacob Keller5d7daa32014-03-29 06:51:25 +0000664 ixgbe_add_mac_filter(adapter, mac_addr, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000665
666 return 0;
667}
668
Greg Rose17367272010-01-09 02:25:48 +0000669int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
670{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800671 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Greg Rose17367272010-01-09 02:25:48 +0000672 unsigned int vfn = (event_mask & 0x3f);
673
674 bool enable = ((event_mask & 0x10000000U) != 0);
675
Joe Perchesd458cdf2013-10-01 19:04:40 -0700676 if (enable)
677 eth_zero_addr(adapter->vfinfo[vfn].vf_mac_addresses);
Greg Rose17367272010-01-09 02:25:48 +0000678
679 return 0;
680}
681
Don Skidmore8d697e72014-11-05 04:52:09 +0000682static inline void ixgbe_write_qde(struct ixgbe_adapter *adapter, u32 vf,
683 u32 qde)
684{
685 struct ixgbe_hw *hw = &adapter->hw;
686 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
687 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
688 int i;
689
690 for (i = vf * q_per_pool; i < ((vf + 1) * q_per_pool); i++) {
691 u32 reg;
692
693 /* flush previous write */
694 IXGBE_WRITE_FLUSH(hw);
695
696 /* indicate to hardware that we want to set drop enable */
697 reg = IXGBE_QDE_WRITE | IXGBE_QDE_ENABLE;
698 reg |= i << IXGBE_QDE_IDX_SHIFT;
699 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
700 }
701}
702
Alexander Duyck58a02be2012-07-20 08:09:17 +0000703static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000704{
Alexander Duyck87397372014-01-15 17:38:40 -0800705 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
Greg Rose17367272010-01-09 02:25:48 +0000706 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000707 unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
Emil Tantilovb08e1ed2013-07-26 07:34:54 +0000708 u32 reg, reg_offset, vf_shift;
709 u32 msgbuf[4] = {0, 0, 0, 0};
Alexander Duyck58a02be2012-07-20 08:09:17 +0000710 u8 *addr = (u8 *)(&msgbuf[1]);
Alexander Duyck87397372014-01-15 17:38:40 -0800711 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
712 int i;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000713
714 e_info(probe, "VF Reset msg received from vf %d\n", vf);
715
716 /* reset the filters for the device */
717 ixgbe_vf_reset_event(adapter, vf);
718
719 /* set vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000720 if (!is_zero_ether_addr(vf_mac))
721 ixgbe_set_vf_mac(adapter, vf, vf_mac);
Greg Rose17367272010-01-09 02:25:48 +0000722
723 vf_shift = vf % 32;
724 reg_offset = vf / 32;
725
Alexander Duyck58a02be2012-07-20 08:09:17 +0000726 /* enable transmit for vf */
Greg Rose17367272010-01-09 02:25:48 +0000727 reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000728 reg |= 1 << vf_shift;
Greg Rose17367272010-01-09 02:25:48 +0000729 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
730
Alexander Duyck87397372014-01-15 17:38:40 -0800731 /* force drop enable for all VF Rx queues */
Don Skidmore8d697e72014-11-05 04:52:09 +0000732 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
Alexander Duyck87397372014-01-15 17:38:40 -0800733
Alexander Duyck58a02be2012-07-20 08:09:17 +0000734 /* enable receive for vf */
Greg Rose17367272010-01-09 02:25:48 +0000735 reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000736 reg |= 1 << vf_shift;
737 /*
738 * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs.
739 * For more info take a look at ixgbe_set_vf_lpe
740 */
741 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
742 struct net_device *dev = adapter->netdev;
743 int pf_max_frame = dev->mtu + ETH_HLEN;
744
745#ifdef CONFIG_FCOE
746 if (dev->features & NETIF_F_FCOE_MTU)
747 pf_max_frame = max_t(int, pf_max_frame,
748 IXGBE_FCOE_JUMBO_FRAME_SIZE);
749
750#endif /* CONFIG_FCOE */
751 if (pf_max_frame > ETH_FRAME_LEN)
752 reg &= ~(1 << vf_shift);
753 }
Greg Rose17367272010-01-09 02:25:48 +0000754 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
755
Alexander Duyck58a02be2012-07-20 08:09:17 +0000756 /* enable VF mailbox for further messages */
757 adapter->vfinfo[vf].clear_to_send = true;
758
Greg Rosea985b6c32010-11-18 03:02:52 +0000759 /* Enable counting of spoofed packets in the SSVPC register */
760 reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
761 reg |= (1 << vf_shift);
762 IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
763
Alexander Duyckdbf231a2014-01-15 17:38:41 -0800764 /*
765 * Reset the VFs TDWBAL and TDWBAH registers
766 * which are not cleared by an FLR
767 */
768 for (i = 0; i < q_per_pool; i++) {
769 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBAHn(q_per_pool, vf, i), 0);
770 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBALn(q_per_pool, vf, i), 0);
771 }
772
Alexander Duyck58a02be2012-07-20 08:09:17 +0000773 /* reply to reset with ack and vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000774 msgbuf[0] = IXGBE_VF_RESET;
775 if (!is_zero_ether_addr(vf_mac)) {
776 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
777 memcpy(addr, vf_mac, ETH_ALEN);
778 } else {
779 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
780 dev_warn(&adapter->pdev->dev,
781 "VF %d has no MAC address assigned, you may have to assign one manually\n",
782 vf);
783 }
Alexander Duyck58a02be2012-07-20 08:09:17 +0000784
785 /*
786 * Piggyback the multicast filter type so VF can compute the
787 * correct vectors
788 */
789 msgbuf[3] = hw->mac.mc_filter_type;
790 ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
791
792 return 0;
793}
794
795static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter,
796 u32 *msgbuf, u32 vf)
797{
798 u8 *new_mac = ((u8 *)(&msgbuf[1]));
799
800 if (!is_valid_ether_addr(new_mac)) {
801 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
802 return -1;
803 }
804
805 if (adapter->vfinfo[vf].pf_set_mac &&
dingtianhong4012dda2013-12-30 15:40:50 +0800806 !ether_addr_equal(adapter->vfinfo[vf].vf_mac_addresses, new_mac)) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000807 e_warn(drv,
808 "VF %d attempted to override administratively set MAC address\n"
809 "Reload the VF driver to resume operations\n",
810 vf);
811 return -1;
812 }
813
Greg Rose3970c322012-09-25 02:25:30 +0000814 return ixgbe_set_vf_mac(adapter, vf, new_mac) < 0;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000815}
816
Greg Rose670224f2013-02-22 02:14:39 +0000817static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
818{
819 u32 vlvf;
820 s32 regindex;
821
822 /* short cut the special case */
823 if (vlan == 0)
824 return 0;
825
826 /* Search for the vlan id in the VLVF entries */
827 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
828 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
829 if ((vlvf & VLAN_VID_MASK) == vlan)
830 break;
831 }
832
833 /* Return a negative value if not found */
834 if (regindex >= IXGBE_VLVF_ENTRIES)
835 regindex = -1;
836
837 return regindex;
838}
839
Alexander Duyck58a02be2012-07-20 08:09:17 +0000840static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter,
841 u32 *msgbuf, u32 vf)
842{
843 struct ixgbe_hw *hw = &adapter->hw;
844 int add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT;
845 int vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
846 int err;
Greg Rose670224f2013-02-22 02:14:39 +0000847 s32 reg_ndx;
848 u32 vlvf;
849 u32 bits;
Alexander Duyck107d3012012-10-02 00:17:03 +0000850 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck58a02be2012-07-20 08:09:17 +0000851
Alexander Duyck107d3012012-10-02 00:17:03 +0000852 if (adapter->vfinfo[vf].pf_vlan || tcs) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000853 e_warn(drv,
854 "VF %d attempted to override administratively set VLAN configuration\n"
855 "Reload the VF driver to resume operations\n",
856 vf);
857 return -1;
858 }
859
860 if (add)
861 adapter->vfinfo[vf].vlan_count++;
862 else if (adapter->vfinfo[vf].vlan_count)
863 adapter->vfinfo[vf].vlan_count--;
864
Greg Rose670224f2013-02-22 02:14:39 +0000865 /* in case of promiscuous mode any VLAN filter set for a VF must
866 * also have the PF pool added to it.
867 */
868 if (add && adapter->netdev->flags & IFF_PROMISC)
869 err = ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
870
Alexander Duyck58a02be2012-07-20 08:09:17 +0000871 err = ixgbe_set_vf_vlan(adapter, add, vid, vf);
872 if (!err && adapter->vfinfo[vf].spoofchk_enabled)
873 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
874
Greg Rose670224f2013-02-22 02:14:39 +0000875 /* Go through all the checks to see if the VLAN filter should
876 * be wiped completely.
877 */
878 if (!add && adapter->netdev->flags & IFF_PROMISC) {
879 reg_ndx = ixgbe_find_vlvf_entry(hw, vid);
880 if (reg_ndx < 0)
Mark Rustade90dd262014-07-22 06:51:08 +0000881 return err;
Greg Rose670224f2013-02-22 02:14:39 +0000882 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_ndx));
883 /* See if any other pools are set for this VLAN filter
884 * entry other than the PF.
885 */
886 if (VMDQ_P(0) < 32) {
887 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
888 bits &= ~(1 << VMDQ_P(0));
889 bits |= IXGBE_READ_REG(hw,
890 IXGBE_VLVFB(reg_ndx * 2) + 1);
891 } else {
892 bits = IXGBE_READ_REG(hw,
893 IXGBE_VLVFB(reg_ndx * 2) + 1);
894 bits &= ~(1 << (VMDQ_P(0) - 32));
895 bits |= IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
896 }
897
898 /* If the filter was removed then ensure PF pool bit
899 * is cleared if the PF only added itself to the pool
900 * because the PF is in promiscuous mode.
901 */
902 if ((vlvf & VLAN_VID_MASK) == vid &&
903 !test_bit(vid, adapter->active_vlans) && !bits)
904 ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
905 }
906
Alexander Duyck58a02be2012-07-20 08:09:17 +0000907 return err;
908}
909
910static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter,
911 u32 *msgbuf, u32 vf)
912{
913 u8 *new_mac = ((u8 *)(&msgbuf[1]));
914 int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
915 IXGBE_VT_MSGINFO_SHIFT;
916 int err;
917
918 if (adapter->vfinfo[vf].pf_set_mac && index > 0) {
919 e_warn(drv,
920 "VF %d requested MACVLAN filter but is administratively denied\n",
921 vf);
922 return -1;
923 }
924
925 /* An non-zero index indicates the VF is setting a filter */
926 if (index) {
927 if (!is_valid_ether_addr(new_mac)) {
928 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
929 return -1;
930 }
931
932 /*
933 * If the VF is allowed to set MAC filters then turn off
934 * anti-spoofing to avoid false positives.
935 */
936 if (adapter->vfinfo[vf].spoofchk_enabled)
937 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false);
938 }
939
940 err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac);
941 if (err == -ENOSPC)
942 e_warn(drv,
943 "VF %d has requested a MACVLAN filter but there is no space for it\n",
944 vf);
Greg Rosea3013402012-10-30 00:40:02 +0000945
946 return err < 0;
Greg Rose17367272010-01-09 02:25:48 +0000947}
948
Alexander Duyck374c65d2012-07-20 08:09:22 +0000949static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter,
950 u32 *msgbuf, u32 vf)
951{
952 int api = msgbuf[1];
953
954 switch (api) {
955 case ixgbe_mbox_api_10:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000956 case ixgbe_mbox_api_11:
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +0300957 case ixgbe_mbox_api_12:
Alexander Duyck374c65d2012-07-20 08:09:22 +0000958 adapter->vfinfo[vf].vf_api = api;
959 return 0;
960 default:
961 break;
962 }
963
964 e_info(drv, "VF %d requested invalid api version %u\n", vf, api);
965
966 return -1;
967}
968
Alexander Duyckf591cd92012-07-20 08:09:32 +0000969static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter,
970 u32 *msgbuf, u32 vf)
971{
972 struct net_device *dev = adapter->netdev;
973 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
974 unsigned int default_tc = 0;
975 u8 num_tcs = netdev_get_num_tc(dev);
976
977 /* verify the PF is supporting the correct APIs */
978 switch (adapter->vfinfo[vf].vf_api) {
979 case ixgbe_mbox_api_20:
980 case ixgbe_mbox_api_11:
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +0300981 case ixgbe_mbox_api_12:
Alexander Duyckf591cd92012-07-20 08:09:32 +0000982 break;
983 default:
984 return -1;
985 }
986
987 /* only allow 1 Tx queue for bandwidth limiting */
988 msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
989 msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
990
991 /* if TCs > 1 determine which TC belongs to default user priority */
992 if (num_tcs > 1)
993 default_tc = netdev_get_prio_tc_map(dev, adapter->default_up);
994
995 /* notify VF of need for VLAN tag stripping, and correct queue */
996 if (num_tcs)
997 msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
998 else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos)
999 msgbuf[IXGBE_VF_TRANS_VLAN] = 1;
1000 else
1001 msgbuf[IXGBE_VF_TRANS_VLAN] = 0;
1002
1003 /* notify VF of default queue */
1004 msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc;
1005
1006 return 0;
1007}
1008
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +03001009static int ixgbe_get_vf_reta(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
1010{
1011 u32 i, j;
1012 u32 *out_buf = &msgbuf[1];
1013 const u8 *reta = adapter->rss_indir_tbl;
1014 u32 reta_size = ixgbe_rss_indir_tbl_entries(adapter);
1015
1016 /* Check if operation is permitted */
1017 if (!adapter->vfinfo[vf].rss_query_enabled)
1018 return -EPERM;
1019
1020 /* verify the PF is supporting the correct API */
1021 if (adapter->vfinfo[vf].vf_api != ixgbe_mbox_api_12)
1022 return -EOPNOTSUPP;
1023
1024 /* This mailbox command is supported (required) only for 82599 and x540
1025 * VFs which support up to 4 RSS queues. Therefore we will compress the
1026 * RETA by saving only 2 bits from each entry. This way we will be able
1027 * to transfer the whole RETA in a single mailbox operation.
1028 */
1029 for (i = 0; i < reta_size / 16; i++) {
1030 out_buf[i] = 0;
1031 for (j = 0; j < 16; j++)
1032 out_buf[i] |= (u32)(reta[16 * i + j] & 0x3) << (2 * j);
1033 }
1034
1035 return 0;
1036}
1037
Vlad Zolotarov3c0841a2015-03-30 21:35:27 +03001038static int ixgbe_get_vf_rss_key(struct ixgbe_adapter *adapter,
1039 u32 *msgbuf, u32 vf)
1040{
1041 u32 *rss_key = &msgbuf[1];
1042
1043 /* Check if the operation is permitted */
1044 if (!adapter->vfinfo[vf].rss_query_enabled)
1045 return -EPERM;
1046
1047 /* verify the PF is supporting the correct API */
1048 if (adapter->vfinfo[vf].vf_api != ixgbe_mbox_api_12)
1049 return -EOPNOTSUPP;
1050
1051 memcpy(rss_key, adapter->rss_key, sizeof(adapter->rss_key));
1052
1053 return 0;
1054}
1055
Hiroshi Shimamoto8443c1a42015-08-28 06:59:03 +00001056static int ixgbe_update_vf_xcast_mode(struct ixgbe_adapter *adapter,
1057 u32 *msgbuf, u32 vf)
1058{
1059 struct ixgbe_hw *hw = &adapter->hw;
1060 int xcast_mode = msgbuf[1];
1061 u32 vmolr, disable, enable;
1062
1063 /* verify the PF is supporting the correct APIs */
1064 switch (adapter->vfinfo[vf].vf_api) {
1065 case ixgbe_mbox_api_12:
1066 break;
1067 default:
1068 return -EOPNOTSUPP;
1069 }
1070
1071 if (xcast_mode > IXGBEVF_XCAST_MODE_MULTI &&
1072 !adapter->vfinfo[vf].trusted) {
1073 xcast_mode = IXGBEVF_XCAST_MODE_MULTI;
1074 }
1075
1076 if (adapter->vfinfo[vf].xcast_mode == xcast_mode)
1077 goto out;
1078
1079 switch (xcast_mode) {
1080 case IXGBEVF_XCAST_MODE_NONE:
1081 disable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_MPE;
1082 enable = 0;
1083 break;
1084 case IXGBEVF_XCAST_MODE_MULTI:
1085 disable = IXGBE_VMOLR_MPE;
1086 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE;
1087 break;
1088 case IXGBEVF_XCAST_MODE_ALLMULTI:
1089 disable = 0;
1090 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_MPE;
1091 break;
1092 default:
1093 return -EOPNOTSUPP;
1094 }
1095
1096 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
1097 vmolr &= ~disable;
1098 vmolr |= enable;
1099 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
1100
1101 adapter->vfinfo[vf].xcast_mode = xcast_mode;
1102
1103out:
1104 msgbuf[1] = xcast_mode;
1105
1106 return 0;
1107}
1108
Greg Rose17367272010-01-09 02:25:48 +00001109static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1110{
1111 u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
Emil Tantilovc0509992011-05-07 06:49:18 +00001112 u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
Greg Rose17367272010-01-09 02:25:48 +00001113 struct ixgbe_hw *hw = &adapter->hw;
1114 s32 retval;
Greg Rose17367272010-01-09 02:25:48 +00001115
1116 retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
1117
Alexander Duyckdcaccc82012-03-28 08:03:38 +00001118 if (retval) {
Emil Tantilov849c4542010-06-03 16:53:41 +00001119 pr_err("Error receiving message from VF\n");
Alexander Duyckdcaccc82012-03-28 08:03:38 +00001120 return retval;
1121 }
Greg Rose17367272010-01-09 02:25:48 +00001122
1123 /* this is a message we already processed, do nothing */
1124 if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
Mark Rustade90dd262014-07-22 06:51:08 +00001125 return 0;
Greg Rose17367272010-01-09 02:25:48 +00001126
Alexander Duyckdcaccc82012-03-28 08:03:38 +00001127 /* flush the ack before we write any messages back */
1128 IXGBE_WRITE_FLUSH(hw);
1129
Alexander Duyck374c65d2012-07-20 08:09:22 +00001130 if (msgbuf[0] == IXGBE_VF_RESET)
1131 return ixgbe_vf_reset_msg(adapter, vf);
1132
Greg Rose17367272010-01-09 02:25:48 +00001133 /*
1134 * until the vf completes a virtual function reset it should not be
1135 * allowed to start any configuration.
1136 */
Greg Rose17367272010-01-09 02:25:48 +00001137 if (!adapter->vfinfo[vf].clear_to_send) {
1138 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1139 ixgbe_write_mbx(hw, msgbuf, 1, vf);
Mark Rustade90dd262014-07-22 06:51:08 +00001140 return 0;
Greg Rose17367272010-01-09 02:25:48 +00001141 }
1142
1143 switch ((msgbuf[0] & 0xFFFF)) {
1144 case IXGBE_VF_SET_MAC_ADDR:
Alexander Duyck58a02be2012-07-20 08:09:17 +00001145 retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +00001146 break;
1147 case IXGBE_VF_SET_MULTICAST:
Alexander Duyck58a02be2012-07-20 08:09:17 +00001148 retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf);
1149 break;
1150 case IXGBE_VF_SET_VLAN:
1151 retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +00001152 break;
1153 case IXGBE_VF_SET_LPE:
Alexander Duyck872844d2012-08-15 02:10:43 +00001154 retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +00001155 break;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00001156 case IXGBE_VF_SET_MACVLAN:
Alexander Duyck58a02be2012-07-20 08:09:17 +00001157 retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +00001158 break;
Alexander Duyck374c65d2012-07-20 08:09:22 +00001159 case IXGBE_VF_API_NEGOTIATE:
1160 retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf);
1161 break;
Alexander Duyckf591cd92012-07-20 08:09:32 +00001162 case IXGBE_VF_GET_QUEUES:
1163 retval = ixgbe_get_vf_queues(adapter, msgbuf, vf);
1164 break;
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +03001165 case IXGBE_VF_GET_RETA:
1166 retval = ixgbe_get_vf_reta(adapter, msgbuf, vf);
1167 break;
Vlad Zolotarov3c0841a2015-03-30 21:35:27 +03001168 case IXGBE_VF_GET_RSS_KEY:
1169 retval = ixgbe_get_vf_rss_key(adapter, msgbuf, vf);
1170 break;
Hiroshi Shimamoto8443c1a42015-08-28 06:59:03 +00001171 case IXGBE_VF_UPDATE_XCAST_MODE:
1172 retval = ixgbe_update_vf_xcast_mode(adapter, msgbuf, vf);
1173 break;
Greg Rose17367272010-01-09 02:25:48 +00001174 default:
Emil Tantilov396e7992010-07-01 20:05:12 +00001175 e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]);
Greg Rose17367272010-01-09 02:25:48 +00001176 retval = IXGBE_ERR_MBX;
1177 break;
1178 }
1179
1180 /* notify the VF of the results of what it sent us */
1181 if (retval)
1182 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1183 else
1184 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
1185
1186 msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
1187
Alexander Duyck374c65d2012-07-20 08:09:22 +00001188 ixgbe_write_mbx(hw, msgbuf, mbx_size, vf);
Greg Rose17367272010-01-09 02:25:48 +00001189
1190 return retval;
1191}
1192
1193static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1194{
1195 struct ixgbe_hw *hw = &adapter->hw;
1196 u32 msg = IXGBE_VT_MSGTYPE_NACK;
1197
1198 /* if device isn't clear to send it shouldn't be reading either */
1199 if (!adapter->vfinfo[vf].clear_to_send)
1200 ixgbe_write_mbx(hw, &msg, 1, vf);
1201}
1202
1203void ixgbe_msg_task(struct ixgbe_adapter *adapter)
1204{
1205 struct ixgbe_hw *hw = &adapter->hw;
1206 u32 vf;
1207
1208 for (vf = 0; vf < adapter->num_vfs; vf++) {
1209 /* process any reset requests */
1210 if (!ixgbe_check_for_rst(hw, vf))
1211 ixgbe_vf_reset_event(adapter, vf);
1212
1213 /* process any messages pending */
1214 if (!ixgbe_check_for_msg(hw, vf))
1215 ixgbe_rcv_msg_from_vf(adapter, vf);
1216
1217 /* process any acks */
1218 if (!ixgbe_check_for_ack(hw, vf))
1219 ixgbe_rcv_ack_from_vf(adapter, vf);
1220 }
1221}
1222
Greg Rose767081a2010-01-22 22:46:40 +00001223void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
1224{
1225 struct ixgbe_hw *hw = &adapter->hw;
1226
1227 /* disable transmit and receive for all vfs */
1228 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
1229 IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
1230
1231 IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
1232 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
1233}
1234
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00001235static inline void ixgbe_ping_vf(struct ixgbe_adapter *adapter, int vf)
1236{
1237 struct ixgbe_hw *hw = &adapter->hw;
1238 u32 ping;
1239
1240 ping = IXGBE_PF_CONTROL_MSG;
1241 if (adapter->vfinfo[vf].clear_to_send)
1242 ping |= IXGBE_VT_MSGTYPE_CTS;
1243 ixgbe_write_mbx(hw, &ping, 1, vf);
1244}
1245
Greg Rose767081a2010-01-22 22:46:40 +00001246void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
1247{
1248 struct ixgbe_hw *hw = &adapter->hw;
1249 u32 ping;
1250 int i;
1251
1252 for (i = 0 ; i < adapter->num_vfs; i++) {
1253 ping = IXGBE_PF_CONTROL_MSG;
1254 if (adapter->vfinfo[i].clear_to_send)
1255 ping |= IXGBE_VT_MSGTYPE_CTS;
1256 ixgbe_write_mbx(hw, &ping, 1, i);
1257 }
1258}
1259
Greg Rose7f016482010-05-04 22:12:06 +00001260int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1261{
1262 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1263 if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs))
1264 return -EINVAL;
1265 adapter->vfinfo[vf].pf_set_mac = true;
1266 dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf);
1267 dev_info(&adapter->pdev->dev, "Reload the VF driver to make this"
1268 " change effective.");
1269 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1270 dev_warn(&adapter->pdev->dev, "The VF MAC address has been set,"
1271 " but the PF device is not up.\n");
1272 dev_warn(&adapter->pdev->dev, "Bring the PF device up before"
1273 " attempting to use the VF device.\n");
1274 }
1275 return ixgbe_set_vf_mac(adapter, vf, mac);
1276}
1277
Don Skidmore2b509c02014-11-01 01:06:57 +00001278static int ixgbe_enable_port_vlan(struct ixgbe_adapter *adapter, int vf,
1279 u16 vlan, u8 qos)
1280{
1281 struct ixgbe_hw *hw = &adapter->hw;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001282 int err;
Don Skidmore2b509c02014-11-01 01:06:57 +00001283
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001284 err = ixgbe_set_vf_vlan(adapter, true, vlan, vf);
Don Skidmore2b509c02014-11-01 01:06:57 +00001285 if (err)
1286 goto out;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001287
Don Skidmore2b509c02014-11-01 01:06:57 +00001288 ixgbe_set_vmvir(adapter, vlan, qos, vf);
1289 ixgbe_set_vmolr(hw, vf, false);
1290 if (adapter->vfinfo[vf].spoofchk_enabled)
1291 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
1292 adapter->vfinfo[vf].vlan_count++;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001293
1294 /* enable hide vlan on X550 */
1295 if (hw->mac.type >= ixgbe_mac_X550)
1296 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE |
1297 IXGBE_QDE_HIDE_VLAN);
1298
Don Skidmore2b509c02014-11-01 01:06:57 +00001299 adapter->vfinfo[vf].pf_vlan = vlan;
1300 adapter->vfinfo[vf].pf_qos = qos;
1301 dev_info(&adapter->pdev->dev,
1302 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf);
1303 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1304 dev_warn(&adapter->pdev->dev,
1305 "The VF VLAN has been set, but the PF device is not up.\n");
1306 dev_warn(&adapter->pdev->dev,
1307 "Bring the PF device up before attempting to use the VF device.\n");
1308 }
1309
1310out:
1311 return err;
1312}
1313
1314static int ixgbe_disable_port_vlan(struct ixgbe_adapter *adapter, int vf)
1315{
1316 struct ixgbe_hw *hw = &adapter->hw;
1317 int err;
1318
1319 err = ixgbe_set_vf_vlan(adapter, false,
1320 adapter->vfinfo[vf].pf_vlan, vf);
1321 ixgbe_clear_vmvir(adapter, vf);
1322 ixgbe_set_vmolr(hw, vf, true);
1323 hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf);
1324 if (adapter->vfinfo[vf].vlan_count)
1325 adapter->vfinfo[vf].vlan_count--;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001326
1327 /* disable hide VLAN on X550 */
1328 if (hw->mac.type >= ixgbe_mac_X550)
1329 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
1330
Don Skidmore2b509c02014-11-01 01:06:57 +00001331 adapter->vfinfo[vf].pf_vlan = 0;
1332 adapter->vfinfo[vf].pf_qos = 0;
1333
1334 return err;
1335}
1336
Greg Rose7f016482010-05-04 22:12:06 +00001337int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos)
1338{
1339 int err = 0;
1340 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1341
1342 if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7))
1343 return -EINVAL;
1344 if (vlan || qos) {
Don Skidmore2b509c02014-11-01 01:06:57 +00001345 /* Check if there is already a port VLAN set, if so
1346 * we have to delete the old one first before we
1347 * can set the new one. The usage model had
1348 * previously assumed the user would delete the
1349 * old port VLAN before setting a new one but this
1350 * is not necessarily the case.
1351 */
Greg Rose026ac672013-04-17 20:41:35 +00001352 if (adapter->vfinfo[vf].pf_vlan)
Don Skidmore2b509c02014-11-01 01:06:57 +00001353 err = ixgbe_disable_port_vlan(adapter, vf);
Greg Rose026ac672013-04-17 20:41:35 +00001354 if (err)
1355 goto out;
Don Skidmore2b509c02014-11-01 01:06:57 +00001356 err = ixgbe_enable_port_vlan(adapter, vf, vlan, qos);
Greg Rose7f016482010-05-04 22:12:06 +00001357 } else {
Don Skidmore2b509c02014-11-01 01:06:57 +00001358 err = ixgbe_disable_port_vlan(adapter, vf);
Jacob Kellere7cf7452014-04-09 06:03:10 +00001359 }
Don Skidmore2b509c02014-11-01 01:06:57 +00001360
Greg Rose7f016482010-05-04 22:12:06 +00001361out:
Jacob Kellere7cf7452014-04-09 06:03:10 +00001362 return err;
Greg Rose7f016482010-05-04 22:12:06 +00001363}
1364
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001365static int ixgbe_link_mbps(struct ixgbe_adapter *adapter)
Lior Levyff4ab202011-03-11 02:03:07 +00001366{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001367 switch (adapter->link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001368 case IXGBE_LINK_SPEED_100_FULL:
1369 return 100;
1370 case IXGBE_LINK_SPEED_1GB_FULL:
1371 return 1000;
1372 case IXGBE_LINK_SPEED_10GB_FULL:
1373 return 10000;
1374 default:
1375 return 0;
1376 }
1377}
1378
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001379static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf)
Lior Levyff4ab202011-03-11 02:03:07 +00001380{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001381 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1382 struct ixgbe_hw *hw = &adapter->hw;
1383 u32 bcnrc_val = 0;
1384 u16 queue, queues_per_pool;
1385 u16 tx_rate = adapter->vfinfo[vf].tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001386
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001387 if (tx_rate) {
1388 /* start with base link speed value */
1389 bcnrc_val = adapter->vf_rate_link_speed;
1390
Lior Levyff4ab202011-03-11 02:03:07 +00001391 /* Calculate the rate factor values to set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001392 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1393 bcnrc_val /= tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001394
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001395 /* clear everything but the rate factor */
1396 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1397 IXGBE_RTTBCNRC_RF_DEC_MASK;
1398
1399 /* enable the rate scheduler */
1400 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
Lior Levyff4ab202011-03-11 02:03:07 +00001401 }
1402
Lior Levy7555e832011-06-25 00:09:08 -07001403 /*
1404 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
1405 * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported
1406 * and 0x004 otherwise.
1407 */
1408 switch (hw->mac.type) {
1409 case ixgbe_mac_82599EB:
1410 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4);
1411 break;
1412 case ixgbe_mac_X540:
1413 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14);
1414 break;
1415 default:
1416 break;
1417 }
1418
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001419 /* determine how many queues per pool based on VMDq mask */
1420 queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
1421
1422 /* write value for all Tx queues belonging to VF */
1423 for (queue = 0; queue < queues_per_pool; queue++) {
1424 unsigned int reg_idx = (vf * queues_per_pool) + queue;
1425
1426 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx);
1427 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1428 }
Lior Levyff4ab202011-03-11 02:03:07 +00001429}
1430
1431void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter)
1432{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001433 int i;
Lior Levyff4ab202011-03-11 02:03:07 +00001434
1435 /* VF Tx rate limit was not set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001436 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001437 return;
1438
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001439 if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001440 adapter->vf_rate_link_speed = 0;
1441 dev_info(&adapter->pdev->dev,
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001442 "Link speed has been changed. VF Transmit rate is disabled\n");
Lior Levyff4ab202011-03-11 02:03:07 +00001443 }
1444
1445 for (i = 0; i < adapter->num_vfs; i++) {
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001446 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001447 adapter->vfinfo[i].tx_rate = 0;
1448
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001449 ixgbe_set_vf_rate_limit(adapter, i);
Lior Levyff4ab202011-03-11 02:03:07 +00001450 }
1451}
1452
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001453int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int min_tx_rate,
1454 int max_tx_rate)
Greg Rose7f016482010-05-04 22:12:06 +00001455{
Lior Levyff4ab202011-03-11 02:03:07 +00001456 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001457 int link_speed;
Lior Levyff4ab202011-03-11 02:03:07 +00001458
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001459 /* verify VF is active */
1460 if (vf >= adapter->num_vfs)
Lior Levyff4ab202011-03-11 02:03:07 +00001461 return -EINVAL;
1462
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001463 /* verify link is up */
1464 if (!adapter->link_up)
1465 return -EINVAL;
1466
1467 /* verify we are linked at 10Gbps */
1468 link_speed = ixgbe_link_mbps(adapter);
1469 if (link_speed != 10000)
1470 return -EINVAL;
1471
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001472 if (min_tx_rate)
1473 return -EINVAL;
1474
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001475 /* rate limit cannot be less than 10Mbs or greater than link speed */
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001476 if (max_tx_rate && ((max_tx_rate <= 10) || (max_tx_rate > link_speed)))
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001477 return -EINVAL;
1478
1479 /* store values */
1480 adapter->vf_rate_link_speed = link_speed;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001481 adapter->vfinfo[vf].tx_rate = max_tx_rate;
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001482
1483 /* update hardware configuration */
1484 ixgbe_set_vf_rate_limit(adapter, vf);
Lior Levyff4ab202011-03-11 02:03:07 +00001485
1486 return 0;
Greg Rose7f016482010-05-04 22:12:06 +00001487}
1488
Greg Rosede4c7f62011-09-29 05:57:33 +00001489int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting)
1490{
1491 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1492 int vf_target_reg = vf >> 3;
1493 int vf_target_shift = vf % 8;
1494 struct ixgbe_hw *hw = &adapter->hw;
1495 u32 regval;
1496
Emil Tantilov600a5072014-10-16 15:49:02 +00001497 if (vf >= adapter->num_vfs)
1498 return -EINVAL;
1499
Greg Rosede4c7f62011-09-29 05:57:33 +00001500 adapter->vfinfo[vf].spoofchk_enabled = setting;
1501
1502 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1503 regval &= ~(1 << vf_target_shift);
1504 regval |= (setting << vf_target_shift);
1505 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1506
1507 if (adapter->vfinfo[vf].vlan_count) {
1508 vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT;
1509 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1510 regval &= ~(1 << vf_target_shift);
1511 regval |= (setting << vf_target_shift);
1512 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1513 }
1514
1515 return 0;
1516}
1517
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03001518int ixgbe_ndo_set_vf_rss_query_en(struct net_device *netdev, int vf,
1519 bool setting)
1520{
1521 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1522
1523 /* This operation is currently supported only for 82599 and x540
1524 * devices.
1525 */
1526 if (adapter->hw.mac.type < ixgbe_mac_82599EB ||
1527 adapter->hw.mac.type >= ixgbe_mac_X550)
1528 return -EOPNOTSUPP;
1529
1530 if (vf >= adapter->num_vfs)
1531 return -EINVAL;
1532
1533 adapter->vfinfo[vf].rss_query_enabled = setting;
1534
1535 return 0;
1536}
1537
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00001538int ixgbe_ndo_set_vf_trust(struct net_device *netdev, int vf, bool setting)
1539{
1540 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1541
1542 if (vf >= adapter->num_vfs)
1543 return -EINVAL;
1544
1545 /* nothing to do */
1546 if (adapter->vfinfo[vf].trusted == setting)
1547 return 0;
1548
1549 adapter->vfinfo[vf].trusted = setting;
1550
1551 /* reset VF to reconfigure features */
1552 adapter->vfinfo[vf].clear_to_send = false;
1553 ixgbe_ping_vf(adapter, vf);
1554
1555 e_info(drv, "VF %u is %strusted\n", vf, setting ? "" : "not ");
1556
1557 return 0;
1558}
1559
Greg Rose7f016482010-05-04 22:12:06 +00001560int ixgbe_ndo_get_vf_config(struct net_device *netdev,
1561 int vf, struct ifla_vf_info *ivi)
1562{
1563 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1564 if (vf >= adapter->num_vfs)
1565 return -EINVAL;
1566 ivi->vf = vf;
1567 memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN);
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001568 ivi->max_tx_rate = adapter->vfinfo[vf].tx_rate;
1569 ivi->min_tx_rate = 0;
Greg Rose7f016482010-05-04 22:12:06 +00001570 ivi->vlan = adapter->vfinfo[vf].pf_vlan;
1571 ivi->qos = adapter->vfinfo[vf].pf_qos;
Greg Rosede4c7f62011-09-29 05:57:33 +00001572 ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled;
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03001573 ivi->rss_query_en = adapter->vfinfo[vf].rss_query_enabled;
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00001574 ivi->trusted = adapter->vfinfo[vf].trusted;
Greg Rose7f016482010-05-04 22:12:06 +00001575 return 0;
1576}