GNU Linux-libre 4.14.328-gnu1
[releases.git] / drivers / net / ethernet / intel / ixgbe / ixgbe_sriov.c
1 /*******************************************************************************
2
3   Intel 10 Gigabit PCI Express Linux driver
4   Copyright(c) 1999 - 2015 Intel Corporation.
5
6   This program is free software; you can redistribute it and/or modify it
7   under the terms and conditions of the GNU General Public License,
8   version 2, as published by the Free Software Foundation.
9
10   This program is distributed in the hope it will be useful, but WITHOUT
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13   more details.
14
15   You should have received a copy of the GNU General Public License along with
16   this program; if not, write to the Free Software Foundation, Inc.,
17   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19   The full GNU General Public License is included in this distribution in
20   the file called "COPYING".
21
22   Contact Information:
23   Linux NICS <linux.nics@intel.com>
24   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
29 #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>
39 #include <linux/if_bridge.h>
40 #ifdef NETIF_F_HW_VLAN_CTAG_TX
41 #include <linux/if_vlan.h>
42 #endif
43
44 #include "ixgbe.h"
45 #include "ixgbe_type.h"
46 #include "ixgbe_sriov.h"
47
48 #ifdef CONFIG_PCI_IOV
49 static inline void ixgbe_alloc_vf_macvlans(struct ixgbe_adapter *adapter,
50                                            unsigned int num_vfs)
51 {
52         struct ixgbe_hw *hw = &adapter->hw;
53         struct vf_macvlans *mv_list;
54         int num_vf_macvlans, i;
55
56         /* Initialize list of VF macvlans */
57         INIT_LIST_HEAD(&adapter->vf_mvs.l);
58
59         num_vf_macvlans = hw->mac.num_rar_entries -
60                           (IXGBE_MAX_PF_MACVLANS + 1 + num_vfs);
61         if (!num_vf_macvlans)
62                 return;
63
64         mv_list = kcalloc(num_vf_macvlans, sizeof(struct vf_macvlans),
65                           GFP_KERNEL);
66         if (mv_list) {
67                 for (i = 0; i < num_vf_macvlans; i++) {
68                         mv_list[i].vf = -1;
69                         mv_list[i].free = true;
70                         list_add(&mv_list[i].l, &adapter->vf_mvs.l);
71                 }
72                 adapter->mv_list = mv_list;
73         }
74 }
75
76 static int __ixgbe_enable_sriov(struct ixgbe_adapter *adapter,
77                                 unsigned int num_vfs)
78 {
79         struct ixgbe_hw *hw = &adapter->hw;
80         int i;
81
82         adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED;
83
84         /* Enable VMDq flag so device will be set in VM mode */
85         adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED;
86         if (!adapter->ring_feature[RING_F_VMDQ].limit)
87                 adapter->ring_feature[RING_F_VMDQ].limit = 1;
88
89         /* Allocate memory for per VF control structures */
90         adapter->vfinfo = kcalloc(num_vfs, sizeof(struct vf_data_storage),
91                                   GFP_KERNEL);
92         if (!adapter->vfinfo)
93                 return -ENOMEM;
94
95         adapter->num_vfs = num_vfs;
96
97         ixgbe_alloc_vf_macvlans(adapter, num_vfs);
98         adapter->ring_feature[RING_F_VMDQ].offset = num_vfs;
99
100         /* Initialize default switching mode VEB */
101         IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
102         adapter->bridge_mode = BRIDGE_MODE_VEB;
103
104         /* limit trafffic classes based on VFs enabled */
105         if ((adapter->hw.mac.type == ixgbe_mac_82599EB) && (num_vfs < 16)) {
106                 adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS;
107                 adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS;
108         } else if (num_vfs < 32) {
109                 adapter->dcb_cfg.num_tcs.pg_tcs = 4;
110                 adapter->dcb_cfg.num_tcs.pfc_tcs = 4;
111         } else {
112                 adapter->dcb_cfg.num_tcs.pg_tcs = 1;
113                 adapter->dcb_cfg.num_tcs.pfc_tcs = 1;
114         }
115
116         /* Disable RSC when in SR-IOV mode */
117         adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE |
118                              IXGBE_FLAG2_RSC_ENABLED);
119
120         for (i = 0; i < num_vfs; i++) {
121                 /* enable spoof checking for all VFs */
122                 adapter->vfinfo[i].spoofchk_enabled = true;
123
124                 /* We support VF RSS querying only for 82599 and x540
125                  * devices at the moment. These devices share RSS
126                  * indirection table and RSS hash key with PF therefore
127                  * we want to disable the querying by default.
128                  */
129                 adapter->vfinfo[i].rss_query_enabled = 0;
130
131                 /* Untrust all VFs */
132                 adapter->vfinfo[i].trusted = false;
133
134                 /* set the default xcast mode */
135                 adapter->vfinfo[i].xcast_mode = IXGBEVF_XCAST_MODE_NONE;
136         }
137
138         e_info(probe, "SR-IOV enabled with %d VFs\n", num_vfs);
139         return 0;
140 }
141
142 /**
143  * ixgbe_get_vfs - Find and take references to all vf devices
144  * @adapter: Pointer to adapter struct
145  */
146 static void ixgbe_get_vfs(struct ixgbe_adapter *adapter)
147 {
148         struct pci_dev *pdev = adapter->pdev;
149         u16 vendor = pdev->vendor;
150         struct pci_dev *vfdev;
151         int vf = 0;
152         u16 vf_id;
153         int pos;
154
155         pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
156         if (!pos)
157                 return;
158         pci_read_config_word(pdev, pos + PCI_SRIOV_VF_DID, &vf_id);
159
160         vfdev = pci_get_device(vendor, vf_id, NULL);
161         for (; vfdev; vfdev = pci_get_device(vendor, vf_id, vfdev)) {
162                 if (!vfdev->is_virtfn)
163                         continue;
164                 if (vfdev->physfn != pdev)
165                         continue;
166                 if (vf >= adapter->num_vfs)
167                         continue;
168                 pci_dev_get(vfdev);
169                 adapter->vfinfo[vf].vfdev = vfdev;
170                 ++vf;
171         }
172 }
173
174 /* Note this function is called when the user wants to enable SR-IOV
175  * VFs using the now deprecated module parameter
176  */
177 void ixgbe_enable_sriov(struct ixgbe_adapter *adapter, unsigned int max_vfs)
178 {
179         int pre_existing_vfs = 0;
180         unsigned int num_vfs;
181
182         pre_existing_vfs = pci_num_vf(adapter->pdev);
183         if (!pre_existing_vfs && !max_vfs)
184                 return;
185
186         /* If there are pre-existing VFs then we have to force
187          * use of that many - over ride any module parameter value.
188          * This may result from the user unloading the PF driver
189          * while VFs were assigned to guest VMs or because the VFs
190          * have been created via the new PCI SR-IOV sysfs interface.
191          */
192         if (pre_existing_vfs) {
193                 num_vfs = pre_existing_vfs;
194                 dev_warn(&adapter->pdev->dev,
195                          "Virtual Functions already enabled for this device - Please reload all VF drivers to avoid spoofed packet errors\n");
196         } else {
197                 int err;
198                 /*
199                  * The 82599 supports up to 64 VFs per physical function
200                  * but this implementation limits allocation to 63 so that
201                  * basic networking resources are still available to the
202                  * physical function.  If the user requests greater than
203                  * 63 VFs then it is an error - reset to default of zero.
204                  */
205                 num_vfs = min_t(unsigned int, max_vfs, IXGBE_MAX_VFS_DRV_LIMIT);
206
207                 err = pci_enable_sriov(adapter->pdev, num_vfs);
208                 if (err) {
209                         e_err(probe, "Failed to enable PCI sriov: %d\n", err);
210                         return;
211                 }
212         }
213
214         if (!__ixgbe_enable_sriov(adapter, num_vfs)) {
215                 ixgbe_get_vfs(adapter);
216                 return;
217         }
218
219         /* If we have gotten to this point then there is no memory available
220          * to manage the VF devices - print message and bail.
221          */
222         e_err(probe, "Unable to allocate memory for VF Data Storage - "
223               "SRIOV disabled\n");
224         ixgbe_disable_sriov(adapter);
225 }
226
227 #endif /* #ifdef CONFIG_PCI_IOV */
228 int ixgbe_disable_sriov(struct ixgbe_adapter *adapter)
229 {
230         unsigned int num_vfs = adapter->num_vfs, vf;
231         struct ixgbe_hw *hw = &adapter->hw;
232         u32 gpie;
233         u32 vmdctl;
234         int rss;
235
236         /* set num VFs to 0 to prevent access to vfinfo */
237         adapter->num_vfs = 0;
238
239         /* put the reference to all of the vf devices */
240         for (vf = 0; vf < num_vfs; ++vf) {
241                 struct pci_dev *vfdev = adapter->vfinfo[vf].vfdev;
242
243                 if (!vfdev)
244                         continue;
245                 adapter->vfinfo[vf].vfdev = NULL;
246                 pci_dev_put(vfdev);
247         }
248
249         /* free VF control structures */
250         kfree(adapter->vfinfo);
251         adapter->vfinfo = NULL;
252
253         /* free macvlan list */
254         kfree(adapter->mv_list);
255         adapter->mv_list = NULL;
256
257         /* if SR-IOV is already disabled then there is nothing to do */
258         if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED))
259                 return 0;
260
261 #ifdef CONFIG_PCI_IOV
262         /*
263          * If our VFs are assigned we cannot shut down SR-IOV
264          * without causing issues, so just leave the hardware
265          * available but disabled
266          */
267         if (pci_vfs_assigned(adapter->pdev)) {
268                 e_dev_warn("Unloading driver while VFs are assigned - VFs will not be deallocated\n");
269                 return -EPERM;
270         }
271         /* disable iov and allow time for transactions to clear */
272         pci_disable_sriov(adapter->pdev);
273 #endif
274
275         /* turn off device IOV mode */
276         IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0);
277         gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
278         gpie &= ~IXGBE_GPIE_VTMODE_MASK;
279         IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
280
281         /* set default pool back to 0 */
282         vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
283         vmdctl &= ~IXGBE_VT_CTL_POOL_MASK;
284         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl);
285         IXGBE_WRITE_FLUSH(hw);
286
287         /* Disable VMDq flag so device will be set in VM mode */
288         if (adapter->ring_feature[RING_F_VMDQ].limit == 1) {
289                 adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED;
290                 adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED;
291                 rss = min_t(int, ixgbe_max_rss_indices(adapter),
292                             num_online_cpus());
293         } else {
294                 rss = min_t(int, IXGBE_MAX_L2A_QUEUES, num_online_cpus());
295         }
296
297         adapter->ring_feature[RING_F_VMDQ].offset = 0;
298         adapter->ring_feature[RING_F_RSS].limit = rss;
299
300         /* take a breather then clean up driver data */
301         msleep(100);
302         return 0;
303 }
304
305 static int ixgbe_pci_sriov_enable(struct pci_dev *dev, int num_vfs)
306 {
307 #ifdef CONFIG_PCI_IOV
308         struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
309         int err = 0;
310         u8 num_tc;
311         int i;
312         int pre_existing_vfs = pci_num_vf(dev);
313
314         if (pre_existing_vfs && pre_existing_vfs != num_vfs)
315                 err = ixgbe_disable_sriov(adapter);
316         else if (pre_existing_vfs && pre_existing_vfs == num_vfs)
317                 return num_vfs;
318
319         if (err)
320                 return err;
321
322         /* While the SR-IOV capability structure reports total VFs to be 64,
323          * we limit the actual number allocated as below based on two factors.
324          *    Num_TCs   MAX_VFs
325          *      1         63
326          *      <=4       31
327          *      >4        15
328          * First, we reserve some transmit/receive resources for the PF.
329          * Second, VMDQ also uses the same pools that SR-IOV does. We need to
330          * account for this, so that we don't accidentally allocate more VFs
331          * than we have available pools. The PCI bus driver already checks for
332          * other values out of range.
333          */
334         num_tc = netdev_get_num_tc(adapter->netdev);
335
336         if (num_tc > 4) {
337                 if ((num_vfs + adapter->num_rx_pools) > IXGBE_MAX_VFS_8TC) {
338                         e_dev_err("Currently the device is configured with %d TCs, Creating more than %d VFs is not allowed\n", num_tc, IXGBE_MAX_VFS_8TC);
339                         return -EPERM;
340                 }
341         } else if ((num_tc > 1) && (num_tc <= 4)) {
342                 if ((num_vfs + adapter->num_rx_pools) > IXGBE_MAX_VFS_4TC) {
343                         e_dev_err("Currently the device is configured with %d TCs, Creating more than %d VFs is not allowed\n", num_tc, IXGBE_MAX_VFS_4TC);
344                         return -EPERM;
345                 }
346         } else {
347                 if ((num_vfs + adapter->num_rx_pools) > IXGBE_MAX_VFS_1TC) {
348                         e_dev_err("Currently the device is configured with %d TCs, Creating more than %d VFs is not allowed\n", num_tc, IXGBE_MAX_VFS_1TC);
349                         return -EPERM;
350                 }
351         }
352
353         err = __ixgbe_enable_sriov(adapter, num_vfs);
354         if (err)
355                 return  err;
356
357         for (i = 0; i < num_vfs; i++)
358                 ixgbe_vf_configuration(dev, (i | 0x10000000));
359
360         /* reset before enabling SRIOV to avoid mailbox issues */
361         ixgbe_sriov_reinit(adapter);
362
363         err = pci_enable_sriov(dev, num_vfs);
364         if (err) {
365                 e_dev_warn("Failed to enable PCI sriov: %d\n", err);
366                 return err;
367         }
368         ixgbe_get_vfs(adapter);
369
370         return num_vfs;
371 #else
372         return 0;
373 #endif
374 }
375
376 static int ixgbe_pci_sriov_disable(struct pci_dev *dev)
377 {
378         struct ixgbe_adapter *adapter = pci_get_drvdata(dev);
379         int err;
380 #ifdef CONFIG_PCI_IOV
381         u32 current_flags = adapter->flags;
382 #endif
383
384         err = ixgbe_disable_sriov(adapter);
385
386         /* Only reinit if no error and state changed */
387 #ifdef CONFIG_PCI_IOV
388         if (!err && current_flags != adapter->flags)
389                 ixgbe_sriov_reinit(adapter);
390 #endif
391
392         return err;
393 }
394
395 int ixgbe_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
396 {
397         if (num_vfs == 0)
398                 return ixgbe_pci_sriov_disable(dev);
399         else
400                 return ixgbe_pci_sriov_enable(dev, num_vfs);
401 }
402
403 static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
404                                    u32 *msgbuf, u32 vf)
405 {
406         int entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
407                        >> IXGBE_VT_MSGINFO_SHIFT;
408         u16 *hash_list = (u16 *)&msgbuf[1];
409         struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
410         struct ixgbe_hw *hw = &adapter->hw;
411         int i;
412         u32 vector_bit;
413         u32 vector_reg;
414         u32 mta_reg;
415         u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
416
417         /* only so many hash values supported */
418         entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES);
419
420         /*
421          * salt away the number of multi cast addresses assigned
422          * to this VF for later use to restore when the PF multi cast
423          * list changes
424          */
425         vfinfo->num_vf_mc_hashes = entries;
426
427         /*
428          * VFs are limited to using the MTA hash table for their multicast
429          * addresses
430          */
431         for (i = 0; i < entries; i++) {
432                 vfinfo->vf_mc_hashes[i] = hash_list[i];
433         }
434
435         for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
436                 vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F;
437                 vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F;
438                 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
439                 mta_reg |= BIT(vector_bit);
440                 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
441         }
442         vmolr |= IXGBE_VMOLR_ROMPE;
443         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
444
445         return 0;
446 }
447
448 #ifdef CONFIG_PCI_IOV
449 void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter)
450 {
451         struct ixgbe_hw *hw = &adapter->hw;
452         struct vf_data_storage *vfinfo;
453         int i, j;
454         u32 vector_bit;
455         u32 vector_reg;
456         u32 mta_reg;
457
458         for (i = 0; i < adapter->num_vfs; i++) {
459                 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(i));
460                 vfinfo = &adapter->vfinfo[i];
461                 for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) {
462                         hw->addr_ctrl.mta_in_use++;
463                         vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F;
464                         vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F;
465                         mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
466                         mta_reg |= BIT(vector_bit);
467                         IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
468                 }
469
470                 if (vfinfo->num_vf_mc_hashes)
471                         vmolr |= IXGBE_VMOLR_ROMPE;
472                 else
473                         vmolr &= ~IXGBE_VMOLR_ROMPE;
474                 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(i), vmolr);
475         }
476
477         /* Restore any VF macvlans */
478         ixgbe_full_sync_mac_table(adapter);
479 }
480 #endif
481
482 static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid,
483                              u32 vf)
484 {
485         struct ixgbe_hw *hw = &adapter->hw;
486         int err;
487
488         /* If VLAN overlaps with one the PF is currently monitoring make
489          * sure that we are able to allocate a VLVF entry.  This may be
490          * redundant but it guarantees PF will maintain visibility to
491          * the VLAN.
492          */
493         if (add && test_bit(vid, adapter->active_vlans)) {
494                 err = hw->mac.ops.set_vfta(hw, vid, VMDQ_P(0), true, false);
495                 if (err)
496                         return err;
497         }
498
499         err = hw->mac.ops.set_vfta(hw, vid, vf, !!add, false);
500
501         if (add && !err)
502                 return err;
503
504         /* If we failed to add the VF VLAN or we are removing the VF VLAN
505          * we may need to drop the PF pool bit in order to allow us to free
506          * up the VLVF resources.
507          */
508         if (test_bit(vid, adapter->active_vlans) ||
509             (adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
510                 ixgbe_update_pf_promisc_vlvf(adapter, vid);
511
512         return err;
513 }
514
515 static int ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 max_frame, u32 vf)
516 {
517         struct ixgbe_hw *hw = &adapter->hw;
518         u32 max_frs;
519
520         if (max_frame < ETH_MIN_MTU || max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) {
521                 e_err(drv, "VF max_frame %d out of range\n", max_frame);
522                 return -EINVAL;
523         }
524
525         /*
526          * For 82599EB we have to keep all PFs and VFs operating with
527          * the same max_frame value in order to avoid sending an oversize
528          * frame to a VF.  In order to guarantee this is handled correctly
529          * for all cases we have several special exceptions to take into
530          * account before we can enable the VF for receive
531          */
532         if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
533                 struct net_device *dev = adapter->netdev;
534                 int pf_max_frame = dev->mtu + ETH_HLEN;
535                 u32 reg_offset, vf_shift, vfre;
536                 s32 err = 0;
537
538 #ifdef CONFIG_FCOE
539                 if (dev->features & NETIF_F_FCOE_MTU)
540                         pf_max_frame = max_t(int, pf_max_frame,
541                                              IXGBE_FCOE_JUMBO_FRAME_SIZE);
542
543 #endif /* CONFIG_FCOE */
544                 switch (adapter->vfinfo[vf].vf_api) {
545                 case ixgbe_mbox_api_11:
546                 case ixgbe_mbox_api_12:
547                 case ixgbe_mbox_api_13:
548                         /* Version 1.1 supports jumbo frames on VFs if PF has
549                          * jumbo frames enabled which means legacy VFs are
550                          * disabled
551                          */
552                         if (pf_max_frame > ETH_FRAME_LEN)
553                                 break;
554                         /* fall through */
555                 default:
556                         /* If the PF or VF are running w/ jumbo frames enabled
557                          * we need to shut down the VF Rx path as we cannot
558                          * support jumbo frames on legacy VFs
559                          */
560                         if ((pf_max_frame > ETH_FRAME_LEN) ||
561                             (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN)))
562                                 err = -EINVAL;
563                         break;
564                 }
565
566                 /* determine VF receive enable location */
567                 vf_shift = vf % 32;
568                 reg_offset = vf / 32;
569
570                 /* enable or disable receive depending on error */
571                 vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
572                 if (err)
573                         vfre &= ~BIT(vf_shift);
574                 else
575                         vfre |= BIT(vf_shift);
576                 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre);
577
578                 if (err) {
579                         e_err(drv, "VF max_frame %d out of range\n", max_frame);
580                         return err;
581                 }
582         }
583
584         /* pull current max frame size from hardware */
585         max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS);
586         max_frs &= IXGBE_MHADD_MFS_MASK;
587         max_frs >>= IXGBE_MHADD_MFS_SHIFT;
588
589         if (max_frs < max_frame) {
590                 max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT;
591                 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
592         }
593
594         e_info(hw, "VF requests change max MTU to %d\n", max_frame);
595
596         return 0;
597 }
598
599 static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
600 {
601         u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
602         vmolr |= IXGBE_VMOLR_BAM;
603         if (aupe)
604                 vmolr |= IXGBE_VMOLR_AUPE;
605         else
606                 vmolr &= ~IXGBE_VMOLR_AUPE;
607         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
608 }
609
610 static void ixgbe_clear_vmvir(struct ixgbe_adapter *adapter, u32 vf)
611 {
612         struct ixgbe_hw *hw = &adapter->hw;
613
614         IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
615 }
616
617 static void ixgbe_clear_vf_vlans(struct ixgbe_adapter *adapter, u32 vf)
618 {
619         struct ixgbe_hw *hw = &adapter->hw;
620         u32 vlvfb_mask, pool_mask, i;
621
622         /* create mask for VF and other pools */
623         pool_mask = ~BIT(VMDQ_P(0) % 32);
624         vlvfb_mask = BIT(vf % 32);
625
626         /* post increment loop, covers VLVF_ENTRIES - 1 to 0 */
627         for (i = IXGBE_VLVF_ENTRIES; i--;) {
628                 u32 bits[2], vlvfb, vid, vfta, vlvf;
629                 u32 word = i * 2 + vf / 32;
630                 u32 mask;
631
632                 vlvfb = IXGBE_READ_REG(hw, IXGBE_VLVFB(word));
633
634                 /* if our bit isn't set we can skip it */
635                 if (!(vlvfb & vlvfb_mask))
636                         continue;
637
638                 /* clear our bit from vlvfb */
639                 vlvfb ^= vlvfb_mask;
640
641                 /* create 64b mask to chedk to see if we should clear VLVF */
642                 bits[word % 2] = vlvfb;
643                 bits[~word % 2] = IXGBE_READ_REG(hw, IXGBE_VLVFB(word ^ 1));
644
645                 /* if other pools are present, just remove ourselves */
646                 if (bits[(VMDQ_P(0) / 32) ^ 1] ||
647                     (bits[VMDQ_P(0) / 32] & pool_mask))
648                         goto update_vlvfb;
649
650                 /* if PF is present, leave VFTA */
651                 if (bits[0] || bits[1])
652                         goto update_vlvf;
653
654                 /* if we cannot determine VLAN just remove ourselves */
655                 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(i));
656                 if (!vlvf)
657                         goto update_vlvfb;
658
659                 vid = vlvf & VLAN_VID_MASK;
660                 mask = BIT(vid % 32);
661
662                 /* clear bit from VFTA */
663                 vfta = IXGBE_READ_REG(hw, IXGBE_VFTA(vid / 32));
664                 if (vfta & mask)
665                         IXGBE_WRITE_REG(hw, IXGBE_VFTA(vid / 32), vfta ^ mask);
666 update_vlvf:
667                 /* clear POOL selection enable */
668                 IXGBE_WRITE_REG(hw, IXGBE_VLVF(i), 0);
669
670                 if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC))
671                         vlvfb = 0;
672 update_vlvfb:
673                 /* clear pool bits */
674                 IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), vlvfb);
675         }
676 }
677
678 static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter,
679                                 int vf, int index, unsigned char *mac_addr)
680 {
681         struct vf_macvlans *entry;
682         struct list_head *pos;
683         int retval = 0;
684
685         if (index <= 1) {
686                 list_for_each(pos, &adapter->vf_mvs.l) {
687                         entry = list_entry(pos, struct vf_macvlans, l);
688                         if (entry->vf == vf) {
689                                 entry->vf = -1;
690                                 entry->free = true;
691                                 entry->is_macvlan = false;
692                                 ixgbe_del_mac_filter(adapter,
693                                                      entry->vf_macvlan, vf);
694                         }
695                 }
696         }
697
698         /*
699          * If index was zero then we were asked to clear the uc list
700          * for the VF.  We're done.
701          */
702         if (!index)
703                 return 0;
704
705         entry = NULL;
706
707         list_for_each(pos, &adapter->vf_mvs.l) {
708                 entry = list_entry(pos, struct vf_macvlans, l);
709                 if (entry->free)
710                         break;
711         }
712
713         /*
714          * If we traversed the entire list and didn't find a free entry
715          * then we're out of space on the RAR table.  Also entry may
716          * be NULL because the original memory allocation for the list
717          * failed, which is not fatal but does mean we can't support
718          * VF requests for MACVLAN because we couldn't allocate
719          * memory for the list management required.
720          */
721         if (!entry || !entry->free)
722                 return -ENOSPC;
723
724         retval = ixgbe_add_mac_filter(adapter, mac_addr, vf);
725         if (retval < 0)
726                 return retval;
727
728         entry->free = false;
729         entry->is_macvlan = true;
730         entry->vf = vf;
731         memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN);
732
733         return 0;
734 }
735
736 static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf)
737 {
738         struct ixgbe_hw *hw = &adapter->hw;
739         struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
740         u8 num_tcs = netdev_get_num_tc(adapter->netdev);
741
742         /* remove VLAN filters beloning to this VF */
743         ixgbe_clear_vf_vlans(adapter, vf);
744
745         /* add back PF assigned VLAN or VLAN 0 */
746         ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf);
747
748         /* reset offloads to defaults */
749         ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan);
750
751         /* set outgoing tags for VFs */
752         if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) {
753                 ixgbe_clear_vmvir(adapter, vf);
754         } else {
755                 if (vfinfo->pf_qos || !num_tcs)
756                         ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
757                                         vfinfo->pf_qos, vf);
758                 else
759                         ixgbe_set_vmvir(adapter, vfinfo->pf_vlan,
760                                         adapter->default_up, vf);
761
762                 if (vfinfo->spoofchk_enabled) {
763                         hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf);
764                         hw->mac.ops.set_mac_anti_spoofing(hw, true, vf);
765                 }
766         }
767
768         /* reset multicast table array for vf */
769         adapter->vfinfo[vf].num_vf_mc_hashes = 0;
770
771         /* Flush and reset the mta with the new values */
772         ixgbe_set_rx_mode(adapter->netdev);
773
774         ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
775         ixgbe_set_vf_macvlan(adapter, vf, 0, NULL);
776
777         /* reset VF api back to unknown */
778         adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10;
779 }
780
781 static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
782                             int vf, unsigned char *mac_addr)
783 {
784         s32 retval;
785
786         ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf);
787         retval = ixgbe_add_mac_filter(adapter, mac_addr, vf);
788         if (retval >= 0)
789                 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr,
790                        ETH_ALEN);
791         else
792                 memset(adapter->vfinfo[vf].vf_mac_addresses, 0, ETH_ALEN);
793
794         return retval;
795 }
796
797 int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
798 {
799         struct ixgbe_adapter *adapter = pci_get_drvdata(pdev);
800         unsigned int vfn = (event_mask & 0x3f);
801
802         bool enable = ((event_mask & 0x10000000U) != 0);
803
804         if (enable)
805                 eth_zero_addr(adapter->vfinfo[vfn].vf_mac_addresses);
806
807         return 0;
808 }
809
810 static inline void ixgbe_write_qde(struct ixgbe_adapter *adapter, u32 vf,
811                                    u32 qde)
812 {
813         struct ixgbe_hw *hw = &adapter->hw;
814         struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
815         u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
816         int i;
817
818         for (i = vf * q_per_pool; i < ((vf + 1) * q_per_pool); i++) {
819                 u32 reg;
820
821                 /* flush previous write */
822                 IXGBE_WRITE_FLUSH(hw);
823
824                 /* indicate to hardware that we want to set drop enable */
825                 reg = IXGBE_QDE_WRITE | qde;
826                 reg |= i <<  IXGBE_QDE_IDX_SHIFT;
827                 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
828         }
829 }
830
831 static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
832 {
833         struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
834         struct ixgbe_hw *hw = &adapter->hw;
835         unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
836         u32 reg, reg_offset, vf_shift;
837         u32 msgbuf[4] = {0, 0, 0, 0};
838         u8 *addr = (u8 *)(&msgbuf[1]);
839         u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
840         int i;
841
842         e_info(probe, "VF Reset msg received from vf %d\n", vf);
843
844         /* reset the filters for the device */
845         ixgbe_vf_reset_event(adapter, vf);
846
847         /* set vf mac address */
848         if (!is_zero_ether_addr(vf_mac))
849                 ixgbe_set_vf_mac(adapter, vf, vf_mac);
850
851         vf_shift = vf % 32;
852         reg_offset = vf / 32;
853
854         /* enable transmit for vf */
855         reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
856         reg |= BIT(vf_shift);
857         IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
858
859         /* force drop enable for all VF Rx queues */
860         ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
861
862         /* enable receive for vf */
863         reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
864         reg |= BIT(vf_shift);
865         /*
866          * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs.
867          * For more info take a look at ixgbe_set_vf_lpe
868          */
869         if (adapter->hw.mac.type == ixgbe_mac_82599EB) {
870                 struct net_device *dev = adapter->netdev;
871                 int pf_max_frame = dev->mtu + ETH_HLEN;
872
873 #ifdef CONFIG_FCOE
874                 if (dev->features & NETIF_F_FCOE_MTU)
875                         pf_max_frame = max_t(int, pf_max_frame,
876                                              IXGBE_FCOE_JUMBO_FRAME_SIZE);
877
878 #endif /* CONFIG_FCOE */
879                 if (pf_max_frame > ETH_FRAME_LEN)
880                         reg &= ~BIT(vf_shift);
881         }
882         IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
883
884         /* enable VF mailbox for further messages */
885         adapter->vfinfo[vf].clear_to_send = true;
886
887         /* Enable counting of spoofed packets in the SSVPC register */
888         reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
889         reg |= BIT(vf_shift);
890         IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
891
892         /*
893          * Reset the VFs TDWBAL and TDWBAH registers
894          * which are not cleared by an FLR
895          */
896         for (i = 0; i < q_per_pool; i++) {
897                 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBAHn(q_per_pool, vf, i), 0);
898                 IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBALn(q_per_pool, vf, i), 0);
899         }
900
901         /* reply to reset with ack and vf mac address */
902         msgbuf[0] = IXGBE_VF_RESET;
903         if (!is_zero_ether_addr(vf_mac)) {
904                 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
905                 memcpy(addr, vf_mac, ETH_ALEN);
906         } else {
907                 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
908                 dev_warn(&adapter->pdev->dev,
909                          "VF %d has no MAC address assigned, you may have to assign one manually\n",
910                          vf);
911         }
912
913         /*
914          * Piggyback the multicast filter type so VF can compute the
915          * correct vectors
916          */
917         msgbuf[3] = hw->mac.mc_filter_type;
918         ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
919
920         return 0;
921 }
922
923 static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter,
924                                  u32 *msgbuf, u32 vf)
925 {
926         u8 *new_mac = ((u8 *)(&msgbuf[1]));
927
928         if (!is_valid_ether_addr(new_mac)) {
929                 e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
930                 return -1;
931         }
932
933         if (adapter->vfinfo[vf].pf_set_mac && !adapter->vfinfo[vf].trusted &&
934             !ether_addr_equal(adapter->vfinfo[vf].vf_mac_addresses, new_mac)) {
935                 e_warn(drv,
936                        "VF %d attempted to override administratively set MAC address\n"
937                        "Reload the VF driver to resume operations\n",
938                        vf);
939                 return -1;
940         }
941
942         return ixgbe_set_vf_mac(adapter, vf, new_mac) < 0;
943 }
944
945 static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter,
946                                  u32 *msgbuf, u32 vf)
947 {
948         u32 add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT;
949         u32 vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
950         u8 tcs = netdev_get_num_tc(adapter->netdev);
951
952         if (adapter->vfinfo[vf].pf_vlan || tcs) {
953                 e_warn(drv,
954                        "VF %d attempted to override administratively set VLAN configuration\n"
955                        "Reload the VF driver to resume operations\n",
956                        vf);
957                 return -1;
958         }
959
960         /* VLAN 0 is a special case, don't allow it to be removed */
961         if (!vid && !add)
962                 return 0;
963
964         return ixgbe_set_vf_vlan(adapter, add, vid, vf);
965 }
966
967 static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter,
968                                     u32 *msgbuf, u32 vf)
969 {
970         u8 *new_mac = ((u8 *)(&msgbuf[1]));
971         int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
972                     IXGBE_VT_MSGINFO_SHIFT;
973         int err;
974
975         if (adapter->vfinfo[vf].pf_set_mac && !adapter->vfinfo[vf].trusted &&
976             index > 0) {
977                 e_warn(drv,
978                        "VF %d requested MACVLAN filter but is administratively denied\n",
979                        vf);
980                 return -1;
981         }
982
983         /* An non-zero index indicates the VF is setting a filter */
984         if (index) {
985                 if (!is_valid_ether_addr(new_mac)) {
986                         e_warn(drv, "VF %d attempted to set invalid mac\n", vf);
987                         return -1;
988                 }
989
990                 /*
991                  * If the VF is allowed to set MAC filters then turn off
992                  * anti-spoofing to avoid false positives.
993                  */
994                 if (adapter->vfinfo[vf].spoofchk_enabled) {
995                         struct ixgbe_hw *hw = &adapter->hw;
996
997                         hw->mac.ops.set_mac_anti_spoofing(hw, false, vf);
998                         hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf);
999                 }
1000         }
1001
1002         err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac);
1003         if (err == -ENOSPC)
1004                 e_warn(drv,
1005                        "VF %d has requested a MACVLAN filter but there is no space for it\n",
1006                        vf);
1007
1008         return err < 0;
1009 }
1010
1011 static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter,
1012                                   u32 *msgbuf, u32 vf)
1013 {
1014         int api = msgbuf[1];
1015
1016         switch (api) {
1017         case ixgbe_mbox_api_10:
1018         case ixgbe_mbox_api_11:
1019         case ixgbe_mbox_api_12:
1020         case ixgbe_mbox_api_13:
1021                 adapter->vfinfo[vf].vf_api = api;
1022                 return 0;
1023         default:
1024                 break;
1025         }
1026
1027         e_info(drv, "VF %d requested invalid api version %u\n", vf, api);
1028
1029         return -1;
1030 }
1031
1032 static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter,
1033                                u32 *msgbuf, u32 vf)
1034 {
1035         struct net_device *dev = adapter->netdev;
1036         struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1037         unsigned int default_tc = 0;
1038         u8 num_tcs = netdev_get_num_tc(dev);
1039
1040         /* verify the PF is supporting the correct APIs */
1041         switch (adapter->vfinfo[vf].vf_api) {
1042         case ixgbe_mbox_api_20:
1043         case ixgbe_mbox_api_11:
1044         case ixgbe_mbox_api_12:
1045         case ixgbe_mbox_api_13:
1046                 break;
1047         default:
1048                 return -1;
1049         }
1050
1051         /* only allow 1 Tx queue for bandwidth limiting */
1052         msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
1053         msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask);
1054
1055         /* if TCs > 1 determine which TC belongs to default user priority */
1056         if (num_tcs > 1)
1057                 default_tc = netdev_get_prio_tc_map(dev, adapter->default_up);
1058
1059         /* notify VF of need for VLAN tag stripping, and correct queue */
1060         if (num_tcs)
1061                 msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
1062         else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos)
1063                 msgbuf[IXGBE_VF_TRANS_VLAN] = 1;
1064         else
1065                 msgbuf[IXGBE_VF_TRANS_VLAN] = 0;
1066
1067         /* notify VF of default queue */
1068         msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc;
1069
1070         return 0;
1071 }
1072
1073 static int ixgbe_get_vf_reta(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf)
1074 {
1075         u32 i, j;
1076         u32 *out_buf = &msgbuf[1];
1077         const u8 *reta = adapter->rss_indir_tbl;
1078         u32 reta_size = ixgbe_rss_indir_tbl_entries(adapter);
1079
1080         /* Check if operation is permitted */
1081         if (!adapter->vfinfo[vf].rss_query_enabled)
1082                 return -EPERM;
1083
1084         /* verify the PF is supporting the correct API */
1085         switch (adapter->vfinfo[vf].vf_api) {
1086         case ixgbe_mbox_api_13:
1087         case ixgbe_mbox_api_12:
1088                 break;
1089         default:
1090                 return -EOPNOTSUPP;
1091         }
1092
1093         /* This mailbox command is supported (required) only for 82599 and x540
1094          * VFs which support up to 4 RSS queues. Therefore we will compress the
1095          * RETA by saving only 2 bits from each entry. This way we will be able
1096          * to transfer the whole RETA in a single mailbox operation.
1097          */
1098         for (i = 0; i < reta_size / 16; i++) {
1099                 out_buf[i] = 0;
1100                 for (j = 0; j < 16; j++)
1101                         out_buf[i] |= (u32)(reta[16 * i + j] & 0x3) << (2 * j);
1102         }
1103
1104         return 0;
1105 }
1106
1107 static int ixgbe_get_vf_rss_key(struct ixgbe_adapter *adapter,
1108                                 u32 *msgbuf, u32 vf)
1109 {
1110         u32 *rss_key = &msgbuf[1];
1111
1112         /* Check if the operation is permitted */
1113         if (!adapter->vfinfo[vf].rss_query_enabled)
1114                 return -EPERM;
1115
1116         /* verify the PF is supporting the correct API */
1117         switch (adapter->vfinfo[vf].vf_api) {
1118         case ixgbe_mbox_api_13:
1119         case ixgbe_mbox_api_12:
1120                 break;
1121         default:
1122                 return -EOPNOTSUPP;
1123         }
1124
1125         memcpy(rss_key, adapter->rss_key, IXGBE_RSS_KEY_SIZE);
1126
1127         return 0;
1128 }
1129
1130 static int ixgbe_update_vf_xcast_mode(struct ixgbe_adapter *adapter,
1131                                       u32 *msgbuf, u32 vf)
1132 {
1133         struct ixgbe_hw *hw = &adapter->hw;
1134         int xcast_mode = msgbuf[1];
1135         u32 vmolr, fctrl, disable, enable;
1136
1137         /* verify the PF is supporting the correct APIs */
1138         switch (adapter->vfinfo[vf].vf_api) {
1139         case ixgbe_mbox_api_12:
1140                 /* promisc introduced in 1.3 version */
1141                 if (xcast_mode == IXGBEVF_XCAST_MODE_PROMISC)
1142                         return -EOPNOTSUPP;
1143                 /* Fall threw */
1144         case ixgbe_mbox_api_13:
1145                 break;
1146         default:
1147                 return -EOPNOTSUPP;
1148         }
1149
1150         if (xcast_mode > IXGBEVF_XCAST_MODE_MULTI &&
1151             !adapter->vfinfo[vf].trusted) {
1152                 xcast_mode = IXGBEVF_XCAST_MODE_MULTI;
1153         }
1154
1155         if (adapter->vfinfo[vf].xcast_mode == xcast_mode)
1156                 goto out;
1157
1158         switch (xcast_mode) {
1159         case IXGBEVF_XCAST_MODE_NONE:
1160                 disable = IXGBE_VMOLR_ROMPE |
1161                           IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE;
1162                 enable = IXGBE_VMOLR_BAM;
1163                 break;
1164         case IXGBEVF_XCAST_MODE_MULTI:
1165                 disable = IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE;
1166                 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE;
1167                 break;
1168         case IXGBEVF_XCAST_MODE_ALLMULTI:
1169                 disable = IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE;
1170                 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_MPE;
1171                 break;
1172         case IXGBEVF_XCAST_MODE_PROMISC:
1173                 if (hw->mac.type <= ixgbe_mac_82599EB)
1174                         return -EOPNOTSUPP;
1175
1176                 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
1177                 if (!(fctrl & IXGBE_FCTRL_UPE)) {
1178                         /* VF promisc requires PF in promisc */
1179                         e_warn(drv,
1180                                "Enabling VF promisc requires PF in promisc\n");
1181                         return -EPERM;
1182                 }
1183
1184                 disable = IXGBE_VMOLR_VPE;
1185                 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE |
1186                          IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE;
1187                 break;
1188         default:
1189                 return -EOPNOTSUPP;
1190         }
1191
1192         vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
1193         vmolr &= ~disable;
1194         vmolr |= enable;
1195         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
1196
1197         adapter->vfinfo[vf].xcast_mode = xcast_mode;
1198
1199 out:
1200         msgbuf[1] = xcast_mode;
1201
1202         return 0;
1203 }
1204
1205 static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1206 {
1207         u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
1208         u32 msgbuf[IXGBE_VFMAILBOX_SIZE];
1209         struct ixgbe_hw *hw = &adapter->hw;
1210         s32 retval;
1211
1212         retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
1213
1214         if (retval) {
1215                 pr_err("Error receiving message from VF\n");
1216                 return retval;
1217         }
1218
1219         /* this is a message we already processed, do nothing */
1220         if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
1221                 return 0;
1222
1223         /* flush the ack before we write any messages back */
1224         IXGBE_WRITE_FLUSH(hw);
1225
1226         if (msgbuf[0] == IXGBE_VF_RESET)
1227                 return ixgbe_vf_reset_msg(adapter, vf);
1228
1229         /*
1230          * until the vf completes a virtual function reset it should not be
1231          * allowed to start any configuration.
1232          */
1233         if (!adapter->vfinfo[vf].clear_to_send) {
1234                 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1235                 ixgbe_write_mbx(hw, msgbuf, 1, vf);
1236                 return 0;
1237         }
1238
1239         switch ((msgbuf[0] & 0xFFFF)) {
1240         case IXGBE_VF_SET_MAC_ADDR:
1241                 retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf);
1242                 break;
1243         case IXGBE_VF_SET_MULTICAST:
1244                 retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf);
1245                 break;
1246         case IXGBE_VF_SET_VLAN:
1247                 retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf);
1248                 break;
1249         case IXGBE_VF_SET_LPE:
1250                 retval = ixgbe_set_vf_lpe(adapter, msgbuf[1], vf);
1251                 break;
1252         case IXGBE_VF_SET_MACVLAN:
1253                 retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf);
1254                 break;
1255         case IXGBE_VF_API_NEGOTIATE:
1256                 retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf);
1257                 break;
1258         case IXGBE_VF_GET_QUEUES:
1259                 retval = ixgbe_get_vf_queues(adapter, msgbuf, vf);
1260                 break;
1261         case IXGBE_VF_GET_RETA:
1262                 retval = ixgbe_get_vf_reta(adapter, msgbuf, vf);
1263                 break;
1264         case IXGBE_VF_GET_RSS_KEY:
1265                 retval = ixgbe_get_vf_rss_key(adapter, msgbuf, vf);
1266                 break;
1267         case IXGBE_VF_UPDATE_XCAST_MODE:
1268                 retval = ixgbe_update_vf_xcast_mode(adapter, msgbuf, vf);
1269                 break;
1270         default:
1271                 e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]);
1272                 retval = IXGBE_ERR_MBX;
1273                 break;
1274         }
1275
1276         /* notify the VF of the results of what it sent us */
1277         if (retval)
1278                 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
1279         else
1280                 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
1281
1282         msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
1283
1284         ixgbe_write_mbx(hw, msgbuf, mbx_size, vf);
1285
1286         return retval;
1287 }
1288
1289 static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
1290 {
1291         struct ixgbe_hw *hw = &adapter->hw;
1292         u32 msg = IXGBE_VT_MSGTYPE_NACK;
1293
1294         /* if device isn't clear to send it shouldn't be reading either */
1295         if (!adapter->vfinfo[vf].clear_to_send)
1296                 ixgbe_write_mbx(hw, &msg, 1, vf);
1297 }
1298
1299 void ixgbe_msg_task(struct ixgbe_adapter *adapter)
1300 {
1301         struct ixgbe_hw *hw = &adapter->hw;
1302         u32 vf;
1303
1304         for (vf = 0; vf < adapter->num_vfs; vf++) {
1305                 /* process any reset requests */
1306                 if (!ixgbe_check_for_rst(hw, vf))
1307                         ixgbe_vf_reset_event(adapter, vf);
1308
1309                 /* process any messages pending */
1310                 if (!ixgbe_check_for_msg(hw, vf))
1311                         ixgbe_rcv_msg_from_vf(adapter, vf);
1312
1313                 /* process any acks */
1314                 if (!ixgbe_check_for_ack(hw, vf))
1315                         ixgbe_rcv_ack_from_vf(adapter, vf);
1316         }
1317 }
1318
1319 void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
1320 {
1321         struct ixgbe_hw *hw = &adapter->hw;
1322
1323         /* disable transmit and receive for all vfs */
1324         IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
1325         IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
1326
1327         IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
1328         IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
1329 }
1330
1331 static inline void ixgbe_ping_vf(struct ixgbe_adapter *adapter, int vf)
1332 {
1333         struct ixgbe_hw *hw = &adapter->hw;
1334         u32 ping;
1335
1336         ping = IXGBE_PF_CONTROL_MSG;
1337         if (adapter->vfinfo[vf].clear_to_send)
1338                 ping |= IXGBE_VT_MSGTYPE_CTS;
1339         ixgbe_write_mbx(hw, &ping, 1, vf);
1340 }
1341
1342 void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
1343 {
1344         struct ixgbe_hw *hw = &adapter->hw;
1345         u32 ping;
1346         int i;
1347
1348         for (i = 0 ; i < adapter->num_vfs; i++) {
1349                 ping = IXGBE_PF_CONTROL_MSG;
1350                 if (adapter->vfinfo[i].clear_to_send)
1351                         ping |= IXGBE_VT_MSGTYPE_CTS;
1352                 ixgbe_write_mbx(hw, &ping, 1, i);
1353         }
1354 }
1355
1356 int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1357 {
1358         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1359         s32 retval;
1360
1361         if (vf >= adapter->num_vfs)
1362                 return -EINVAL;
1363
1364         if (is_valid_ether_addr(mac)) {
1365                 dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n",
1366                          mac, vf);
1367                 dev_info(&adapter->pdev->dev, "Reload the VF driver to make this change effective.");
1368
1369                 retval = ixgbe_set_vf_mac(adapter, vf, mac);
1370                 if (retval >= 0) {
1371                         adapter->vfinfo[vf].pf_set_mac = true;
1372
1373                         if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1374                                 dev_warn(&adapter->pdev->dev, "The VF MAC address has been set, but the PF device is not up.\n");
1375                                 dev_warn(&adapter->pdev->dev, "Bring the PF device up before attempting to use the VF device.\n");
1376                         }
1377                 } else {
1378                         dev_warn(&adapter->pdev->dev, "The VF MAC address was NOT set due to invalid or duplicate MAC address.\n");
1379                 }
1380         } else if (is_zero_ether_addr(mac)) {
1381                 unsigned char *vf_mac_addr =
1382                                            adapter->vfinfo[vf].vf_mac_addresses;
1383
1384                 /* nothing to do */
1385                 if (is_zero_ether_addr(vf_mac_addr))
1386                         return 0;
1387
1388                 dev_info(&adapter->pdev->dev, "removing MAC on VF %d\n", vf);
1389
1390                 retval = ixgbe_del_mac_filter(adapter, vf_mac_addr, vf);
1391                 if (retval >= 0) {
1392                         adapter->vfinfo[vf].pf_set_mac = false;
1393                         memcpy(vf_mac_addr, mac, ETH_ALEN);
1394                 } else {
1395                         dev_warn(&adapter->pdev->dev, "Could NOT remove the VF MAC address.\n");
1396                 }
1397         } else {
1398                 retval = -EINVAL;
1399         }
1400
1401         return retval;
1402 }
1403
1404 static int ixgbe_enable_port_vlan(struct ixgbe_adapter *adapter, int vf,
1405                                   u16 vlan, u8 qos)
1406 {
1407         struct ixgbe_hw *hw = &adapter->hw;
1408         int err;
1409
1410         err = ixgbe_set_vf_vlan(adapter, true, vlan, vf);
1411         if (err)
1412                 goto out;
1413
1414         /* Revoke tagless access via VLAN 0 */
1415         ixgbe_set_vf_vlan(adapter, false, 0, vf);
1416
1417         ixgbe_set_vmvir(adapter, vlan, qos, vf);
1418         ixgbe_set_vmolr(hw, vf, false);
1419
1420         /* enable hide vlan on X550 */
1421         if (hw->mac.type >= ixgbe_mac_X550)
1422                 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE |
1423                                 IXGBE_QDE_HIDE_VLAN);
1424
1425         adapter->vfinfo[vf].pf_vlan = vlan;
1426         adapter->vfinfo[vf].pf_qos = qos;
1427         dev_info(&adapter->pdev->dev,
1428                  "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf);
1429         if (test_bit(__IXGBE_DOWN, &adapter->state)) {
1430                 dev_warn(&adapter->pdev->dev,
1431                          "The VF VLAN has been set, but the PF device is not up.\n");
1432                 dev_warn(&adapter->pdev->dev,
1433                          "Bring the PF device up before attempting to use the VF device.\n");
1434         }
1435
1436 out:
1437         return err;
1438 }
1439
1440 static int ixgbe_disable_port_vlan(struct ixgbe_adapter *adapter, int vf)
1441 {
1442         struct ixgbe_hw *hw = &adapter->hw;
1443         int err;
1444
1445         err = ixgbe_set_vf_vlan(adapter, false,
1446                                 adapter->vfinfo[vf].pf_vlan, vf);
1447         /* Restore tagless access via VLAN 0 */
1448         ixgbe_set_vf_vlan(adapter, true, 0, vf);
1449         ixgbe_clear_vmvir(adapter, vf);
1450         ixgbe_set_vmolr(hw, vf, true);
1451
1452         /* disable hide VLAN on X550 */
1453         if (hw->mac.type >= ixgbe_mac_X550)
1454                 ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE);
1455
1456         adapter->vfinfo[vf].pf_vlan = 0;
1457         adapter->vfinfo[vf].pf_qos = 0;
1458
1459         return err;
1460 }
1461
1462 int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan,
1463                           u8 qos, __be16 vlan_proto)
1464 {
1465         int err = 0;
1466         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1467
1468         if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7))
1469                 return -EINVAL;
1470         if (vlan_proto != htons(ETH_P_8021Q))
1471                 return -EPROTONOSUPPORT;
1472         if (vlan || qos) {
1473                 /* Check if there is already a port VLAN set, if so
1474                  * we have to delete the old one first before we
1475                  * can set the new one.  The usage model had
1476                  * previously assumed the user would delete the
1477                  * old port VLAN before setting a new one but this
1478                  * is not necessarily the case.
1479                  */
1480                 if (adapter->vfinfo[vf].pf_vlan)
1481                         err = ixgbe_disable_port_vlan(adapter, vf);
1482                 if (err)
1483                         goto out;
1484                 err = ixgbe_enable_port_vlan(adapter, vf, vlan, qos);
1485         } else {
1486                 err = ixgbe_disable_port_vlan(adapter, vf);
1487         }
1488
1489 out:
1490         return err;
1491 }
1492
1493 int ixgbe_link_mbps(struct ixgbe_adapter *adapter)
1494 {
1495         switch (adapter->link_speed) {
1496         case IXGBE_LINK_SPEED_100_FULL:
1497                 return 100;
1498         case IXGBE_LINK_SPEED_1GB_FULL:
1499                 return 1000;
1500         case IXGBE_LINK_SPEED_10GB_FULL:
1501                 return 10000;
1502         default:
1503                 return 0;
1504         }
1505 }
1506
1507 static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf)
1508 {
1509         struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ];
1510         struct ixgbe_hw *hw = &adapter->hw;
1511         u32 bcnrc_val = 0;
1512         u16 queue, queues_per_pool;
1513         u16 tx_rate = adapter->vfinfo[vf].tx_rate;
1514
1515         if (tx_rate) {
1516                 /* start with base link speed value */
1517                 bcnrc_val = adapter->vf_rate_link_speed;
1518
1519                 /* Calculate the rate factor values to set */
1520                 bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT;
1521                 bcnrc_val /= tx_rate;
1522
1523                 /* clear everything but the rate factor */
1524                 bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK |
1525                              IXGBE_RTTBCNRC_RF_DEC_MASK;
1526
1527                 /* enable the rate scheduler */
1528                 bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA;
1529         }
1530
1531         /*
1532          * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM
1533          * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported
1534          * and 0x004 otherwise.
1535          */
1536         switch (hw->mac.type) {
1537         case ixgbe_mac_82599EB:
1538                 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4);
1539                 break;
1540         case ixgbe_mac_X540:
1541                 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14);
1542                 break;
1543         default:
1544                 break;
1545         }
1546
1547         /* determine how many queues per pool based on VMDq mask */
1548         queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask);
1549
1550         /* write value for all Tx queues belonging to VF */
1551         for (queue = 0; queue < queues_per_pool; queue++) {
1552                 unsigned int reg_idx = (vf * queues_per_pool) + queue;
1553
1554                 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx);
1555                 IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val);
1556         }
1557 }
1558
1559 void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter)
1560 {
1561         int i;
1562
1563         /* VF Tx rate limit was not set */
1564         if (!adapter->vf_rate_link_speed)
1565                 return;
1566
1567         if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) {
1568                 adapter->vf_rate_link_speed = 0;
1569                 dev_info(&adapter->pdev->dev,
1570                          "Link speed has been changed. VF Transmit rate is disabled\n");
1571         }
1572
1573         for (i = 0; i < adapter->num_vfs; i++) {
1574                 if (!adapter->vf_rate_link_speed)
1575                         adapter->vfinfo[i].tx_rate = 0;
1576
1577                 ixgbe_set_vf_rate_limit(adapter, i);
1578         }
1579 }
1580
1581 int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int min_tx_rate,
1582                         int max_tx_rate)
1583 {
1584         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1585         int link_speed;
1586
1587         /* verify VF is active */
1588         if (vf >= adapter->num_vfs)
1589                 return -EINVAL;
1590
1591         /* verify link is up */
1592         if (!adapter->link_up)
1593                 return -EINVAL;
1594
1595         /* verify we are linked at 10Gbps */
1596         link_speed = ixgbe_link_mbps(adapter);
1597         if (link_speed != 10000)
1598                 return -EINVAL;
1599
1600         if (min_tx_rate)
1601                 return -EINVAL;
1602
1603         /* rate limit cannot be less than 10Mbs or greater than link speed */
1604         if (max_tx_rate && ((max_tx_rate <= 10) || (max_tx_rate > link_speed)))
1605                 return -EINVAL;
1606
1607         /* store values */
1608         adapter->vf_rate_link_speed = link_speed;
1609         adapter->vfinfo[vf].tx_rate = max_tx_rate;
1610
1611         /* update hardware configuration */
1612         ixgbe_set_vf_rate_limit(adapter, vf);
1613
1614         return 0;
1615 }
1616
1617 int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting)
1618 {
1619         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1620         struct ixgbe_hw *hw = &adapter->hw;
1621
1622         if (vf >= adapter->num_vfs)
1623                 return -EINVAL;
1624
1625         adapter->vfinfo[vf].spoofchk_enabled = setting;
1626
1627         /* configure MAC spoofing */
1628         hw->mac.ops.set_mac_anti_spoofing(hw, setting, vf);
1629
1630         /* configure VLAN spoofing */
1631         hw->mac.ops.set_vlan_anti_spoofing(hw, setting, vf);
1632
1633         /* Ensure LLDP and FC is set for Ethertype Antispoofing if we will be
1634          * calling set_ethertype_anti_spoofing for each VF in loop below
1635          */
1636         if (hw->mac.ops.set_ethertype_anti_spoofing) {
1637                 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_LLDP),
1638                                 (IXGBE_ETQF_FILTER_EN    |
1639                                  IXGBE_ETQF_TX_ANTISPOOF |
1640                                  IXGBE_ETH_P_LLDP));
1641
1642                 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FC),
1643                                 (IXGBE_ETQF_FILTER_EN |
1644                                  IXGBE_ETQF_TX_ANTISPOOF |
1645                                  ETH_P_PAUSE));
1646
1647                 hw->mac.ops.set_ethertype_anti_spoofing(hw, setting, vf);
1648         }
1649
1650         return 0;
1651 }
1652
1653 int ixgbe_ndo_set_vf_rss_query_en(struct net_device *netdev, int vf,
1654                                   bool setting)
1655 {
1656         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1657
1658         /* This operation is currently supported only for 82599 and x540
1659          * devices.
1660          */
1661         if (adapter->hw.mac.type < ixgbe_mac_82599EB ||
1662             adapter->hw.mac.type >= ixgbe_mac_X550)
1663                 return -EOPNOTSUPP;
1664
1665         if (vf >= adapter->num_vfs)
1666                 return -EINVAL;
1667
1668         adapter->vfinfo[vf].rss_query_enabled = setting;
1669
1670         return 0;
1671 }
1672
1673 int ixgbe_ndo_set_vf_trust(struct net_device *netdev, int vf, bool setting)
1674 {
1675         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1676
1677         if (vf >= adapter->num_vfs)
1678                 return -EINVAL;
1679
1680         /* nothing to do */
1681         if (adapter->vfinfo[vf].trusted == setting)
1682                 return 0;
1683
1684         adapter->vfinfo[vf].trusted = setting;
1685
1686         /* reset VF to reconfigure features */
1687         adapter->vfinfo[vf].clear_to_send = false;
1688         ixgbe_ping_vf(adapter, vf);
1689
1690         e_info(drv, "VF %u is %strusted\n", vf, setting ? "" : "not ");
1691
1692         return 0;
1693 }
1694
1695 int ixgbe_ndo_get_vf_config(struct net_device *netdev,
1696                             int vf, struct ifla_vf_info *ivi)
1697 {
1698         struct ixgbe_adapter *adapter = netdev_priv(netdev);
1699         if (vf >= adapter->num_vfs)
1700                 return -EINVAL;
1701         ivi->vf = vf;
1702         memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN);
1703         ivi->max_tx_rate = adapter->vfinfo[vf].tx_rate;
1704         ivi->min_tx_rate = 0;
1705         ivi->vlan = adapter->vfinfo[vf].pf_vlan;
1706         ivi->qos = adapter->vfinfo[vf].pf_qos;
1707         ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled;
1708         ivi->rss_query_en = adapter->vfinfo[vf].rss_query_enabled;
1709         ivi->trusted = adapter->vfinfo[vf].trusted;
1710         return 0;
1711 }