blob: 3380f14517dc6a7e2e5bd678cff195a7bc728141 [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 Duyckb6488b62015-11-02 17:10:01 -0800455 struct ixgbe_hw *hw = &adapter->hw;
456 int err;
457
Alexander Duyckb35d4d42012-05-23 05:39:25 +0000458 /* VLAN 0 is a special case, don't allow it to be removed */
459 if (!vid && !add)
460 return 0;
461
Alexander Duyckb6488b62015-11-02 17:10:01 -0800462 /* If VLAN overlaps with one the PF is currently monitoring make
463 * sure that we are able to allocate a VLVF entry. This may be
464 * redundant but it guarantees PF will maintain visibility to
465 * the VLAN.
466 */
467 if (add && test_bit(vid, adapter->active_vlans)) {
468 err = hw->mac.ops.set_vfta(hw, vid, VMDQ_P(0), true, false);
469 if (err)
470 return err;
471 }
472
473 err = hw->mac.ops.set_vfta(hw, vid, vf, !!add, false);
474
475 return err;
Greg Rose17367272010-01-09 02:25:48 +0000476}
477
Alexander Duyck872844d2012-08-15 02:10:43 +0000478static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
Greg Rosee9f98072011-01-26 01:06:07 +0000479{
480 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck872844d2012-08-15 02:10:43 +0000481 int max_frame = msgbuf[1];
Greg Rosee9f98072011-01-26 01:06:07 +0000482 u32 max_frs;
Greg Rosee9f98072011-01-26 01:06:07 +0000483
Alexander Duyck872844d2012-08-15 02:10:43 +0000484 /*
485 * For 82599EB we have to keep all PFs and VFs operating with
486 * the same max_frame value in order to avoid sending an oversize
487 * frame to a VF. In order to guarantee this is handled correctly
488 * for all cases we have several special exceptions to take into
489 * account before we can enable the VF for receive
490 */
491 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
492 struct net_device *dev = adapter->netdev;
493 int pf_max_frame = dev->mtu + ETH_HLEN;
494 u32 reg_offset, vf_shift, vfre;
495 s32 err = 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000496
Alexander Duyck872844d2012-08-15 02:10:43 +0000497#ifdef CONFIG_FCOE
498 if (dev->features & NETIF_F_FCOE_MTU)
499 pf_max_frame = max_t(int, pf_max_frame,
500 IXGBE_FCOE_JUMBO_FRAME_SIZE);
501
502#endif /* CONFIG_FCOE */
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000503 switch (adapter->vfinfo[vf].vf_api) {
504 case ixgbe_mbox_api_11:
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +0300505 case ixgbe_mbox_api_12:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000506 /*
507 * Version 1.1 supports jumbo frames on VFs if PF has
508 * jumbo frames enabled which means legacy VFs are
509 * disabled
510 */
511 if (pf_max_frame > ETH_FRAME_LEN)
512 break;
513 default:
514 /*
515 * If the PF or VF are running w/ jumbo frames enabled
516 * we need to shut down the VF Rx path as we cannot
517 * support jumbo frames on legacy VFs
518 */
519 if ((pf_max_frame > ETH_FRAME_LEN) ||
520 (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
521 err = -EINVAL;
522 break;
523 }
Alexander Duyck872844d2012-08-15 02:10:43 +0000524
525 /* determine VF receive enable location */
526 vf_shift = vf % 32;
527 reg_offset = vf / 32;
528
529 /* enable or disable receive depending on error */
530 vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
531 if (err)
532 vfre &= ~(1 << vf_shift);
533 else
534 vfre |= 1 << vf_shift;
535 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre);
536
537 if (err) {
538 e_err(drv, "VF max_frame %d out of range\n", max_frame);
539 return err;
540 }
Greg Rosee9f98072011-01-26 01:06:07 +0000541 }
542
Alexander Duyck872844d2012-08-15 02:10:43 +0000543 /* MTU < 68 is an error and causes problems on some kernels */
544 if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) {
545 e_err(drv, "VF max_frame %d out of range\n", max_frame);
546 return -EINVAL;
547 }
548
549 /* pull current max frame size from hardware */
550 max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
551 max_frs &= IXGBE_MHADD_MFS_MASK;
552 max_frs >>= IXGBE_MHADD_MFS_SHIFT;
553
554 if (max_frs < max_frame) {
555 max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT;
Greg Rosee9f98072011-01-26 01:06:07 +0000556 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
557 }
558
Alexander Duyck872844d2012-08-15 02:10:43 +0000559 e_info(hw, "VF requests change max MTU to %d\n", max_frame);
560
561 return 0;
Greg Rosee9f98072011-01-26 01:06:07 +0000562}
563
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000564static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
Greg Rose17367272010-01-09 02:25:48 +0000565{
566 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Jacob Kellerb335e752014-03-25 07:45:27 +0000567 vmolr |= IXGBE_VMOLR_BAM;
Greg Rosef0412772010-05-04 22:11:46 +0000568 if (aupe)
569 vmolr |= IXGBE_VMOLR_AUPE;
570 else
571 vmolr &= ~IXGBE_VMOLR_AUPE;
Greg Rose17367272010-01-09 02:25:48 +0000572 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
573}
574
Alexander Duyck107d3012012-10-02 00:17:03 +0000575static void ixgbe_clear_vmvir(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose7f016482010-05-04 22:12:06 +0000576{
577 struct ixgbe_hw *hw = &adapter->hw;
578
Alexander Duyck107d3012012-10-02 00:17:03 +0000579 IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
Greg Rose7f016482010-05-04 22:12:06 +0000580}
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000581static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000582{
583 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck107d3012012-10-02 00:17:03 +0000584 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
Alexander Duyck107d3012012-10-02 00:17:03 +0000585 u8 num_tcs = netdev_get_num_tc(adapter->netdev);
586
587 /* add PF assigned VLAN or VLAN 0 */
588 ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf);
Greg Rose17367272010-01-09 02:25:48 +0000589
590 /* reset offloads to defaults */
Alexander Duyck107d3012012-10-02 00:17:03 +0000591 ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan);
592
593 /* set outgoing tags for VFs */
594 if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) {
595 ixgbe_clear_vmvir(adapter, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000596 } else {
Alexander Duyck107d3012012-10-02 00:17:03 +0000597 if (vfinfo->pf_qos || !num_tcs)
598 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
599 vfinfo->pf_qos, vf);
600 else
601 ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
602 adapter->default_up, vf);
603
604 if (vfinfo->spoofchk_enabled)
605 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
Greg Rose7f016482010-05-04 22:12:06 +0000606 }
Greg Rose17367272010-01-09 02:25:48 +0000607
608 /* reset multicast table array for vf */
609 adapter->vfinfo[vf].num_vf_mc_hashes = 0;
610
611 /* Flush and reset the mta with the new values */
612 ixgbe_set_rx_mode(adapter->netdev);
613
Jacob Keller5d7daa32014-03-29 06:51:25 +0000614 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Alexander Duyck374c65d2012-07-20 08:09:22 +0000615
616 /* reset VF api back to unknown */
617 adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10;
Greg Rose17367272010-01-09 02:25:48 +0000618}
619
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000620static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
621 int vf, unsigned char *mac_addr)
Greg Rose17367272010-01-09 02:25:48 +0000622{
Jacob Keller5d7daa32014-03-29 06:51:25 +0000623 ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Joe Perchesd458cdf2013-10-01 19:04:40 -0700624 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, ETH_ALEN);
Jacob Keller5d7daa32014-03-29 06:51:25 +0000625 ixgbe_add_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
Greg Rose17367272010-01-09 02:25:48 +0000626
627 return 0;
628}
629
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000630static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter,
631 int vf, int index, unsigned char *mac_addr)
632{
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000633 struct list_head *pos;
634 struct vf_macvlans *entry;
635
636 if (index <= 1) {
637 list_for_each(pos, &adapter->vf_mvs.l) {
638 entry = list_entry(pos, struct vf_macvlans, l);
639 if (entry->vf == vf) {
640 entry->vf = -1;
641 entry->free = true;
642 entry->is_macvlan = false;
Jacob Keller5d7daa32014-03-29 06:51:25 +0000643 ixgbe_del_mac_filter(adapter,
644 entry->vf_macvlan, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000645 }
646 }
647 }
648
649 /*
650 * If index was zero then we were asked to clear the uc list
651 * for the VF. We're done.
652 */
653 if (!index)
654 return 0;
655
656 entry = NULL;
657
658 list_for_each(pos, &adapter->vf_mvs.l) {
659 entry = list_entry(pos, struct vf_macvlans, l);
660 if (entry->free)
661 break;
662 }
663
664 /*
665 * If we traversed the entire list and didn't find a free entry
666 * then we're out of space on the RAR table. Also entry may
667 * be NULL because the original memory allocation for the list
668 * failed, which is not fatal but does mean we can't support
669 * VF requests for MACVLAN because we couldn't allocate
670 * memory for the list management required.
671 */
672 if (!entry || !entry->free)
673 return -ENOSPC;
674
675 entry->free = false;
676 entry->is_macvlan = true;
677 entry->vf = vf;
678 memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN);
679
Jacob Keller5d7daa32014-03-29 06:51:25 +0000680 ixgbe_add_mac_filter(adapter, mac_addr, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +0000681
682 return 0;
683}
684
Greg Rose17367272010-01-09 02:25:48 +0000685int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
686{
Alexander Duyckc60fbb02010-11-16 19:26:54 -0800687 struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
Greg Rose17367272010-01-09 02:25:48 +0000688 unsigned int vfn = (event_mask & 0x3f);
689
690 bool enable = ((event_mask & 0x10000000U) != 0);
691
Joe Perchesd458cdf2013-10-01 19:04:40 -0700692 if (enable)
693 eth_zero_addr(adapter->vfinfo[vfn].vf_mac_addresses);
Greg Rose17367272010-01-09 02:25:48 +0000694
695 return 0;
696}
697
Don Skidmore8d697e72014-11-05 04:52:09 +0000698static inline void ixgbe_write_qde(struct ixgbe_adapter *adapter, u32 vf,
699 u32 qde)
700{
701 struct ixgbe_hw *hw = &adapter->hw;
702 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
703 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
704 int i;
705
706 for (i = vf * q_per_pool; i < ((vf + 1) * q_per_pool); i++) {
707 u32 reg;
708
709 /* flush previous write */
710 IXGBE_WRITE_FLUSH(hw);
711
712 /* indicate to hardware that we want to set drop enable */
713 reg = IXGBE_QDE_WRITE | IXGBE_QDE_ENABLE;
714 reg |= i << IXGBE_QDE_IDX_SHIFT;
715 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
716 }
717}
718
Alexander Duyck58a02be2012-07-20 08:09:17 +0000719static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
Greg Rose17367272010-01-09 02:25:48 +0000720{
Alexander Duyck87397372014-01-15 17:38:40 -0800721 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
Greg Rose17367272010-01-09 02:25:48 +0000722 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000723 unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
Emil Tantilovb08e1ed2013-07-26 07:34:54 +0000724 u32 reg, reg_offset, vf_shift;
725 u32 msgbuf[4] = {0, 0, 0, 0};
Alexander Duyck58a02be2012-07-20 08:09:17 +0000726 u8 *addr = (u8 *)(&msgbuf[1]);
Alexander Duyck87397372014-01-15 17:38:40 -0800727 u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
728 int i;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000729
730 e_info(probe, "VF Reset msg received from vf %d\n", vf);
731
732 /* reset the filters for the device */
733 ixgbe_vf_reset_event(adapter, vf);
734
735 /* set vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000736 if (!is_zero_ether_addr(vf_mac))
737 ixgbe_set_vf_mac(adapter, vf, vf_mac);
Greg Rose17367272010-01-09 02:25:48 +0000738
739 vf_shift = vf % 32;
740 reg_offset = vf / 32;
741
Alexander Duyck58a02be2012-07-20 08:09:17 +0000742 /* enable transmit for vf */
Greg Rose17367272010-01-09 02:25:48 +0000743 reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000744 reg |= 1 << vf_shift;
Greg Rose17367272010-01-09 02:25:48 +0000745 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
746
Alexander Duyck87397372014-01-15 17:38:40 -0800747 /* force drop enable for all VF Rx queues */
Don Skidmore8d697e72014-11-05 04:52:09 +0000748 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
Alexander Duyck87397372014-01-15 17:38:40 -0800749
Alexander Duyck58a02be2012-07-20 08:09:17 +0000750 /* enable receive for vf */
Greg Rose17367272010-01-09 02:25:48 +0000751 reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
Alexander Duyck872844d2012-08-15 02:10:43 +0000752 reg |= 1 << vf_shift;
753 /*
754 * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs.
755 * For more info take a look at ixgbe_set_vf_lpe
756 */
757 if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
758 struct net_device *dev = adapter->netdev;
759 int pf_max_frame = dev->mtu + ETH_HLEN;
760
761#ifdef CONFIG_FCOE
762 if (dev->features & NETIF_F_FCOE_MTU)
763 pf_max_frame = max_t(int, pf_max_frame,
764 IXGBE_FCOE_JUMBO_FRAME_SIZE);
765
766#endif /* CONFIG_FCOE */
767 if (pf_max_frame > ETH_FRAME_LEN)
768 reg &= ~(1 << vf_shift);
769 }
Greg Rose17367272010-01-09 02:25:48 +0000770 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
771
Alexander Duyck58a02be2012-07-20 08:09:17 +0000772 /* enable VF mailbox for further messages */
773 adapter->vfinfo[vf].clear_to_send = true;
774
Greg Rosea985b6c32010-11-18 03:02:52 +0000775 /* Enable counting of spoofed packets in the SSVPC register */
776 reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
777 reg |= (1 << vf_shift);
778 IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
779
Alexander Duyckdbf231a2014-01-15 17:38:41 -0800780 /*
781 * Reset the VFs TDWBAL and TDWBAH registers
782 * which are not cleared by an FLR
783 */
784 for (i = 0; i < q_per_pool; i++) {
785 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBAHn(q_per_pool, vf, i), 0);
786 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBALn(q_per_pool, vf, i), 0);
787 }
788
Alexander Duyck58a02be2012-07-20 08:09:17 +0000789 /* reply to reset with ack and vf mac address */
Greg Rose35055922013-02-15 05:20:09 +0000790 msgbuf[0] = IXGBE_VF_RESET;
791 if (!is_zero_ether_addr(vf_mac)) {
792 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
793 memcpy(addr, vf_mac, ETH_ALEN);
794 } else {
795 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
796 dev_warn(&adapter->pdev->dev,
797 "VF %d has no MAC address assigned, you may have to assign one manually\n",
798 vf);
799 }
Alexander Duyck58a02be2012-07-20 08:09:17 +0000800
801 /*
802 * Piggyback the multicast filter type so VF can compute the
803 * correct vectors
804 */
805 msgbuf[3] = hw->mac.mc_filter_type;
806 ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
807
808 return 0;
809}
810
811static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter,
812 u32 *msgbuf, u32 vf)
813{
814 u8 *new_mac = ((u8 *)(&msgbuf[1]));
815
816 if (!is_valid_ether_addr(new_mac)) {
817 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
818 return -1;
819 }
820
821 if (adapter->vfinfo[vf].pf_set_mac &&
dingtianhong4012dda2013-12-30 15:40:50 +0800822 !ether_addr_equal(adapter->vfinfo[vf].vf_mac_addresses, new_mac)) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000823 e_warn(drv,
824 "VF %d attempted to override administratively set MAC address\n"
825 "Reload the VF driver to resume operations\n",
826 vf);
827 return -1;
828 }
829
Greg Rose3970c322012-09-25 02:25:30 +0000830 return ixgbe_set_vf_mac(adapter, vf, new_mac) < 0;
Alexander Duyck58a02be2012-07-20 08:09:17 +0000831}
832
Greg Rose670224f2013-02-22 02:14:39 +0000833static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan)
834{
835 u32 vlvf;
836 s32 regindex;
837
838 /* short cut the special case */
839 if (vlan == 0)
840 return 0;
841
842 /* Search for the vlan id in the VLVF entries */
843 for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) {
844 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex));
845 if ((vlvf & VLAN_VID_MASK) == vlan)
846 break;
847 }
848
849 /* Return a negative value if not found */
850 if (regindex >= IXGBE_VLVF_ENTRIES)
851 regindex = -1;
852
853 return regindex;
854}
855
Alexander Duyck58a02be2012-07-20 08:09:17 +0000856static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter,
857 u32 *msgbuf, u32 vf)
858{
859 struct ixgbe_hw *hw = &adapter->hw;
860 int add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT;
861 int vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
862 int err;
Greg Rose670224f2013-02-22 02:14:39 +0000863 s32 reg_ndx;
864 u32 vlvf;
865 u32 bits;
Alexander Duyck107d3012012-10-02 00:17:03 +0000866 u8 tcs = netdev_get_num_tc(adapter->netdev);
Alexander Duyck58a02be2012-07-20 08:09:17 +0000867
Alexander Duyck107d3012012-10-02 00:17:03 +0000868 if (adapter->vfinfo[vf].pf_vlan || tcs) {
Alexander Duyck58a02be2012-07-20 08:09:17 +0000869 e_warn(drv,
870 "VF %d attempted to override administratively set VLAN configuration\n"
871 "Reload the VF driver to resume operations\n",
872 vf);
873 return -1;
874 }
875
876 if (add)
877 adapter->vfinfo[vf].vlan_count++;
878 else if (adapter->vfinfo[vf].vlan_count)
879 adapter->vfinfo[vf].vlan_count--;
880
Greg Rose670224f2013-02-22 02:14:39 +0000881 /* in case of promiscuous mode any VLAN filter set for a VF must
882 * also have the PF pool added to it.
883 */
884 if (add && adapter->netdev->flags & IFF_PROMISC)
885 err = ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
886
Alexander Duyck58a02be2012-07-20 08:09:17 +0000887 err = ixgbe_set_vf_vlan(adapter, add, vid, vf);
888 if (!err && adapter->vfinfo[vf].spoofchk_enabled)
889 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
890
Greg Rose670224f2013-02-22 02:14:39 +0000891 /* Go through all the checks to see if the VLAN filter should
892 * be wiped completely.
893 */
894 if (!add && adapter->netdev->flags & IFF_PROMISC) {
895 reg_ndx = ixgbe_find_vlvf_entry(hw, vid);
896 if (reg_ndx < 0)
Mark Rustade90dd262014-07-22 06:51:08 +0000897 return err;
Greg Rose670224f2013-02-22 02:14:39 +0000898 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_ndx));
899 /* See if any other pools are set for this VLAN filter
900 * entry other than the PF.
901 */
902 if (VMDQ_P(0) < 32) {
903 bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
904 bits &= ~(1 << VMDQ_P(0));
905 bits |= IXGBE_READ_REG(hw,
Alexander Duyck8e8e9a02015-11-02 17:09:35 -0800906 IXGBE_VLVFB(reg_ndx * 2 + 1));
Greg Rose670224f2013-02-22 02:14:39 +0000907 } else {
908 bits = IXGBE_READ_REG(hw,
Alexander Duyck8e8e9a02015-11-02 17:09:35 -0800909 IXGBE_VLVFB(reg_ndx * 2 + 1));
Greg Rose670224f2013-02-22 02:14:39 +0000910 bits &= ~(1 << (VMDQ_P(0) - 32));
911 bits |= IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2));
912 }
913
914 /* If the filter was removed then ensure PF pool bit
915 * is cleared if the PF only added itself to the pool
916 * because the PF is in promiscuous mode.
917 */
918 if ((vlvf & VLAN_VID_MASK) == vid &&
919 !test_bit(vid, adapter->active_vlans) && !bits)
920 ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0));
921 }
922
Alexander Duyck58a02be2012-07-20 08:09:17 +0000923 return err;
924}
925
926static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter,
927 u32 *msgbuf, u32 vf)
928{
929 u8 *new_mac = ((u8 *)(&msgbuf[1]));
930 int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
931 IXGBE_VT_MSGINFO_SHIFT;
932 int err;
933
934 if (adapter->vfinfo[vf].pf_set_mac && index > 0) {
935 e_warn(drv,
936 "VF %d requested MACVLAN filter but is administratively denied\n",
937 vf);
938 return -1;
939 }
940
941 /* An non-zero index indicates the VF is setting a filter */
942 if (index) {
943 if (!is_valid_ether_addr(new_mac)) {
944 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
945 return -1;
946 }
947
948 /*
949 * If the VF is allowed to set MAC filters then turn off
950 * anti-spoofing to avoid false positives.
951 */
952 if (adapter->vfinfo[vf].spoofchk_enabled)
953 ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false);
954 }
955
956 err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac);
957 if (err == -ENOSPC)
958 e_warn(drv,
959 "VF %d has requested a MACVLAN filter but there is no space for it\n",
960 vf);
Greg Rosea3013402012-10-30 00:40:02 +0000961
962 return err < 0;
Greg Rose17367272010-01-09 02:25:48 +0000963}
964
Alexander Duyck374c65d2012-07-20 08:09:22 +0000965static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter,
966 u32 *msgbuf, u32 vf)
967{
968 int api = msgbuf[1];
969
970 switch (api) {
971 case ixgbe_mbox_api_10:
Alexander Duyckbffb3bc2012-07-20 08:09:37 +0000972 case ixgbe_mbox_api_11:
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +0300973 case ixgbe_mbox_api_12:
Alexander Duyck374c65d2012-07-20 08:09:22 +0000974 adapter->vfinfo[vf].vf_api = api;
975 return 0;
976 default:
977 break;
978 }
979
980 e_info(drv, "VF %d requested invalid api version %u\n", vf, api);
981
982 return -1;
983}
984
Alexander Duyckf591cd92012-07-20 08:09:32 +0000985static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter,
986 u32 *msgbuf, u32 vf)
987{
988 struct net_device *dev = adapter->netdev;
989 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
990 unsigned int default_tc = 0;
991 u8 num_tcs = netdev_get_num_tc(dev);
992
993 /* verify the PF is supporting the correct APIs */
994 switch (adapter->vfinfo[vf].vf_api) {
995 case ixgbe_mbox_api_20:
996 case ixgbe_mbox_api_11:
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +0300997 case ixgbe_mbox_api_12:
Alexander Duyckf591cd92012-07-20 08:09:32 +0000998 break;
999 default:
1000 return -1;
1001 }
1002
1003 /* only allow 1 Tx queue for bandwidth limiting */
1004 msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
1005 msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
1006
1007 /* if TCs > 1 determine which TC belongs to default user priority */
1008 if (num_tcs > 1)
1009 default_tc = netdev_get_prio_tc_map(dev, adapter->default_up);
1010
1011 /* notify VF of need for VLAN tag stripping, and correct queue */
1012 if (num_tcs)
1013 msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
1014 else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos)
1015 msgbuf[IXGBE_VF_TRANS_VLAN] = 1;
1016 else
1017 msgbuf[IXGBE_VF_TRANS_VLAN] = 0;
1018
1019 /* notify VF of default queue */
1020 msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc;
1021
1022 return 0;
1023}
1024
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +03001025static int ixgbe_get_vf_reta(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
1026{
1027 u32 i, j;
1028 u32 *out_buf = &msgbuf[1];
1029 const u8 *reta = adapter->rss_indir_tbl;
1030 u32 reta_size = ixgbe_rss_indir_tbl_entries(adapter);
1031
1032 /* Check if operation is permitted */
1033 if (!adapter->vfinfo[vf].rss_query_enabled)
1034 return -EPERM;
1035
1036 /* verify the PF is supporting the correct API */
1037 if (adapter->vfinfo[vf].vf_api != ixgbe_mbox_api_12)
1038 return -EOPNOTSUPP;
1039
1040 /* This mailbox command is supported (required) only for 82599 and x540
1041 * VFs which support up to 4 RSS queues. Therefore we will compress the
1042 * RETA by saving only 2 bits from each entry. This way we will be able
1043 * to transfer the whole RETA in a single mailbox operation.
1044 */
1045 for (i = 0; i < reta_size / 16; i++) {
1046 out_buf[i] = 0;
1047 for (j = 0; j < 16; j++)
1048 out_buf[i] |= (u32)(reta[16 * i + j] & 0x3) << (2 * j);
1049 }
1050
1051 return 0;
1052}
1053
Vlad Zolotarov3c0841a2015-03-30 21:35:27 +03001054static int ixgbe_get_vf_rss_key(struct ixgbe_adapter *adapter,
1055 u32 *msgbuf, u32 vf)
1056{
1057 u32 *rss_key = &msgbuf[1];
1058
1059 /* Check if the operation is permitted */
1060 if (!adapter->vfinfo[vf].rss_query_enabled)
1061 return -EPERM;
1062
1063 /* verify the PF is supporting the correct API */
1064 if (adapter->vfinfo[vf].vf_api != ixgbe_mbox_api_12)
1065 return -EOPNOTSUPP;
1066
1067 memcpy(rss_key, adapter->rss_key, sizeof(adapter->rss_key));
1068
1069 return 0;
1070}
1071
Hiroshi Shimamoto8443c1a42015-08-28 06:59:03 +00001072static int ixgbe_update_vf_xcast_mode(struct ixgbe_adapter *adapter,
1073 u32 *msgbuf, u32 vf)
1074{
1075 struct ixgbe_hw *hw = &adapter->hw;
1076 int xcast_mode = msgbuf[1];
1077 u32 vmolr, disable, enable;
1078
1079 /* verify the PF is supporting the correct APIs */
1080 switch (adapter->vfinfo[vf].vf_api) {
1081 case ixgbe_mbox_api_12:
1082 break;
1083 default:
1084 return -EOPNOTSUPP;
1085 }
1086
1087 if (xcast_mode > IXGBEVF_XCAST_MODE_MULTI &&
1088 !adapter->vfinfo[vf].trusted) {
1089 xcast_mode = IXGBEVF_XCAST_MODE_MULTI;
1090 }
1091
1092 if (adapter->vfinfo[vf].xcast_mode == xcast_mode)
1093 goto out;
1094
1095 switch (xcast_mode) {
1096 case IXGBEVF_XCAST_MODE_NONE:
1097 disable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_MPE;
1098 enable = 0;
1099 break;
1100 case IXGBEVF_XCAST_MODE_MULTI:
1101 disable = IXGBE_VMOLR_MPE;
1102 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE;
1103 break;
1104 case IXGBEVF_XCAST_MODE_ALLMULTI:
1105 disable = 0;
1106 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_MPE;
1107 break;
1108 default:
1109 return -EOPNOTSUPP;
1110 }
1111
1112 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
1113 vmolr &= ~disable;
1114 vmolr |= enable;
1115 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
1116
1117 adapter->vfinfo[vf].xcast_mode = xcast_mode;
1118
1119out:
1120 msgbuf[1] = xcast_mode;
1121
1122 return 0;
1123}
1124
Greg Rose17367272010-01-09 02:25:48 +00001125static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1126{
1127 u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
Emil Tantilovc0509992011-05-07 06:49:18 +00001128 u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
Greg Rose17367272010-01-09 02:25:48 +00001129 struct ixgbe_hw *hw = &adapter->hw;
1130 s32 retval;
Greg Rose17367272010-01-09 02:25:48 +00001131
1132 retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
1133
Alexander Duyckdcaccc82012-03-28 08:03:38 +00001134 if (retval) {
Emil Tantilov849c4542010-06-03 16:53:41 +00001135 pr_err("Error receiving message from VF\n");
Alexander Duyckdcaccc82012-03-28 08:03:38 +00001136 return retval;
1137 }
Greg Rose17367272010-01-09 02:25:48 +00001138
1139 /* this is a message we already processed, do nothing */
1140 if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
Mark Rustade90dd262014-07-22 06:51:08 +00001141 return 0;
Greg Rose17367272010-01-09 02:25:48 +00001142
Alexander Duyckdcaccc82012-03-28 08:03:38 +00001143 /* flush the ack before we write any messages back */
1144 IXGBE_WRITE_FLUSH(hw);
1145
Alexander Duyck374c65d2012-07-20 08:09:22 +00001146 if (msgbuf[0] == IXGBE_VF_RESET)
1147 return ixgbe_vf_reset_msg(adapter, vf);
1148
Greg Rose17367272010-01-09 02:25:48 +00001149 /*
1150 * until the vf completes a virtual function reset it should not be
1151 * allowed to start any configuration.
1152 */
Greg Rose17367272010-01-09 02:25:48 +00001153 if (!adapter->vfinfo[vf].clear_to_send) {
1154 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1155 ixgbe_write_mbx(hw, msgbuf, 1, vf);
Mark Rustade90dd262014-07-22 06:51:08 +00001156 return 0;
Greg Rose17367272010-01-09 02:25:48 +00001157 }
1158
1159 switch ((msgbuf[0] & 0xFFFF)) {
1160 case IXGBE_VF_SET_MAC_ADDR:
Alexander Duyck58a02be2012-07-20 08:09:17 +00001161 retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +00001162 break;
1163 case IXGBE_VF_SET_MULTICAST:
Alexander Duyck58a02be2012-07-20 08:09:17 +00001164 retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf);
1165 break;
1166 case IXGBE_VF_SET_VLAN:
1167 retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +00001168 break;
1169 case IXGBE_VF_SET_LPE:
Alexander Duyck872844d2012-08-15 02:10:43 +00001170 retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf);
Greg Rose17367272010-01-09 02:25:48 +00001171 break;
Greg Rosea1cbb15c2011-05-13 01:33:48 +00001172 case IXGBE_VF_SET_MACVLAN:
Alexander Duyck58a02be2012-07-20 08:09:17 +00001173 retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf);
Greg Rosea1cbb15c2011-05-13 01:33:48 +00001174 break;
Alexander Duyck374c65d2012-07-20 08:09:22 +00001175 case IXGBE_VF_API_NEGOTIATE:
1176 retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf);
1177 break;
Alexander Duyckf591cd92012-07-20 08:09:32 +00001178 case IXGBE_VF_GET_QUEUES:
1179 retval = ixgbe_get_vf_queues(adapter, msgbuf, vf);
1180 break;
Vlad Zolotarov4ce37a42015-04-01 11:24:54 +03001181 case IXGBE_VF_GET_RETA:
1182 retval = ixgbe_get_vf_reta(adapter, msgbuf, vf);
1183 break;
Vlad Zolotarov3c0841a2015-03-30 21:35:27 +03001184 case IXGBE_VF_GET_RSS_KEY:
1185 retval = ixgbe_get_vf_rss_key(adapter, msgbuf, vf);
1186 break;
Hiroshi Shimamoto8443c1a42015-08-28 06:59:03 +00001187 case IXGBE_VF_UPDATE_XCAST_MODE:
1188 retval = ixgbe_update_vf_xcast_mode(adapter, msgbuf, vf);
1189 break;
Greg Rose17367272010-01-09 02:25:48 +00001190 default:
Emil Tantilov396e7992010-07-01 20:05:12 +00001191 e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]);
Greg Rose17367272010-01-09 02:25:48 +00001192 retval = IXGBE_ERR_MBX;
1193 break;
1194 }
1195
1196 /* notify the VF of the results of what it sent us */
1197 if (retval)
1198 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1199 else
1200 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
1201
1202 msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
1203
Alexander Duyck374c65d2012-07-20 08:09:22 +00001204 ixgbe_write_mbx(hw, msgbuf, mbx_size, vf);
Greg Rose17367272010-01-09 02:25:48 +00001205
1206 return retval;
1207}
1208
1209static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1210{
1211 struct ixgbe_hw *hw = &adapter->hw;
1212 u32 msg = IXGBE_VT_MSGTYPE_NACK;
1213
1214 /* if device isn't clear to send it shouldn't be reading either */
1215 if (!adapter->vfinfo[vf].clear_to_send)
1216 ixgbe_write_mbx(hw, &msg, 1, vf);
1217}
1218
1219void ixgbe_msg_task(struct ixgbe_adapter *adapter)
1220{
1221 struct ixgbe_hw *hw = &adapter->hw;
1222 u32 vf;
1223
1224 for (vf = 0; vf < adapter->num_vfs; vf++) {
1225 /* process any reset requests */
1226 if (!ixgbe_check_for_rst(hw, vf))
1227 ixgbe_vf_reset_event(adapter, vf);
1228
1229 /* process any messages pending */
1230 if (!ixgbe_check_for_msg(hw, vf))
1231 ixgbe_rcv_msg_from_vf(adapter, vf);
1232
1233 /* process any acks */
1234 if (!ixgbe_check_for_ack(hw, vf))
1235 ixgbe_rcv_ack_from_vf(adapter, vf);
1236 }
1237}
1238
Greg Rose767081a2010-01-22 22:46:40 +00001239void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
1240{
1241 struct ixgbe_hw *hw = &adapter->hw;
1242
1243 /* disable transmit and receive for all vfs */
1244 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
1245 IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
1246
1247 IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
1248 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
1249}
1250
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00001251static inline void ixgbe_ping_vf(struct ixgbe_adapter *adapter, int vf)
1252{
1253 struct ixgbe_hw *hw = &adapter->hw;
1254 u32 ping;
1255
1256 ping = IXGBE_PF_CONTROL_MSG;
1257 if (adapter->vfinfo[vf].clear_to_send)
1258 ping |= IXGBE_VT_MSGTYPE_CTS;
1259 ixgbe_write_mbx(hw, &ping, 1, vf);
1260}
1261
Greg Rose767081a2010-01-22 22:46:40 +00001262void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
1263{
1264 struct ixgbe_hw *hw = &adapter->hw;
1265 u32 ping;
1266 int i;
1267
1268 for (i = 0 ; i < adapter->num_vfs; i++) {
1269 ping = IXGBE_PF_CONTROL_MSG;
1270 if (adapter->vfinfo[i].clear_to_send)
1271 ping |= IXGBE_VT_MSGTYPE_CTS;
1272 ixgbe_write_mbx(hw, &ping, 1, i);
1273 }
1274}
1275
Greg Rose7f016482010-05-04 22:12:06 +00001276int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1277{
1278 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1279 if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs))
1280 return -EINVAL;
1281 adapter->vfinfo[vf].pf_set_mac = true;
1282 dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf);
1283 dev_info(&adapter->pdev->dev, "Reload the VF driver to make this"
1284 " change effective.");
1285 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1286 dev_warn(&adapter->pdev->dev, "The VF MAC address has been set,"
1287 " but the PF device is not up.\n");
1288 dev_warn(&adapter->pdev->dev, "Bring the PF device up before"
1289 " attempting to use the VF device.\n");
1290 }
1291 return ixgbe_set_vf_mac(adapter, vf, mac);
1292}
1293
Don Skidmore2b509c02014-11-01 01:06:57 +00001294static int ixgbe_enable_port_vlan(struct ixgbe_adapter *adapter, int vf,
1295 u16 vlan, u8 qos)
1296{
1297 struct ixgbe_hw *hw = &adapter->hw;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001298 int err;
Don Skidmore2b509c02014-11-01 01:06:57 +00001299
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001300 err = ixgbe_set_vf_vlan(adapter, true, vlan, vf);
Don Skidmore2b509c02014-11-01 01:06:57 +00001301 if (err)
1302 goto out;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001303
Don Skidmore2b509c02014-11-01 01:06:57 +00001304 ixgbe_set_vmvir(adapter, vlan, qos, vf);
1305 ixgbe_set_vmolr(hw, vf, false);
1306 if (adapter->vfinfo[vf].spoofchk_enabled)
1307 hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
1308 adapter->vfinfo[vf].vlan_count++;
Don Skidmore9a75a1a2014-11-07 03:53:35 +00001309
1310 /* enable hide vlan on X550 */
1311 if (hw->mac.type >= ixgbe_mac_X550)
1312 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE |
1313 IXGBE_QDE_HIDE_VLAN);
1314
Don Skidmore2b509c02014-11-01 01:06:57 +00001315 adapter->vfinfo[vf].pf_vlan = vlan;
1316 adapter->vfinfo[vf].pf_qos = qos;
1317 dev_info(&adapter->pdev->dev,
1318 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf);
1319 if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1320 dev_warn(&adapter->pdev->dev,
1321 "The VF VLAN has been set, but the PF device is not up.\n");
1322 dev_warn(&adapter->pdev->dev,
1323 "Bring the PF device up before attempting to use the VF device.\n");
1324 }
1325
1326out:
1327 return err;
1328}
1329
1330static int ixgbe_disable_port_vlan(struct ixgbe_adapter *adapter, int vf)
1331{
1332 struct ixgbe_hw *hw = &adapter->hw;
1333 int err;
1334
1335 err = ixgbe_set_vf_vlan(adapter, false,
1336 adapter->vfinfo[vf].pf_vlan, vf);
1337 ixgbe_clear_vmvir(adapter, vf);
1338 ixgbe_set_vmolr(hw, vf, true);
1339 hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf);
1340 if (adapter->vfinfo[vf].vlan_count)
1341 adapter->vfinfo[vf].vlan_count--;
Emil Tantilov42ce2c82014-12-10 05:28:51 +00001342
1343 /* disable hide VLAN on X550 */
1344 if (hw->mac.type >= ixgbe_mac_X550)
1345 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
1346
Don Skidmore2b509c02014-11-01 01:06:57 +00001347 adapter->vfinfo[vf].pf_vlan = 0;
1348 adapter->vfinfo[vf].pf_qos = 0;
1349
1350 return err;
1351}
1352
Greg Rose7f016482010-05-04 22:12:06 +00001353int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos)
1354{
1355 int err = 0;
1356 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1357
1358 if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7))
1359 return -EINVAL;
1360 if (vlan || qos) {
Don Skidmore2b509c02014-11-01 01:06:57 +00001361 /* Check if there is already a port VLAN set, if so
1362 * we have to delete the old one first before we
1363 * can set the new one. The usage model had
1364 * previously assumed the user would delete the
1365 * old port VLAN before setting a new one but this
1366 * is not necessarily the case.
1367 */
Greg Rose026ac672013-04-17 20:41:35 +00001368 if (adapter->vfinfo[vf].pf_vlan)
Don Skidmore2b509c02014-11-01 01:06:57 +00001369 err = ixgbe_disable_port_vlan(adapter, vf);
Greg Rose026ac672013-04-17 20:41:35 +00001370 if (err)
1371 goto out;
Don Skidmore2b509c02014-11-01 01:06:57 +00001372 err = ixgbe_enable_port_vlan(adapter, vf, vlan, qos);
Greg Rose7f016482010-05-04 22:12:06 +00001373 } else {
Don Skidmore2b509c02014-11-01 01:06:57 +00001374 err = ixgbe_disable_port_vlan(adapter, vf);
Jacob Kellere7cf7452014-04-09 06:03:10 +00001375 }
Don Skidmore2b509c02014-11-01 01:06:57 +00001376
Greg Rose7f016482010-05-04 22:12:06 +00001377out:
Jacob Kellere7cf7452014-04-09 06:03:10 +00001378 return err;
Greg Rose7f016482010-05-04 22:12:06 +00001379}
1380
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001381static int ixgbe_link_mbps(struct ixgbe_adapter *adapter)
Lior Levyff4ab202011-03-11 02:03:07 +00001382{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001383 switch (adapter->link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001384 case IXGBE_LINK_SPEED_100_FULL:
1385 return 100;
1386 case IXGBE_LINK_SPEED_1GB_FULL:
1387 return 1000;
1388 case IXGBE_LINK_SPEED_10GB_FULL:
1389 return 10000;
1390 default:
1391 return 0;
1392 }
1393}
1394
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001395static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf)
Lior Levyff4ab202011-03-11 02:03:07 +00001396{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001397 struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1398 struct ixgbe_hw *hw = &adapter->hw;
1399 u32 bcnrc_val = 0;
1400 u16 queue, queues_per_pool;
1401 u16 tx_rate = adapter->vfinfo[vf].tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001402
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001403 if (tx_rate) {
1404 /* start with base link speed value */
1405 bcnrc_val = adapter->vf_rate_link_speed;
1406
Lior Levyff4ab202011-03-11 02:03:07 +00001407 /* Calculate the rate factor values to set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001408 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1409 bcnrc_val /= tx_rate;
Lior Levyff4ab202011-03-11 02:03:07 +00001410
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001411 /* clear everything but the rate factor */
1412 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1413 IXGBE_RTTBCNRC_RF_DEC_MASK;
1414
1415 /* enable the rate scheduler */
1416 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
Lior Levyff4ab202011-03-11 02:03:07 +00001417 }
1418
Lior Levy7555e832011-06-25 00:09:08 -07001419 /*
1420 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
1421 * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported
1422 * and 0x004 otherwise.
1423 */
1424 switch (hw->mac.type) {
1425 case ixgbe_mac_82599EB:
1426 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4);
1427 break;
1428 case ixgbe_mac_X540:
1429 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14);
1430 break;
1431 default:
1432 break;
1433 }
1434
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001435 /* determine how many queues per pool based on VMDq mask */
1436 queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
1437
1438 /* write value for all Tx queues belonging to VF */
1439 for (queue = 0; queue < queues_per_pool; queue++) {
1440 unsigned int reg_idx = (vf * queues_per_pool) + queue;
1441
1442 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx);
1443 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1444 }
Lior Levyff4ab202011-03-11 02:03:07 +00001445}
1446
1447void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter)
1448{
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001449 int i;
Lior Levyff4ab202011-03-11 02:03:07 +00001450
1451 /* VF Tx rate limit was not set */
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001452 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001453 return;
1454
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001455 if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) {
Lior Levyff4ab202011-03-11 02:03:07 +00001456 adapter->vf_rate_link_speed = 0;
1457 dev_info(&adapter->pdev->dev,
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001458 "Link speed has been changed. VF Transmit rate is disabled\n");
Lior Levyff4ab202011-03-11 02:03:07 +00001459 }
1460
1461 for (i = 0; i < adapter->num_vfs; i++) {
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001462 if (!adapter->vf_rate_link_speed)
Lior Levyff4ab202011-03-11 02:03:07 +00001463 adapter->vfinfo[i].tx_rate = 0;
1464
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001465 ixgbe_set_vf_rate_limit(adapter, i);
Lior Levyff4ab202011-03-11 02:03:07 +00001466 }
1467}
1468
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001469int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int min_tx_rate,
1470 int max_tx_rate)
Greg Rose7f016482010-05-04 22:12:06 +00001471{
Lior Levyff4ab202011-03-11 02:03:07 +00001472 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001473 int link_speed;
Lior Levyff4ab202011-03-11 02:03:07 +00001474
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001475 /* verify VF is active */
1476 if (vf >= adapter->num_vfs)
Lior Levyff4ab202011-03-11 02:03:07 +00001477 return -EINVAL;
1478
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001479 /* verify link is up */
1480 if (!adapter->link_up)
1481 return -EINVAL;
1482
1483 /* verify we are linked at 10Gbps */
1484 link_speed = ixgbe_link_mbps(adapter);
1485 if (link_speed != 10000)
1486 return -EINVAL;
1487
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001488 if (min_tx_rate)
1489 return -EINVAL;
1490
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001491 /* rate limit cannot be less than 10Mbs or greater than link speed */
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001492 if (max_tx_rate && ((max_tx_rate <= 10) || (max_tx_rate > link_speed)))
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001493 return -EINVAL;
1494
1495 /* store values */
1496 adapter->vf_rate_link_speed = link_speed;
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001497 adapter->vfinfo[vf].tx_rate = max_tx_rate;
Alexander Duyck9f66d3e2012-07-20 08:09:06 +00001498
1499 /* update hardware configuration */
1500 ixgbe_set_vf_rate_limit(adapter, vf);
Lior Levyff4ab202011-03-11 02:03:07 +00001501
1502 return 0;
Greg Rose7f016482010-05-04 22:12:06 +00001503}
1504
Greg Rosede4c7f62011-09-29 05:57:33 +00001505int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting)
1506{
1507 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1508 int vf_target_reg = vf >> 3;
1509 int vf_target_shift = vf % 8;
1510 struct ixgbe_hw *hw = &adapter->hw;
1511 u32 regval;
1512
Emil Tantilov600a5072014-10-16 15:49:02 +00001513 if (vf >= adapter->num_vfs)
1514 return -EINVAL;
1515
Greg Rosede4c7f62011-09-29 05:57:33 +00001516 adapter->vfinfo[vf].spoofchk_enabled = setting;
1517
1518 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1519 regval &= ~(1 << vf_target_shift);
1520 regval |= (setting << vf_target_shift);
1521 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1522
1523 if (adapter->vfinfo[vf].vlan_count) {
1524 vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT;
1525 regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg));
1526 regval &= ~(1 << vf_target_shift);
1527 regval |= (setting << vf_target_shift);
1528 IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval);
1529 }
1530
1531 return 0;
1532}
1533
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03001534int ixgbe_ndo_set_vf_rss_query_en(struct net_device *netdev, int vf,
1535 bool setting)
1536{
1537 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1538
1539 /* This operation is currently supported only for 82599 and x540
1540 * devices.
1541 */
1542 if (adapter->hw.mac.type < ixgbe_mac_82599EB ||
1543 adapter->hw.mac.type >= ixgbe_mac_X550)
1544 return -EOPNOTSUPP;
1545
1546 if (vf >= adapter->num_vfs)
1547 return -EINVAL;
1548
1549 adapter->vfinfo[vf].rss_query_enabled = setting;
1550
1551 return 0;
1552}
1553
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00001554int ixgbe_ndo_set_vf_trust(struct net_device *netdev, int vf, bool setting)
1555{
1556 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1557
1558 if (vf >= adapter->num_vfs)
1559 return -EINVAL;
1560
1561 /* nothing to do */
1562 if (adapter->vfinfo[vf].trusted == setting)
1563 return 0;
1564
1565 adapter->vfinfo[vf].trusted = setting;
1566
1567 /* reset VF to reconfigure features */
1568 adapter->vfinfo[vf].clear_to_send = false;
1569 ixgbe_ping_vf(adapter, vf);
1570
1571 e_info(drv, "VF %u is %strusted\n", vf, setting ? "" : "not ");
1572
1573 return 0;
1574}
1575
Greg Rose7f016482010-05-04 22:12:06 +00001576int ixgbe_ndo_get_vf_config(struct net_device *netdev,
1577 int vf, struct ifla_vf_info *ivi)
1578{
1579 struct ixgbe_adapter *adapter = netdev_priv(netdev);
1580 if (vf >= adapter->num_vfs)
1581 return -EINVAL;
1582 ivi->vf = vf;
1583 memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN);
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04001584 ivi->max_tx_rate = adapter->vfinfo[vf].tx_rate;
1585 ivi->min_tx_rate = 0;
Greg Rose7f016482010-05-04 22:12:06 +00001586 ivi->vlan = adapter->vfinfo[vf].pf_vlan;
1587 ivi->qos = adapter->vfinfo[vf].pf_qos;
Greg Rosede4c7f62011-09-29 05:57:33 +00001588 ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled;
Vlad Zolotarove65ce0d2015-03-30 21:35:24 +03001589 ivi->rss_query_en = adapter->vfinfo[vf].rss_query_enabled;
Hiroshi Shimamoto54011e42015-08-28 06:58:33 +00001590 ivi->trusted = adapter->vfinfo[vf].trusted;
Greg Rose7f016482010-05-04 22:12:06 +00001591 return 0;
1592}