| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | /*******************************************************************************
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Intel 10 Gigabit PCI Express Linux driver | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  |   Copyright(c) 1999 - 2014 Intel Corporation. | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |   under the terms and conditions of the GNU General Public License, | 
					
						
							|  |  |  |   version 2, as published by the Free Software Foundation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is distributed in the hope it will be useful, but WITHOUT | 
					
						
							|  |  |  |   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |   more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   You should have received a copy of the GNU General Public License along with | 
					
						
							|  |  |  |   this program; if not, write to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   The full GNU General Public License is included in this distribution in | 
					
						
							|  |  |  |   the file called "COPYING". | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Contact Information: | 
					
						
							| 
									
										
										
										
											2014-02-22 01:23:50 +00:00
										 |  |  |   Linux NICS <linux.nics@intel.com> | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  |   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | 
					
						
							|  |  |  |   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | *******************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | #include <linux/vmalloc.h>
 | 
					
						
							|  |  |  | #include <linux/string.h>
 | 
					
						
							|  |  |  | #include <linux/in.h>
 | 
					
						
							|  |  |  | #include <linux/ip.h>
 | 
					
						
							|  |  |  | #include <linux/tcp.h>
 | 
					
						
							|  |  |  | #include <linux/ipv6.h>
 | 
					
						
							| 
									
										
										
										
											2013-04-19 02:04:27 +00:00
										 |  |  | #ifdef NETIF_F_HW_VLAN_CTAG_TX
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | #include <linux/if_vlan.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ixgbe.h"
 | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | #include "ixgbe_type.h"
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | #include "ixgbe_sriov.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | #ifdef CONFIG_PCI_IOV
 | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:38 +00:00
										 |  |  | static int __ixgbe_enable_sriov(struct ixgbe_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	int num_vf_macvlans, i; | 
					
						
							|  |  |  | 	struct vf_macvlans *mv_list; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-14 06:48:49 +00:00
										 |  |  | 	adapter->flags |= IXGBE_FLAG_SRIOV_ENABLED; | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	e_info(probe, "SR-IOV enabled with %d VFs\n", adapter->num_vfs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-14 06:48:49 +00:00
										 |  |  | 	/* Enable VMDq flag so device will be set in VM mode */ | 
					
						
							|  |  |  | 	adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED; | 
					
						
							|  |  |  | 	if (!adapter->ring_feature[RING_F_VMDQ].limit) | 
					
						
							|  |  |  | 		adapter->ring_feature[RING_F_VMDQ].limit = 1; | 
					
						
							|  |  |  | 	adapter->ring_feature[RING_F_VMDQ].offset = adapter->num_vfs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	num_vf_macvlans = hw->mac.num_rar_entries - | 
					
						
							|  |  |  | 	(IXGBE_MAX_PF_MACVLANS + 1 + adapter->num_vfs); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->mv_list = mv_list = kcalloc(num_vf_macvlans, | 
					
						
							|  |  |  | 					     sizeof(struct vf_macvlans), | 
					
						
							|  |  |  | 					     GFP_KERNEL); | 
					
						
							|  |  |  | 	if (mv_list) { | 
					
						
							|  |  |  | 		/* Initialize list of VF macvlans */ | 
					
						
							|  |  |  | 		INIT_LIST_HEAD(&adapter->vf_mvs.l); | 
					
						
							|  |  |  | 		for (i = 0; i < num_vf_macvlans; i++) { | 
					
						
							|  |  |  | 			mv_list->vf = -1; | 
					
						
							|  |  |  | 			mv_list->free = true; | 
					
						
							|  |  |  | 			list_add(&mv_list->l, &adapter->vf_mvs.l); | 
					
						
							|  |  |  | 			mv_list++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-24 08:13:09 +00:00
										 |  |  | 	/* Initialize default switching mode VEB */ | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN); | 
					
						
							| 
									
										
										
										
											2012-11-08 02:41:35 +00:00
										 |  |  | 	adapter->flags2 |= IXGBE_FLAG2_BRIDGE_MODE_VEB; | 
					
						
							| 
									
										
										
										
											2012-10-24 08:13:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	/* If call to enable VFs succeeded then allocate memory
 | 
					
						
							|  |  |  | 	 * for per VF control structures. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	adapter->vfinfo = | 
					
						
							|  |  |  | 		kcalloc(adapter->num_vfs, | 
					
						
							|  |  |  | 			sizeof(struct vf_data_storage), GFP_KERNEL); | 
					
						
							|  |  |  | 	if (adapter->vfinfo) { | 
					
						
							| 
									
										
										
										
											2012-07-14 06:48:49 +00:00
										 |  |  | 		/* limit trafffic classes based on VFs enabled */ | 
					
						
							|  |  |  | 		if ((adapter->hw.mac.type == ixgbe_mac_82599EB) && | 
					
						
							|  |  |  | 		    (adapter->num_vfs < 16)) { | 
					
						
							|  |  |  | 			adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS; | 
					
						
							|  |  |  | 			adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS; | 
					
						
							|  |  |  | 		} else if (adapter->num_vfs < 32) { | 
					
						
							|  |  |  | 			adapter->dcb_cfg.num_tcs.pg_tcs = 4; | 
					
						
							|  |  |  | 			adapter->dcb_cfg.num_tcs.pfc_tcs = 4; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			adapter->dcb_cfg.num_tcs.pg_tcs = 1; | 
					
						
							|  |  |  | 			adapter->dcb_cfg.num_tcs.pfc_tcs = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 		/* Disable RSC when in SR-IOV mode */ | 
					
						
							|  |  |  | 		adapter->flags2 &= ~(IXGBE_FLAG2_RSC_CAPABLE | | 
					
						
							|  |  |  | 				     IXGBE_FLAG2_RSC_ENABLED); | 
					
						
							| 
									
										
										
										
											2012-07-14 06:48:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* enable spoof checking for all VFs */ | 
					
						
							| 
									
										
										
										
											2011-09-29 05:57:33 +00:00
										 |  |  | 		for (i = 0; i < adapter->num_vfs; i++) | 
					
						
							|  |  |  | 			adapter->vfinfo[i].spoofchk_enabled = true; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:38 +00:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return -ENOMEM; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Note this function is called when the user wants to enable SR-IOV
 | 
					
						
							|  |  |  |  * VFs using the now deprecated module parameter | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void ixgbe_enable_sriov(struct ixgbe_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int pre_existing_vfs = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pre_existing_vfs = pci_num_vf(adapter->pdev); | 
					
						
							|  |  |  | 	if (!pre_existing_vfs && !adapter->num_vfs) | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* If there are pre-existing VFs then we have to force
 | 
					
						
							|  |  |  | 	 * use of that many - over ride any module parameter value. | 
					
						
							|  |  |  | 	 * This may result from the user unloading the PF driver | 
					
						
							|  |  |  | 	 * while VFs were assigned to guest VMs or because the VFs | 
					
						
							|  |  |  | 	 * have been created via the new PCI SR-IOV sysfs interface. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (pre_existing_vfs) { | 
					
						
							|  |  |  | 		adapter->num_vfs = pre_existing_vfs; | 
					
						
							|  |  |  | 		dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			 "Virtual Functions already enabled for this device - Please reload all VF drivers to avoid spoofed packet errors\n"); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		int err; | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * The 82599 supports up to 64 VFs per physical function | 
					
						
							|  |  |  | 		 * but this implementation limits allocation to 63 so that | 
					
						
							|  |  |  | 		 * basic networking resources are still available to the | 
					
						
							|  |  |  | 		 * physical function.  If the user requests greater thn | 
					
						
							|  |  |  | 		 * 63 VFs then it is an error - reset to default of zero. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2014-01-16 19:41:04 -08:00
										 |  |  | 		adapter->num_vfs = min_t(unsigned int, adapter->num_vfs, IXGBE_MAX_VFS_DRV_LIMIT); | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		err = pci_enable_sriov(adapter->pdev, adapter->num_vfs); | 
					
						
							|  |  |  | 		if (err) { | 
					
						
							|  |  |  | 			e_err(probe, "Failed to enable PCI sriov: %d\n", err); | 
					
						
							|  |  |  | 			adapter->num_vfs = 0; | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:38 +00:00
										 |  |  | 	if (!__ixgbe_enable_sriov(adapter)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If we have gotten to this point then there is no memory available
 | 
					
						
							|  |  |  | 	 * to manage the VF devices - print message and bail. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	e_err(probe, "Unable to allocate memory for VF Data Storage - " | 
					
						
							|  |  |  | 	      "SRIOV disabled\n"); | 
					
						
							| 
									
										
										
										
											2012-05-09 08:09:25 +00:00
										 |  |  | 	ixgbe_disable_sriov(adapter); | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-23 02:58:40 +00:00
										 |  |  | #endif /* #ifdef CONFIG_PCI_IOV */
 | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | int ixgbe_disable_sriov(struct ixgbe_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	u32 gpie; | 
					
						
							|  |  |  | 	u32 vmdctl; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 	int rss; | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-05 05:32:26 +00:00
										 |  |  | 	/* set num VFs to 0 to prevent access to vfinfo */ | 
					
						
							|  |  |  | 	adapter->num_vfs = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* free VF control structures */ | 
					
						
							|  |  |  | 	kfree(adapter->vfinfo); | 
					
						
							|  |  |  | 	adapter->vfinfo = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* free macvlan list */ | 
					
						
							|  |  |  | 	kfree(adapter->mv_list); | 
					
						
							|  |  |  | 	adapter->mv_list = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-09 08:09:25 +00:00
										 |  |  | 	/* if SR-IOV is already disabled then there is nothing to do */ | 
					
						
							|  |  |  | 	if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2012-05-09 08:09:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | #ifdef CONFIG_PCI_IOV
 | 
					
						
							| 
									
										
										
										
											2012-05-23 02:58:40 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If our VFs are assigned we cannot shut down SR-IOV | 
					
						
							|  |  |  | 	 * without causing issues, so just leave the hardware | 
					
						
							|  |  |  | 	 * available but disabled | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2013-03-26 00:03:21 +00:00
										 |  |  | 	if (pci_vfs_assigned(adapter->pdev)) { | 
					
						
							| 
									
										
										
										
											2012-05-23 02:58:40 +00:00
										 |  |  | 		e_dev_warn("Unloading driver while VFs are assigned - VFs will not be deallocated\n"); | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 		return -EPERM; | 
					
						
							| 
									
										
										
										
											2012-07-22 12:36:41 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	/* disable iov and allow time for transactions to clear */ | 
					
						
							|  |  |  | 	pci_disable_sriov(adapter->pdev); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* turn off device IOV mode */ | 
					
						
							| 
									
										
										
										
											2012-07-14 06:48:49 +00:00
										 |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, 0); | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	gpie = IXGBE_READ_REG(hw, IXGBE_GPIE); | 
					
						
							|  |  |  | 	gpie &= ~IXGBE_GPIE_VTMODE_MASK; | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set default pool back to 0 */ | 
					
						
							|  |  |  | 	vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL); | 
					
						
							|  |  |  | 	vmdctl &= ~IXGBE_VT_CTL_POOL_MASK; | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl); | 
					
						
							|  |  |  | 	IXGBE_WRITE_FLUSH(hw); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-05 05:32:21 +00:00
										 |  |  | 	/* Disable VMDq flag so device will be set in VM mode */ | 
					
						
							| 
									
										
										
										
											2013-11-06 09:54:52 -08:00
										 |  |  | 	if (adapter->ring_feature[RING_F_VMDQ].limit == 1) { | 
					
						
							| 
									
										
										
										
											2012-05-05 05:32:21 +00:00
										 |  |  | 		adapter->flags &= ~IXGBE_FLAG_VMDQ_ENABLED; | 
					
						
							| 
									
										
										
										
											2013-11-06 09:54:52 -08:00
										 |  |  | 		adapter->flags &= ~IXGBE_FLAG_SRIOV_ENABLED; | 
					
						
							| 
									
										
										
										
											2014-11-18 09:35:08 +00:00
										 |  |  | 		rss = min_t(int, ixgbe_max_rss_indices(adapter), | 
					
						
							|  |  |  | 			    num_online_cpus()); | 
					
						
							| 
									
										
										
										
											2013-11-06 09:54:52 -08:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		rss = min_t(int, IXGBE_MAX_L2A_QUEUES, num_online_cpus()); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-05-05 05:32:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-06 09:54:52 -08:00
										 |  |  | 	adapter->ring_feature[RING_F_VMDQ].offset = 0; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 	adapter->ring_feature[RING_F_RSS].limit = rss; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | 	/* take a breather then clean up driver data */ | 
					
						
							|  |  |  | 	msleep(100); | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ixgbe_pci_sriov_enable(struct pci_dev *dev, int num_vfs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef CONFIG_PCI_IOV
 | 
					
						
							|  |  |  | 	struct ixgbe_adapter *adapter = pci_get_drvdata(dev); | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	int pre_existing_vfs = pci_num_vf(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pre_existing_vfs && pre_existing_vfs != num_vfs) | 
					
						
							|  |  |  | 		err = ixgbe_disable_sriov(adapter); | 
					
						
							|  |  |  | 	else if (pre_existing_vfs && pre_existing_vfs == num_vfs) | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 		return num_vfs; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (err) | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-21 06:17:59 +00:00
										 |  |  | 	/* While the SR-IOV capability structure reports total VFs to be 64,
 | 
					
						
							|  |  |  | 	 * we have to limit the actual number allocated based on two factors. | 
					
						
							|  |  |  | 	 * First, we reserve some transmit/receive resources for the PF. | 
					
						
							|  |  |  | 	 * Second, VMDQ also uses the same pools that SR-IOV does. We need to | 
					
						
							|  |  |  | 	 * account for this, so that we don't accidentally allocate more VFs | 
					
						
							|  |  |  | 	 * than we have available pools. The PCI bus driver already checks for | 
					
						
							|  |  |  | 	 * other values out of range. | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-08-21 06:17:59 +00:00
										 |  |  | 	if ((num_vfs + adapter->num_rx_pools) > IXGBE_MAX_VF_FUNCTIONS) | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 		return -EPERM; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	adapter->num_vfs = num_vfs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = __ixgbe_enable_sriov(adapter); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 		return  err; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < adapter->num_vfs; i++) | 
					
						
							|  |  |  | 		ixgbe_vf_configuration(dev, (i | 0x10000000)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = pci_enable_sriov(dev, num_vfs); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		e_dev_warn("Failed to enable PCI sriov: %d\n", err); | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	ixgbe_sriov_reinit(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return num_vfs; | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ixgbe_pci_sriov_disable(struct pci_dev *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_adapter *adapter = pci_get_drvdata(dev); | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2013-11-22 04:27:23 +00:00
										 |  |  | #ifdef CONFIG_PCI_IOV
 | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 	u32 current_flags = adapter->flags; | 
					
						
							| 
									
										
										
										
											2013-11-22 04:27:23 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = ixgbe_disable_sriov(adapter); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Only reinit if no error and state changed */ | 
					
						
							|  |  |  | #ifdef CONFIG_PCI_IOV
 | 
					
						
							| 
									
										
										
										
											2013-11-06 09:54:52 -08:00
										 |  |  | 	if (!err && current_flags != adapter->flags) | 
					
						
							| 
									
										
										
										
											2012-12-11 08:26:43 +00:00
										 |  |  | 		ixgbe_sriov_reinit(adapter); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ixgbe_pci_sriov_configure(struct pci_dev *dev, int num_vfs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (num_vfs == 0) | 
					
						
							|  |  |  | 		return ixgbe_pci_sriov_disable(dev); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return ixgbe_pci_sriov_enable(dev, num_vfs); | 
					
						
							| 
									
										
										
										
											2011-08-24 02:37:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-12 22:20:59 +00:00
										 |  |  | static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter, | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 				   u32 *msgbuf, u32 vf) | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	int entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) | 
					
						
							|  |  |  | 		       >> IXGBE_VT_MSGINFO_SHIFT; | 
					
						
							|  |  |  | 	u16 *hash_list = (u16 *)&msgbuf[1]; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	struct vf_data_storage *vfinfo = &adapter->vfinfo[vf]; | 
					
						
							| 
									
										
										
										
											2010-05-05 19:57:30 +00:00
										 |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2010-05-05 19:57:30 +00:00
										 |  |  | 	u32 vector_bit; | 
					
						
							|  |  |  | 	u32 vector_reg; | 
					
						
							|  |  |  | 	u32 mta_reg; | 
					
						
							| 
									
										
										
										
											2014-03-25 07:45:27 +00:00
										 |  |  | 	u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf)); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* only so many hash values supported */ | 
					
						
							|  |  |  | 	entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * salt away the number of multi cast addresses assigned | 
					
						
							|  |  |  | 	 * to this VF for later use to restore when the PF multi cast | 
					
						
							|  |  |  | 	 * list changes | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	vfinfo->num_vf_mc_hashes = entries; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * VFs are limited to using the MTA hash table for their multicast | 
					
						
							|  |  |  | 	 * addresses | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	for (i = 0; i < entries; i++) { | 
					
						
							| 
									
										
										
										
											2010-11-14 17:04:33 +00:00
										 |  |  | 		vfinfo->vf_mc_hashes[i] = hash_list[i]; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-05 19:57:30 +00:00
										 |  |  | 	for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) { | 
					
						
							|  |  |  | 		vector_reg = (vfinfo->vf_mc_hashes[i] >> 5) & 0x7F; | 
					
						
							|  |  |  | 		vector_bit = vfinfo->vf_mc_hashes[i] & 0x1F; | 
					
						
							|  |  |  | 		mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg)); | 
					
						
							|  |  |  | 		mta_reg |= (1 << vector_bit); | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-03-25 07:45:27 +00:00
										 |  |  | 	vmolr |= IXGBE_VMOLR_ROMPE; | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-25 07:45:27 +00:00
										 |  |  | #ifdef CONFIG_PCI_IOV
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	struct vf_data_storage *vfinfo; | 
					
						
							|  |  |  | 	int i, j; | 
					
						
							|  |  |  | 	u32 vector_bit; | 
					
						
							|  |  |  | 	u32 vector_reg; | 
					
						
							|  |  |  | 	u32 mta_reg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < adapter->num_vfs; i++) { | 
					
						
							| 
									
										
										
										
											2014-03-25 07:45:27 +00:00
										 |  |  | 		u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(i)); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 		vfinfo = &adapter->vfinfo[i]; | 
					
						
							|  |  |  | 		for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) { | 
					
						
							|  |  |  | 			hw->addr_ctrl.mta_in_use++; | 
					
						
							|  |  |  | 			vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F; | 
					
						
							|  |  |  | 			vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F; | 
					
						
							|  |  |  | 			mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg)); | 
					
						
							|  |  |  | 			mta_reg |= (1 << vector_bit); | 
					
						
							|  |  |  | 			IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-03-25 07:45:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (vfinfo->num_vf_mc_hashes) | 
					
						
							|  |  |  | 			vmolr |= IXGBE_VMOLR_ROMPE; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			vmolr &= ~IXGBE_VMOLR_ROMPE; | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_VMOLR(i), vmolr); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-05-13 01:33:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Restore any VF macvlans */ | 
					
						
							| 
									
										
										
										
											2014-03-29 06:51:25 +00:00
										 |  |  | 	ixgbe_full_sync_mac_table(adapter); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-03-25 07:45:27 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-12 22:20:59 +00:00
										 |  |  | static int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid, | 
					
						
							|  |  |  | 			     u32 vf) | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-23 05:39:25 +00:00
										 |  |  | 	/* VLAN 0 is a special case, don't allow it to be removed */ | 
					
						
							|  |  |  | 	if (!vid && !add) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | static s32 ixgbe_set_vf_lpe(struct ixgbe_adapter *adapter, u32 *msgbuf, u32 vf) | 
					
						
							| 
									
										
										
										
											2011-01-26 01:06:07 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 	int max_frame = msgbuf[1]; | 
					
						
							| 
									
										
										
										
											2011-01-26 01:06:07 +00:00
										 |  |  | 	u32 max_frs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * For 82599EB we have to keep all PFs and VFs operating with | 
					
						
							|  |  |  | 	 * the same max_frame value in order to avoid sending an oversize | 
					
						
							|  |  |  | 	 * frame to a VF.  In order to guarantee this is handled correctly | 
					
						
							|  |  |  | 	 * for all cases we have several special exceptions to take into | 
					
						
							|  |  |  | 	 * account before we can enable the VF for receive | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (adapter->hw.mac.type == ixgbe_mac_82599EB) { | 
					
						
							|  |  |  | 		struct net_device *dev = adapter->netdev; | 
					
						
							|  |  |  | 		int pf_max_frame = dev->mtu + ETH_HLEN; | 
					
						
							|  |  |  | 		u32 reg_offset, vf_shift, vfre; | 
					
						
							|  |  |  | 		s32 err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_FCOE
 | 
					
						
							|  |  |  | 		if (dev->features & NETIF_F_FCOE_MTU) | 
					
						
							|  |  |  | 			pf_max_frame = max_t(int, pf_max_frame, | 
					
						
							|  |  |  | 					     IXGBE_FCOE_JUMBO_FRAME_SIZE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* CONFIG_FCOE */
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:37 +00:00
										 |  |  | 		switch (adapter->vfinfo[vf].vf_api) { | 
					
						
							|  |  |  | 		case ixgbe_mbox_api_11: | 
					
						
							|  |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * Version 1.1 supports jumbo frames on VFs if PF has | 
					
						
							|  |  |  | 			 * jumbo frames enabled which means legacy VFs are | 
					
						
							|  |  |  | 			 * disabled | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if (pf_max_frame > ETH_FRAME_LEN) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * If the PF or VF are running w/ jumbo frames enabled | 
					
						
							|  |  |  | 			 * we need to shut down the VF Rx path as we cannot | 
					
						
							|  |  |  | 			 * support jumbo frames on legacy VFs | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if ((pf_max_frame > ETH_FRAME_LEN) || | 
					
						
							|  |  |  | 			    (max_frame > (ETH_FRAME_LEN + ETH_FCS_LEN))) | 
					
						
							|  |  |  | 				err = -EINVAL; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* determine VF receive enable location */ | 
					
						
							|  |  |  | 		vf_shift = vf % 32; | 
					
						
							|  |  |  | 		reg_offset = vf / 32; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* enable or disable receive depending on error */ | 
					
						
							|  |  |  | 		vfre = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset)); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			vfre &= ~(1 << vf_shift); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			vfre |= 1 << vf_shift; | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), vfre); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (err) { | 
					
						
							|  |  |  | 			e_err(drv, "VF max_frame %d out of range\n", max_frame); | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-26 01:06:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* MTU < 68 is an error and causes problems on some kernels */ | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 	if (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE) { | 
					
						
							|  |  |  | 		e_err(drv, "VF max_frame %d out of range\n", max_frame); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2011-01-26 01:06:07 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 	/* pull current max frame size from hardware */ | 
					
						
							|  |  |  | 	max_frs = IXGBE_READ_REG(hw, IXGBE_MAXFRS); | 
					
						
							|  |  |  | 	max_frs &= IXGBE_MHADD_MFS_MASK; | 
					
						
							|  |  |  | 	max_frs >>= IXGBE_MHADD_MFS_SHIFT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (max_frs < max_frame) { | 
					
						
							|  |  |  | 		max_frs = max_frame << IXGBE_MHADD_MFS_SHIFT; | 
					
						
							| 
									
										
										
										
											2011-01-26 01:06:07 +00:00
										 |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 	e_info(hw, "VF requests change max MTU to %d\n", max_frame); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2011-01-26 01:06:07 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-12 22:20:59 +00:00
										 |  |  | static void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe) | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf)); | 
					
						
							| 
									
										
										
										
											2014-03-25 07:45:27 +00:00
										 |  |  | 	vmolr |= IXGBE_VMOLR_BAM; | 
					
						
							| 
									
										
										
										
											2010-05-04 22:11:46 +00:00
										 |  |  | 	if (aupe) | 
					
						
							|  |  |  | 		vmolr |= IXGBE_VMOLR_AUPE; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		vmolr &= ~IXGBE_VMOLR_AUPE; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 00:17:03 +00:00
										 |  |  | static void ixgbe_clear_vmvir(struct ixgbe_adapter *adapter, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-10-12 22:20:59 +00:00
										 |  |  | static inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf) | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							| 
									
										
										
										
											2012-10-02 00:17:03 +00:00
										 |  |  | 	struct vf_data_storage *vfinfo = &adapter->vfinfo[vf]; | 
					
						
							|  |  |  | 	u8 num_tcs = netdev_get_num_tc(adapter->netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* add PF assigned VLAN or VLAN 0 */ | 
					
						
							|  |  |  | 	ixgbe_set_vf_vlan(adapter, true, vfinfo->pf_vlan, vf); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* reset offloads to defaults */ | 
					
						
							| 
									
										
										
										
											2012-10-02 00:17:03 +00:00
										 |  |  | 	ixgbe_set_vmolr(hw, vf, !vfinfo->pf_vlan); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set outgoing tags for VFs */ | 
					
						
							|  |  |  | 	if (!vfinfo->pf_vlan && !vfinfo->pf_qos && !num_tcs) { | 
					
						
							|  |  |  | 		ixgbe_clear_vmvir(adapter, vf); | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2012-10-02 00:17:03 +00:00
										 |  |  | 		if (vfinfo->pf_qos || !num_tcs) | 
					
						
							|  |  |  | 			ixgbe_set_vmvir(adapter, vfinfo->pf_vlan, | 
					
						
							|  |  |  | 					vfinfo->pf_qos, vf); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			ixgbe_set_vmvir(adapter, vfinfo->pf_vlan, | 
					
						
							|  |  |  | 					adapter->default_up, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (vfinfo->spoofchk_enabled) | 
					
						
							|  |  |  | 			hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf); | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* reset multicast table array for vf */ | 
					
						
							|  |  |  | 	adapter->vfinfo[vf].num_vf_mc_hashes = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Flush and reset the mta with the new values */ | 
					
						
							|  |  |  | 	ixgbe_set_rx_mode(adapter->netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-29 06:51:25 +00:00
										 |  |  | 	ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf); | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* reset VF api back to unknown */ | 
					
						
							|  |  |  | 	adapter->vfinfo[vf].vf_api = ixgbe_mbox_api_10; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-12 22:20:59 +00:00
										 |  |  | static int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter, | 
					
						
							|  |  |  | 			    int vf, unsigned char *mac_addr) | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-03-29 06:51:25 +00:00
										 |  |  | 	ixgbe_del_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf); | 
					
						
							| 
									
										
										
										
											2013-10-01 19:04:40 -07:00
										 |  |  | 	memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, ETH_ALEN); | 
					
						
							| 
									
										
										
										
											2014-03-29 06:51:25 +00:00
										 |  |  | 	ixgbe_add_mac_filter(adapter, adapter->vfinfo[vf].vf_mac_addresses, vf); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-13 01:33:48 +00:00
										 |  |  | static int ixgbe_set_vf_macvlan(struct ixgbe_adapter *adapter, | 
					
						
							|  |  |  | 				int vf, int index, unsigned char *mac_addr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct list_head *pos; | 
					
						
							|  |  |  | 	struct vf_macvlans *entry; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (index <= 1) { | 
					
						
							|  |  |  | 		list_for_each(pos, &adapter->vf_mvs.l) { | 
					
						
							|  |  |  | 			entry = list_entry(pos, struct vf_macvlans, l); | 
					
						
							|  |  |  | 			if (entry->vf == vf) { | 
					
						
							|  |  |  | 				entry->vf = -1; | 
					
						
							|  |  |  | 				entry->free = true; | 
					
						
							|  |  |  | 				entry->is_macvlan = false; | 
					
						
							| 
									
										
										
										
											2014-03-29 06:51:25 +00:00
										 |  |  | 				ixgbe_del_mac_filter(adapter, | 
					
						
							|  |  |  | 						     entry->vf_macvlan, vf); | 
					
						
							| 
									
										
										
										
											2011-05-13 01:33:48 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If index was zero then we were asked to clear the uc list | 
					
						
							|  |  |  | 	 * for the VF.  We're done. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!index) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	entry = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each(pos, &adapter->vf_mvs.l) { | 
					
						
							|  |  |  | 		entry = list_entry(pos, struct vf_macvlans, l); | 
					
						
							|  |  |  | 		if (entry->free) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If we traversed the entire list and didn't find a free entry | 
					
						
							|  |  |  | 	 * then we're out of space on the RAR table.  Also entry may | 
					
						
							|  |  |  | 	 * be NULL because the original memory allocation for the list | 
					
						
							|  |  |  | 	 * failed, which is not fatal but does mean we can't support | 
					
						
							|  |  |  | 	 * VF requests for MACVLAN because we couldn't allocate | 
					
						
							|  |  |  | 	 * memory for the list management required. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!entry || !entry->free) | 
					
						
							|  |  |  | 		return -ENOSPC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	entry->free = false; | 
					
						
							|  |  |  | 	entry->is_macvlan = true; | 
					
						
							|  |  |  | 	entry->vf = vf; | 
					
						
							|  |  |  | 	memcpy(entry->vf_macvlan, mac_addr, ETH_ALEN); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-29 06:51:25 +00:00
										 |  |  | 	ixgbe_add_mac_filter(adapter, mac_addr, vf); | 
					
						
							| 
									
										
										
										
											2011-05-13 01:33:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-11-16 19:26:54 -08:00
										 |  |  | 	struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	unsigned int vfn = (event_mask & 0x3f); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool enable = ((event_mask & 0x10000000U) != 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 19:04:40 -07:00
										 |  |  | 	if (enable) | 
					
						
							|  |  |  | 		eth_zero_addr(adapter->vfinfo[vfn].vf_mac_addresses); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 04:52:09 +00:00
										 |  |  | static inline void ixgbe_write_qde(struct ixgbe_adapter *adapter, u32 vf, | 
					
						
							|  |  |  | 				   u32 qde) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ]; | 
					
						
							|  |  |  | 	u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask); | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = vf * q_per_pool; i < ((vf + 1) * q_per_pool); i++) { | 
					
						
							|  |  |  | 		u32 reg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* flush previous write */ | 
					
						
							|  |  |  | 		IXGBE_WRITE_FLUSH(hw); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* indicate to hardware that we want to set drop enable */ | 
					
						
							|  |  |  | 		reg = IXGBE_QDE_WRITE | IXGBE_QDE_ENABLE; | 
					
						
							|  |  |  | 		reg |= i <<  IXGBE_QDE_IDX_SHIFT; | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_QDE, reg); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | static int ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf) | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-01-15 17:38:40 -08:00
										 |  |  | 	struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ]; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses; | 
					
						
							| 
									
										
										
										
											2013-07-26 07:34:54 +00:00
										 |  |  | 	u32 reg, reg_offset, vf_shift; | 
					
						
							|  |  |  | 	u32 msgbuf[4] = {0, 0, 0, 0}; | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	u8 *addr = (u8 *)(&msgbuf[1]); | 
					
						
							| 
									
										
										
										
											2014-01-15 17:38:40 -08:00
										 |  |  | 	u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask); | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	e_info(probe, "VF Reset msg received from vf %d\n", vf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* reset the filters for the device */ | 
					
						
							|  |  |  | 	ixgbe_vf_reset_event(adapter, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set vf mac address */ | 
					
						
							| 
									
										
										
										
											2013-02-15 05:20:09 +00:00
										 |  |  | 	if (!is_zero_ether_addr(vf_mac)) | 
					
						
							|  |  |  | 		ixgbe_set_vf_mac(adapter, vf, vf_mac); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	vf_shift = vf % 32; | 
					
						
							|  |  |  | 	reg_offset = vf / 32; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	/* enable transmit for vf */ | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset)); | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 	reg |= 1 << vf_shift; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 17:38:40 -08:00
										 |  |  | 	/* force drop enable for all VF Rx queues */ | 
					
						
							| 
									
										
										
										
											2014-11-05 04:52:09 +00:00
										 |  |  | 	ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE); | 
					
						
							| 
									
										
										
										
											2014-01-15 17:38:40 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	/* enable receive for vf */ | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset)); | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 	reg |= 1 << vf_shift; | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * The 82599 cannot support a mix of jumbo and non-jumbo PF/VFs. | 
					
						
							|  |  |  | 	 * For more info take a look at ixgbe_set_vf_lpe | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (adapter->hw.mac.type == ixgbe_mac_82599EB) { | 
					
						
							|  |  |  | 		struct net_device *dev = adapter->netdev; | 
					
						
							|  |  |  | 		int pf_max_frame = dev->mtu + ETH_HLEN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_FCOE
 | 
					
						
							|  |  |  | 		if (dev->features & NETIF_F_FCOE_MTU) | 
					
						
							|  |  |  | 			pf_max_frame = max_t(int, pf_max_frame, | 
					
						
							|  |  |  | 					     IXGBE_FCOE_JUMBO_FRAME_SIZE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* CONFIG_FCOE */
 | 
					
						
							|  |  |  | 		if (pf_max_frame > ETH_FRAME_LEN) | 
					
						
							|  |  |  | 			reg &= ~(1 << vf_shift); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	/* enable VF mailbox for further messages */ | 
					
						
							|  |  |  | 	adapter->vfinfo[vf].clear_to_send = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-18 03:02:52 +00:00
										 |  |  | 	/* Enable counting of spoofed packets in the SSVPC register */ | 
					
						
							|  |  |  | 	reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset)); | 
					
						
							|  |  |  | 	reg |= (1 << vf_shift); | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-15 17:38:41 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Reset the VFs TDWBAL and TDWBAH registers | 
					
						
							|  |  |  | 	 * which are not cleared by an FLR | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	for (i = 0; i < q_per_pool; i++) { | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBAHn(q_per_pool, vf, i), 0); | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_PVFTDWBALn(q_per_pool, vf, i), 0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	/* reply to reset with ack and vf mac address */ | 
					
						
							| 
									
										
										
										
											2013-02-15 05:20:09 +00:00
										 |  |  | 	msgbuf[0] = IXGBE_VF_RESET; | 
					
						
							|  |  |  | 	if (!is_zero_ether_addr(vf_mac)) { | 
					
						
							|  |  |  | 		msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK; | 
					
						
							|  |  |  | 		memcpy(addr, vf_mac, ETH_ALEN); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK; | 
					
						
							|  |  |  | 		dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			 "VF %d has no MAC address assigned, you may have to assign one manually\n", | 
					
						
							|  |  |  | 			 vf); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Piggyback the multicast filter type so VF can compute the | 
					
						
							|  |  |  | 	 * correct vectors | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	msgbuf[3] = hw->mac.mc_filter_type; | 
					
						
							|  |  |  | 	ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ixgbe_set_vf_mac_addr(struct ixgbe_adapter *adapter, | 
					
						
							|  |  |  | 				 u32 *msgbuf, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *new_mac = ((u8 *)(&msgbuf[1])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!is_valid_ether_addr(new_mac)) { | 
					
						
							|  |  |  | 		e_warn(drv, "VF %d attempted to set invalid mac\n", vf); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->vfinfo[vf].pf_set_mac && | 
					
						
							| 
									
										
										
										
											2013-12-30 15:40:50 +08:00
										 |  |  | 	    !ether_addr_equal(adapter->vfinfo[vf].vf_mac_addresses, new_mac)) { | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 		e_warn(drv, | 
					
						
							|  |  |  | 		       "VF %d attempted to override administratively set MAC address\n" | 
					
						
							|  |  |  | 		       "Reload the VF driver to resume operations\n", | 
					
						
							|  |  |  | 		       vf); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-25 02:25:30 +00:00
										 |  |  | 	return ixgbe_set_vf_mac(adapter, vf, new_mac) < 0; | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-22 02:14:39 +00:00
										 |  |  | static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 vlvf; | 
					
						
							|  |  |  | 	s32 regindex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* short cut the special case */ | 
					
						
							|  |  |  | 	if (vlan == 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Search for the vlan id in the VLVF entries */ | 
					
						
							|  |  |  | 	for (regindex = 1; regindex < IXGBE_VLVF_ENTRIES; regindex++) { | 
					
						
							|  |  |  | 		vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(regindex)); | 
					
						
							|  |  |  | 		if ((vlvf & VLAN_VID_MASK) == vlan) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Return a negative value if not found */ | 
					
						
							|  |  |  | 	if (regindex >= IXGBE_VLVF_ENTRIES) | 
					
						
							|  |  |  | 		regindex = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return regindex; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | static int ixgbe_set_vf_vlan_msg(struct ixgbe_adapter *adapter, | 
					
						
							|  |  |  | 				 u32 *msgbuf, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	int add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> IXGBE_VT_MSGINFO_SHIFT; | 
					
						
							|  |  |  | 	int vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK); | 
					
						
							|  |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2013-02-22 02:14:39 +00:00
										 |  |  | 	s32 reg_ndx; | 
					
						
							|  |  |  | 	u32 vlvf; | 
					
						
							|  |  |  | 	u32 bits; | 
					
						
							| 
									
										
										
										
											2012-10-02 00:17:03 +00:00
										 |  |  | 	u8 tcs = netdev_get_num_tc(adapter->netdev); | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 00:17:03 +00:00
										 |  |  | 	if (adapter->vfinfo[vf].pf_vlan || tcs) { | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 		e_warn(drv, | 
					
						
							|  |  |  | 		       "VF %d attempted to override administratively set VLAN configuration\n" | 
					
						
							|  |  |  | 		       "Reload the VF driver to resume operations\n", | 
					
						
							|  |  |  | 		       vf); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (add) | 
					
						
							|  |  |  | 		adapter->vfinfo[vf].vlan_count++; | 
					
						
							|  |  |  | 	else if (adapter->vfinfo[vf].vlan_count) | 
					
						
							|  |  |  | 		adapter->vfinfo[vf].vlan_count--; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-22 02:14:39 +00:00
										 |  |  | 	/* in case of promiscuous mode any VLAN filter set for a VF must
 | 
					
						
							|  |  |  | 	 * also have the PF pool added to it. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (add && adapter->netdev->flags & IFF_PROMISC) | 
					
						
							|  |  |  | 		err = ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	err = ixgbe_set_vf_vlan(adapter, add, vid, vf); | 
					
						
							|  |  |  | 	if (!err && adapter->vfinfo[vf].spoofchk_enabled) | 
					
						
							|  |  |  | 		hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-22 02:14:39 +00:00
										 |  |  | 	/* Go through all the checks to see if the VLAN filter should
 | 
					
						
							|  |  |  | 	 * be wiped completely. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!add && adapter->netdev->flags & IFF_PROMISC) { | 
					
						
							|  |  |  | 		reg_ndx = ixgbe_find_vlvf_entry(hw, vid); | 
					
						
							|  |  |  | 		if (reg_ndx < 0) | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 			return err; | 
					
						
							| 
									
										
										
										
											2013-02-22 02:14:39 +00:00
										 |  |  | 		vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(reg_ndx)); | 
					
						
							|  |  |  | 		/* See if any other pools are set for this VLAN filter
 | 
					
						
							|  |  |  | 		 * entry other than the PF. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (VMDQ_P(0) < 32) { | 
					
						
							|  |  |  | 			bits = IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2)); | 
					
						
							|  |  |  | 			bits &= ~(1 << VMDQ_P(0)); | 
					
						
							|  |  |  | 			bits |= IXGBE_READ_REG(hw, | 
					
						
							|  |  |  | 					       IXGBE_VLVFB(reg_ndx * 2) + 1); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			bits = IXGBE_READ_REG(hw, | 
					
						
							|  |  |  | 					      IXGBE_VLVFB(reg_ndx * 2) + 1); | 
					
						
							|  |  |  | 			bits &= ~(1 << (VMDQ_P(0) - 32)); | 
					
						
							|  |  |  | 			bits |= IXGBE_READ_REG(hw, IXGBE_VLVFB(reg_ndx * 2)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* If the filter was removed then ensure PF pool bit
 | 
					
						
							|  |  |  | 		 * is cleared if the PF only added itself to the pool | 
					
						
							|  |  |  | 		 * because the PF is in promiscuous mode. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if ((vlvf & VLAN_VID_MASK) == vid && | 
					
						
							|  |  |  | 		    !test_bit(vid, adapter->active_vlans) && !bits) | 
					
						
							|  |  |  | 			ixgbe_set_vf_vlan(adapter, add, vid, VMDQ_P(0)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ixgbe_set_vf_macvlan_msg(struct ixgbe_adapter *adapter, | 
					
						
							|  |  |  | 				    u32 *msgbuf, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 *new_mac = ((u8 *)(&msgbuf[1])); | 
					
						
							|  |  |  | 	int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >> | 
					
						
							|  |  |  | 		    IXGBE_VT_MSGINFO_SHIFT; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->vfinfo[vf].pf_set_mac && index > 0) { | 
					
						
							|  |  |  | 		e_warn(drv, | 
					
						
							|  |  |  | 		       "VF %d requested MACVLAN filter but is administratively denied\n", | 
					
						
							|  |  |  | 		       vf); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* An non-zero index indicates the VF is setting a filter */ | 
					
						
							|  |  |  | 	if (index) { | 
					
						
							|  |  |  | 		if (!is_valid_ether_addr(new_mac)) { | 
					
						
							|  |  |  | 			e_warn(drv, "VF %d attempted to set invalid mac\n", vf); | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * If the VF is allowed to set MAC filters then turn off | 
					
						
							|  |  |  | 		 * anti-spoofing to avoid false positives. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (adapter->vfinfo[vf].spoofchk_enabled) | 
					
						
							|  |  |  | 			ixgbe_ndo_set_vf_spoofchk(adapter->netdev, vf, false); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = ixgbe_set_vf_macvlan(adapter, vf, index, new_mac); | 
					
						
							|  |  |  | 	if (err == -ENOSPC) | 
					
						
							|  |  |  | 		e_warn(drv, | 
					
						
							|  |  |  | 		       "VF %d has requested a MACVLAN filter but there is no space for it\n", | 
					
						
							|  |  |  | 		       vf); | 
					
						
							| 
									
										
										
										
											2012-10-30 00:40:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err < 0; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:22 +00:00
										 |  |  | static int ixgbe_negotiate_vf_api(struct ixgbe_adapter *adapter, | 
					
						
							|  |  |  | 				  u32 *msgbuf, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int api = msgbuf[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (api) { | 
					
						
							|  |  |  | 	case ixgbe_mbox_api_10: | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:37 +00:00
										 |  |  | 	case ixgbe_mbox_api_11: | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:22 +00:00
										 |  |  | 		adapter->vfinfo[vf].vf_api = api; | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	e_info(drv, "VF %d requested invalid api version %u\n", vf, api); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:32 +00:00
										 |  |  | static int ixgbe_get_vf_queues(struct ixgbe_adapter *adapter, | 
					
						
							|  |  |  | 			       u32 *msgbuf, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev = adapter->netdev; | 
					
						
							|  |  |  | 	struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ]; | 
					
						
							|  |  |  | 	unsigned int default_tc = 0; | 
					
						
							|  |  |  | 	u8 num_tcs = netdev_get_num_tc(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* verify the PF is supporting the correct APIs */ | 
					
						
							|  |  |  | 	switch (adapter->vfinfo[vf].vf_api) { | 
					
						
							|  |  |  | 	case ixgbe_mbox_api_20: | 
					
						
							|  |  |  | 	case ixgbe_mbox_api_11: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* only allow 1 Tx queue for bandwidth limiting */ | 
					
						
							|  |  |  | 	msgbuf[IXGBE_VF_TX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask); | 
					
						
							|  |  |  | 	msgbuf[IXGBE_VF_RX_QUEUES] = __ALIGN_MASK(1, ~vmdq->mask); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* if TCs > 1 determine which TC belongs to default user priority */ | 
					
						
							|  |  |  | 	if (num_tcs > 1) | 
					
						
							|  |  |  | 		default_tc = netdev_get_prio_tc_map(dev, adapter->default_up); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* notify VF of need for VLAN tag stripping, and correct queue */ | 
					
						
							|  |  |  | 	if (num_tcs) | 
					
						
							|  |  |  | 		msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs; | 
					
						
							|  |  |  | 	else if (adapter->vfinfo[vf].pf_vlan || adapter->vfinfo[vf].pf_qos) | 
					
						
							|  |  |  | 		msgbuf[IXGBE_VF_TRANS_VLAN] = 1; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		msgbuf[IXGBE_VF_TRANS_VLAN] = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* notify VF of default queue */ | 
					
						
							|  |  |  | 	msgbuf[IXGBE_VF_DEF_QUEUE] = default_tc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 mbx_size = IXGBE_VFMAILBOX_SIZE; | 
					
						
							| 
									
										
										
										
											2011-05-07 06:49:18 +00:00
										 |  |  | 	u32 msgbuf[IXGBE_VFMAILBOX_SIZE]; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	s32 retval; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-28 08:03:38 +00:00
										 |  |  | 	if (retval) { | 
					
						
							| 
									
										
										
										
											2010-06-03 16:53:41 +00:00
										 |  |  | 		pr_err("Error receiving message from VF\n"); | 
					
						
							| 
									
										
										
										
											2012-03-28 08:03:38 +00:00
										 |  |  | 		return retval; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* this is a message we already processed, do nothing */ | 
					
						
							|  |  |  | 	if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK)) | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-28 08:03:38 +00:00
										 |  |  | 	/* flush the ack before we write any messages back */ | 
					
						
							|  |  |  | 	IXGBE_WRITE_FLUSH(hw); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:22 +00:00
										 |  |  | 	if (msgbuf[0] == IXGBE_VF_RESET) | 
					
						
							|  |  |  | 		return ixgbe_vf_reset_msg(adapter, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * until the vf completes a virtual function reset it should not be | 
					
						
							|  |  |  | 	 * allowed to start any configuration. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (!adapter->vfinfo[vf].clear_to_send) { | 
					
						
							|  |  |  | 		msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK; | 
					
						
							|  |  |  | 		ixgbe_write_mbx(hw, msgbuf, 1, vf); | 
					
						
							| 
									
										
										
										
											2014-07-22 06:51:08 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch ((msgbuf[0] & 0xFFFF)) { | 
					
						
							|  |  |  | 	case IXGBE_VF_SET_MAC_ADDR: | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 		retval = ixgbe_set_vf_mac_addr(adapter, msgbuf, vf); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case IXGBE_VF_SET_MULTICAST: | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 		retval = ixgbe_set_vf_multicasts(adapter, msgbuf, vf); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case IXGBE_VF_SET_VLAN: | 
					
						
							|  |  |  | 		retval = ixgbe_set_vf_vlan_msg(adapter, msgbuf, vf); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case IXGBE_VF_SET_LPE: | 
					
						
							| 
									
										
										
										
											2012-08-15 02:10:43 +00:00
										 |  |  | 		retval = ixgbe_set_vf_lpe(adapter, msgbuf, vf); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-05-13 01:33:48 +00:00
										 |  |  | 	case IXGBE_VF_SET_MACVLAN: | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:17 +00:00
										 |  |  | 		retval = ixgbe_set_vf_macvlan_msg(adapter, msgbuf, vf); | 
					
						
							| 
									
										
										
										
											2011-05-13 01:33:48 +00:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:22 +00:00
										 |  |  | 	case IXGBE_VF_API_NEGOTIATE: | 
					
						
							|  |  |  | 		retval = ixgbe_negotiate_vf_api(adapter, msgbuf, vf); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:32 +00:00
										 |  |  | 	case IXGBE_VF_GET_QUEUES: | 
					
						
							|  |  |  | 		retval = ixgbe_get_vf_queues(adapter, msgbuf, vf); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2010-07-01 20:05:12 +00:00
										 |  |  | 		e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 		retval = IXGBE_ERR_MBX; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* notify the VF of the results of what it sent us */ | 
					
						
							|  |  |  | 	if (retval) | 
					
						
							|  |  |  | 		msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:22 +00:00
										 |  |  | 	ixgbe_write_mbx(hw, msgbuf, mbx_size, vf); | 
					
						
							| 
									
										
										
										
											2010-01-09 02:25:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return retval; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	u32 msg = IXGBE_VT_MSGTYPE_NACK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* if device isn't clear to send it shouldn't be reading either */ | 
					
						
							|  |  |  | 	if (!adapter->vfinfo[vf].clear_to_send) | 
					
						
							|  |  |  | 		ixgbe_write_mbx(hw, &msg, 1, vf); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_msg_task(struct ixgbe_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	u32 vf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (vf = 0; vf < adapter->num_vfs; vf++) { | 
					
						
							|  |  |  | 		/* process any reset requests */ | 
					
						
							|  |  |  | 		if (!ixgbe_check_for_rst(hw, vf)) | 
					
						
							|  |  |  | 			ixgbe_vf_reset_event(adapter, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* process any messages pending */ | 
					
						
							|  |  |  | 		if (!ixgbe_check_for_msg(hw, vf)) | 
					
						
							|  |  |  | 			ixgbe_rcv_msg_from_vf(adapter, vf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* process any acks */ | 
					
						
							|  |  |  | 		if (!ixgbe_check_for_ack(hw, vf)) | 
					
						
							|  |  |  | 			ixgbe_rcv_ack_from_vf(adapter, vf); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-22 22:46:40 +00:00
										 |  |  | void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* disable transmit and receive for all vfs */ | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0); | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0); | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	u32 ping; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0 ; i < adapter->num_vfs; i++) { | 
					
						
							|  |  |  | 		ping = IXGBE_PF_CONTROL_MSG; | 
					
						
							|  |  |  | 		if (adapter->vfinfo[i].clear_to_send) | 
					
						
							|  |  |  | 			ping |= IXGBE_VT_MSGTYPE_CTS; | 
					
						
							|  |  |  | 		ixgbe_write_mbx(hw, &ping, 1, i); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | int ixgbe_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 	if (!is_valid_ether_addr(mac) || (vf >= adapter->num_vfs)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	adapter->vfinfo[vf].pf_set_mac = true; | 
					
						
							|  |  |  | 	dev_info(&adapter->pdev->dev, "setting MAC %pM on VF %d\n", mac, vf); | 
					
						
							|  |  |  | 	dev_info(&adapter->pdev->dev, "Reload the VF driver to make this" | 
					
						
							|  |  |  | 				      " change effective."); | 
					
						
							|  |  |  | 	if (test_bit(__IXGBE_DOWN, &adapter->state)) { | 
					
						
							|  |  |  | 		dev_warn(&adapter->pdev->dev, "The VF MAC address has been set," | 
					
						
							|  |  |  | 			 " but the PF device is not up.\n"); | 
					
						
							|  |  |  | 		dev_warn(&adapter->pdev->dev, "Bring the PF device up before" | 
					
						
							|  |  |  | 			 " attempting to use the VF device.\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ixgbe_set_vf_mac(adapter, vf, mac); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | static int ixgbe_enable_port_vlan(struct ixgbe_adapter *adapter, int vf, | 
					
						
							|  |  |  | 				  u16 vlan, u8 qos) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							| 
									
										
										
										
											2014-12-10 05:28:51 +00:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-10 05:28:51 +00:00
										 |  |  | 	err = ixgbe_set_vf_vlan(adapter, true, vlan, vf); | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2014-12-10 05:28:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 	ixgbe_set_vmvir(adapter, vlan, qos, vf); | 
					
						
							|  |  |  | 	ixgbe_set_vmolr(hw, vf, false); | 
					
						
							|  |  |  | 	if (adapter->vfinfo[vf].spoofchk_enabled) | 
					
						
							|  |  |  | 		hw->mac.ops.set_vlan_anti_spoofing(hw, true, vf); | 
					
						
							|  |  |  | 	adapter->vfinfo[vf].vlan_count++; | 
					
						
							| 
									
										
										
										
											2014-11-07 03:53:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* enable hide vlan on X550 */ | 
					
						
							|  |  |  | 	if (hw->mac.type >= ixgbe_mac_X550) | 
					
						
							|  |  |  | 		ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE | | 
					
						
							|  |  |  | 				IXGBE_QDE_HIDE_VLAN); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 	adapter->vfinfo[vf].pf_vlan = vlan; | 
					
						
							|  |  |  | 	adapter->vfinfo[vf].pf_qos = qos; | 
					
						
							|  |  |  | 	dev_info(&adapter->pdev->dev, | 
					
						
							|  |  |  | 		 "Setting VLAN %d, QOS 0x%x on VF %d\n", vlan, qos, vf); | 
					
						
							|  |  |  | 	if (test_bit(__IXGBE_DOWN, &adapter->state)) { | 
					
						
							|  |  |  | 		dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			 "The VF VLAN has been set, but the PF device is not up.\n"); | 
					
						
							|  |  |  | 		dev_warn(&adapter->pdev->dev, | 
					
						
							|  |  |  | 			 "Bring the PF device up before attempting to use the VF device.\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ixgbe_disable_port_vlan(struct ixgbe_adapter *adapter, int vf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = ixgbe_set_vf_vlan(adapter, false, | 
					
						
							|  |  |  | 				adapter->vfinfo[vf].pf_vlan, vf); | 
					
						
							|  |  |  | 	ixgbe_clear_vmvir(adapter, vf); | 
					
						
							|  |  |  | 	ixgbe_set_vmolr(hw, vf, true); | 
					
						
							|  |  |  | 	hw->mac.ops.set_vlan_anti_spoofing(hw, false, vf); | 
					
						
							|  |  |  | 	if (adapter->vfinfo[vf].vlan_count) | 
					
						
							|  |  |  | 		adapter->vfinfo[vf].vlan_count--; | 
					
						
							| 
									
										
										
										
											2014-12-10 05:28:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* disable hide VLAN on X550 */ | 
					
						
							|  |  |  | 	if (hw->mac.type >= ixgbe_mac_X550) | 
					
						
							|  |  |  | 		ixgbe_write_qde(adapter, vf, IXGBE_QDE_ENABLE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 	adapter->vfinfo[vf].pf_vlan = 0; | 
					
						
							|  |  |  | 	adapter->vfinfo[vf].pf_qos = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | int ixgbe_ndo_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err = 0; | 
					
						
							|  |  |  | 	struct ixgbe_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((vf >= adapter->num_vfs) || (vlan > 4095) || (qos > 7)) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	if (vlan || qos) { | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 		/* Check if there is already a port VLAN set, if so
 | 
					
						
							|  |  |  | 		 * we have to delete the old one first before we | 
					
						
							|  |  |  | 		 * can set the new one.  The usage model had | 
					
						
							|  |  |  | 		 * previously assumed the user would delete the | 
					
						
							|  |  |  | 		 * old port VLAN before setting a new one but this | 
					
						
							|  |  |  | 		 * is not necessarily the case. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2013-04-17 20:41:35 +00:00
										 |  |  | 		if (adapter->vfinfo[vf].pf_vlan) | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 			err = ixgbe_disable_port_vlan(adapter, vf); | 
					
						
							| 
									
										
										
										
											2013-04-17 20:41:35 +00:00
										 |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto out; | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 		err = ixgbe_enable_port_vlan(adapter, vf, vlan, qos); | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 		err = ixgbe_disable_port_vlan(adapter, vf); | 
					
						
							| 
									
										
										
										
											2014-04-09 06:03:10 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-11-01 01:06:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | out: | 
					
						
							| 
									
										
										
										
											2014-04-09 06:03:10 +00:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | static int ixgbe_link_mbps(struct ixgbe_adapter *adapter) | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	switch (adapter->link_speed) { | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 	case IXGBE_LINK_SPEED_100_FULL: | 
					
						
							|  |  |  | 		return 100; | 
					
						
							|  |  |  | 	case IXGBE_LINK_SPEED_1GB_FULL: | 
					
						
							|  |  |  | 		return 1000; | 
					
						
							|  |  |  | 	case IXGBE_LINK_SPEED_10GB_FULL: | 
					
						
							|  |  |  | 		return 10000; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | static void ixgbe_set_vf_rate_limit(struct ixgbe_adapter *adapter, int vf) | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ]; | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	u32 bcnrc_val = 0; | 
					
						
							|  |  |  | 	u16 queue, queues_per_pool; | 
					
						
							|  |  |  | 	u16 tx_rate = adapter->vfinfo[vf].tx_rate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (tx_rate) { | 
					
						
							|  |  |  | 		/* start with base link speed value */ | 
					
						
							|  |  |  | 		bcnrc_val = adapter->vf_rate_link_speed; | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* Calculate the rate factor values to set */ | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 		bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT; | 
					
						
							|  |  |  | 		bcnrc_val /= tx_rate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* clear everything but the rate factor */ | 
					
						
							|  |  |  | 		bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK | | 
					
						
							|  |  |  | 			     IXGBE_RTTBCNRC_RF_DEC_MASK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* enable the rate scheduler */ | 
					
						
							|  |  |  | 		bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA; | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-25 00:09:08 -07:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Set global transmit compensation time to the MMW_SIZE in RTTBCNRM | 
					
						
							|  |  |  | 	 * register. Typically MMW_SIZE=0x014 if 9728-byte jumbo is supported | 
					
						
							|  |  |  | 	 * and 0x004 otherwise. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	switch (hw->mac.type) { | 
					
						
							|  |  |  | 	case ixgbe_mac_82599EB: | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x4); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ixgbe_mac_X540: | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRM, 0x14); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	/* determine how many queues per pool based on VMDq mask */ | 
					
						
							|  |  |  | 	queues_per_pool = __ALIGN_MASK(1, ~vmdq->mask); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* write value for all Tx queues belonging to VF */ | 
					
						
							|  |  |  | 	for (queue = 0; queue < queues_per_pool; queue++) { | 
					
						
							|  |  |  | 		unsigned int reg_idx = (vf * queues_per_pool) + queue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, reg_idx); | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_check_vf_rate_limit(struct ixgbe_adapter *adapter) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* VF Tx rate limit was not set */ | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	if (!adapter->vf_rate_link_speed) | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	if (ixgbe_link_mbps(adapter) != adapter->vf_rate_link_speed) { | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 		adapter->vf_rate_link_speed = 0; | 
					
						
							|  |  |  | 		dev_info(&adapter->pdev->dev, | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 			 "Link speed has been changed. VF Transmit rate is disabled\n"); | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < adapter->num_vfs; i++) { | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 		if (!adapter->vf_rate_link_speed) | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 			adapter->vfinfo[i].tx_rate = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 		ixgbe_set_vf_rate_limit(adapter, i); | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												net-next:v4: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool.
o min_tx_rate puts lower limit on the VF bandwidth. VF is guaranteed
  to have a bandwidth of at least this value.
  max_tx_rate puts cap on the VF bandwidth. VF can have a bandwidth
  of up to this value.
o A new handler set_vf_rate for attr IFLA_VF_RATE has been introduced
  which takes 4 arguments:
  netdev, VF number, min_tx_rate, max_tx_rate
o ndo_set_vf_rate replaces ndo_set_vf_tx_rate handler.
o Drivers that currently implement ndo_set_vf_tx_rate should now call
  ndo_set_vf_rate instead and reject attempt to set a minimum bandwidth
  greater than 0 for IFLA_VF_TX_RATE when IFLA_VF_RATE is not yet
  implemented by driver.
o If user enters only one of either min_tx_rate or max_tx_rate, then,
  userland should read back the other value from driver and set both
  for IFLA_VF_RATE.
  Drivers that have not yet implemented IFLA_VF_RATE should always
  return min_tx_rate as 0 when read from ip tool.
o If both IFLA_VF_TX_RATE and IFLA_VF_RATE options are specified, then
  IFLA_VF_RATE should override.
o Idea is to have consistent display of rate values to user.
o Usage example: -
  ./ip link set p4p1 vf 0 rate 900
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 900 (Mbps), max_tx_rate 900Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 300 min_tx_rate 200
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 300 (Mbps), max_tx_rate 300Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 600 rate 300
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5, tx rate 600 (Mbps), max_tx_rate 600Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
Signed-off-by: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2014-05-22 09:59:05 -04:00
										 |  |  | int ixgbe_ndo_set_vf_bw(struct net_device *netdev, int vf, int min_tx_rate, | 
					
						
							|  |  |  | 			int max_tx_rate) | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 	struct ixgbe_adapter *adapter = netdev_priv(netdev); | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	int link_speed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* verify VF is active */ | 
					
						
							|  |  |  | 	if (vf >= adapter->num_vfs) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* verify link is up */ | 
					
						
							|  |  |  | 	if (!adapter->link_up) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* verify we are linked at 10Gbps */ | 
					
						
							|  |  |  | 	link_speed = ixgbe_link_mbps(adapter); | 
					
						
							|  |  |  | 	if (link_speed != 10000) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
											  
											
												net-next:v4: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool.
o min_tx_rate puts lower limit on the VF bandwidth. VF is guaranteed
  to have a bandwidth of at least this value.
  max_tx_rate puts cap on the VF bandwidth. VF can have a bandwidth
  of up to this value.
o A new handler set_vf_rate for attr IFLA_VF_RATE has been introduced
  which takes 4 arguments:
  netdev, VF number, min_tx_rate, max_tx_rate
o ndo_set_vf_rate replaces ndo_set_vf_tx_rate handler.
o Drivers that currently implement ndo_set_vf_tx_rate should now call
  ndo_set_vf_rate instead and reject attempt to set a minimum bandwidth
  greater than 0 for IFLA_VF_TX_RATE when IFLA_VF_RATE is not yet
  implemented by driver.
o If user enters only one of either min_tx_rate or max_tx_rate, then,
  userland should read back the other value from driver and set both
  for IFLA_VF_RATE.
  Drivers that have not yet implemented IFLA_VF_RATE should always
  return min_tx_rate as 0 when read from ip tool.
o If both IFLA_VF_TX_RATE and IFLA_VF_RATE options are specified, then
  IFLA_VF_RATE should override.
o Idea is to have consistent display of rate values to user.
o Usage example: -
  ./ip link set p4p1 vf 0 rate 900
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 900 (Mbps), max_tx_rate 900Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 300 min_tx_rate 200
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 300 (Mbps), max_tx_rate 300Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 600 rate 300
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5, tx rate 600 (Mbps), max_tx_rate 600Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
Signed-off-by: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2014-05-22 09:59:05 -04:00
										 |  |  | 	if (min_tx_rate) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	/* rate limit cannot be less than 10Mbs or greater than link speed */ | 
					
						
							| 
									
										
											  
											
												net-next:v4: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool.
o min_tx_rate puts lower limit on the VF bandwidth. VF is guaranteed
  to have a bandwidth of at least this value.
  max_tx_rate puts cap on the VF bandwidth. VF can have a bandwidth
  of up to this value.
o A new handler set_vf_rate for attr IFLA_VF_RATE has been introduced
  which takes 4 arguments:
  netdev, VF number, min_tx_rate, max_tx_rate
o ndo_set_vf_rate replaces ndo_set_vf_tx_rate handler.
o Drivers that currently implement ndo_set_vf_tx_rate should now call
  ndo_set_vf_rate instead and reject attempt to set a minimum bandwidth
  greater than 0 for IFLA_VF_TX_RATE when IFLA_VF_RATE is not yet
  implemented by driver.
o If user enters only one of either min_tx_rate or max_tx_rate, then,
  userland should read back the other value from driver and set both
  for IFLA_VF_RATE.
  Drivers that have not yet implemented IFLA_VF_RATE should always
  return min_tx_rate as 0 when read from ip tool.
o If both IFLA_VF_TX_RATE and IFLA_VF_RATE options are specified, then
  IFLA_VF_RATE should override.
o Idea is to have consistent display of rate values to user.
o Usage example: -
  ./ip link set p4p1 vf 0 rate 900
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 900 (Mbps), max_tx_rate 900Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 300 min_tx_rate 200
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 300 (Mbps), max_tx_rate 300Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 600 rate 300
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5, tx rate 600 (Mbps), max_tx_rate 600Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
Signed-off-by: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2014-05-22 09:59:05 -04:00
										 |  |  | 	if (max_tx_rate && ((max_tx_rate <= 10) || (max_tx_rate > link_speed))) | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 	/* store values */ | 
					
						
							|  |  |  | 	adapter->vf_rate_link_speed = link_speed; | 
					
						
							| 
									
										
											  
											
												net-next:v4: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool.
o min_tx_rate puts lower limit on the VF bandwidth. VF is guaranteed
  to have a bandwidth of at least this value.
  max_tx_rate puts cap on the VF bandwidth. VF can have a bandwidth
  of up to this value.
o A new handler set_vf_rate for attr IFLA_VF_RATE has been introduced
  which takes 4 arguments:
  netdev, VF number, min_tx_rate, max_tx_rate
o ndo_set_vf_rate replaces ndo_set_vf_tx_rate handler.
o Drivers that currently implement ndo_set_vf_tx_rate should now call
  ndo_set_vf_rate instead and reject attempt to set a minimum bandwidth
  greater than 0 for IFLA_VF_TX_RATE when IFLA_VF_RATE is not yet
  implemented by driver.
o If user enters only one of either min_tx_rate or max_tx_rate, then,
  userland should read back the other value from driver and set both
  for IFLA_VF_RATE.
  Drivers that have not yet implemented IFLA_VF_RATE should always
  return min_tx_rate as 0 when read from ip tool.
o If both IFLA_VF_TX_RATE and IFLA_VF_RATE options are specified, then
  IFLA_VF_RATE should override.
o Idea is to have consistent display of rate values to user.
o Usage example: -
  ./ip link set p4p1 vf 0 rate 900
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 900 (Mbps), max_tx_rate 900Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 300 min_tx_rate 200
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 300 (Mbps), max_tx_rate 300Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 600 rate 300
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5, tx rate 600 (Mbps), max_tx_rate 600Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
Signed-off-by: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2014-05-22 09:59:05 -04:00
										 |  |  | 	adapter->vfinfo[vf].tx_rate = max_tx_rate; | 
					
						
							| 
									
										
										
										
											2012-07-20 08:09:06 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* update hardware configuration */ | 
					
						
							|  |  |  | 	ixgbe_set_vf_rate_limit(adapter, vf); | 
					
						
							| 
									
										
										
										
											2011-03-11 02:03:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-29 05:57:33 +00:00
										 |  |  | int ixgbe_ndo_set_vf_spoofchk(struct net_device *netdev, int vf, bool setting) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 	int vf_target_reg = vf >> 3; | 
					
						
							|  |  |  | 	int vf_target_shift = vf % 8; | 
					
						
							|  |  |  | 	struct ixgbe_hw *hw = &adapter->hw; | 
					
						
							|  |  |  | 	u32 regval; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-16 15:49:02 +00:00
										 |  |  | 	if (vf >= adapter->num_vfs) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-29 05:57:33 +00:00
										 |  |  | 	adapter->vfinfo[vf].spoofchk_enabled = setting; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg)); | 
					
						
							|  |  |  | 	regval &= ~(1 << vf_target_shift); | 
					
						
							|  |  |  | 	regval |= (setting << vf_target_shift); | 
					
						
							|  |  |  | 	IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->vfinfo[vf].vlan_count) { | 
					
						
							|  |  |  | 		vf_target_shift += IXGBE_SPOOF_VLANAS_SHIFT; | 
					
						
							|  |  |  | 		regval = IXGBE_READ_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg)); | 
					
						
							|  |  |  | 		regval &= ~(1 << vf_target_shift); | 
					
						
							|  |  |  | 		regval |= (setting << vf_target_shift); | 
					
						
							|  |  |  | 		IXGBE_WRITE_REG(hw, IXGBE_PFVFSPOOF(vf_target_reg), regval); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | int ixgbe_ndo_get_vf_config(struct net_device *netdev, | 
					
						
							|  |  |  | 			    int vf, struct ifla_vf_info *ivi) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ixgbe_adapter *adapter = netdev_priv(netdev); | 
					
						
							|  |  |  | 	if (vf >= adapter->num_vfs) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	ivi->vf = vf; | 
					
						
							|  |  |  | 	memcpy(&ivi->mac, adapter->vfinfo[vf].vf_mac_addresses, ETH_ALEN); | 
					
						
							| 
									
										
											  
											
												net-next:v4: Add support to configure SR-IOV VF minimum and maximum Tx rate through ip tool.
o min_tx_rate puts lower limit on the VF bandwidth. VF is guaranteed
  to have a bandwidth of at least this value.
  max_tx_rate puts cap on the VF bandwidth. VF can have a bandwidth
  of up to this value.
o A new handler set_vf_rate for attr IFLA_VF_RATE has been introduced
  which takes 4 arguments:
  netdev, VF number, min_tx_rate, max_tx_rate
o ndo_set_vf_rate replaces ndo_set_vf_tx_rate handler.
o Drivers that currently implement ndo_set_vf_tx_rate should now call
  ndo_set_vf_rate instead and reject attempt to set a minimum bandwidth
  greater than 0 for IFLA_VF_TX_RATE when IFLA_VF_RATE is not yet
  implemented by driver.
o If user enters only one of either min_tx_rate or max_tx_rate, then,
  userland should read back the other value from driver and set both
  for IFLA_VF_RATE.
  Drivers that have not yet implemented IFLA_VF_RATE should always
  return min_tx_rate as 0 when read from ip tool.
o If both IFLA_VF_TX_RATE and IFLA_VF_RATE options are specified, then
  IFLA_VF_RATE should override.
o Idea is to have consistent display of rate values to user.
o Usage example: -
  ./ip link set p4p1 vf 0 rate 900
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 900 (Mbps), max_tx_rate 900Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 300 min_tx_rate 200
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f0 brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5a, tx rate 300 (Mbps), max_tx_rate 300Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
  ./ip link set p4p1 vf 0 max_tx_rate 600 rate 300
  ./ip link show p4p1
  32: p4p1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode
  DEFAULT qlen 1000
    link/ether 00:0e:1e:08:b0:f brd ff:ff:ff:ff:ff:ff
    vf 0 MAC 3e:a0:ca:bd:ae:5, tx rate 600 (Mbps), max_tx_rate 600Mbps,
    min_tx_rate 200Mbps
    vf 1 MAC f6:c6:7c:3f:3d:6c
    vf 2 MAC 56:32:43:98:d7:71
    vf 3 MAC d6:be:c3:b5:85:ff
    vf 4 MAC ee:a9:9a:1e:19:14
    vf 5 MAC 4a:d0:4c:07:52:18
    vf 6 MAC 3a:76:44:93:62:f9
    vf 7 MAC 82:e9:e7:e3:15:1a
Signed-off-by: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2014-05-22 09:59:05 -04:00
										 |  |  | 	ivi->max_tx_rate = adapter->vfinfo[vf].tx_rate; | 
					
						
							|  |  |  | 	ivi->min_tx_rate = 0; | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | 	ivi->vlan = adapter->vfinfo[vf].pf_vlan; | 
					
						
							|  |  |  | 	ivi->qos = adapter->vfinfo[vf].pf_qos; | 
					
						
							| 
									
										
										
										
											2011-09-29 05:57:33 +00:00
										 |  |  | 	ivi->spoofchk = adapter->vfinfo[vf].spoofchk_enabled; | 
					
						
							| 
									
										
										
										
											2010-05-04 22:12:06 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } |