diff options
Diffstat (limited to 'drivers/net/igb')
| -rw-r--r-- | drivers/net/igb/Makefile | 37 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_82575.c | 1742 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_82575.h | 250 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_defines.h | 766 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_hw.h | 520 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_mac.c | 1420 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_mac.h | 90 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_mbx.c | 448 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_mbx.h | 77 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_nvm.c | 569 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_nvm.h | 40 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_phy.c | 2340 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_phy.h | 136 | ||||
| -rw-r--r-- | drivers/net/igb/e1000_regs.h | 326 | ||||
| -rw-r--r-- | drivers/net/igb/igb.h | 404 | ||||
| -rw-r--r-- | drivers/net/igb/igb_ethtool.c | 2212 | ||||
| -rw-r--r-- | drivers/net/igb/igb_main.c | 6587 | 
17 files changed, 0 insertions, 17964 deletions
diff --git a/drivers/net/igb/Makefile b/drivers/net/igb/Makefile deleted file mode 100644 index 8372cb9a8c1..00000000000 --- a/drivers/net/igb/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -################################################################################ -# -# Intel 82575 PCI-Express Ethernet Linux driver -# Copyright(c) 1999 - 2009 Intel Corporation. -# -# 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: -# Linux NICS <linux.nics@intel.com> -# e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -# Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 -# -################################################################################ - -# -# Makefile for the Intel(R) 82575 PCI-Express ethernet driver -# - -obj-$(CONFIG_IGB) += igb.o - -igb-objs := igb_main.o igb_ethtool.o e1000_82575.o \ -	    e1000_mac.o e1000_nvm.o e1000_phy.o e1000_mbx.o - diff --git a/drivers/net/igb/e1000_82575.c b/drivers/net/igb/e1000_82575.c deleted file mode 100644 index bc183f5487c..00000000000 --- a/drivers/net/igb/e1000_82575.c +++ /dev/null @@ -1,1742 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -/* e1000_82575 - * e1000_82576 - */ - -#include <linux/types.h> -#include <linux/if_ether.h> - -#include "e1000_mac.h" -#include "e1000_82575.h" - -static s32  igb_get_invariants_82575(struct e1000_hw *); -static s32  igb_acquire_phy_82575(struct e1000_hw *); -static void igb_release_phy_82575(struct e1000_hw *); -static s32  igb_acquire_nvm_82575(struct e1000_hw *); -static void igb_release_nvm_82575(struct e1000_hw *); -static s32  igb_check_for_link_82575(struct e1000_hw *); -static s32  igb_get_cfg_done_82575(struct e1000_hw *); -static s32  igb_init_hw_82575(struct e1000_hw *); -static s32  igb_phy_hw_reset_sgmii_82575(struct e1000_hw *); -static s32  igb_read_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16 *); -static s32  igb_read_phy_reg_82580(struct e1000_hw *, u32, u16 *); -static s32  igb_write_phy_reg_82580(struct e1000_hw *, u32, u16); -static s32  igb_reset_hw_82575(struct e1000_hw *); -static s32  igb_reset_hw_82580(struct e1000_hw *); -static s32  igb_set_d0_lplu_state_82575(struct e1000_hw *, bool); -static s32  igb_setup_copper_link_82575(struct e1000_hw *); -static s32  igb_setup_serdes_link_82575(struct e1000_hw *); -static s32  igb_write_phy_reg_sgmii_82575(struct e1000_hw *, u32, u16); -static void igb_clear_hw_cntrs_82575(struct e1000_hw *); -static s32  igb_acquire_swfw_sync_82575(struct e1000_hw *, u16); -static s32  igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *, u16 *, -						 u16 *); -static s32  igb_get_phy_id_82575(struct e1000_hw *); -static void igb_release_swfw_sync_82575(struct e1000_hw *, u16); -static bool igb_sgmii_active_82575(struct e1000_hw *); -static s32  igb_reset_init_script_82575(struct e1000_hw *); -static s32  igb_read_mac_addr_82575(struct e1000_hw *); -static s32  igb_set_pcie_completion_timeout(struct e1000_hw *hw); -static s32  igb_reset_mdicnfg_82580(struct e1000_hw *hw); - -static const u16 e1000_82580_rxpbs_table[] = -	{ 36, 72, 144, 1, 2, 4, 8, 16, -	  35, 70, 140 }; -#define E1000_82580_RXPBS_TABLE_SIZE \ -	(sizeof(e1000_82580_rxpbs_table)/sizeof(u16)) - -/** - *  igb_sgmii_uses_mdio_82575 - Determine if I2C pins are for external MDIO - *  @hw: pointer to the HW structure - * - *  Called to determine if the I2C pins are being used for I2C or as an - *  external MDIO interface since the two options are mutually exclusive. - **/ -static bool igb_sgmii_uses_mdio_82575(struct e1000_hw *hw) -{ -	u32 reg = 0; -	bool ext_mdio = false; - -	switch (hw->mac.type) { -	case e1000_82575: -	case e1000_82576: -		reg = rd32(E1000_MDIC); -		ext_mdio = !!(reg & E1000_MDIC_DEST); -		break; -	case e1000_82580: -	case e1000_i350: -		reg = rd32(E1000_MDICNFG); -		ext_mdio = !!(reg & E1000_MDICNFG_EXT_MDIO); -		break; -	default: -		break; -	} -	return ext_mdio; -} - -static s32 igb_get_invariants_82575(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	struct e1000_nvm_info *nvm = &hw->nvm; -	struct e1000_mac_info *mac = &hw->mac; -	struct e1000_dev_spec_82575 * dev_spec = &hw->dev_spec._82575; -	u32 eecd; -	s32 ret_val; -	u16 size; -	u32 ctrl_ext = 0; - -	switch (hw->device_id) { -	case E1000_DEV_ID_82575EB_COPPER: -	case E1000_DEV_ID_82575EB_FIBER_SERDES: -	case E1000_DEV_ID_82575GB_QUAD_COPPER: -		mac->type = e1000_82575; -		break; -	case E1000_DEV_ID_82576: -	case E1000_DEV_ID_82576_NS: -	case E1000_DEV_ID_82576_NS_SERDES: -	case E1000_DEV_ID_82576_FIBER: -	case E1000_DEV_ID_82576_SERDES: -	case E1000_DEV_ID_82576_QUAD_COPPER: -	case E1000_DEV_ID_82576_QUAD_COPPER_ET2: -	case E1000_DEV_ID_82576_SERDES_QUAD: -		mac->type = e1000_82576; -		break; -	case E1000_DEV_ID_82580_COPPER: -	case E1000_DEV_ID_82580_FIBER: -	case E1000_DEV_ID_82580_SERDES: -	case E1000_DEV_ID_82580_SGMII: -	case E1000_DEV_ID_82580_COPPER_DUAL: -	case E1000_DEV_ID_DH89XXCC_SGMII: -	case E1000_DEV_ID_DH89XXCC_SERDES: -		mac->type = e1000_82580; -		break; -	case E1000_DEV_ID_I350_COPPER: -	case E1000_DEV_ID_I350_FIBER: -	case E1000_DEV_ID_I350_SERDES: -	case E1000_DEV_ID_I350_SGMII: -		mac->type = e1000_i350; -		break; -	default: -		return -E1000_ERR_MAC_INIT; -		break; -	} - -	/* Set media type */ -	/* -	 * The 82575 uses bits 22:23 for link mode. The mode can be changed -	 * based on the EEPROM. We cannot rely upon device ID. There -	 * is no distinguishable difference between fiber and internal -	 * SerDes mode on the 82575. There can be an external PHY attached -	 * on the SGMII interface. For this, we'll set sgmii_active to true. -	 */ -	phy->media_type = e1000_media_type_copper; -	dev_spec->sgmii_active = false; - -	ctrl_ext = rd32(E1000_CTRL_EXT); -	switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) { -	case E1000_CTRL_EXT_LINK_MODE_SGMII: -		dev_spec->sgmii_active = true; -		break; -	case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX: -	case E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES: -		hw->phy.media_type = e1000_media_type_internal_serdes; -		break; -	default: -		break; -	} - -	/* Set mta register count */ -	mac->mta_reg_count = 128; -	/* Set rar entry count */ -	mac->rar_entry_count = E1000_RAR_ENTRIES_82575; -	if (mac->type == e1000_82576) -		mac->rar_entry_count = E1000_RAR_ENTRIES_82576; -	if (mac->type == e1000_82580) -		mac->rar_entry_count = E1000_RAR_ENTRIES_82580; -	if (mac->type == e1000_i350) -		mac->rar_entry_count = E1000_RAR_ENTRIES_I350; -	/* reset */ -	if (mac->type >= e1000_82580) -		mac->ops.reset_hw = igb_reset_hw_82580; -	else -		mac->ops.reset_hw = igb_reset_hw_82575; -	/* Set if part includes ASF firmware */ -	mac->asf_firmware_present = true; -	/* Set if manageability features are enabled. */ -	mac->arc_subsystem_valid = -		(rd32(E1000_FWSM) & E1000_FWSM_MODE_MASK) -			? true : false; - -	/* physical interface link setup */ -	mac->ops.setup_physical_interface = -		(hw->phy.media_type == e1000_media_type_copper) -			? igb_setup_copper_link_82575 -			: igb_setup_serdes_link_82575; - -	/* NVM initialization */ -	eecd = rd32(E1000_EECD); - -	nvm->opcode_bits        = 8; -	nvm->delay_usec         = 1; -	switch (nvm->override) { -	case e1000_nvm_override_spi_large: -		nvm->page_size    = 32; -		nvm->address_bits = 16; -		break; -	case e1000_nvm_override_spi_small: -		nvm->page_size    = 8; -		nvm->address_bits = 8; -		break; -	default: -		nvm->page_size    = eecd & E1000_EECD_ADDR_BITS ? 32 : 8; -		nvm->address_bits = eecd & E1000_EECD_ADDR_BITS ? 16 : 8; -		break; -	} - -	nvm->type = e1000_nvm_eeprom_spi; - -	size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >> -		     E1000_EECD_SIZE_EX_SHIFT); - -	/* -	 * Added to a constant, "size" becomes the left-shift value -	 * for setting word_size. -	 */ -	size += NVM_WORD_SIZE_BASE_SHIFT; - -	/* EEPROM access above 16k is unsupported */ -	if (size > 14) -		size = 14; -	nvm->word_size = 1 << size; - -	/* if 82576 then initialize mailbox parameters */ -	if (mac->type == e1000_82576) -		igb_init_mbx_params_pf(hw); - -	/* setup PHY parameters */ -	if (phy->media_type != e1000_media_type_copper) { -		phy->type = e1000_phy_none; -		return 0; -	} - -	phy->autoneg_mask        = AUTONEG_ADVERTISE_SPEED_DEFAULT; -	phy->reset_delay_us      = 100; - -	ctrl_ext = rd32(E1000_CTRL_EXT); - -	/* PHY function pointers */ -	if (igb_sgmii_active_82575(hw)) { -		phy->ops.reset      = igb_phy_hw_reset_sgmii_82575; -		ctrl_ext |= E1000_CTRL_I2C_ENA; -	} else { -		phy->ops.reset      = igb_phy_hw_reset; -		ctrl_ext &= ~E1000_CTRL_I2C_ENA; -	} - -	wr32(E1000_CTRL_EXT, ctrl_ext); -	igb_reset_mdicnfg_82580(hw); - -	if (igb_sgmii_active_82575(hw) && !igb_sgmii_uses_mdio_82575(hw)) { -		phy->ops.read_reg   = igb_read_phy_reg_sgmii_82575; -		phy->ops.write_reg  = igb_write_phy_reg_sgmii_82575; -	} else if (hw->mac.type >= e1000_82580) { -		phy->ops.read_reg   = igb_read_phy_reg_82580; -		phy->ops.write_reg  = igb_write_phy_reg_82580; -	} else { -		phy->ops.read_reg   = igb_read_phy_reg_igp; -		phy->ops.write_reg  = igb_write_phy_reg_igp; -	} - -	/* set lan id */ -	hw->bus.func = (rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) >> -	               E1000_STATUS_FUNC_SHIFT; - -	/* Set phy->phy_addr and phy->id. */ -	ret_val = igb_get_phy_id_82575(hw); -	if (ret_val) -		return ret_val; - -	/* Verify phy id and set remaining function pointers */ -	switch (phy->id) { -	case I347AT4_E_PHY_ID: -	case M88E1112_E_PHY_ID: -	case M88E1111_I_PHY_ID: -		phy->type                   = e1000_phy_m88; -		phy->ops.get_phy_info       = igb_get_phy_info_m88; - -		if (phy->id == I347AT4_E_PHY_ID || -		    phy->id == M88E1112_E_PHY_ID) -			phy->ops.get_cable_length = igb_get_cable_length_m88_gen2; -		else -			phy->ops.get_cable_length = igb_get_cable_length_m88; - -		phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_m88; -		break; -	case IGP03E1000_E_PHY_ID: -		phy->type                   = e1000_phy_igp_3; -		phy->ops.get_phy_info       = igb_get_phy_info_igp; -		phy->ops.get_cable_length   = igb_get_cable_length_igp_2; -		phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_igp; -		phy->ops.set_d0_lplu_state  = igb_set_d0_lplu_state_82575; -		phy->ops.set_d3_lplu_state  = igb_set_d3_lplu_state; -		break; -	case I82580_I_PHY_ID: -	case I350_I_PHY_ID: -		phy->type                   = e1000_phy_82580; -		phy->ops.force_speed_duplex = igb_phy_force_speed_duplex_82580; -		phy->ops.get_cable_length   = igb_get_cable_length_82580; -		phy->ops.get_phy_info       = igb_get_phy_info_82580; -		break; -	default: -		return -E1000_ERR_PHY; -	} - -	return 0; -} - -/** - *  igb_acquire_phy_82575 - Acquire rights to access PHY - *  @hw: pointer to the HW structure - * - *  Acquire access rights to the correct PHY.  This is a - *  function pointer entry point called by the api module. - **/ -static s32 igb_acquire_phy_82575(struct e1000_hw *hw) -{ -	u16 mask = E1000_SWFW_PHY0_SM; - -	if (hw->bus.func == E1000_FUNC_1) -		mask = E1000_SWFW_PHY1_SM; -	else if (hw->bus.func == E1000_FUNC_2) -		mask = E1000_SWFW_PHY2_SM; -	else if (hw->bus.func == E1000_FUNC_3) -		mask = E1000_SWFW_PHY3_SM; - -	return igb_acquire_swfw_sync_82575(hw, mask); -} - -/** - *  igb_release_phy_82575 - Release rights to access PHY - *  @hw: pointer to the HW structure - * - *  A wrapper to release access rights to the correct PHY.  This is a - *  function pointer entry point called by the api module. - **/ -static void igb_release_phy_82575(struct e1000_hw *hw) -{ -	u16 mask = E1000_SWFW_PHY0_SM; - -	if (hw->bus.func == E1000_FUNC_1) -		mask = E1000_SWFW_PHY1_SM; -	else if (hw->bus.func == E1000_FUNC_2) -		mask = E1000_SWFW_PHY2_SM; -	else if (hw->bus.func == E1000_FUNC_3) -		mask = E1000_SWFW_PHY3_SM; - -	igb_release_swfw_sync_82575(hw, mask); -} - -/** - *  igb_read_phy_reg_sgmii_82575 - Read PHY register using sgmii - *  @hw: pointer to the HW structure - *  @offset: register offset to be read - *  @data: pointer to the read data - * - *  Reads the PHY register at offset using the serial gigabit media independent - *  interface and stores the retrieved information in data. - **/ -static s32 igb_read_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset, -					  u16 *data) -{ -	s32 ret_val = -E1000_ERR_PARAM; - -	if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) { -		hw_dbg("PHY Address %u is out of range\n", offset); -		goto out; -	} - -	ret_val = hw->phy.ops.acquire(hw); -	if (ret_val) -		goto out; - -	ret_val = igb_read_phy_reg_i2c(hw, offset, data); - -	hw->phy.ops.release(hw); - -out: -	return ret_val; -} - -/** - *  igb_write_phy_reg_sgmii_82575 - Write PHY register using sgmii - *  @hw: pointer to the HW structure - *  @offset: register offset to write to - *  @data: data to write at register offset - * - *  Writes the data to PHY register at the offset using the serial gigabit - *  media independent interface. - **/ -static s32 igb_write_phy_reg_sgmii_82575(struct e1000_hw *hw, u32 offset, -					   u16 data) -{ -	s32 ret_val = -E1000_ERR_PARAM; - - -	if (offset > E1000_MAX_SGMII_PHY_REG_ADDR) { -		hw_dbg("PHY Address %d is out of range\n", offset); -		goto out; -	} - -	ret_val = hw->phy.ops.acquire(hw); -	if (ret_val) -		goto out; - -	ret_val = igb_write_phy_reg_i2c(hw, offset, data); - -	hw->phy.ops.release(hw); - -out: -	return ret_val; -} - -/** - *  igb_get_phy_id_82575 - Retrieve PHY addr and id - *  @hw: pointer to the HW structure - * - *  Retrieves the PHY address and ID for both PHY's which do and do not use - *  sgmi interface. - **/ -static s32 igb_get_phy_id_82575(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32  ret_val = 0; -	u16 phy_id; -	u32 ctrl_ext; -	u32 mdic; - -	/* -	 * For SGMII PHYs, we try the list of possible addresses until -	 * we find one that works.  For non-SGMII PHYs -	 * (e.g. integrated copper PHYs), an address of 1 should -	 * work.  The result of this function should mean phy->phy_addr -	 * and phy->id are set correctly. -	 */ -	if (!(igb_sgmii_active_82575(hw))) { -		phy->addr = 1; -		ret_val = igb_get_phy_id(hw); -		goto out; -	} - -	if (igb_sgmii_uses_mdio_82575(hw)) { -		switch (hw->mac.type) { -		case e1000_82575: -		case e1000_82576: -			mdic = rd32(E1000_MDIC); -			mdic &= E1000_MDIC_PHY_MASK; -			phy->addr = mdic >> E1000_MDIC_PHY_SHIFT; -			break; -		case e1000_82580: -		case e1000_i350: -			mdic = rd32(E1000_MDICNFG); -			mdic &= E1000_MDICNFG_PHY_MASK; -			phy->addr = mdic >> E1000_MDICNFG_PHY_SHIFT; -			break; -		default: -			ret_val = -E1000_ERR_PHY; -			goto out; -			break; -		} -		ret_val = igb_get_phy_id(hw); -		goto out; -	} - -	/* Power on sgmii phy if it is disabled */ -	ctrl_ext = rd32(E1000_CTRL_EXT); -	wr32(E1000_CTRL_EXT, ctrl_ext & ~E1000_CTRL_EXT_SDP3_DATA); -	wrfl(); -	msleep(300); - -	/* -	 * The address field in the I2CCMD register is 3 bits and 0 is invalid. -	 * Therefore, we need to test 1-7 -	 */ -	for (phy->addr = 1; phy->addr < 8; phy->addr++) { -		ret_val = igb_read_phy_reg_sgmii_82575(hw, PHY_ID1, &phy_id); -		if (ret_val == 0) { -			hw_dbg("Vendor ID 0x%08X read at address %u\n", -			       phy_id, phy->addr); -			/* -			 * At the time of this writing, The M88 part is -			 * the only supported SGMII PHY product. -			 */ -			if (phy_id == M88_VENDOR) -				break; -		} else { -			hw_dbg("PHY address %u was unreadable\n", phy->addr); -		} -	} - -	/* A valid PHY type couldn't be found. */ -	if (phy->addr == 8) { -		phy->addr = 0; -		ret_val = -E1000_ERR_PHY; -		goto out; -	} else { -		ret_val = igb_get_phy_id(hw); -	} - -	/* restore previous sfp cage power state */ -	wr32(E1000_CTRL_EXT, ctrl_ext); - -out: -	return ret_val; -} - -/** - *  igb_phy_hw_reset_sgmii_82575 - Performs a PHY reset - *  @hw: pointer to the HW structure - * - *  Resets the PHY using the serial gigabit media independent interface. - **/ -static s32 igb_phy_hw_reset_sgmii_82575(struct e1000_hw *hw) -{ -	s32 ret_val; - -	/* -	 * This isn't a true "hard" reset, but is the only reset -	 * available to us at this time. -	 */ - -	hw_dbg("Soft resetting SGMII attached PHY...\n"); - -	/* -	 * SFP documentation requires the following to configure the SPF module -	 * to work on SGMII.  No further documentation is given. -	 */ -	ret_val = hw->phy.ops.write_reg(hw, 0x1B, 0x8084); -	if (ret_val) -		goto out; - -	ret_val = igb_phy_sw_reset(hw); - -out: -	return ret_val; -} - -/** - *  igb_set_d0_lplu_state_82575 - Set Low Power Linkup D0 state - *  @hw: pointer to the HW structure - *  @active: true to enable LPLU, false to disable - * - *  Sets the LPLU D0 state according to the active flag.  When - *  activating LPLU this function also disables smart speed - *  and vice versa.  LPLU will not be activated unless the - *  device autonegotiation advertisement meets standards of - *  either 10 or 10/100 or 10/100/1000 at all duplexes. - *  This is a function pointer entry point only called by - *  PHY setup routines. - **/ -static s32 igb_set_d0_lplu_state_82575(struct e1000_hw *hw, bool active) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 data; - -	ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data); -	if (ret_val) -		goto out; - -	if (active) { -		data |= IGP02E1000_PM_D0_LPLU; -		ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT, -						 data); -		if (ret_val) -			goto out; - -		/* When LPLU is enabled, we should disable SmartSpeed */ -		ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG, -						&data); -		data &= ~IGP01E1000_PSCFR_SMART_SPEED; -		ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG, -						 data); -		if (ret_val) -			goto out; -	} else { -		data &= ~IGP02E1000_PM_D0_LPLU; -		ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT, -						 data); -		/* -		 * LPLU and SmartSpeed are mutually exclusive.  LPLU is used -		 * during Dx states where the power conservation is most -		 * important.  During driver activity we should enable -		 * SmartSpeed, so performance is maintained. -		 */ -		if (phy->smart_speed == e1000_smart_speed_on) { -			ret_val = phy->ops.read_reg(hw, -					IGP01E1000_PHY_PORT_CONFIG, &data); -			if (ret_val) -				goto out; - -			data |= IGP01E1000_PSCFR_SMART_SPEED; -			ret_val = phy->ops.write_reg(hw, -					IGP01E1000_PHY_PORT_CONFIG, data); -			if (ret_val) -				goto out; -		} else if (phy->smart_speed == e1000_smart_speed_off) { -			ret_val = phy->ops.read_reg(hw, -					IGP01E1000_PHY_PORT_CONFIG, &data); -			if (ret_val) -				goto out; - -			data &= ~IGP01E1000_PSCFR_SMART_SPEED; -			ret_val = phy->ops.write_reg(hw, -					IGP01E1000_PHY_PORT_CONFIG, data); -			if (ret_val) -				goto out; -		} -	} - -out: -	return ret_val; -} - -/** - *  igb_acquire_nvm_82575 - Request for access to EEPROM - *  @hw: pointer to the HW structure - * - *  Acquire the necessary semaphores for exclusive access to the EEPROM. - *  Set the EEPROM access request bit and wait for EEPROM access grant bit. - *  Return successful if access grant bit set, else clear the request for - *  EEPROM access and return -E1000_ERR_NVM (-1). - **/ -static s32 igb_acquire_nvm_82575(struct e1000_hw *hw) -{ -	s32 ret_val; - -	ret_val = igb_acquire_swfw_sync_82575(hw, E1000_SWFW_EEP_SM); -	if (ret_val) -		goto out; - -	ret_val = igb_acquire_nvm(hw); - -	if (ret_val) -		igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM); - -out: -	return ret_val; -} - -/** - *  igb_release_nvm_82575 - Release exclusive access to EEPROM - *  @hw: pointer to the HW structure - * - *  Stop any current commands to the EEPROM and clear the EEPROM request bit, - *  then release the semaphores acquired. - **/ -static void igb_release_nvm_82575(struct e1000_hw *hw) -{ -	igb_release_nvm(hw); -	igb_release_swfw_sync_82575(hw, E1000_SWFW_EEP_SM); -} - -/** - *  igb_acquire_swfw_sync_82575 - Acquire SW/FW semaphore - *  @hw: pointer to the HW structure - *  @mask: specifies which semaphore to acquire - * - *  Acquire the SW/FW semaphore to access the PHY or NVM.  The mask - *  will also specify which port we're acquiring the lock for. - **/ -static s32 igb_acquire_swfw_sync_82575(struct e1000_hw *hw, u16 mask) -{ -	u32 swfw_sync; -	u32 swmask = mask; -	u32 fwmask = mask << 16; -	s32 ret_val = 0; -	s32 i = 0, timeout = 200; /* FIXME: find real value to use here */ - -	while (i < timeout) { -		if (igb_get_hw_semaphore(hw)) { -			ret_val = -E1000_ERR_SWFW_SYNC; -			goto out; -		} - -		swfw_sync = rd32(E1000_SW_FW_SYNC); -		if (!(swfw_sync & (fwmask | swmask))) -			break; - -		/* -		 * Firmware currently using resource (fwmask) -		 * or other software thread using resource (swmask) -		 */ -		igb_put_hw_semaphore(hw); -		mdelay(5); -		i++; -	} - -	if (i == timeout) { -		hw_dbg("Driver can't access resource, SW_FW_SYNC timeout.\n"); -		ret_val = -E1000_ERR_SWFW_SYNC; -		goto out; -	} - -	swfw_sync |= swmask; -	wr32(E1000_SW_FW_SYNC, swfw_sync); - -	igb_put_hw_semaphore(hw); - -out: -	return ret_val; -} - -/** - *  igb_release_swfw_sync_82575 - Release SW/FW semaphore - *  @hw: pointer to the HW structure - *  @mask: specifies which semaphore to acquire - * - *  Release the SW/FW semaphore used to access the PHY or NVM.  The mask - *  will also specify which port we're releasing the lock for. - **/ -static void igb_release_swfw_sync_82575(struct e1000_hw *hw, u16 mask) -{ -	u32 swfw_sync; - -	while (igb_get_hw_semaphore(hw) != 0); -	/* Empty */ - -	swfw_sync = rd32(E1000_SW_FW_SYNC); -	swfw_sync &= ~mask; -	wr32(E1000_SW_FW_SYNC, swfw_sync); - -	igb_put_hw_semaphore(hw); -} - -/** - *  igb_get_cfg_done_82575 - Read config done bit - *  @hw: pointer to the HW structure - * - *  Read the management control register for the config done bit for - *  completion status.  NOTE: silicon which is EEPROM-less will fail trying - *  to read the config done bit, so an error is *ONLY* logged and returns - *  0.  If we were to return with error, EEPROM-less silicon - *  would not be able to be reset or change link. - **/ -static s32 igb_get_cfg_done_82575(struct e1000_hw *hw) -{ -	s32 timeout = PHY_CFG_TIMEOUT; -	s32 ret_val = 0; -	u32 mask = E1000_NVM_CFG_DONE_PORT_0; - -	if (hw->bus.func == 1) -		mask = E1000_NVM_CFG_DONE_PORT_1; -	else if (hw->bus.func == E1000_FUNC_2) -		mask = E1000_NVM_CFG_DONE_PORT_2; -	else if (hw->bus.func == E1000_FUNC_3) -		mask = E1000_NVM_CFG_DONE_PORT_3; - -	while (timeout) { -		if (rd32(E1000_EEMNGCTL) & mask) -			break; -		msleep(1); -		timeout--; -	} -	if (!timeout) -		hw_dbg("MNG configuration cycle has not completed.\n"); - -	/* If EEPROM is not marked present, init the PHY manually */ -	if (((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) && -	    (hw->phy.type == e1000_phy_igp_3)) -		igb_phy_init_script_igp3(hw); - -	return ret_val; -} - -/** - *  igb_check_for_link_82575 - Check for link - *  @hw: pointer to the HW structure - * - *  If sgmii is enabled, then use the pcs register to determine link, otherwise - *  use the generic interface for determining link. - **/ -static s32 igb_check_for_link_82575(struct e1000_hw *hw) -{ -	s32 ret_val; -	u16 speed, duplex; - -	if (hw->phy.media_type != e1000_media_type_copper) { -		ret_val = igb_get_pcs_speed_and_duplex_82575(hw, &speed, -		                                             &duplex); -		/* -		 * Use this flag to determine if link needs to be checked or -		 * not.  If  we have link clear the flag so that we do not -		 * continue to check for link. -		 */ -		hw->mac.get_link_status = !hw->mac.serdes_has_link; -	} else { -		ret_val = igb_check_for_copper_link(hw); -	} - -	return ret_val; -} - -/** - *  igb_power_up_serdes_link_82575 - Power up the serdes link after shutdown - *  @hw: pointer to the HW structure - **/ -void igb_power_up_serdes_link_82575(struct e1000_hw *hw) -{ -	u32 reg; - - -	if ((hw->phy.media_type != e1000_media_type_internal_serdes) && -	    !igb_sgmii_active_82575(hw)) -		return; - -	/* Enable PCS to turn on link */ -	reg = rd32(E1000_PCS_CFG0); -	reg |= E1000_PCS_CFG_PCS_EN; -	wr32(E1000_PCS_CFG0, reg); - -	/* Power up the laser */ -	reg = rd32(E1000_CTRL_EXT); -	reg &= ~E1000_CTRL_EXT_SDP3_DATA; -	wr32(E1000_CTRL_EXT, reg); - -	/* flush the write to verify completion */ -	wrfl(); -	msleep(1); -} - -/** - *  igb_get_pcs_speed_and_duplex_82575 - Retrieve current speed/duplex - *  @hw: pointer to the HW structure - *  @speed: stores the current speed - *  @duplex: stores the current duplex - * - *  Using the physical coding sub-layer (PCS), retrieve the current speed and - *  duplex, then store the values in the pointers provided. - **/ -static s32 igb_get_pcs_speed_and_duplex_82575(struct e1000_hw *hw, u16 *speed, -						u16 *duplex) -{ -	struct e1000_mac_info *mac = &hw->mac; -	u32 pcs; - -	/* Set up defaults for the return values of this function */ -	mac->serdes_has_link = false; -	*speed = 0; -	*duplex = 0; - -	/* -	 * Read the PCS Status register for link state. For non-copper mode, -	 * the status register is not accurate. The PCS status register is -	 * used instead. -	 */ -	pcs = rd32(E1000_PCS_LSTAT); - -	/* -	 * The link up bit determines when link is up on autoneg. The sync ok -	 * gets set once both sides sync up and agree upon link. Stable link -	 * can be determined by checking for both link up and link sync ok -	 */ -	if ((pcs & E1000_PCS_LSTS_LINK_OK) && (pcs & E1000_PCS_LSTS_SYNK_OK)) { -		mac->serdes_has_link = true; - -		/* Detect and store PCS speed */ -		if (pcs & E1000_PCS_LSTS_SPEED_1000) { -			*speed = SPEED_1000; -		} else if (pcs & E1000_PCS_LSTS_SPEED_100) { -			*speed = SPEED_100; -		} else { -			*speed = SPEED_10; -		} - -		/* Detect and store PCS duplex */ -		if (pcs & E1000_PCS_LSTS_DUPLEX_FULL) { -			*duplex = FULL_DUPLEX; -		} else { -			*duplex = HALF_DUPLEX; -		} -	} - -	return 0; -} - -/** - *  igb_shutdown_serdes_link_82575 - Remove link during power down - *  @hw: pointer to the HW structure - * - *  In the case of fiber serdes, shut down optics and PCS on driver unload - *  when management pass thru is not enabled. - **/ -void igb_shutdown_serdes_link_82575(struct e1000_hw *hw) -{ -	u32 reg; - -	if (hw->phy.media_type != e1000_media_type_internal_serdes && -	    igb_sgmii_active_82575(hw)) -		return; - -	if (!igb_enable_mng_pass_thru(hw)) { -		/* Disable PCS to turn off link */ -		reg = rd32(E1000_PCS_CFG0); -		reg &= ~E1000_PCS_CFG_PCS_EN; -		wr32(E1000_PCS_CFG0, reg); - -		/* shutdown the laser */ -		reg = rd32(E1000_CTRL_EXT); -		reg |= E1000_CTRL_EXT_SDP3_DATA; -		wr32(E1000_CTRL_EXT, reg); - -		/* flush the write to verify completion */ -		wrfl(); -		msleep(1); -	} -} - -/** - *  igb_reset_hw_82575 - Reset hardware - *  @hw: pointer to the HW structure - * - *  This resets the hardware into a known state.  This is a - *  function pointer entry point called by the api module. - **/ -static s32 igb_reset_hw_82575(struct e1000_hw *hw) -{ -	u32 ctrl, icr; -	s32 ret_val; - -	/* -	 * Prevent the PCI-E bus from sticking if there is no TLP connection -	 * on the last TLP read/write transaction when MAC is reset. -	 */ -	ret_val = igb_disable_pcie_master(hw); -	if (ret_val) -		hw_dbg("PCI-E Master disable polling has failed.\n"); - -	/* set the completion timeout for interface */ -	ret_val = igb_set_pcie_completion_timeout(hw); -	if (ret_val) { -		hw_dbg("PCI-E Set completion timeout has failed.\n"); -	} - -	hw_dbg("Masking off all interrupts\n"); -	wr32(E1000_IMC, 0xffffffff); - -	wr32(E1000_RCTL, 0); -	wr32(E1000_TCTL, E1000_TCTL_PSP); -	wrfl(); - -	msleep(10); - -	ctrl = rd32(E1000_CTRL); - -	hw_dbg("Issuing a global reset to MAC\n"); -	wr32(E1000_CTRL, ctrl | E1000_CTRL_RST); - -	ret_val = igb_get_auto_rd_done(hw); -	if (ret_val) { -		/* -		 * When auto config read does not complete, do not -		 * return with an error. This can happen in situations -		 * where there is no eeprom and prevents getting link. -		 */ -		hw_dbg("Auto Read Done did not complete\n"); -	} - -	/* If EEPROM is not present, run manual init scripts */ -	if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) -		igb_reset_init_script_82575(hw); - -	/* Clear any pending interrupt events. */ -	wr32(E1000_IMC, 0xffffffff); -	icr = rd32(E1000_ICR); - -	/* Install any alternate MAC address into RAR0 */ -	ret_val = igb_check_alt_mac_addr(hw); - -	return ret_val; -} - -/** - *  igb_init_hw_82575 - Initialize hardware - *  @hw: pointer to the HW structure - * - *  This inits the hardware readying it for operation. - **/ -static s32 igb_init_hw_82575(struct e1000_hw *hw) -{ -	struct e1000_mac_info *mac = &hw->mac; -	s32 ret_val; -	u16 i, rar_count = mac->rar_entry_count; - -	/* Initialize identification LED */ -	ret_val = igb_id_led_init(hw); -	if (ret_val) { -		hw_dbg("Error initializing identification LED\n"); -		/* This is not fatal and we should not stop init due to this */ -	} - -	/* Disabling VLAN filtering */ -	hw_dbg("Initializing the IEEE VLAN\n"); -	igb_clear_vfta(hw); - -	/* Setup the receive address */ -	igb_init_rx_addrs(hw, rar_count); - -	/* Zero out the Multicast HASH table */ -	hw_dbg("Zeroing the MTA\n"); -	for (i = 0; i < mac->mta_reg_count; i++) -		array_wr32(E1000_MTA, i, 0); - -	/* Zero out the Unicast HASH table */ -	hw_dbg("Zeroing the UTA\n"); -	for (i = 0; i < mac->uta_reg_count; i++) -		array_wr32(E1000_UTA, i, 0); - -	/* Setup link and flow control */ -	ret_val = igb_setup_link(hw); - -	/* -	 * Clear all of the statistics registers (clear on read).  It is -	 * important that we do this after we have tried to establish link -	 * because the symbol error count will increment wildly if there -	 * is no link. -	 */ -	igb_clear_hw_cntrs_82575(hw); - -	return ret_val; -} - -/** - *  igb_setup_copper_link_82575 - Configure copper link settings - *  @hw: pointer to the HW structure - * - *  Configures the link for auto-neg or forced speed and duplex.  Then we check - *  for link, once link is established calls to configure collision distance - *  and flow control are called. - **/ -static s32 igb_setup_copper_link_82575(struct e1000_hw *hw) -{ -	u32 ctrl; -	s32  ret_val; - -	ctrl = rd32(E1000_CTRL); -	ctrl |= E1000_CTRL_SLU; -	ctrl &= ~(E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); -	wr32(E1000_CTRL, ctrl); - -	ret_val = igb_setup_serdes_link_82575(hw); -	if (ret_val) -		goto out; - -	if (igb_sgmii_active_82575(hw) && !hw->phy.reset_disable) { -		/* allow time for SFP cage time to power up phy */ -		msleep(300); - -		ret_val = hw->phy.ops.reset(hw); -		if (ret_val) { -			hw_dbg("Error resetting the PHY.\n"); -			goto out; -		} -	} -	switch (hw->phy.type) { -	case e1000_phy_m88: -		if (hw->phy.id == I347AT4_E_PHY_ID || -		    hw->phy.id == M88E1112_E_PHY_ID) -			ret_val = igb_copper_link_setup_m88_gen2(hw); -		else -			ret_val = igb_copper_link_setup_m88(hw); -		break; -	case e1000_phy_igp_3: -		ret_val = igb_copper_link_setup_igp(hw); -		break; -	case e1000_phy_82580: -		ret_val = igb_copper_link_setup_82580(hw); -		break; -	default: -		ret_val = -E1000_ERR_PHY; -		break; -	} - -	if (ret_val) -		goto out; - -	ret_val = igb_setup_copper_link(hw); -out: -	return ret_val; -} - -/** - *  igb_setup_serdes_link_82575 - Setup link for serdes - *  @hw: pointer to the HW structure - * - *  Configure the physical coding sub-layer (PCS) link.  The PCS link is - *  used on copper connections where the serialized gigabit media independent - *  interface (sgmii), or serdes fiber is being used.  Configures the link - *  for auto-negotiation or forces speed/duplex. - **/ -static s32 igb_setup_serdes_link_82575(struct e1000_hw *hw) -{ -	u32 ctrl_ext, ctrl_reg, reg; -	bool pcs_autoneg; - -	if ((hw->phy.media_type != e1000_media_type_internal_serdes) && -	    !igb_sgmii_active_82575(hw)) -		return 0; - -	/* -	 * On the 82575, SerDes loopback mode persists until it is -	 * explicitly turned off or a power cycle is performed.  A read to -	 * the register does not indicate its status.  Therefore, we ensure -	 * loopback mode is disabled during initialization. -	 */ -	wr32(E1000_SCTL, E1000_SCTL_DISABLE_SERDES_LOOPBACK); - -	/* power on the sfp cage if present */ -	ctrl_ext = rd32(E1000_CTRL_EXT); -	ctrl_ext &= ~E1000_CTRL_EXT_SDP3_DATA; -	wr32(E1000_CTRL_EXT, ctrl_ext); - -	ctrl_reg = rd32(E1000_CTRL); -	ctrl_reg |= E1000_CTRL_SLU; - -	if (hw->mac.type == e1000_82575 || hw->mac.type == e1000_82576) { -		/* set both sw defined pins */ -		ctrl_reg |= E1000_CTRL_SWDPIN0 | E1000_CTRL_SWDPIN1; - -		/* Set switch control to serdes energy detect */ -		reg = rd32(E1000_CONNSW); -		reg |= E1000_CONNSW_ENRGSRC; -		wr32(E1000_CONNSW, reg); -	} - -	reg = rd32(E1000_PCS_LCTL); - -	/* default pcs_autoneg to the same setting as mac autoneg */ -	pcs_autoneg = hw->mac.autoneg; - -	switch (ctrl_ext & E1000_CTRL_EXT_LINK_MODE_MASK) { -	case E1000_CTRL_EXT_LINK_MODE_SGMII: -		/* sgmii mode lets the phy handle forcing speed/duplex */ -		pcs_autoneg = true; -		/* autoneg time out should be disabled for SGMII mode */ -		reg &= ~(E1000_PCS_LCTL_AN_TIMEOUT); -		break; -	case E1000_CTRL_EXT_LINK_MODE_1000BASE_KX: -		/* disable PCS autoneg and support parallel detect only */ -		pcs_autoneg = false; -	default: -		/* -		 * non-SGMII modes only supports a speed of 1000/Full for the -		 * link so it is best to just force the MAC and let the pcs -		 * link either autoneg or be forced to 1000/Full -		 */ -		ctrl_reg |= E1000_CTRL_SPD_1000 | E1000_CTRL_FRCSPD | -		            E1000_CTRL_FD | E1000_CTRL_FRCDPX; - -		/* set speed of 1000/Full if speed/duplex is forced */ -		reg |= E1000_PCS_LCTL_FSV_1000 | E1000_PCS_LCTL_FDV_FULL; -		break; -	} - -	wr32(E1000_CTRL, ctrl_reg); - -	/* -	 * New SerDes mode allows for forcing speed or autonegotiating speed -	 * at 1gb. Autoneg should be default set by most drivers. This is the -	 * mode that will be compatible with older link partners and switches. -	 * However, both are supported by the hardware and some drivers/tools. -	 */ -	reg &= ~(E1000_PCS_LCTL_AN_ENABLE | E1000_PCS_LCTL_FLV_LINK_UP | -		E1000_PCS_LCTL_FSD | E1000_PCS_LCTL_FORCE_LINK); - -	/* -	 * We force flow control to prevent the CTRL register values from being -	 * overwritten by the autonegotiated flow control values -	 */ -	reg |= E1000_PCS_LCTL_FORCE_FCTRL; - -	if (pcs_autoneg) { -		/* Set PCS register for autoneg */ -		reg |= E1000_PCS_LCTL_AN_ENABLE | /* Enable Autoneg */ -		       E1000_PCS_LCTL_AN_RESTART; /* Restart autoneg */ -		hw_dbg("Configuring Autoneg:PCS_LCTL=0x%08X\n", reg); -	} else { -		/* Set PCS register for forced link */ -		reg |= E1000_PCS_LCTL_FSD;        /* Force Speed */ - -		hw_dbg("Configuring Forced Link:PCS_LCTL=0x%08X\n", reg); -	} - -	wr32(E1000_PCS_LCTL, reg); - -	if (!igb_sgmii_active_82575(hw)) -		igb_force_mac_fc(hw); - -	return 0; -} - -/** - *  igb_sgmii_active_82575 - Return sgmii state - *  @hw: pointer to the HW structure - * - *  82575 silicon has a serialized gigabit media independent interface (sgmii) - *  which can be enabled for use in the embedded applications.  Simply - *  return the current state of the sgmii interface. - **/ -static bool igb_sgmii_active_82575(struct e1000_hw *hw) -{ -	struct e1000_dev_spec_82575 *dev_spec = &hw->dev_spec._82575; -	return dev_spec->sgmii_active; -} - -/** - *  igb_reset_init_script_82575 - Inits HW defaults after reset - *  @hw: pointer to the HW structure - * - *  Inits recommended HW defaults after a reset when there is no EEPROM - *  detected. This is only for the 82575. - **/ -static s32 igb_reset_init_script_82575(struct e1000_hw *hw) -{ -	if (hw->mac.type == e1000_82575) { -		hw_dbg("Running reset init script for 82575\n"); -		/* SerDes configuration via SERDESCTRL */ -		igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x00, 0x0C); -		igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x01, 0x78); -		igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x1B, 0x23); -		igb_write_8bit_ctrl_reg(hw, E1000_SCTL, 0x23, 0x15); - -		/* CCM configuration via CCMCTL register */ -		igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x14, 0x00); -		igb_write_8bit_ctrl_reg(hw, E1000_CCMCTL, 0x10, 0x00); - -		/* PCIe lanes configuration */ -		igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x00, 0xEC); -		igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x61, 0xDF); -		igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x34, 0x05); -		igb_write_8bit_ctrl_reg(hw, E1000_GIOCTL, 0x2F, 0x81); - -		/* PCIe PLL Configuration */ -		igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x02, 0x47); -		igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x14, 0x00); -		igb_write_8bit_ctrl_reg(hw, E1000_SCCTL, 0x10, 0x00); -	} - -	return 0; -} - -/** - *  igb_read_mac_addr_82575 - Read device MAC address - *  @hw: pointer to the HW structure - **/ -static s32 igb_read_mac_addr_82575(struct e1000_hw *hw) -{ -	s32 ret_val = 0; - -	/* -	 * If there's an alternate MAC address place it in RAR0 -	 * so that it will override the Si installed default perm -	 * address. -	 */ -	ret_val = igb_check_alt_mac_addr(hw); -	if (ret_val) -		goto out; - -	ret_val = igb_read_mac_addr(hw); - -out: -	return ret_val; -} - -/** - * igb_power_down_phy_copper_82575 - Remove link during PHY power down - * @hw: pointer to the HW structure - * - * In the case of a PHY power down to save power, or to turn off link during a - * driver unload, or wake on lan is not enabled, remove the link. - **/ -void igb_power_down_phy_copper_82575(struct e1000_hw *hw) -{ -	/* If the management interface is not enabled, then power down */ -	if (!(igb_enable_mng_pass_thru(hw) || igb_check_reset_block(hw))) -		igb_power_down_phy_copper(hw); -} - -/** - *  igb_clear_hw_cntrs_82575 - Clear device specific hardware counters - *  @hw: pointer to the HW structure - * - *  Clears the hardware counters by reading the counter registers. - **/ -static void igb_clear_hw_cntrs_82575(struct e1000_hw *hw) -{ -	igb_clear_hw_cntrs_base(hw); - -	rd32(E1000_PRC64); -	rd32(E1000_PRC127); -	rd32(E1000_PRC255); -	rd32(E1000_PRC511); -	rd32(E1000_PRC1023); -	rd32(E1000_PRC1522); -	rd32(E1000_PTC64); -	rd32(E1000_PTC127); -	rd32(E1000_PTC255); -	rd32(E1000_PTC511); -	rd32(E1000_PTC1023); -	rd32(E1000_PTC1522); - -	rd32(E1000_ALGNERRC); -	rd32(E1000_RXERRC); -	rd32(E1000_TNCRS); -	rd32(E1000_CEXTERR); -	rd32(E1000_TSCTC); -	rd32(E1000_TSCTFC); - -	rd32(E1000_MGTPRC); -	rd32(E1000_MGTPDC); -	rd32(E1000_MGTPTC); - -	rd32(E1000_IAC); -	rd32(E1000_ICRXOC); - -	rd32(E1000_ICRXPTC); -	rd32(E1000_ICRXATC); -	rd32(E1000_ICTXPTC); -	rd32(E1000_ICTXATC); -	rd32(E1000_ICTXQEC); -	rd32(E1000_ICTXQMTC); -	rd32(E1000_ICRXDMTC); - -	rd32(E1000_CBTMPC); -	rd32(E1000_HTDPMC); -	rd32(E1000_CBRMPC); -	rd32(E1000_RPTHC); -	rd32(E1000_HGPTC); -	rd32(E1000_HTCBDPC); -	rd32(E1000_HGORCL); -	rd32(E1000_HGORCH); -	rd32(E1000_HGOTCL); -	rd32(E1000_HGOTCH); -	rd32(E1000_LENERRS); - -	/* This register should not be read in copper configurations */ -	if (hw->phy.media_type == e1000_media_type_internal_serdes || -	    igb_sgmii_active_82575(hw)) -		rd32(E1000_SCVPC); -} - -/** - *  igb_rx_fifo_flush_82575 - Clean rx fifo after RX enable - *  @hw: pointer to the HW structure - * - *  After rx enable if managability is enabled then there is likely some - *  bad data at the start of the fifo and possibly in the DMA fifo.  This - *  function clears the fifos and flushes any packets that came in as rx was - *  being enabled. - **/ -void igb_rx_fifo_flush_82575(struct e1000_hw *hw) -{ -	u32 rctl, rlpml, rxdctl[4], rfctl, temp_rctl, rx_enabled; -	int i, ms_wait; - -	if (hw->mac.type != e1000_82575 || -	    !(rd32(E1000_MANC) & E1000_MANC_RCV_TCO_EN)) -		return; - -	/* Disable all RX queues */ -	for (i = 0; i < 4; i++) { -		rxdctl[i] = rd32(E1000_RXDCTL(i)); -		wr32(E1000_RXDCTL(i), -		     rxdctl[i] & ~E1000_RXDCTL_QUEUE_ENABLE); -	} -	/* Poll all queues to verify they have shut down */ -	for (ms_wait = 0; ms_wait < 10; ms_wait++) { -		msleep(1); -		rx_enabled = 0; -		for (i = 0; i < 4; i++) -			rx_enabled |= rd32(E1000_RXDCTL(i)); -		if (!(rx_enabled & E1000_RXDCTL_QUEUE_ENABLE)) -			break; -	} - -	if (ms_wait == 10) -		hw_dbg("Queue disable timed out after 10ms\n"); - -	/* Clear RLPML, RCTL.SBP, RFCTL.LEF, and set RCTL.LPE so that all -	 * incoming packets are rejected.  Set enable and wait 2ms so that -	 * any packet that was coming in as RCTL.EN was set is flushed -	 */ -	rfctl = rd32(E1000_RFCTL); -	wr32(E1000_RFCTL, rfctl & ~E1000_RFCTL_LEF); - -	rlpml = rd32(E1000_RLPML); -	wr32(E1000_RLPML, 0); - -	rctl = rd32(E1000_RCTL); -	temp_rctl = rctl & ~(E1000_RCTL_EN | E1000_RCTL_SBP); -	temp_rctl |= E1000_RCTL_LPE; - -	wr32(E1000_RCTL, temp_rctl); -	wr32(E1000_RCTL, temp_rctl | E1000_RCTL_EN); -	wrfl(); -	msleep(2); - -	/* Enable RX queues that were previously enabled and restore our -	 * previous state -	 */ -	for (i = 0; i < 4; i++) -		wr32(E1000_RXDCTL(i), rxdctl[i]); -	wr32(E1000_RCTL, rctl); -	wrfl(); - -	wr32(E1000_RLPML, rlpml); -	wr32(E1000_RFCTL, rfctl); - -	/* Flush receive errors generated by workaround */ -	rd32(E1000_ROC); -	rd32(E1000_RNBC); -	rd32(E1000_MPC); -} - -/** - *  igb_set_pcie_completion_timeout - set pci-e completion timeout - *  @hw: pointer to the HW structure - * - *  The defaults for 82575 and 82576 should be in the range of 50us to 50ms, - *  however the hardware default for these parts is 500us to 1ms which is less - *  than the 10ms recommended by the pci-e spec.  To address this we need to - *  increase the value to either 10ms to 200ms for capability version 1 config, - *  or 16ms to 55ms for version 2. - **/ -static s32 igb_set_pcie_completion_timeout(struct e1000_hw *hw) -{ -	u32 gcr = rd32(E1000_GCR); -	s32 ret_val = 0; -	u16 pcie_devctl2; - -	/* only take action if timeout value is defaulted to 0 */ -	if (gcr & E1000_GCR_CMPL_TMOUT_MASK) -		goto out; - -	/* -	 * if capababilities version is type 1 we can write the -	 * timeout of 10ms to 200ms through the GCR register -	 */ -	if (!(gcr & E1000_GCR_CAP_VER2)) { -		gcr |= E1000_GCR_CMPL_TMOUT_10ms; -		goto out; -	} - -	/* -	 * for version 2 capabilities we need to write the config space -	 * directly in order to set the completion timeout value for -	 * 16ms to 55ms -	 */ -	ret_val = igb_read_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2, -	                                &pcie_devctl2); -	if (ret_val) -		goto out; - -	pcie_devctl2 |= PCIE_DEVICE_CONTROL2_16ms; - -	ret_val = igb_write_pcie_cap_reg(hw, PCIE_DEVICE_CONTROL2, -	                                 &pcie_devctl2); -out: -	/* disable completion timeout resend */ -	gcr &= ~E1000_GCR_CMPL_TMOUT_RESEND; - -	wr32(E1000_GCR, gcr); -	return ret_val; -} - -/** - *  igb_vmdq_set_loopback_pf - enable or disable vmdq loopback - *  @hw: pointer to the hardware struct - *  @enable: state to enter, either enabled or disabled - * - *  enables/disables L2 switch loopback functionality. - **/ -void igb_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable) -{ -	u32 dtxswc = rd32(E1000_DTXSWC); - -	if (enable) -		dtxswc |= E1000_DTXSWC_VMDQ_LOOPBACK_EN; -	else -		dtxswc &= ~E1000_DTXSWC_VMDQ_LOOPBACK_EN; - -	wr32(E1000_DTXSWC, dtxswc); -} - -/** - *  igb_vmdq_set_replication_pf - enable or disable vmdq replication - *  @hw: pointer to the hardware struct - *  @enable: state to enter, either enabled or disabled - * - *  enables/disables replication of packets across multiple pools. - **/ -void igb_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable) -{ -	u32 vt_ctl = rd32(E1000_VT_CTL); - -	if (enable) -		vt_ctl |= E1000_VT_CTL_VM_REPL_EN; -	else -		vt_ctl &= ~E1000_VT_CTL_VM_REPL_EN; - -	wr32(E1000_VT_CTL, vt_ctl); -} - -/** - *  igb_read_phy_reg_82580 - Read 82580 MDI control register - *  @hw: pointer to the HW structure - *  @offset: register offset to be read - *  @data: pointer to the read data - * - *  Reads the MDI control register in the PHY at offset and stores the - *  information read to data. - **/ -static s32 igb_read_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 *data) -{ -	s32 ret_val; - - -	ret_val = hw->phy.ops.acquire(hw); -	if (ret_val) -		goto out; - -	ret_val = igb_read_phy_reg_mdic(hw, offset, data); - -	hw->phy.ops.release(hw); - -out: -	return ret_val; -} - -/** - *  igb_write_phy_reg_82580 - Write 82580 MDI control register - *  @hw: pointer to the HW structure - *  @offset: register offset to write to - *  @data: data to write to register at offset - * - *  Writes data to MDI control register in the PHY at offset. - **/ -static s32 igb_write_phy_reg_82580(struct e1000_hw *hw, u32 offset, u16 data) -{ -	s32 ret_val; - - -	ret_val = hw->phy.ops.acquire(hw); -	if (ret_val) -		goto out; - -	ret_val = igb_write_phy_reg_mdic(hw, offset, data); - -	hw->phy.ops.release(hw); - -out: -	return ret_val; -} - -/** - *  igb_reset_mdicnfg_82580 - Reset MDICNFG destination and com_mdio bits - *  @hw: pointer to the HW structure - * - *  This resets the the MDICNFG.Destination and MDICNFG.Com_MDIO bits based on - *  the values found in the EEPROM.  This addresses an issue in which these - *  bits are not restored from EEPROM after reset. - **/ -static s32 igb_reset_mdicnfg_82580(struct e1000_hw *hw) -{ -	s32 ret_val = 0; -	u32 mdicnfg; -	u16 nvm_data; - -	if (hw->mac.type != e1000_82580) -		goto out; -	if (!igb_sgmii_active_82575(hw)) -		goto out; - -	ret_val = hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A + -				   NVM_82580_LAN_FUNC_OFFSET(hw->bus.func), 1, -				   &nvm_data); -	if (ret_val) { -		hw_dbg("NVM Read Error\n"); -		goto out; -	} - -	mdicnfg = rd32(E1000_MDICNFG); -	if (nvm_data & NVM_WORD24_EXT_MDIO) -		mdicnfg |= E1000_MDICNFG_EXT_MDIO; -	if (nvm_data & NVM_WORD24_COM_MDIO) -		mdicnfg |= E1000_MDICNFG_COM_MDIO; -	wr32(E1000_MDICNFG, mdicnfg); -out: -	return ret_val; -} - -/** - *  igb_reset_hw_82580 - Reset hardware - *  @hw: pointer to the HW structure - * - *  This resets function or entire device (all ports, etc.) - *  to a known state. - **/ -static s32 igb_reset_hw_82580(struct e1000_hw *hw) -{ -	s32 ret_val = 0; -	/* BH SW mailbox bit in SW_FW_SYNC */ -	u16 swmbsw_mask = E1000_SW_SYNCH_MB; -	u32 ctrl, icr; -	bool global_device_reset = hw->dev_spec._82575.global_device_reset; - - -	hw->dev_spec._82575.global_device_reset = false; - -	/* Get current control state. */ -	ctrl = rd32(E1000_CTRL); - -	/* -	 * Prevent the PCI-E bus from sticking if there is no TLP connection -	 * on the last TLP read/write transaction when MAC is reset. -	 */ -	ret_val = igb_disable_pcie_master(hw); -	if (ret_val) -		hw_dbg("PCI-E Master disable polling has failed.\n"); - -	hw_dbg("Masking off all interrupts\n"); -	wr32(E1000_IMC, 0xffffffff); -	wr32(E1000_RCTL, 0); -	wr32(E1000_TCTL, E1000_TCTL_PSP); -	wrfl(); - -	msleep(10); - -	/* Determine whether or not a global dev reset is requested */ -	if (global_device_reset && -		igb_acquire_swfw_sync_82575(hw, swmbsw_mask)) -			global_device_reset = false; - -	if (global_device_reset && -		!(rd32(E1000_STATUS) & E1000_STAT_DEV_RST_SET)) -		ctrl |= E1000_CTRL_DEV_RST; -	else -		ctrl |= E1000_CTRL_RST; - -	wr32(E1000_CTRL, ctrl); - -	/* Add delay to insure DEV_RST has time to complete */ -	if (global_device_reset) -		msleep(5); - -	ret_val = igb_get_auto_rd_done(hw); -	if (ret_val) { -		/* -		 * When auto config read does not complete, do not -		 * return with an error. This can happen in situations -		 * where there is no eeprom and prevents getting link. -		 */ -		hw_dbg("Auto Read Done did not complete\n"); -	} - -	/* If EEPROM is not present, run manual init scripts */ -	if ((rd32(E1000_EECD) & E1000_EECD_PRES) == 0) -		igb_reset_init_script_82575(hw); - -	/* clear global device reset status bit */ -	wr32(E1000_STATUS, E1000_STAT_DEV_RST_SET); - -	/* Clear any pending interrupt events. */ -	wr32(E1000_IMC, 0xffffffff); -	icr = rd32(E1000_ICR); - -	ret_val = igb_reset_mdicnfg_82580(hw); -	if (ret_val) -		hw_dbg("Could not reset MDICNFG based on EEPROM\n"); - -	/* Install any alternate MAC address into RAR0 */ -	ret_val = igb_check_alt_mac_addr(hw); - -	/* Release semaphore */ -	if (global_device_reset) -		igb_release_swfw_sync_82575(hw, swmbsw_mask); - -	return ret_val; -} - -/** - *  igb_rxpbs_adjust_82580 - adjust RXPBS value to reflect actual RX PBA size - *  @data: data received by reading RXPBS register - * - *  The 82580 uses a table based approach for packet buffer allocation sizes. - *  This function converts the retrieved value into the correct table value - *     0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7 - *  0x0 36  72 144   1   2   4   8  16 - *  0x8 35  70 140 rsv rsv rsv rsv rsv - */ -u16 igb_rxpbs_adjust_82580(u32 data) -{ -	u16 ret_val = 0; - -	if (data < E1000_82580_RXPBS_TABLE_SIZE) -		ret_val = e1000_82580_rxpbs_table[data]; - -	return ret_val; -} - -static struct e1000_mac_operations e1000_mac_ops_82575 = { -	.init_hw              = igb_init_hw_82575, -	.check_for_link       = igb_check_for_link_82575, -	.rar_set              = igb_rar_set, -	.read_mac_addr        = igb_read_mac_addr_82575, -	.get_speed_and_duplex = igb_get_speed_and_duplex_copper, -}; - -static struct e1000_phy_operations e1000_phy_ops_82575 = { -	.acquire              = igb_acquire_phy_82575, -	.get_cfg_done         = igb_get_cfg_done_82575, -	.release              = igb_release_phy_82575, -}; - -static struct e1000_nvm_operations e1000_nvm_ops_82575 = { -	.acquire              = igb_acquire_nvm_82575, -	.read                 = igb_read_nvm_eerd, -	.release              = igb_release_nvm_82575, -	.write                = igb_write_nvm_spi, -}; - -const struct e1000_info e1000_82575_info = { -	.get_invariants = igb_get_invariants_82575, -	.mac_ops = &e1000_mac_ops_82575, -	.phy_ops = &e1000_phy_ops_82575, -	.nvm_ops = &e1000_nvm_ops_82575, -}; - diff --git a/drivers/net/igb/e1000_82575.h b/drivers/net/igb/e1000_82575.h deleted file mode 100644 index cbd1e1259e4..00000000000 --- a/drivers/net/igb/e1000_82575.h +++ /dev/null @@ -1,250 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_82575_H_ -#define _E1000_82575_H_ - -extern void igb_shutdown_serdes_link_82575(struct e1000_hw *hw); -extern void igb_power_up_serdes_link_82575(struct e1000_hw *hw); -extern void igb_power_down_phy_copper_82575(struct e1000_hw *hw); -extern void igb_rx_fifo_flush_82575(struct e1000_hw *hw); - -#define ID_LED_DEFAULT_82575_SERDES ((ID_LED_DEF1_DEF2 << 12) | \ -                                     (ID_LED_DEF1_DEF2 <<  8) | \ -                                     (ID_LED_DEF1_DEF2 <<  4) | \ -                                     (ID_LED_OFF1_ON2)) - -#define E1000_RAR_ENTRIES_82575        16 -#define E1000_RAR_ENTRIES_82576        24 -#define E1000_RAR_ENTRIES_82580        24 -#define E1000_RAR_ENTRIES_I350         32 - -#define E1000_SW_SYNCH_MB              0x00000100 -#define E1000_STAT_DEV_RST_SET         0x00100000 -#define E1000_CTRL_DEV_RST             0x20000000 - -/* SRRCTL bit definitions */ -#define E1000_SRRCTL_BSIZEPKT_SHIFT                     10 /* Shift _right_ */ -#define E1000_SRRCTL_BSIZEHDRSIZE_SHIFT                 2  /* Shift _left_ */ -#define E1000_SRRCTL_DESCTYPE_ADV_ONEBUF                0x02000000 -#define E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS          0x0A000000 -#define E1000_SRRCTL_DROP_EN                            0x80000000 -#define E1000_SRRCTL_TIMESTAMP                          0x40000000 - -#define E1000_MRQC_ENABLE_RSS_4Q            0x00000002 -#define E1000_MRQC_ENABLE_VMDQ              0x00000003 -#define E1000_MRQC_ENABLE_VMDQ_RSS_2Q       0x00000005 -#define E1000_MRQC_RSS_FIELD_IPV4_UDP       0x00400000 -#define E1000_MRQC_RSS_FIELD_IPV6_UDP       0x00800000 -#define E1000_MRQC_RSS_FIELD_IPV6_UDP_EX    0x01000000 - -#define E1000_EICR_TX_QUEUE ( \ -    E1000_EICR_TX_QUEUE0 |    \ -    E1000_EICR_TX_QUEUE1 |    \ -    E1000_EICR_TX_QUEUE2 |    \ -    E1000_EICR_TX_QUEUE3) - -#define E1000_EICR_RX_QUEUE ( \ -    E1000_EICR_RX_QUEUE0 |    \ -    E1000_EICR_RX_QUEUE1 |    \ -    E1000_EICR_RX_QUEUE2 |    \ -    E1000_EICR_RX_QUEUE3) - -/* Immediate Interrupt Rx (A.K.A. Low Latency Interrupt) */ -#define E1000_IMIREXT_SIZE_BP     0x00001000  /* Packet size bypass */ -#define E1000_IMIREXT_CTRL_BP     0x00080000  /* Bypass check of ctrl bits */ - -/* Receive Descriptor - Advanced */ -union e1000_adv_rx_desc { -	struct { -		__le64 pkt_addr;             /* Packet buffer address */ -		__le64 hdr_addr;             /* Header buffer address */ -	} read; -	struct { -		struct { -			struct { -				__le16 pkt_info;   /* RSS type, Packet type */ -				__le16 hdr_info;   /* Split Header, -						    * header buffer length */ -			} lo_dword; -			union { -				__le32 rss;          /* RSS Hash */ -				struct { -					__le16 ip_id;    /* IP id */ -					__le16 csum;     /* Packet Checksum */ -				} csum_ip; -			} hi_dword; -		} lower; -		struct { -			__le32 status_error;     /* ext status/error */ -			__le16 length;           /* Packet length */ -			__le16 vlan;             /* VLAN tag */ -		} upper; -	} wb;  /* writeback */ -}; - -#define E1000_RXDADV_HDRBUFLEN_MASK      0x7FE0 -#define E1000_RXDADV_HDRBUFLEN_SHIFT     5 -#define E1000_RXDADV_STAT_TS             0x10000 /* Pkt was time stamped */ -#define E1000_RXDADV_STAT_TSIP           0x08000 /* timestamp in packet */ - -/* Transmit Descriptor - Advanced */ -union e1000_adv_tx_desc { -	struct { -		__le64 buffer_addr;    /* Address of descriptor's data buf */ -		__le32 cmd_type_len; -		__le32 olinfo_status; -	} read; -	struct { -		__le64 rsvd;       /* Reserved */ -		__le32 nxtseq_seed; -		__le32 status; -	} wb; -}; - -/* Adv Transmit Descriptor Config Masks */ -#define E1000_ADVTXD_MAC_TSTAMP   0x00080000 /* IEEE1588 Timestamp packet */ -#define E1000_ADVTXD_DTYP_CTXT    0x00200000 /* Advanced Context Descriptor */ -#define E1000_ADVTXD_DTYP_DATA    0x00300000 /* Advanced Data Descriptor */ -#define E1000_ADVTXD_DCMD_IFCS    0x02000000 /* Insert FCS (Ethernet CRC) */ -#define E1000_ADVTXD_DCMD_DEXT    0x20000000 /* Descriptor extension (1=Adv) */ -#define E1000_ADVTXD_DCMD_VLE     0x40000000 /* VLAN pkt enable */ -#define E1000_ADVTXD_DCMD_TSE     0x80000000 /* TCP Seg enable */ -#define E1000_ADVTXD_PAYLEN_SHIFT    14 /* Adv desc PAYLEN shift */ - -/* Context descriptors */ -struct e1000_adv_tx_context_desc { -	__le32 vlan_macip_lens; -	__le32 seqnum_seed; -	__le32 type_tucmd_mlhl; -	__le32 mss_l4len_idx; -}; - -#define E1000_ADVTXD_MACLEN_SHIFT    9  /* Adv ctxt desc mac len shift */ -#define E1000_ADVTXD_TUCMD_IPV4    0x00000400  /* IP Packet Type: 1=IPv4 */ -#define E1000_ADVTXD_TUCMD_L4T_TCP 0x00000800  /* L4 Packet TYPE of TCP */ -#define E1000_ADVTXD_TUCMD_L4T_SCTP 0x00001000 /* L4 packet TYPE of SCTP */ -/* IPSec Encrypt Enable for ESP */ -#define E1000_ADVTXD_L4LEN_SHIFT     8  /* Adv ctxt L4LEN shift */ -#define E1000_ADVTXD_MSS_SHIFT      16  /* Adv ctxt MSS shift */ -/* Adv ctxt IPSec SA IDX mask */ -/* Adv ctxt IPSec ESP len mask */ - -/* Additional Transmit Descriptor Control definitions */ -#define E1000_TXDCTL_QUEUE_ENABLE  0x02000000 /* Enable specific Tx Queue */ -/* Tx Queue Arbitration Priority 0=low, 1=high */ - -/* Additional Receive Descriptor Control definitions */ -#define E1000_RXDCTL_QUEUE_ENABLE  0x02000000 /* Enable specific Rx Queue */ - -/* Direct Cache Access (DCA) definitions */ -#define E1000_DCA_CTRL_DCA_MODE_DISABLE 0x01 /* DCA Disable */ -#define E1000_DCA_CTRL_DCA_MODE_CB2     0x02 /* DCA Mode CB2 */ - -#define E1000_DCA_RXCTRL_CPUID_MASK 0x0000001F /* Rx CPUID Mask */ -#define E1000_DCA_RXCTRL_DESC_DCA_EN (1 << 5) /* DCA Rx Desc enable */ -#define E1000_DCA_RXCTRL_HEAD_DCA_EN (1 << 6) /* DCA Rx Desc header enable */ -#define E1000_DCA_RXCTRL_DATA_DCA_EN (1 << 7) /* DCA Rx Desc payload enable */ - -#define E1000_DCA_TXCTRL_CPUID_MASK 0x0000001F /* Tx CPUID Mask */ -#define E1000_DCA_TXCTRL_DESC_DCA_EN (1 << 5) /* DCA Tx Desc enable */ -#define E1000_DCA_TXCTRL_TX_WB_RO_EN (1 << 11) /* Tx Desc writeback RO bit */ - -/* Additional DCA related definitions, note change in position of CPUID */ -#define E1000_DCA_TXCTRL_CPUID_MASK_82576 0xFF000000 /* Tx CPUID Mask */ -#define E1000_DCA_RXCTRL_CPUID_MASK_82576 0xFF000000 /* Rx CPUID Mask */ -#define E1000_DCA_TXCTRL_CPUID_SHIFT 24 /* Tx CPUID now in the last byte */ -#define E1000_DCA_RXCTRL_CPUID_SHIFT 24 /* Rx CPUID now in the last byte */ - -/* ETQF register bit definitions */ -#define E1000_ETQF_FILTER_ENABLE   (1 << 26) -#define E1000_ETQF_1588            (1 << 30) - -/* FTQF register bit definitions */ -#define E1000_FTQF_VF_BP               0x00008000 -#define E1000_FTQF_1588_TIME_STAMP     0x08000000 -#define E1000_FTQF_MASK                0xF0000000 -#define E1000_FTQF_MASK_PROTO_BP       0x10000000 -#define E1000_FTQF_MASK_SOURCE_PORT_BP 0x80000000 - -#define E1000_NVM_APME_82575          0x0400 -#define MAX_NUM_VFS                   8 - -#define E1000_DTXSWC_VMDQ_LOOPBACK_EN (1 << 31)  /* global VF LB enable */ - -/* Easy defines for setting default pool, would normally be left a zero */ -#define E1000_VT_CTL_DEFAULT_POOL_SHIFT 7 -#define E1000_VT_CTL_DEFAULT_POOL_MASK  (0x7 << E1000_VT_CTL_DEFAULT_POOL_SHIFT) - -/* Other useful VMD_CTL register defines */ -#define E1000_VT_CTL_IGNORE_MAC         (1 << 28) -#define E1000_VT_CTL_DISABLE_DEF_POOL   (1 << 29) -#define E1000_VT_CTL_VM_REPL_EN         (1 << 30) - -/* Per VM Offload register setup */ -#define E1000_VMOLR_RLPML_MASK 0x00003FFF /* Long Packet Maximum Length mask */ -#define E1000_VMOLR_LPE        0x00010000 /* Accept Long packet */ -#define E1000_VMOLR_RSSE       0x00020000 /* Enable RSS */ -#define E1000_VMOLR_AUPE       0x01000000 /* Accept untagged packets */ -#define E1000_VMOLR_ROMPE      0x02000000 /* Accept overflow multicast */ -#define E1000_VMOLR_ROPE       0x04000000 /* Accept overflow unicast */ -#define E1000_VMOLR_BAM        0x08000000 /* Accept Broadcast packets */ -#define E1000_VMOLR_MPME       0x10000000 /* Multicast promiscuous mode */ -#define E1000_VMOLR_STRVLAN    0x40000000 /* Vlan stripping enable */ -#define E1000_VMOLR_STRCRC     0x80000000 /* CRC stripping enable */ - -#define E1000_VLVF_ARRAY_SIZE     32 -#define E1000_VLVF_VLANID_MASK    0x00000FFF -#define E1000_VLVF_POOLSEL_SHIFT  12 -#define E1000_VLVF_POOLSEL_MASK   (0xFF << E1000_VLVF_POOLSEL_SHIFT) -#define E1000_VLVF_LVLAN          0x00100000 -#define E1000_VLVF_VLANID_ENABLE  0x80000000 - -#define E1000_VMVIR_VLANA_DEFAULT      0x40000000 /* Always use default VLAN */ -#define E1000_VMVIR_VLANA_NEVER        0x80000000 /* Never insert VLAN tag */ - -#define E1000_IOVCTL 0x05BBC -#define E1000_IOVCTL_REUSE_VFQ 0x00000001 - -#define E1000_RPLOLR_STRVLAN   0x40000000 -#define E1000_RPLOLR_STRCRC    0x80000000 - -#define E1000_DTXCTL_8023LL     0x0004 -#define E1000_DTXCTL_VLAN_ADDED 0x0008 -#define E1000_DTXCTL_OOS_ENABLE 0x0010 -#define E1000_DTXCTL_MDP_EN     0x0020 -#define E1000_DTXCTL_SPOOF_INT  0x0040 - -#define ALL_QUEUES   0xFFFF - -/* RX packet buffer size defines */ -#define E1000_RXPBS_SIZE_MASK_82576  0x0000007F -void igb_vmdq_set_loopback_pf(struct e1000_hw *, bool); -void igb_vmdq_set_replication_pf(struct e1000_hw *, bool); -u16 igb_rxpbs_adjust_82580(u32 data); - -#endif diff --git a/drivers/net/igb/e1000_defines.h b/drivers/net/igb/e1000_defines.h deleted file mode 100644 index 62222796a8b..00000000000 --- a/drivers/net/igb/e1000_defines.h +++ /dev/null @@ -1,766 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_DEFINES_H_ -#define _E1000_DEFINES_H_ - -/* Number of Transmit and Receive Descriptors must be a multiple of 8 */ -#define REQ_TX_DESCRIPTOR_MULTIPLE  8 -#define REQ_RX_DESCRIPTOR_MULTIPLE  8 - -/* Definitions for power management and wakeup registers */ -/* Wake Up Control */ -#define E1000_WUC_PME_EN     0x00000002 /* PME Enable */ - -/* Wake Up Filter Control */ -#define E1000_WUFC_LNKC 0x00000001 /* Link Status Change Wakeup Enable */ -#define E1000_WUFC_MAG  0x00000002 /* Magic Packet Wakeup Enable */ -#define E1000_WUFC_EX   0x00000004 /* Directed Exact Wakeup Enable */ -#define E1000_WUFC_MC   0x00000008 /* Directed Multicast Wakeup Enable */ -#define E1000_WUFC_BC   0x00000010 /* Broadcast Wakeup Enable */ - -/* Extended Device Control */ -#define E1000_CTRL_EXT_SDP3_DATA 0x00000080 /* Value of SW Defineable Pin 3 */ -/* Physical Func Reset Done Indication */ -#define E1000_CTRL_EXT_PFRSTD    0x00004000 -#define E1000_CTRL_EXT_LINK_MODE_MASK 0x00C00000 -#define E1000_CTRL_EXT_LINK_MODE_PCIE_SERDES  0x00C00000 -#define E1000_CTRL_EXT_LINK_MODE_1000BASE_KX  0x00400000 -#define E1000_CTRL_EXT_LINK_MODE_SGMII   0x00800000 -#define E1000_CTRL_EXT_EIAME          0x01000000 -#define E1000_CTRL_EXT_IRCA           0x00000001 -/* Interrupt delay cancellation */ -/* Driver loaded bit for FW */ -#define E1000_CTRL_EXT_DRV_LOAD       0x10000000 -/* Interrupt acknowledge Auto-mask */ -/* Clear Interrupt timers after IMS clear */ -/* packet buffer parity error detection enabled */ -/* descriptor FIFO parity error detection enable */ -#define E1000_CTRL_EXT_PBA_CLR        0x80000000 /* PBA Clear */ -#define E1000_I2CCMD_REG_ADDR_SHIFT   16 -#define E1000_I2CCMD_PHY_ADDR_SHIFT   24 -#define E1000_I2CCMD_OPCODE_READ      0x08000000 -#define E1000_I2CCMD_OPCODE_WRITE     0x00000000 -#define E1000_I2CCMD_READY            0x20000000 -#define E1000_I2CCMD_ERROR            0x80000000 -#define E1000_MAX_SGMII_PHY_REG_ADDR  255 -#define E1000_I2CCMD_PHY_TIMEOUT      200 -#define E1000_IVAR_VALID              0x80 -#define E1000_GPIE_NSICR              0x00000001 -#define E1000_GPIE_MSIX_MODE          0x00000010 -#define E1000_GPIE_EIAME              0x40000000 -#define E1000_GPIE_PBA                0x80000000 - -/* Receive Descriptor bit definitions */ -#define E1000_RXD_STAT_DD       0x01    /* Descriptor Done */ -#define E1000_RXD_STAT_EOP      0x02    /* End of Packet */ -#define E1000_RXD_STAT_IXSM     0x04    /* Ignore checksum */ -#define E1000_RXD_STAT_VP       0x08    /* IEEE VLAN Packet */ -#define E1000_RXD_STAT_UDPCS    0x10    /* UDP xsum calculated */ -#define E1000_RXD_STAT_TCPCS    0x20    /* TCP xsum calculated */ -#define E1000_RXD_STAT_TS       0x10000 /* Pkt was time stamped */ - -#define E1000_RXDEXT_STATERR_CE    0x01000000 -#define E1000_RXDEXT_STATERR_SE    0x02000000 -#define E1000_RXDEXT_STATERR_SEQ   0x04000000 -#define E1000_RXDEXT_STATERR_CXE   0x10000000 -#define E1000_RXDEXT_STATERR_TCPE  0x20000000 -#define E1000_RXDEXT_STATERR_IPE   0x40000000 -#define E1000_RXDEXT_STATERR_RXE   0x80000000 - -/* Same mask, but for extended and packet split descriptors */ -#define E1000_RXDEXT_ERR_FRAME_ERR_MASK ( \ -    E1000_RXDEXT_STATERR_CE  |            \ -    E1000_RXDEXT_STATERR_SE  |            \ -    E1000_RXDEXT_STATERR_SEQ |            \ -    E1000_RXDEXT_STATERR_CXE |            \ -    E1000_RXDEXT_STATERR_RXE) - -#define E1000_MRQC_RSS_FIELD_IPV4_TCP          0x00010000 -#define E1000_MRQC_RSS_FIELD_IPV4              0x00020000 -#define E1000_MRQC_RSS_FIELD_IPV6_TCP_EX       0x00040000 -#define E1000_MRQC_RSS_FIELD_IPV6              0x00100000 -#define E1000_MRQC_RSS_FIELD_IPV6_TCP          0x00200000 - - -/* Management Control */ -#define E1000_MANC_SMBUS_EN      0x00000001 /* SMBus Enabled - RO */ -#define E1000_MANC_ASF_EN        0x00000002 /* ASF Enabled - RO */ -/* Enable Neighbor Discovery Filtering */ -#define E1000_MANC_RCV_TCO_EN    0x00020000 /* Receive TCO Packets Enabled */ -#define E1000_MANC_BLK_PHY_RST_ON_IDE   0x00040000 /* Block phy resets */ -/* Enable MAC address filtering */ -#define E1000_MANC_EN_MAC_ADDR_FILTER   0x00100000 - -/* Receive Control */ -#define E1000_RCTL_EN             0x00000002    /* enable */ -#define E1000_RCTL_SBP            0x00000004    /* store bad packet */ -#define E1000_RCTL_UPE            0x00000008    /* unicast promiscuous enable */ -#define E1000_RCTL_MPE            0x00000010    /* multicast promiscuous enab */ -#define E1000_RCTL_LPE            0x00000020    /* long packet enable */ -#define E1000_RCTL_LBM_MAC        0x00000040    /* MAC loopback mode */ -#define E1000_RCTL_LBM_TCVR       0x000000C0    /* tcvr loopback mode */ -#define E1000_RCTL_RDMTS_HALF     0x00000000    /* rx desc min threshold size */ -#define E1000_RCTL_MO_SHIFT       12            /* multicast offset shift */ -#define E1000_RCTL_BAM            0x00008000    /* broadcast enable */ -#define E1000_RCTL_SZ_512         0x00020000    /* rx buffer size 512 */ -#define E1000_RCTL_SZ_256         0x00030000    /* rx buffer size 256 */ -#define E1000_RCTL_VFE            0x00040000    /* vlan filter enable */ -#define E1000_RCTL_CFIEN          0x00080000    /* canonical form enable */ -#define E1000_RCTL_SECRC          0x04000000    /* Strip Ethernet CRC */ - -/* - * Use byte values for the following shift parameters - * Usage: - *     psrctl |= (((ROUNDUP(value0, 128) >> E1000_PSRCTL_BSIZE0_SHIFT) & - *                  E1000_PSRCTL_BSIZE0_MASK) | - *                ((ROUNDUP(value1, 1024) >> E1000_PSRCTL_BSIZE1_SHIFT) & - *                  E1000_PSRCTL_BSIZE1_MASK) | - *                ((ROUNDUP(value2, 1024) << E1000_PSRCTL_BSIZE2_SHIFT) & - *                  E1000_PSRCTL_BSIZE2_MASK) | - *                ((ROUNDUP(value3, 1024) << E1000_PSRCTL_BSIZE3_SHIFT) |; - *                  E1000_PSRCTL_BSIZE3_MASK)) - * where value0 = [128..16256],  default=256 - *       value1 = [1024..64512], default=4096 - *       value2 = [0..64512],    default=4096 - *       value3 = [0..64512],    default=0 - */ - -#define E1000_PSRCTL_BSIZE0_MASK   0x0000007F -#define E1000_PSRCTL_BSIZE1_MASK   0x00003F00 -#define E1000_PSRCTL_BSIZE2_MASK   0x003F0000 -#define E1000_PSRCTL_BSIZE3_MASK   0x3F000000 - -#define E1000_PSRCTL_BSIZE0_SHIFT  7            /* Shift _right_ 7 */ -#define E1000_PSRCTL_BSIZE1_SHIFT  2            /* Shift _right_ 2 */ -#define E1000_PSRCTL_BSIZE2_SHIFT  6            /* Shift _left_ 6 */ -#define E1000_PSRCTL_BSIZE3_SHIFT 14            /* Shift _left_ 14 */ - -/* SWFW_SYNC Definitions */ -#define E1000_SWFW_EEP_SM   0x1 -#define E1000_SWFW_PHY0_SM  0x2 -#define E1000_SWFW_PHY1_SM  0x4 -#define E1000_SWFW_PHY2_SM  0x20 -#define E1000_SWFW_PHY3_SM  0x40 - -/* FACTPS Definitions */ -/* Device Control */ -#define E1000_CTRL_FD       0x00000001  /* Full duplex.0=half; 1=full */ -#define E1000_CTRL_GIO_MASTER_DISABLE 0x00000004 /*Blocks new Master requests */ -#define E1000_CTRL_LRST     0x00000008  /* Link reset. 0=normal,1=reset */ -#define E1000_CTRL_ASDE     0x00000020  /* Auto-speed detect enable */ -#define E1000_CTRL_SLU      0x00000040  /* Set link up (Force Link) */ -#define E1000_CTRL_ILOS     0x00000080  /* Invert Loss-Of Signal */ -#define E1000_CTRL_SPD_SEL  0x00000300  /* Speed Select Mask */ -#define E1000_CTRL_SPD_100  0x00000100  /* Force 100Mb */ -#define E1000_CTRL_SPD_1000 0x00000200  /* Force 1Gb */ -#define E1000_CTRL_FRCSPD   0x00000800  /* Force Speed */ -#define E1000_CTRL_FRCDPX   0x00001000  /* Force Duplex */ -/* Defined polarity of Dock/Undock indication in SDP[0] */ -/* Reset both PHY ports, through PHYRST_N pin */ -/* enable link status from external LINK_0 and LINK_1 pins */ -#define E1000_CTRL_SWDPIN0  0x00040000  /* SWDPIN 0 value */ -#define E1000_CTRL_SWDPIN1  0x00080000  /* SWDPIN 1 value */ -#define E1000_CTRL_SWDPIO0  0x00400000  /* SWDPIN 0 Input or output */ -#define E1000_CTRL_RST      0x04000000  /* Global reset */ -#define E1000_CTRL_RFCE     0x08000000  /* Receive Flow Control enable */ -#define E1000_CTRL_TFCE     0x10000000  /* Transmit flow control enable */ -#define E1000_CTRL_VME      0x40000000  /* IEEE VLAN mode enable */ -#define E1000_CTRL_PHY_RST  0x80000000  /* PHY Reset */ -/* Initiate an interrupt to manageability engine */ -#define E1000_CTRL_I2C_ENA  0x02000000  /* I2C enable */ - -/* Bit definitions for the Management Data IO (MDIO) and Management Data - * Clock (MDC) pins in the Device Control Register. - */ - -#define E1000_CONNSW_ENRGSRC             0x4 -#define E1000_PCS_CFG_PCS_EN             8 -#define E1000_PCS_LCTL_FLV_LINK_UP       1 -#define E1000_PCS_LCTL_FSV_100           2 -#define E1000_PCS_LCTL_FSV_1000          4 -#define E1000_PCS_LCTL_FDV_FULL          8 -#define E1000_PCS_LCTL_FSD               0x10 -#define E1000_PCS_LCTL_FORCE_LINK        0x20 -#define E1000_PCS_LCTL_FORCE_FCTRL       0x80 -#define E1000_PCS_LCTL_AN_ENABLE         0x10000 -#define E1000_PCS_LCTL_AN_RESTART        0x20000 -#define E1000_PCS_LCTL_AN_TIMEOUT        0x40000 -#define E1000_ENABLE_SERDES_LOOPBACK     0x0410 - -#define E1000_PCS_LSTS_LINK_OK           1 -#define E1000_PCS_LSTS_SPEED_100         2 -#define E1000_PCS_LSTS_SPEED_1000        4 -#define E1000_PCS_LSTS_DUPLEX_FULL       8 -#define E1000_PCS_LSTS_SYNK_OK           0x10 - -/* Device Status */ -#define E1000_STATUS_FD         0x00000001      /* Full duplex.0=half,1=full */ -#define E1000_STATUS_LU         0x00000002      /* Link up.0=no,1=link */ -#define E1000_STATUS_FUNC_MASK  0x0000000C      /* PCI Function Mask */ -#define E1000_STATUS_FUNC_SHIFT 2 -#define E1000_STATUS_FUNC_1     0x00000004      /* Function 1 */ -#define E1000_STATUS_TXOFF      0x00000010      /* transmission paused */ -#define E1000_STATUS_SPEED_100  0x00000040      /* Speed 100Mb/s */ -#define E1000_STATUS_SPEED_1000 0x00000080      /* Speed 1000Mb/s */ -/* Change in Dock/Undock state. Clear on write '0'. */ -/* Status of Master requests. */ -#define E1000_STATUS_GIO_MASTER_ENABLE 0x00080000 -/* BMC external code execution disabled */ - -/* Constants used to intrepret the masked PCI-X bus speed. */ - -#define SPEED_10    10 -#define SPEED_100   100 -#define SPEED_1000  1000 -#define HALF_DUPLEX 1 -#define FULL_DUPLEX 2 - - -#define ADVERTISE_10_HALF                 0x0001 -#define ADVERTISE_10_FULL                 0x0002 -#define ADVERTISE_100_HALF                0x0004 -#define ADVERTISE_100_FULL                0x0008 -#define ADVERTISE_1000_HALF               0x0010 /* Not used, just FYI */ -#define ADVERTISE_1000_FULL               0x0020 - -/* 1000/H is not supported, nor spec-compliant. */ -#define E1000_ALL_SPEED_DUPLEX (ADVERTISE_10_HALF  |  ADVERTISE_10_FULL | \ -				ADVERTISE_100_HALF |  ADVERTISE_100_FULL | \ -						      ADVERTISE_1000_FULL) -#define E1000_ALL_NOT_GIG      (ADVERTISE_10_HALF  |  ADVERTISE_10_FULL | \ -				ADVERTISE_100_HALF |  ADVERTISE_100_FULL) -#define E1000_ALL_100_SPEED    (ADVERTISE_100_HALF |  ADVERTISE_100_FULL) -#define E1000_ALL_10_SPEED     (ADVERTISE_10_HALF  |  ADVERTISE_10_FULL) -#define E1000_ALL_FULL_DUPLEX  (ADVERTISE_10_FULL  |  ADVERTISE_100_FULL | \ -						      ADVERTISE_1000_FULL) -#define E1000_ALL_HALF_DUPLEX  (ADVERTISE_10_HALF  |  ADVERTISE_100_HALF) - -#define AUTONEG_ADVERTISE_SPEED_DEFAULT   E1000_ALL_SPEED_DUPLEX - -/* LED Control */ -#define E1000_LEDCTL_LED0_MODE_SHIFT      0 -#define E1000_LEDCTL_LED0_BLINK           0x00000080 - -#define E1000_LEDCTL_MODE_LED_ON        0xE -#define E1000_LEDCTL_MODE_LED_OFF       0xF - -/* Transmit Descriptor bit definitions */ -#define E1000_TXD_POPTS_IXSM 0x01       /* Insert IP checksum */ -#define E1000_TXD_POPTS_TXSM 0x02       /* Insert TCP/UDP checksum */ -#define E1000_TXD_CMD_EOP    0x01000000 /* End of Packet */ -#define E1000_TXD_CMD_IFCS   0x02000000 /* Insert FCS (Ethernet CRC) */ -#define E1000_TXD_CMD_RS     0x08000000 /* Report Status */ -#define E1000_TXD_CMD_DEXT   0x20000000 /* Descriptor extension (0 = legacy) */ -#define E1000_TXD_STAT_DD    0x00000001 /* Descriptor Done */ -/* Extended desc bits for Linksec and timesync */ - -/* Transmit Control */ -#define E1000_TCTL_EN     0x00000002    /* enable tx */ -#define E1000_TCTL_PSP    0x00000008    /* pad short packets */ -#define E1000_TCTL_CT     0x00000ff0    /* collision threshold */ -#define E1000_TCTL_COLD   0x003ff000    /* collision distance */ -#define E1000_TCTL_RTLC   0x01000000    /* Re-transmit on late collision */ - -/* Transmit Arbitration Count */ - -/* SerDes Control */ -#define E1000_SCTL_DISABLE_SERDES_LOOPBACK 0x0400 - -/* Receive Checksum Control */ -#define E1000_RXCSUM_IPOFL     0x00000100   /* IPv4 checksum offload */ -#define E1000_RXCSUM_TUOFL     0x00000200   /* TCP / UDP checksum offload */ -#define E1000_RXCSUM_CRCOFL    0x00000800   /* CRC32 offload enable */ -#define E1000_RXCSUM_PCSD      0x00002000   /* packet checksum disabled */ - -/* Header split receive */ -#define E1000_RFCTL_LEF        0x00040000 - -/* Collision related configuration parameters */ -#define E1000_COLLISION_THRESHOLD       15 -#define E1000_CT_SHIFT                  4 -#define E1000_COLLISION_DISTANCE        63 -#define E1000_COLD_SHIFT                12 - -/* Ethertype field values */ -#define ETHERNET_IEEE_VLAN_TYPE 0x8100  /* 802.3ac packet */ - -#define MAX_JUMBO_FRAME_SIZE    0x3F00 - -/* PBA constants */ -#define E1000_PBA_34K 0x0022 -#define E1000_PBA_64K 0x0040    /* 64KB */ - -/* SW Semaphore Register */ -#define E1000_SWSM_SMBI         0x00000001 /* Driver Semaphore bit */ -#define E1000_SWSM_SWESMBI      0x00000002 /* FW Semaphore bit */ - -/* Interrupt Cause Read */ -#define E1000_ICR_TXDW          0x00000001 /* Transmit desc written back */ -#define E1000_ICR_LSC           0x00000004 /* Link Status Change */ -#define E1000_ICR_RXSEQ         0x00000008 /* rx sequence error */ -#define E1000_ICR_RXDMT0        0x00000010 /* rx desc min. threshold (0) */ -#define E1000_ICR_RXT0          0x00000080 /* rx timer intr (ring 0) */ -#define E1000_ICR_VMMB          0x00000100 /* VM MB event */ -#define E1000_ICR_DRSTA         0x40000000 /* Device Reset Asserted */ -/* If this bit asserted, the driver should claim the interrupt */ -#define E1000_ICR_INT_ASSERTED  0x80000000 -/* LAN connected device generates an interrupt */ -#define E1000_ICR_DOUTSYNC      0x10000000 /* NIC DMA out of sync */ - -/* Extended Interrupt Cause Read */ -#define E1000_EICR_RX_QUEUE0    0x00000001 /* Rx Queue 0 Interrupt */ -#define E1000_EICR_RX_QUEUE1    0x00000002 /* Rx Queue 1 Interrupt */ -#define E1000_EICR_RX_QUEUE2    0x00000004 /* Rx Queue 2 Interrupt */ -#define E1000_EICR_RX_QUEUE3    0x00000008 /* Rx Queue 3 Interrupt */ -#define E1000_EICR_TX_QUEUE0    0x00000100 /* Tx Queue 0 Interrupt */ -#define E1000_EICR_TX_QUEUE1    0x00000200 /* Tx Queue 1 Interrupt */ -#define E1000_EICR_TX_QUEUE2    0x00000400 /* Tx Queue 2 Interrupt */ -#define E1000_EICR_TX_QUEUE3    0x00000800 /* Tx Queue 3 Interrupt */ -#define E1000_EICR_OTHER        0x80000000 /* Interrupt Cause Active */ -/* TCP Timer */ - -/* - * This defines the bits that are set in the Interrupt Mask - * Set/Read Register.  Each bit is documented below: - *   o RXT0   = Receiver Timer Interrupt (ring 0) - *   o TXDW   = Transmit Descriptor Written Back - *   o RXDMT0 = Receive Descriptor Minimum Threshold hit (ring 0) - *   o RXSEQ  = Receive Sequence Error - *   o LSC    = Link Status Change - */ -#define IMS_ENABLE_MASK ( \ -    E1000_IMS_RXT0   |    \ -    E1000_IMS_TXDW   |    \ -    E1000_IMS_RXDMT0 |    \ -    E1000_IMS_RXSEQ  |    \ -    E1000_IMS_LSC    |    \ -    E1000_IMS_DOUTSYNC) - -/* Interrupt Mask Set */ -#define E1000_IMS_TXDW      E1000_ICR_TXDW      /* Transmit desc written back */ -#define E1000_IMS_LSC       E1000_ICR_LSC       /* Link Status Change */ -#define E1000_IMS_VMMB      E1000_ICR_VMMB      /* Mail box activity */ -#define E1000_IMS_RXSEQ     E1000_ICR_RXSEQ     /* rx sequence error */ -#define E1000_IMS_RXDMT0    E1000_ICR_RXDMT0    /* rx desc min. threshold */ -#define E1000_IMS_RXT0      E1000_ICR_RXT0      /* rx timer intr */ -#define E1000_IMS_DRSTA     E1000_ICR_DRSTA     /* Device Reset Asserted */ -#define E1000_IMS_DOUTSYNC  E1000_ICR_DOUTSYNC /* NIC DMA out of sync */ - -/* Extended Interrupt Mask Set */ -#define E1000_EIMS_OTHER        E1000_EICR_OTHER   /* Interrupt Cause Active */ - -/* Interrupt Cause Set */ -#define E1000_ICS_LSC       E1000_ICR_LSC       /* Link Status Change */ -#define E1000_ICS_RXDMT0    E1000_ICR_RXDMT0    /* rx desc min. threshold */ -#define E1000_ICS_DRSTA     E1000_ICR_DRSTA     /* Device Reset Aserted */ - -/* Extended Interrupt Cause Set */ - -/* Transmit Descriptor Control */ -/* Enable the counting of descriptors still to be processed. */ - -/* Flow Control Constants */ -#define FLOW_CONTROL_ADDRESS_LOW  0x00C28001 -#define FLOW_CONTROL_ADDRESS_HIGH 0x00000100 -#define FLOW_CONTROL_TYPE         0x8808 - -/* 802.1q VLAN Packet Size */ -#define VLAN_TAG_SIZE              4    /* 802.3ac tag (not DMA'd) */ -#define E1000_VLAN_FILTER_TBL_SIZE 128  /* VLAN Filter Table (4096 bits) */ - -/* Receive Address */ -/* - * Number of high/low register pairs in the RAR. The RAR (Receive Address - * Registers) holds the directed and multicast addresses that we monitor. - * Technically, we have 16 spots.  However, we reserve one of these spots - * (RAR[15]) for our directed address used by controllers with - * manageability enabled, allowing us room for 15 multicast addresses. - */ -#define E1000_RAH_AV  0x80000000        /* Receive descriptor valid */ -#define E1000_RAL_MAC_ADDR_LEN 4 -#define E1000_RAH_MAC_ADDR_LEN 2 -#define E1000_RAH_POOL_MASK 0x03FC0000 -#define E1000_RAH_POOL_1 0x00040000 - -/* Error Codes */ -#define E1000_ERR_NVM      1 -#define E1000_ERR_PHY      2 -#define E1000_ERR_CONFIG   3 -#define E1000_ERR_PARAM    4 -#define E1000_ERR_MAC_INIT 5 -#define E1000_ERR_RESET   9 -#define E1000_ERR_MASTER_REQUESTS_PENDING 10 -#define E1000_BLK_PHY_RESET   12 -#define E1000_ERR_SWFW_SYNC 13 -#define E1000_NOT_IMPLEMENTED 14 -#define E1000_ERR_MBX      15 - -/* Loop limit on how long we wait for auto-negotiation to complete */ -#define COPPER_LINK_UP_LIMIT              10 -#define PHY_AUTO_NEG_LIMIT                45 -#define PHY_FORCE_LIMIT                   20 -/* Number of 100 microseconds we wait for PCI Express master disable */ -#define MASTER_DISABLE_TIMEOUT      800 -/* Number of milliseconds we wait for PHY configuration done after MAC reset */ -#define PHY_CFG_TIMEOUT             100 -/* Number of 2 milliseconds we wait for acquiring MDIO ownership. */ -/* Number of milliseconds for NVM auto read done after MAC reset. */ -#define AUTO_READ_DONE_TIMEOUT      10 - -/* Flow Control */ -#define E1000_FCRTL_XONE 0x80000000     /* Enable XON frame transmission */ - -#define E1000_TSYNCTXCTL_VALID    0x00000001 /* tx timestamp valid */ -#define E1000_TSYNCTXCTL_ENABLED  0x00000010 /* enable tx timestampping */ - -#define E1000_TSYNCRXCTL_VALID      0x00000001 /* rx timestamp valid */ -#define E1000_TSYNCRXCTL_TYPE_MASK  0x0000000E /* rx type mask */ -#define E1000_TSYNCRXCTL_TYPE_L2_V2       0x00 -#define E1000_TSYNCRXCTL_TYPE_L4_V1       0x02 -#define E1000_TSYNCRXCTL_TYPE_L2_L4_V2    0x04 -#define E1000_TSYNCRXCTL_TYPE_ALL         0x08 -#define E1000_TSYNCRXCTL_TYPE_EVENT_V2    0x0A -#define E1000_TSYNCRXCTL_ENABLED    0x00000010 /* enable rx timestampping */ - -#define E1000_TSYNCRXCFG_PTP_V1_CTRLT_MASK   0x000000FF -#define E1000_TSYNCRXCFG_PTP_V1_SYNC_MESSAGE       0x00 -#define E1000_TSYNCRXCFG_PTP_V1_DELAY_REQ_MESSAGE  0x01 -#define E1000_TSYNCRXCFG_PTP_V1_FOLLOWUP_MESSAGE   0x02 -#define E1000_TSYNCRXCFG_PTP_V1_DELAY_RESP_MESSAGE 0x03 -#define E1000_TSYNCRXCFG_PTP_V1_MANAGEMENT_MESSAGE 0x04 - -#define E1000_TSYNCRXCFG_PTP_V2_MSGID_MASK               0x00000F00 -#define E1000_TSYNCRXCFG_PTP_V2_SYNC_MESSAGE                 0x0000 -#define E1000_TSYNCRXCFG_PTP_V2_DELAY_REQ_MESSAGE            0x0100 -#define E1000_TSYNCRXCFG_PTP_V2_PATH_DELAY_REQ_MESSAGE       0x0200 -#define E1000_TSYNCRXCFG_PTP_V2_PATH_DELAY_RESP_MESSAGE      0x0300 -#define E1000_TSYNCRXCFG_PTP_V2_FOLLOWUP_MESSAGE             0x0800 -#define E1000_TSYNCRXCFG_PTP_V2_DELAY_RESP_MESSAGE           0x0900 -#define E1000_TSYNCRXCFG_PTP_V2_PATH_DELAY_FOLLOWUP_MESSAGE  0x0A00 -#define E1000_TSYNCRXCFG_PTP_V2_ANNOUNCE_MESSAGE             0x0B00 -#define E1000_TSYNCRXCFG_PTP_V2_SIGNALLING_MESSAGE           0x0C00 -#define E1000_TSYNCRXCFG_PTP_V2_MANAGEMENT_MESSAGE           0x0D00 - -#define E1000_TIMINCA_16NS_SHIFT 24 - -#define E1000_MDICNFG_EXT_MDIO    0x80000000      /* MDI ext/int destination */ -#define E1000_MDICNFG_COM_MDIO    0x40000000      /* MDI shared w/ lan 0 */ -#define E1000_MDICNFG_PHY_MASK    0x03E00000 -#define E1000_MDICNFG_PHY_SHIFT   21 - -/* PCI Express Control */ -#define E1000_GCR_CMPL_TMOUT_MASK       0x0000F000 -#define E1000_GCR_CMPL_TMOUT_10ms       0x00001000 -#define E1000_GCR_CMPL_TMOUT_RESEND     0x00010000 -#define E1000_GCR_CAP_VER2              0x00040000 - -/* PHY Control Register */ -#define MII_CR_FULL_DUPLEX      0x0100  /* FDX =1, half duplex =0 */ -#define MII_CR_RESTART_AUTO_NEG 0x0200  /* Restart auto negotiation */ -#define MII_CR_POWER_DOWN       0x0800  /* Power down */ -#define MII_CR_AUTO_NEG_EN      0x1000  /* Auto Neg Enable */ -#define MII_CR_LOOPBACK         0x4000  /* 0 = normal, 1 = loopback */ -#define MII_CR_RESET            0x8000  /* 0 = normal, 1 = PHY reset */ -#define MII_CR_SPEED_1000       0x0040 -#define MII_CR_SPEED_100        0x2000 -#define MII_CR_SPEED_10         0x0000 - -/* PHY Status Register */ -#define MII_SR_LINK_STATUS       0x0004 /* Link Status 1 = link */ -#define MII_SR_AUTONEG_COMPLETE  0x0020 /* Auto Neg Complete */ - -/* Autoneg Advertisement Register */ -#define NWAY_AR_10T_HD_CAPS      0x0020   /* 10T   Half Duplex Capable */ -#define NWAY_AR_10T_FD_CAPS      0x0040   /* 10T   Full Duplex Capable */ -#define NWAY_AR_100TX_HD_CAPS    0x0080   /* 100TX Half Duplex Capable */ -#define NWAY_AR_100TX_FD_CAPS    0x0100   /* 100TX Full Duplex Capable */ -#define NWAY_AR_PAUSE            0x0400   /* Pause operation desired */ -#define NWAY_AR_ASM_DIR          0x0800   /* Asymmetric Pause Direction bit */ - -/* Link Partner Ability Register (Base Page) */ -#define NWAY_LPAR_PAUSE          0x0400 /* LP Pause operation desired */ -#define NWAY_LPAR_ASM_DIR        0x0800 /* LP Asymmetric Pause Direction bit */ - -/* Autoneg Expansion Register */ - -/* 1000BASE-T Control Register */ -#define CR_1000T_HD_CAPS         0x0100 /* Advertise 1000T HD capability */ -#define CR_1000T_FD_CAPS         0x0200 /* Advertise 1000T FD capability  */ -#define CR_1000T_MS_VALUE        0x0800 /* 1=Configure PHY as Master */ -					/* 0=Configure PHY as Slave */ -#define CR_1000T_MS_ENABLE       0x1000 /* 1=Master/Slave manual config value */ -					/* 0=Automatic Master/Slave config */ - -/* 1000BASE-T Status Register */ -#define SR_1000T_REMOTE_RX_STATUS 0x1000 /* Remote receiver OK */ -#define SR_1000T_LOCAL_RX_STATUS  0x2000 /* Local receiver OK */ - - -/* PHY 1000 MII Register/Bit Definitions */ -/* PHY Registers defined by IEEE */ -#define PHY_CONTROL      0x00 /* Control Register */ -#define PHY_STATUS       0x01 /* Status Register */ -#define PHY_ID1          0x02 /* Phy Id Reg (word 1) */ -#define PHY_ID2          0x03 /* Phy Id Reg (word 2) */ -#define PHY_AUTONEG_ADV  0x04 /* Autoneg Advertisement */ -#define PHY_LP_ABILITY   0x05 /* Link Partner Ability (Base Page) */ -#define PHY_1000T_CTRL   0x09 /* 1000Base-T Control Reg */ -#define PHY_1000T_STATUS 0x0A /* 1000Base-T Status Reg */ - -/* NVM Control */ -#define E1000_EECD_SK        0x00000001 /* NVM Clock */ -#define E1000_EECD_CS        0x00000002 /* NVM Chip Select */ -#define E1000_EECD_DI        0x00000004 /* NVM Data In */ -#define E1000_EECD_DO        0x00000008 /* NVM Data Out */ -#define E1000_EECD_REQ       0x00000040 /* NVM Access Request */ -#define E1000_EECD_GNT       0x00000080 /* NVM Access Grant */ -#define E1000_EECD_PRES      0x00000100 /* NVM Present */ -/* NVM Addressing bits based on type 0=small, 1=large */ -#define E1000_EECD_ADDR_BITS 0x00000400 -#define E1000_NVM_GRANT_ATTEMPTS   1000 /* NVM # attempts to gain grant */ -#define E1000_EECD_AUTO_RD          0x00000200  /* NVM Auto Read done */ -#define E1000_EECD_SIZE_EX_MASK     0x00007800  /* NVM Size */ -#define E1000_EECD_SIZE_EX_SHIFT     11 - -/* Offset to data in NVM read/write registers */ -#define E1000_NVM_RW_REG_DATA   16 -#define E1000_NVM_RW_REG_DONE   2    /* Offset to READ/WRITE done bit */ -#define E1000_NVM_RW_REG_START  1    /* Start operation */ -#define E1000_NVM_RW_ADDR_SHIFT 2    /* Shift to the address bits */ -#define E1000_NVM_POLL_READ     0    /* Flag for polling for read complete */ - -/* NVM Word Offsets */ -#define NVM_ID_LED_SETTINGS        0x0004 -/* For SERDES output amplitude adjustment. */ -#define NVM_INIT_CONTROL2_REG      0x000F -#define NVM_INIT_CONTROL3_PORT_B   0x0014 -#define NVM_INIT_CONTROL3_PORT_A   0x0024 -#define NVM_ALT_MAC_ADDR_PTR       0x0037 -#define NVM_CHECKSUM_REG           0x003F - -#define E1000_NVM_CFG_DONE_PORT_0  0x040000 /* MNG config cycle done */ -#define E1000_NVM_CFG_DONE_PORT_1  0x080000 /* ...for second port */ -#define E1000_NVM_CFG_DONE_PORT_2  0x100000 /* ...for third port */ -#define E1000_NVM_CFG_DONE_PORT_3  0x200000 /* ...for fourth port */ - -#define NVM_82580_LAN_FUNC_OFFSET(a) (a ? (0x40 + (0x40 * a)) : 0) - -/* Mask bits for fields in Word 0x24 of the NVM */ -#define NVM_WORD24_COM_MDIO         0x0008 /* MDIO interface shared */ -#define NVM_WORD24_EXT_MDIO         0x0004 /* MDIO accesses routed external */ - -/* Mask bits for fields in Word 0x0f of the NVM */ -#define NVM_WORD0F_PAUSE_MASK       0x3000 -#define NVM_WORD0F_ASM_DIR          0x2000 - -/* Mask bits for fields in Word 0x1a of the NVM */ - -/* For checksumming, the sum of all words in the NVM should equal 0xBABA. */ -#define NVM_SUM                    0xBABA - -#define NVM_PBA_OFFSET_0           8 -#define NVM_PBA_OFFSET_1           9 -#define NVM_WORD_SIZE_BASE_SHIFT   6 - -/* NVM Commands - Microwire */ - -/* NVM Commands - SPI */ -#define NVM_MAX_RETRY_SPI          5000 /* Max wait of 5ms, for RDY signal */ -#define NVM_WRITE_OPCODE_SPI       0x02 /* NVM write opcode */ -#define NVM_A8_OPCODE_SPI          0x08 /* opcode bit-3 = address bit-8 */ -#define NVM_WREN_OPCODE_SPI        0x06 /* NVM set Write Enable latch */ -#define NVM_RDSR_OPCODE_SPI        0x05 /* NVM read Status register */ - -/* SPI NVM Status Register */ -#define NVM_STATUS_RDY_SPI         0x01 - -/* Word definitions for ID LED Settings */ -#define ID_LED_RESERVED_0000 0x0000 -#define ID_LED_RESERVED_FFFF 0xFFFF -#define ID_LED_DEFAULT       ((ID_LED_OFF1_ON2  << 12) | \ -			      (ID_LED_OFF1_OFF2 <<  8) | \ -			      (ID_LED_DEF1_DEF2 <<  4) | \ -			      (ID_LED_DEF1_DEF2)) -#define ID_LED_DEF1_DEF2     0x1 -#define ID_LED_DEF1_ON2      0x2 -#define ID_LED_DEF1_OFF2     0x3 -#define ID_LED_ON1_DEF2      0x4 -#define ID_LED_ON1_ON2       0x5 -#define ID_LED_ON1_OFF2      0x6 -#define ID_LED_OFF1_DEF2     0x7 -#define ID_LED_OFF1_ON2      0x8 -#define ID_LED_OFF1_OFF2     0x9 - -#define IGP_ACTIVITY_LED_MASK   0xFFFFF0FF -#define IGP_ACTIVITY_LED_ENABLE 0x0300 -#define IGP_LED3_MODE           0x07000000 - -/* PCI/PCI-X/PCI-EX Config space */ -#define PCIE_DEVICE_CONTROL2         0x28 -#define PCIE_DEVICE_CONTROL2_16ms    0x0005 - -#define PHY_REVISION_MASK      0xFFFFFFF0 -#define MAX_PHY_REG_ADDRESS    0x1F  /* 5 bit address bus (0-0x1F) */ -#define MAX_PHY_MULTI_PAGE_REG 0xF - -/* Bit definitions for valid PHY IDs. */ -/* - * I = Integrated - * E = External - */ -#define M88E1111_I_PHY_ID    0x01410CC0 -#define M88E1112_E_PHY_ID    0x01410C90 -#define I347AT4_E_PHY_ID     0x01410DC0 -#define IGP03E1000_E_PHY_ID  0x02A80390 -#define I82580_I_PHY_ID      0x015403A0 -#define I350_I_PHY_ID        0x015403B0 -#define M88_VENDOR           0x0141 - -/* M88E1000 Specific Registers */ -#define M88E1000_PHY_SPEC_CTRL     0x10  /* PHY Specific Control Register */ -#define M88E1000_PHY_SPEC_STATUS   0x11  /* PHY Specific Status Register */ -#define M88E1000_EXT_PHY_SPEC_CTRL 0x14  /* Extended PHY Specific Control */ - -#define M88E1000_PHY_PAGE_SELECT   0x1D  /* Reg 29 for page number setting */ -#define M88E1000_PHY_GEN_CONTROL   0x1E  /* Its meaning depends on reg 29 */ - -/* M88E1000 PHY Specific Control Register */ -#define M88E1000_PSCR_POLARITY_REVERSAL 0x0002 /* 1=Polarity Reversal enabled */ -/* 1=CLK125 low, 0=CLK125 toggling */ -#define M88E1000_PSCR_MDI_MANUAL_MODE  0x0000  /* MDI Crossover Mode bits 6:5 */ -					       /* Manual MDI configuration */ -#define M88E1000_PSCR_MDIX_MANUAL_MODE 0x0020  /* Manual MDIX configuration */ -/* 1000BASE-T: Auto crossover, 100BASE-TX/10BASE-T: MDI Mode */ -#define M88E1000_PSCR_AUTO_X_1000T     0x0040 -/* Auto crossover enabled all speeds */ -#define M88E1000_PSCR_AUTO_X_MODE      0x0060 -/* - * 1=Enable Extended 10BASE-T distance (Lower 10BASE-T Rx Threshold - * 0=Normal 10BASE-T Rx Threshold - */ -/* 1=5-bit interface in 100BASE-TX, 0=MII interface in 100BASE-TX */ -#define M88E1000_PSCR_ASSERT_CRS_ON_TX     0x0800 /* 1=Assert CRS on Transmit */ - -/* M88E1000 PHY Specific Status Register */ -#define M88E1000_PSSR_REV_POLARITY       0x0002 /* 1=Polarity reversed */ -#define M88E1000_PSSR_DOWNSHIFT          0x0020 /* 1=Downshifted */ -#define M88E1000_PSSR_MDIX               0x0040 /* 1=MDIX; 0=MDI */ -/* - * 0 = <50M - * 1 = 50-80M - * 2 = 80-110M - * 3 = 110-140M - * 4 = >140M - */ -#define M88E1000_PSSR_CABLE_LENGTH       0x0380 -#define M88E1000_PSSR_SPEED              0xC000 /* Speed, bits 14:15 */ -#define M88E1000_PSSR_1000MBS            0x8000 /* 10=1000Mbs */ - -#define M88E1000_PSSR_CABLE_LENGTH_SHIFT 7 - -/* M88E1000 Extended PHY Specific Control Register */ -/* - * 1 = Lost lock detect enabled. - * Will assert lost lock and bring - * link down if idle not seen - * within 1ms in 1000BASE-T - */ -/* - * Number of times we will attempt to autonegotiate before downshifting if we - * are the master - */ -#define M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK 0x0C00 -#define M88E1000_EPSCR_MASTER_DOWNSHIFT_1X   0x0000 -/* - * Number of times we will attempt to autonegotiate before downshifting if we - * are the slave - */ -#define M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK  0x0300 -#define M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X    0x0100 -#define M88E1000_EPSCR_TX_CLK_25      0x0070 /* 25  MHz TX_CLK */ - -/* Intel i347-AT4 Registers */ - -#define I347AT4_PCDL                   0x10 /* PHY Cable Diagnostics Length */ -#define I347AT4_PCDC                   0x15 /* PHY Cable Diagnostics Control */ -#define I347AT4_PAGE_SELECT            0x16 - -/* i347-AT4 Extended PHY Specific Control Register */ - -/* - *  Number of times we will attempt to autonegotiate before downshifting if we - *  are the master - */ -#define I347AT4_PSCR_DOWNSHIFT_ENABLE 0x0800 -#define I347AT4_PSCR_DOWNSHIFT_MASK   0x7000 -#define I347AT4_PSCR_DOWNSHIFT_1X     0x0000 -#define I347AT4_PSCR_DOWNSHIFT_2X     0x1000 -#define I347AT4_PSCR_DOWNSHIFT_3X     0x2000 -#define I347AT4_PSCR_DOWNSHIFT_4X     0x3000 -#define I347AT4_PSCR_DOWNSHIFT_5X     0x4000 -#define I347AT4_PSCR_DOWNSHIFT_6X     0x5000 -#define I347AT4_PSCR_DOWNSHIFT_7X     0x6000 -#define I347AT4_PSCR_DOWNSHIFT_8X     0x7000 - -/* i347-AT4 PHY Cable Diagnostics Control */ -#define I347AT4_PCDC_CABLE_LENGTH_UNIT 0x0400 /* 0=cm 1=meters */ - -/* Marvell 1112 only registers */ -#define M88E1112_VCT_DSP_DISTANCE       0x001A - -/* M88EC018 Rev 2 specific DownShift settings */ -#define M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK  0x0E00 -#define M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X    0x0800 - -/* MDI Control */ -#define E1000_MDIC_DATA_MASK 0x0000FFFF -#define E1000_MDIC_REG_MASK  0x001F0000 -#define E1000_MDIC_REG_SHIFT 16 -#define E1000_MDIC_PHY_MASK  0x03E00000 -#define E1000_MDIC_PHY_SHIFT 21 -#define E1000_MDIC_OP_WRITE  0x04000000 -#define E1000_MDIC_OP_READ   0x08000000 -#define E1000_MDIC_READY     0x10000000 -#define E1000_MDIC_INT_EN    0x20000000 -#define E1000_MDIC_ERROR     0x40000000 -#define E1000_MDIC_DEST      0x80000000 - -/* SerDes Control */ -#define E1000_GEN_CTL_READY             0x80000000 -#define E1000_GEN_CTL_ADDRESS_SHIFT     8 -#define E1000_GEN_POLL_TIMEOUT          640 - -#define E1000_VFTA_ENTRY_SHIFT               5 -#define E1000_VFTA_ENTRY_MASK                0x7F -#define E1000_VFTA_ENTRY_BIT_SHIFT_MASK      0x1F - -/* DMA Coalescing register fields */ -#define E1000_PCIEMISC_LX_DECISION      0x00000080 /* Lx power decision based -                                                      on DMA coal */ - -#endif diff --git a/drivers/net/igb/e1000_hw.h b/drivers/net/igb/e1000_hw.h deleted file mode 100644 index c0b017f8d78..00000000000 --- a/drivers/net/igb/e1000_hw.h +++ /dev/null @@ -1,520 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_HW_H_ -#define _E1000_HW_H_ - -#include <linux/types.h> -#include <linux/delay.h> -#include <linux/io.h> -#include <linux/netdevice.h> - -#include "e1000_regs.h" -#include "e1000_defines.h" - -struct e1000_hw; - -#define E1000_DEV_ID_82576                    0x10C9 -#define E1000_DEV_ID_82576_FIBER              0x10E6 -#define E1000_DEV_ID_82576_SERDES             0x10E7 -#define E1000_DEV_ID_82576_QUAD_COPPER        0x10E8 -#define E1000_DEV_ID_82576_QUAD_COPPER_ET2    0x1526 -#define E1000_DEV_ID_82576_NS                 0x150A -#define E1000_DEV_ID_82576_NS_SERDES          0x1518 -#define E1000_DEV_ID_82576_SERDES_QUAD        0x150D -#define E1000_DEV_ID_82575EB_COPPER           0x10A7 -#define E1000_DEV_ID_82575EB_FIBER_SERDES     0x10A9 -#define E1000_DEV_ID_82575GB_QUAD_COPPER      0x10D6 -#define E1000_DEV_ID_82580_COPPER             0x150E -#define E1000_DEV_ID_82580_FIBER              0x150F -#define E1000_DEV_ID_82580_SERDES             0x1510 -#define E1000_DEV_ID_82580_SGMII              0x1511 -#define E1000_DEV_ID_82580_COPPER_DUAL        0x1516 -#define E1000_DEV_ID_DH89XXCC_SGMII           0x0436 -#define E1000_DEV_ID_DH89XXCC_SERDES          0x0438 -#define E1000_DEV_ID_I350_COPPER              0x1521 -#define E1000_DEV_ID_I350_FIBER               0x1522 -#define E1000_DEV_ID_I350_SERDES              0x1523 -#define E1000_DEV_ID_I350_SGMII               0x1524 - -#define E1000_REVISION_2 2 -#define E1000_REVISION_4 4 - -#define E1000_FUNC_0     0 -#define E1000_FUNC_1     1 -#define E1000_FUNC_2     2 -#define E1000_FUNC_3     3 - -#define E1000_ALT_MAC_ADDRESS_OFFSET_LAN0   0 -#define E1000_ALT_MAC_ADDRESS_OFFSET_LAN1   3 -#define E1000_ALT_MAC_ADDRESS_OFFSET_LAN2   6 -#define E1000_ALT_MAC_ADDRESS_OFFSET_LAN3   9 - -enum e1000_mac_type { -	e1000_undefined = 0, -	e1000_82575, -	e1000_82576, -	e1000_82580, -	e1000_i350, -	e1000_num_macs  /* List is 1-based, so subtract 1 for true count. */ -}; - -enum e1000_media_type { -	e1000_media_type_unknown = 0, -	e1000_media_type_copper = 1, -	e1000_media_type_internal_serdes = 2, -	e1000_num_media_types -}; - -enum e1000_nvm_type { -	e1000_nvm_unknown = 0, -	e1000_nvm_none, -	e1000_nvm_eeprom_spi, -	e1000_nvm_flash_hw, -	e1000_nvm_flash_sw -}; - -enum e1000_nvm_override { -	e1000_nvm_override_none = 0, -	e1000_nvm_override_spi_small, -	e1000_nvm_override_spi_large, -}; - -enum e1000_phy_type { -	e1000_phy_unknown = 0, -	e1000_phy_none, -	e1000_phy_m88, -	e1000_phy_igp, -	e1000_phy_igp_2, -	e1000_phy_gg82563, -	e1000_phy_igp_3, -	e1000_phy_ife, -	e1000_phy_82580, -}; - -enum e1000_bus_type { -	e1000_bus_type_unknown = 0, -	e1000_bus_type_pci, -	e1000_bus_type_pcix, -	e1000_bus_type_pci_express, -	e1000_bus_type_reserved -}; - -enum e1000_bus_speed { -	e1000_bus_speed_unknown = 0, -	e1000_bus_speed_33, -	e1000_bus_speed_66, -	e1000_bus_speed_100, -	e1000_bus_speed_120, -	e1000_bus_speed_133, -	e1000_bus_speed_2500, -	e1000_bus_speed_5000, -	e1000_bus_speed_reserved -}; - -enum e1000_bus_width { -	e1000_bus_width_unknown = 0, -	e1000_bus_width_pcie_x1, -	e1000_bus_width_pcie_x2, -	e1000_bus_width_pcie_x4 = 4, -	e1000_bus_width_pcie_x8 = 8, -	e1000_bus_width_32, -	e1000_bus_width_64, -	e1000_bus_width_reserved -}; - -enum e1000_1000t_rx_status { -	e1000_1000t_rx_status_not_ok = 0, -	e1000_1000t_rx_status_ok, -	e1000_1000t_rx_status_undefined = 0xFF -}; - -enum e1000_rev_polarity { -	e1000_rev_polarity_normal = 0, -	e1000_rev_polarity_reversed, -	e1000_rev_polarity_undefined = 0xFF -}; - -enum e1000_fc_mode { -	e1000_fc_none = 0, -	e1000_fc_rx_pause, -	e1000_fc_tx_pause, -	e1000_fc_full, -	e1000_fc_default = 0xFF -}; - -/* Statistics counters collected by the MAC */ -struct e1000_hw_stats { -	u64 crcerrs; -	u64 algnerrc; -	u64 symerrs; -	u64 rxerrc; -	u64 mpc; -	u64 scc; -	u64 ecol; -	u64 mcc; -	u64 latecol; -	u64 colc; -	u64 dc; -	u64 tncrs; -	u64 sec; -	u64 cexterr; -	u64 rlec; -	u64 xonrxc; -	u64 xontxc; -	u64 xoffrxc; -	u64 xofftxc; -	u64 fcruc; -	u64 prc64; -	u64 prc127; -	u64 prc255; -	u64 prc511; -	u64 prc1023; -	u64 prc1522; -	u64 gprc; -	u64 bprc; -	u64 mprc; -	u64 gptc; -	u64 gorc; -	u64 gotc; -	u64 rnbc; -	u64 ruc; -	u64 rfc; -	u64 roc; -	u64 rjc; -	u64 mgprc; -	u64 mgpdc; -	u64 mgptc; -	u64 tor; -	u64 tot; -	u64 tpr; -	u64 tpt; -	u64 ptc64; -	u64 ptc127; -	u64 ptc255; -	u64 ptc511; -	u64 ptc1023; -	u64 ptc1522; -	u64 mptc; -	u64 bptc; -	u64 tsctc; -	u64 tsctfc; -	u64 iac; -	u64 icrxptc; -	u64 icrxatc; -	u64 ictxptc; -	u64 ictxatc; -	u64 ictxqec; -	u64 ictxqmtc; -	u64 icrxdmtc; -	u64 icrxoc; -	u64 cbtmpc; -	u64 htdpmc; -	u64 cbrdpc; -	u64 cbrmpc; -	u64 rpthc; -	u64 hgptc; -	u64 htcbdpc; -	u64 hgorc; -	u64 hgotc; -	u64 lenerrs; -	u64 scvpc; -	u64 hrmpc; -	u64 doosync; -}; - -struct e1000_phy_stats { -	u32 idle_errors; -	u32 receive_errors; -}; - -struct e1000_host_mng_dhcp_cookie { -	u32 signature; -	u8  status; -	u8  reserved0; -	u16 vlan_id; -	u32 reserved1; -	u16 reserved2; -	u8  reserved3; -	u8  checksum; -}; - -/* Host Interface "Rev 1" */ -struct e1000_host_command_header { -	u8 command_id; -	u8 command_length; -	u8 command_options; -	u8 checksum; -}; - -#define E1000_HI_MAX_DATA_LENGTH     252 -struct e1000_host_command_info { -	struct e1000_host_command_header command_header; -	u8 command_data[E1000_HI_MAX_DATA_LENGTH]; -}; - -/* Host Interface "Rev 2" */ -struct e1000_host_mng_command_header { -	u8  command_id; -	u8  checksum; -	u16 reserved1; -	u16 reserved2; -	u16 command_length; -}; - -#define E1000_HI_MAX_MNG_DATA_LENGTH 0x6F8 -struct e1000_host_mng_command_info { -	struct e1000_host_mng_command_header command_header; -	u8 command_data[E1000_HI_MAX_MNG_DATA_LENGTH]; -}; - -#include "e1000_mac.h" -#include "e1000_phy.h" -#include "e1000_nvm.h" -#include "e1000_mbx.h" - -struct e1000_mac_operations { -	s32  (*check_for_link)(struct e1000_hw *); -	s32  (*reset_hw)(struct e1000_hw *); -	s32  (*init_hw)(struct e1000_hw *); -	bool (*check_mng_mode)(struct e1000_hw *); -	s32  (*setup_physical_interface)(struct e1000_hw *); -	void (*rar_set)(struct e1000_hw *, u8 *, u32); -	s32  (*read_mac_addr)(struct e1000_hw *); -	s32  (*get_speed_and_duplex)(struct e1000_hw *, u16 *, u16 *); -}; - -struct e1000_phy_operations { -	s32  (*acquire)(struct e1000_hw *); -	s32  (*check_polarity)(struct e1000_hw *); -	s32  (*check_reset_block)(struct e1000_hw *); -	s32  (*force_speed_duplex)(struct e1000_hw *); -	s32  (*get_cfg_done)(struct e1000_hw *hw); -	s32  (*get_cable_length)(struct e1000_hw *); -	s32  (*get_phy_info)(struct e1000_hw *); -	s32  (*read_reg)(struct e1000_hw *, u32, u16 *); -	void (*release)(struct e1000_hw *); -	s32  (*reset)(struct e1000_hw *); -	s32  (*set_d0_lplu_state)(struct e1000_hw *, bool); -	s32  (*set_d3_lplu_state)(struct e1000_hw *, bool); -	s32  (*write_reg)(struct e1000_hw *, u32, u16); -}; - -struct e1000_nvm_operations { -	s32  (*acquire)(struct e1000_hw *); -	s32  (*read)(struct e1000_hw *, u16, u16, u16 *); -	void (*release)(struct e1000_hw *); -	s32  (*write)(struct e1000_hw *, u16, u16, u16 *); -}; - -struct e1000_info { -	s32 (*get_invariants)(struct e1000_hw *); -	struct e1000_mac_operations *mac_ops; -	struct e1000_phy_operations *phy_ops; -	struct e1000_nvm_operations *nvm_ops; -}; - -extern const struct e1000_info e1000_82575_info; - -struct e1000_mac_info { -	struct e1000_mac_operations ops; - -	u8 addr[6]; -	u8 perm_addr[6]; - -	enum e1000_mac_type type; - -	u32 ledctl_default; -	u32 ledctl_mode1; -	u32 ledctl_mode2; -	u32 mc_filter_type; -	u32 txcw; - -	u16 mta_reg_count; -	u16 uta_reg_count; - -	/* Maximum size of the MTA register table in all supported adapters */ -	#define MAX_MTA_REG 128 -	u32 mta_shadow[MAX_MTA_REG]; -	u16 rar_entry_count; - -	u8  forced_speed_duplex; - -	bool adaptive_ifs; -	bool arc_subsystem_valid; -	bool asf_firmware_present; -	bool autoneg; -	bool autoneg_failed; -	bool disable_hw_init_bits; -	bool get_link_status; -	bool ifs_params_forced; -	bool in_ifs_mode; -	bool report_tx_early; -	bool serdes_has_link; -	bool tx_pkt_filtering; -}; - -struct e1000_phy_info { -	struct e1000_phy_operations ops; - -	enum e1000_phy_type type; - -	enum e1000_1000t_rx_status local_rx; -	enum e1000_1000t_rx_status remote_rx; -	enum e1000_ms_type ms_type; -	enum e1000_ms_type original_ms_type; -	enum e1000_rev_polarity cable_polarity; -	enum e1000_smart_speed smart_speed; - -	u32 addr; -	u32 id; -	u32 reset_delay_us; /* in usec */ -	u32 revision; - -	enum e1000_media_type media_type; - -	u16 autoneg_advertised; -	u16 autoneg_mask; -	u16 cable_length; -	u16 max_cable_length; -	u16 min_cable_length; - -	u8 mdix; - -	bool disable_polarity_correction; -	bool is_mdix; -	bool polarity_correction; -	bool reset_disable; -	bool speed_downgraded; -	bool autoneg_wait_to_complete; -}; - -struct e1000_nvm_info { -	struct e1000_nvm_operations ops; - -	enum e1000_nvm_type type; -	enum e1000_nvm_override override; - -	u32 flash_bank_size; -	u32 flash_base_addr; - -	u16 word_size; -	u16 delay_usec; -	u16 address_bits; -	u16 opcode_bits; -	u16 page_size; -}; - -struct e1000_bus_info { -	enum e1000_bus_type type; -	enum e1000_bus_speed speed; -	enum e1000_bus_width width; - -	u32 snoop; - -	u16 func; -	u16 pci_cmd_word; -}; - -struct e1000_fc_info { -	u32 high_water;     /* Flow control high-water mark */ -	u32 low_water;      /* Flow control low-water mark */ -	u16 pause_time;     /* Flow control pause timer */ -	bool send_xon;      /* Flow control send XON */ -	bool strict_ieee;   /* Strict IEEE mode */ -	enum e1000_fc_mode current_mode; /* Type of flow control */ -	enum e1000_fc_mode requested_mode; -}; - -struct e1000_mbx_operations { -	s32 (*init_params)(struct e1000_hw *hw); -	s32 (*read)(struct e1000_hw *, u32 *, u16,  u16); -	s32 (*write)(struct e1000_hw *, u32 *, u16, u16); -	s32 (*read_posted)(struct e1000_hw *, u32 *, u16,  u16); -	s32 (*write_posted)(struct e1000_hw *, u32 *, u16, u16); -	s32 (*check_for_msg)(struct e1000_hw *, u16); -	s32 (*check_for_ack)(struct e1000_hw *, u16); -	s32 (*check_for_rst)(struct e1000_hw *, u16); -}; - -struct e1000_mbx_stats { -	u32 msgs_tx; -	u32 msgs_rx; - -	u32 acks; -	u32 reqs; -	u32 rsts; -}; - -struct e1000_mbx_info { -	struct e1000_mbx_operations ops; -	struct e1000_mbx_stats stats; -	u32 timeout; -	u32 usec_delay; -	u16 size; -}; - -struct e1000_dev_spec_82575 { -	bool sgmii_active; -	bool global_device_reset; -}; - -struct e1000_hw { -	void *back; - -	u8 __iomem *hw_addr; -	u8 __iomem *flash_address; -	unsigned long io_base; - -	struct e1000_mac_info  mac; -	struct e1000_fc_info   fc; -	struct e1000_phy_info  phy; -	struct e1000_nvm_info  nvm; -	struct e1000_bus_info  bus; -	struct e1000_mbx_info mbx; -	struct e1000_host_mng_dhcp_cookie mng_cookie; - -	union { -		struct e1000_dev_spec_82575	_82575; -	} dev_spec; - -	u16 device_id; -	u16 subsystem_vendor_id; -	u16 subsystem_device_id; -	u16 vendor_id; - -	u8  revision_id; -}; - -extern struct net_device *igb_get_hw_dev(struct e1000_hw *hw); -#define hw_dbg(format, arg...) \ -	netdev_dbg(igb_get_hw_dev(hw), format, ##arg) - -/* These functions must be implemented by drivers */ -s32  igb_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value); -s32  igb_write_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value); -#endif /* _E1000_HW_H_ */ diff --git a/drivers/net/igb/e1000_mac.c b/drivers/net/igb/e1000_mac.c deleted file mode 100644 index 90c5e01e923..00000000000 --- a/drivers/net/igb/e1000_mac.c +++ /dev/null @@ -1,1420 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#include <linux/if_ether.h> -#include <linux/delay.h> -#include <linux/pci.h> -#include <linux/netdevice.h> - -#include "e1000_mac.h" - -#include "igb.h" - -static s32 igb_set_default_fc(struct e1000_hw *hw); -static s32 igb_set_fc_watermarks(struct e1000_hw *hw); - -/** - *  igb_get_bus_info_pcie - Get PCIe bus information - *  @hw: pointer to the HW structure - * - *  Determines and stores the system bus information for a particular - *  network interface.  The following bus information is determined and stored: - *  bus speed, bus width, type (PCIe), and PCIe function. - **/ -s32 igb_get_bus_info_pcie(struct e1000_hw *hw) -{ -	struct e1000_bus_info *bus = &hw->bus; -	s32 ret_val; -	u32 reg; -	u16 pcie_link_status; - -	bus->type = e1000_bus_type_pci_express; - -	ret_val = igb_read_pcie_cap_reg(hw, -					PCI_EXP_LNKSTA, -					&pcie_link_status); -	if (ret_val) { -		bus->width = e1000_bus_width_unknown; -		bus->speed = e1000_bus_speed_unknown; -	} else { -		switch (pcie_link_status & PCI_EXP_LNKSTA_CLS) { -		case PCI_EXP_LNKSTA_CLS_2_5GB: -			bus->speed = e1000_bus_speed_2500; -			break; -		case PCI_EXP_LNKSTA_CLS_5_0GB: -			bus->speed = e1000_bus_speed_5000; -			break; -		default: -			bus->speed = e1000_bus_speed_unknown; -			break; -		} - -		bus->width = (enum e1000_bus_width)((pcie_link_status & -						     PCI_EXP_LNKSTA_NLW) >> -						     PCI_EXP_LNKSTA_NLW_SHIFT); -	} - -	reg = rd32(E1000_STATUS); -	bus->func = (reg & E1000_STATUS_FUNC_MASK) >> E1000_STATUS_FUNC_SHIFT; - -	return 0; -} - -/** - *  igb_clear_vfta - Clear VLAN filter table - *  @hw: pointer to the HW structure - * - *  Clears the register array which contains the VLAN filter table by - *  setting all the values to 0. - **/ -void igb_clear_vfta(struct e1000_hw *hw) -{ -	u32 offset; - -	for (offset = 0; offset < E1000_VLAN_FILTER_TBL_SIZE; offset++) { -		array_wr32(E1000_VFTA, offset, 0); -		wrfl(); -	} -} - -/** - *  igb_write_vfta - Write value to VLAN filter table - *  @hw: pointer to the HW structure - *  @offset: register offset in VLAN filter table - *  @value: register value written to VLAN filter table - * - *  Writes value at the given offset in the register array which stores - *  the VLAN filter table. - **/ -static void igb_write_vfta(struct e1000_hw *hw, u32 offset, u32 value) -{ -	array_wr32(E1000_VFTA, offset, value); -	wrfl(); -} - -/** - *  igb_init_rx_addrs - Initialize receive address's - *  @hw: pointer to the HW structure - *  @rar_count: receive address registers - * - *  Setups the receive address registers by setting the base receive address - *  register to the devices MAC address and clearing all the other receive - *  address registers to 0. - **/ -void igb_init_rx_addrs(struct e1000_hw *hw, u16 rar_count) -{ -	u32 i; -	u8 mac_addr[ETH_ALEN] = {0}; - -	/* Setup the receive address */ -	hw_dbg("Programming MAC Address into RAR[0]\n"); - -	hw->mac.ops.rar_set(hw, hw->mac.addr, 0); - -	/* Zero out the other (rar_entry_count - 1) receive addresses */ -	hw_dbg("Clearing RAR[1-%u]\n", rar_count-1); -	for (i = 1; i < rar_count; i++) -		hw->mac.ops.rar_set(hw, mac_addr, i); -} - -/** - *  igb_vfta_set - enable or disable vlan in VLAN filter table - *  @hw: pointer to the HW structure - *  @vid: VLAN id to add or remove - *  @add: if true add filter, if false remove - * - *  Sets or clears a bit in the VLAN filter table array based on VLAN id - *  and if we are adding or removing the filter - **/ -s32 igb_vfta_set(struct e1000_hw *hw, u32 vid, bool add) -{ -	u32 index = (vid >> E1000_VFTA_ENTRY_SHIFT) & E1000_VFTA_ENTRY_MASK; -	u32 mask = 1 << (vid & E1000_VFTA_ENTRY_BIT_SHIFT_MASK); -	u32 vfta = array_rd32(E1000_VFTA, index); -	s32 ret_val = 0; - -	/* bit was set/cleared before we started */ -	if ((!!(vfta & mask)) == add) { -		ret_val = -E1000_ERR_CONFIG; -	} else { -		if (add) -			vfta |= mask; -		else -			vfta &= ~mask; -	} - -	igb_write_vfta(hw, index, vfta); - -	return ret_val; -} - -/** - *  igb_check_alt_mac_addr - Check for alternate MAC addr - *  @hw: pointer to the HW structure - * - *  Checks the nvm for an alternate MAC address.  An alternate MAC address - *  can be setup by pre-boot software and must be treated like a permanent - *  address and must override the actual permanent MAC address.  If an - *  alternate MAC address is fopund it is saved in the hw struct and - *  prgrammed into RAR0 and the cuntion returns success, otherwise the - *  fucntion returns an error. - **/ -s32 igb_check_alt_mac_addr(struct e1000_hw *hw) -{ -	u32 i; -	s32 ret_val = 0; -	u16 offset, nvm_alt_mac_addr_offset, nvm_data; -	u8 alt_mac_addr[ETH_ALEN]; - -	ret_val = hw->nvm.ops.read(hw, NVM_ALT_MAC_ADDR_PTR, 1, -				 &nvm_alt_mac_addr_offset); -	if (ret_val) { -		hw_dbg("NVM Read Error\n"); -		goto out; -	} - -	if (nvm_alt_mac_addr_offset == 0xFFFF) { -		/* There is no Alternate MAC Address */ -		goto out; -	} - -	if (hw->bus.func == E1000_FUNC_1) -		nvm_alt_mac_addr_offset += E1000_ALT_MAC_ADDRESS_OFFSET_LAN1; -	for (i = 0; i < ETH_ALEN; i += 2) { -		offset = nvm_alt_mac_addr_offset + (i >> 1); -		ret_val = hw->nvm.ops.read(hw, offset, 1, &nvm_data); -		if (ret_val) { -			hw_dbg("NVM Read Error\n"); -			goto out; -		} - -		alt_mac_addr[i] = (u8)(nvm_data & 0xFF); -		alt_mac_addr[i + 1] = (u8)(nvm_data >> 8); -	} - -	/* if multicast bit is set, the alternate address will not be used */ -	if (alt_mac_addr[0] & 0x01) { -		hw_dbg("Ignoring Alternate Mac Address with MC bit set\n"); -		goto out; -	} - -	/* -	 * We have a valid alternate MAC address, and we want to treat it the -	 * same as the normal permanent MAC address stored by the HW into the -	 * RAR. Do this by mapping this address into RAR0. -	 */ -	hw->mac.ops.rar_set(hw, alt_mac_addr, 0); - -out: -	return ret_val; -} - -/** - *  igb_rar_set - Set receive address register - *  @hw: pointer to the HW structure - *  @addr: pointer to the receive address - *  @index: receive address array register - * - *  Sets the receive address array register at index to the address passed - *  in by addr. - **/ -void igb_rar_set(struct e1000_hw *hw, u8 *addr, u32 index) -{ -	u32 rar_low, rar_high; - -	/* -	 * HW expects these in little endian so we reverse the byte order -	 * from network order (big endian) to little endian -	 */ -	rar_low = ((u32) addr[0] | -		   ((u32) addr[1] << 8) | -		    ((u32) addr[2] << 16) | ((u32) addr[3] << 24)); - -	rar_high = ((u32) addr[4] | ((u32) addr[5] << 8)); - -	/* If MAC address zero, no need to set the AV bit */ -	if (rar_low || rar_high) -		rar_high |= E1000_RAH_AV; - -	/* -	 * Some bridges will combine consecutive 32-bit writes into -	 * a single burst write, which will malfunction on some parts. -	 * The flushes avoid this. -	 */ -	wr32(E1000_RAL(index), rar_low); -	wrfl(); -	wr32(E1000_RAH(index), rar_high); -	wrfl(); -} - -/** - *  igb_mta_set - Set multicast filter table address - *  @hw: pointer to the HW structure - *  @hash_value: determines the MTA register and bit to set - * - *  The multicast table address is a register array of 32-bit registers. - *  The hash_value is used to determine what register the bit is in, the - *  current value is read, the new bit is OR'd in and the new value is - *  written back into the register. - **/ -void igb_mta_set(struct e1000_hw *hw, u32 hash_value) -{ -	u32 hash_bit, hash_reg, mta; - -	/* -	 * The MTA is a register array of 32-bit registers. It is -	 * treated like an array of (32*mta_reg_count) bits.  We want to -	 * set bit BitArray[hash_value]. So we figure out what register -	 * the bit is in, read it, OR in the new bit, then write -	 * back the new value.  The (hw->mac.mta_reg_count - 1) serves as a -	 * mask to bits 31:5 of the hash value which gives us the -	 * register we're modifying.  The hash bit within that register -	 * is determined by the lower 5 bits of the hash value. -	 */ -	hash_reg = (hash_value >> 5) & (hw->mac.mta_reg_count - 1); -	hash_bit = hash_value & 0x1F; - -	mta = array_rd32(E1000_MTA, hash_reg); - -	mta |= (1 << hash_bit); - -	array_wr32(E1000_MTA, hash_reg, mta); -	wrfl(); -} - -/** - *  igb_hash_mc_addr - Generate a multicast hash value - *  @hw: pointer to the HW structure - *  @mc_addr: pointer to a multicast address - * - *  Generates a multicast address hash value which is used to determine - *  the multicast filter table array address and new table value.  See - *  igb_mta_set() - **/ -static u32 igb_hash_mc_addr(struct e1000_hw *hw, u8 *mc_addr) -{ -	u32 hash_value, hash_mask; -	u8 bit_shift = 0; - -	/* Register count multiplied by bits per register */ -	hash_mask = (hw->mac.mta_reg_count * 32) - 1; - -	/* -	 * For a mc_filter_type of 0, bit_shift is the number of left-shifts -	 * where 0xFF would still fall within the hash mask. -	 */ -	while (hash_mask >> bit_shift != 0xFF) -		bit_shift++; - -	/* -	 * The portion of the address that is used for the hash table -	 * is determined by the mc_filter_type setting. -	 * The algorithm is such that there is a total of 8 bits of shifting. -	 * The bit_shift for a mc_filter_type of 0 represents the number of -	 * left-shifts where the MSB of mc_addr[5] would still fall within -	 * the hash_mask.  Case 0 does this exactly.  Since there are a total -	 * of 8 bits of shifting, then mc_addr[4] will shift right the -	 * remaining number of bits. Thus 8 - bit_shift.  The rest of the -	 * cases are a variation of this algorithm...essentially raising the -	 * number of bits to shift mc_addr[5] left, while still keeping the -	 * 8-bit shifting total. -	 * -	 * For example, given the following Destination MAC Address and an -	 * mta register count of 128 (thus a 4096-bit vector and 0xFFF mask), -	 * we can see that the bit_shift for case 0 is 4.  These are the hash -	 * values resulting from each mc_filter_type... -	 * [0] [1] [2] [3] [4] [5] -	 * 01  AA  00  12  34  56 -	 * LSB                 MSB -	 * -	 * case 0: hash_value = ((0x34 >> 4) | (0x56 << 4)) & 0xFFF = 0x563 -	 * case 1: hash_value = ((0x34 >> 3) | (0x56 << 5)) & 0xFFF = 0xAC6 -	 * case 2: hash_value = ((0x34 >> 2) | (0x56 << 6)) & 0xFFF = 0x163 -	 * case 3: hash_value = ((0x34 >> 0) | (0x56 << 8)) & 0xFFF = 0x634 -	 */ -	switch (hw->mac.mc_filter_type) { -	default: -	case 0: -		break; -	case 1: -		bit_shift += 1; -		break; -	case 2: -		bit_shift += 2; -		break; -	case 3: -		bit_shift += 4; -		break; -	} - -	hash_value = hash_mask & (((mc_addr[4] >> (8 - bit_shift)) | -				  (((u16) mc_addr[5]) << bit_shift))); - -	return hash_value; -} - -/** - *  igb_update_mc_addr_list - Update Multicast addresses - *  @hw: pointer to the HW structure - *  @mc_addr_list: array of multicast addresses to program - *  @mc_addr_count: number of multicast addresses to program - * - *  Updates entire Multicast Table Array. - *  The caller must have a packed mc_addr_list of multicast addresses. - **/ -void igb_update_mc_addr_list(struct e1000_hw *hw, -                             u8 *mc_addr_list, u32 mc_addr_count) -{ -	u32 hash_value, hash_bit, hash_reg; -	int i; - -	/* clear mta_shadow */ -	memset(&hw->mac.mta_shadow, 0, sizeof(hw->mac.mta_shadow)); - -	/* update mta_shadow from mc_addr_list */ -	for (i = 0; (u32) i < mc_addr_count; i++) { -		hash_value = igb_hash_mc_addr(hw, mc_addr_list); - -		hash_reg = (hash_value >> 5) & (hw->mac.mta_reg_count - 1); -		hash_bit = hash_value & 0x1F; - -		hw->mac.mta_shadow[hash_reg] |= (1 << hash_bit); -		mc_addr_list += (ETH_ALEN); -	} - -	/* replace the entire MTA table */ -	for (i = hw->mac.mta_reg_count - 1; i >= 0; i--) -		array_wr32(E1000_MTA, i, hw->mac.mta_shadow[i]); -	wrfl(); -} - -/** - *  igb_clear_hw_cntrs_base - Clear base hardware counters - *  @hw: pointer to the HW structure - * - *  Clears the base hardware counters by reading the counter registers. - **/ -void igb_clear_hw_cntrs_base(struct e1000_hw *hw) -{ -	rd32(E1000_CRCERRS); -	rd32(E1000_SYMERRS); -	rd32(E1000_MPC); -	rd32(E1000_SCC); -	rd32(E1000_ECOL); -	rd32(E1000_MCC); -	rd32(E1000_LATECOL); -	rd32(E1000_COLC); -	rd32(E1000_DC); -	rd32(E1000_SEC); -	rd32(E1000_RLEC); -	rd32(E1000_XONRXC); -	rd32(E1000_XONTXC); -	rd32(E1000_XOFFRXC); -	rd32(E1000_XOFFTXC); -	rd32(E1000_FCRUC); -	rd32(E1000_GPRC); -	rd32(E1000_BPRC); -	rd32(E1000_MPRC); -	rd32(E1000_GPTC); -	rd32(E1000_GORCL); -	rd32(E1000_GORCH); -	rd32(E1000_GOTCL); -	rd32(E1000_GOTCH); -	rd32(E1000_RNBC); -	rd32(E1000_RUC); -	rd32(E1000_RFC); -	rd32(E1000_ROC); -	rd32(E1000_RJC); -	rd32(E1000_TORL); -	rd32(E1000_TORH); -	rd32(E1000_TOTL); -	rd32(E1000_TOTH); -	rd32(E1000_TPR); -	rd32(E1000_TPT); -	rd32(E1000_MPTC); -	rd32(E1000_BPTC); -} - -/** - *  igb_check_for_copper_link - Check for link (Copper) - *  @hw: pointer to the HW structure - * - *  Checks to see of the link status of the hardware has changed.  If a - *  change in link status has been detected, then we read the PHY registers - *  to get the current speed/duplex if link exists. - **/ -s32 igb_check_for_copper_link(struct e1000_hw *hw) -{ -	struct e1000_mac_info *mac = &hw->mac; -	s32 ret_val; -	bool link; - -	/* -	 * We only want to go out to the PHY registers to see if Auto-Neg -	 * has completed and/or if our link status has changed.  The -	 * get_link_status flag is set upon receiving a Link Status -	 * Change or Rx Sequence Error interrupt. -	 */ -	if (!mac->get_link_status) { -		ret_val = 0; -		goto out; -	} - -	/* -	 * First we want to see if the MII Status Register reports -	 * link.  If so, then we want to get the current speed/duplex -	 * of the PHY. -	 */ -	ret_val = igb_phy_has_link(hw, 1, 0, &link); -	if (ret_val) -		goto out; - -	if (!link) -		goto out; /* No link detected */ - -	mac->get_link_status = false; - -	/* -	 * Check if there was DownShift, must be checked -	 * immediately after link-up -	 */ -	igb_check_downshift(hw); - -	/* -	 * If we are forcing speed/duplex, then we simply return since -	 * we have already determined whether we have link or not. -	 */ -	if (!mac->autoneg) { -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -	/* -	 * Auto-Neg is enabled.  Auto Speed Detection takes care -	 * of MAC speed/duplex configuration.  So we only need to -	 * configure Collision Distance in the MAC. -	 */ -	igb_config_collision_dist(hw); - -	/* -	 * Configure Flow Control now that Auto-Neg has completed. -	 * First, we need to restore the desired flow control -	 * settings because we may have had to re-autoneg with a -	 * different link partner. -	 */ -	ret_val = igb_config_fc_after_link_up(hw); -	if (ret_val) -		hw_dbg("Error configuring flow control\n"); - -out: -	return ret_val; -} - -/** - *  igb_setup_link - Setup flow control and link settings - *  @hw: pointer to the HW structure - * - *  Determines which flow control settings to use, then configures flow - *  control.  Calls the appropriate media-specific link configuration - *  function.  Assuming the adapter has a valid link partner, a valid link - *  should be established.  Assumes the hardware has previously been reset - *  and the transmitter and receiver are not enabled. - **/ -s32 igb_setup_link(struct e1000_hw *hw) -{ -	s32 ret_val = 0; - -	/* -	 * In the case of the phy reset being blocked, we already have a link. -	 * We do not need to set it up again. -	 */ -	if (igb_check_reset_block(hw)) -		goto out; - -	/* -	 * If requested flow control is set to default, set flow control -	 * based on the EEPROM flow control settings. -	 */ -	if (hw->fc.requested_mode == e1000_fc_default) { -		ret_val = igb_set_default_fc(hw); -		if (ret_val) -			goto out; -	} - -	/* -	 * We want to save off the original Flow Control configuration just -	 * in case we get disconnected and then reconnected into a different -	 * hub or switch with different Flow Control capabilities. -	 */ -	hw->fc.current_mode = hw->fc.requested_mode; - -	hw_dbg("After fix-ups FlowControl is now = %x\n", hw->fc.current_mode); - -	/* Call the necessary media_type subroutine to configure the link. */ -	ret_val = hw->mac.ops.setup_physical_interface(hw); -	if (ret_val) -		goto out; - -	/* -	 * Initialize the flow control address, type, and PAUSE timer -	 * registers to their default values.  This is done even if flow -	 * control is disabled, because it does not hurt anything to -	 * initialize these registers. -	 */ -	hw_dbg("Initializing the Flow Control address, type and timer regs\n"); -	wr32(E1000_FCT, FLOW_CONTROL_TYPE); -	wr32(E1000_FCAH, FLOW_CONTROL_ADDRESS_HIGH); -	wr32(E1000_FCAL, FLOW_CONTROL_ADDRESS_LOW); - -	wr32(E1000_FCTTV, hw->fc.pause_time); - -	ret_val = igb_set_fc_watermarks(hw); - -out: -	return ret_val; -} - -/** - *  igb_config_collision_dist - Configure collision distance - *  @hw: pointer to the HW structure - * - *  Configures the collision distance to the default value and is used - *  during link setup. Currently no func pointer exists and all - *  implementations are handled in the generic version of this function. - **/ -void igb_config_collision_dist(struct e1000_hw *hw) -{ -	u32 tctl; - -	tctl = rd32(E1000_TCTL); - -	tctl &= ~E1000_TCTL_COLD; -	tctl |= E1000_COLLISION_DISTANCE << E1000_COLD_SHIFT; - -	wr32(E1000_TCTL, tctl); -	wrfl(); -} - -/** - *  igb_set_fc_watermarks - Set flow control high/low watermarks - *  @hw: pointer to the HW structure - * - *  Sets the flow control high/low threshold (watermark) registers.  If - *  flow control XON frame transmission is enabled, then set XON frame - *  tansmission as well. - **/ -static s32 igb_set_fc_watermarks(struct e1000_hw *hw) -{ -	s32 ret_val = 0; -	u32 fcrtl = 0, fcrth = 0; - -	/* -	 * Set the flow control receive threshold registers.  Normally, -	 * these registers will be set to a default threshold that may be -	 * adjusted later by the driver's runtime code.  However, if the -	 * ability to transmit pause frames is not enabled, then these -	 * registers will be set to 0. -	 */ -	if (hw->fc.current_mode & e1000_fc_tx_pause) { -		/* -		 * We need to set up the Receive Threshold high and low water -		 * marks as well as (optionally) enabling the transmission of -		 * XON frames. -		 */ -		fcrtl = hw->fc.low_water; -		if (hw->fc.send_xon) -			fcrtl |= E1000_FCRTL_XONE; - -		fcrth = hw->fc.high_water; -	} -	wr32(E1000_FCRTL, fcrtl); -	wr32(E1000_FCRTH, fcrth); - -	return ret_val; -} - -/** - *  igb_set_default_fc - Set flow control default values - *  @hw: pointer to the HW structure - * - *  Read the EEPROM for the default values for flow control and store the - *  values. - **/ -static s32 igb_set_default_fc(struct e1000_hw *hw) -{ -	s32 ret_val = 0; -	u16 nvm_data; - -	/* -	 * Read and store word 0x0F of the EEPROM. This word contains bits -	 * that determine the hardware's default PAUSE (flow control) mode, -	 * a bit that determines whether the HW defaults to enabling or -	 * disabling auto-negotiation, and the direction of the -	 * SW defined pins. If there is no SW over-ride of the flow -	 * control setting, then the variable hw->fc will -	 * be initialized based on a value in the EEPROM. -	 */ -	ret_val = hw->nvm.ops.read(hw, NVM_INIT_CONTROL2_REG, 1, &nvm_data); - -	if (ret_val) { -		hw_dbg("NVM Read Error\n"); -		goto out; -	} - -	if ((nvm_data & NVM_WORD0F_PAUSE_MASK) == 0) -		hw->fc.requested_mode = e1000_fc_none; -	else if ((nvm_data & NVM_WORD0F_PAUSE_MASK) == -		 NVM_WORD0F_ASM_DIR) -		hw->fc.requested_mode = e1000_fc_tx_pause; -	else -		hw->fc.requested_mode = e1000_fc_full; - -out: -	return ret_val; -} - -/** - *  igb_force_mac_fc - Force the MAC's flow control settings - *  @hw: pointer to the HW structure - * - *  Force the MAC's flow control settings.  Sets the TFCE and RFCE bits in the - *  device control register to reflect the adapter settings.  TFCE and RFCE - *  need to be explicitly set by software when a copper PHY is used because - *  autonegotiation is managed by the PHY rather than the MAC.  Software must - *  also configure these bits when link is forced on a fiber connection. - **/ -s32 igb_force_mac_fc(struct e1000_hw *hw) -{ -	u32 ctrl; -	s32 ret_val = 0; - -	ctrl = rd32(E1000_CTRL); - -	/* -	 * Because we didn't get link via the internal auto-negotiation -	 * mechanism (we either forced link or we got link via PHY -	 * auto-neg), we have to manually enable/disable transmit an -	 * receive flow control. -	 * -	 * The "Case" statement below enables/disable flow control -	 * according to the "hw->fc.current_mode" parameter. -	 * -	 * The possible values of the "fc" parameter are: -	 *      0:  Flow control is completely disabled -	 *      1:  Rx flow control is enabled (we can receive pause -	 *          frames but not send pause frames). -	 *      2:  Tx flow control is enabled (we can send pause frames -	 *          frames but we do not receive pause frames). -	 *      3:  Both Rx and TX flow control (symmetric) is enabled. -	 *  other:  No other values should be possible at this point. -	 */ -	hw_dbg("hw->fc.current_mode = %u\n", hw->fc.current_mode); - -	switch (hw->fc.current_mode) { -	case e1000_fc_none: -		ctrl &= (~(E1000_CTRL_TFCE | E1000_CTRL_RFCE)); -		break; -	case e1000_fc_rx_pause: -		ctrl &= (~E1000_CTRL_TFCE); -		ctrl |= E1000_CTRL_RFCE; -		break; -	case e1000_fc_tx_pause: -		ctrl &= (~E1000_CTRL_RFCE); -		ctrl |= E1000_CTRL_TFCE; -		break; -	case e1000_fc_full: -		ctrl |= (E1000_CTRL_TFCE | E1000_CTRL_RFCE); -		break; -	default: -		hw_dbg("Flow control param set incorrectly\n"); -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -	wr32(E1000_CTRL, ctrl); - -out: -	return ret_val; -} - -/** - *  igb_config_fc_after_link_up - Configures flow control after link - *  @hw: pointer to the HW structure - * - *  Checks the status of auto-negotiation after link up to ensure that the - *  speed and duplex were not forced.  If the link needed to be forced, then - *  flow control needs to be forced also.  If auto-negotiation is enabled - *  and did not fail, then we configure flow control based on our link - *  partner. - **/ -s32 igb_config_fc_after_link_up(struct e1000_hw *hw) -{ -	struct e1000_mac_info *mac = &hw->mac; -	s32 ret_val = 0; -	u16 mii_status_reg, mii_nway_adv_reg, mii_nway_lp_ability_reg; -	u16 speed, duplex; - -	/* -	 * Check for the case where we have fiber media and auto-neg failed -	 * so we had to force link.  In this case, we need to force the -	 * configuration of the MAC to match the "fc" parameter. -	 */ -	if (mac->autoneg_failed) { -		if (hw->phy.media_type == e1000_media_type_internal_serdes) -			ret_val = igb_force_mac_fc(hw); -	} else { -		if (hw->phy.media_type == e1000_media_type_copper) -			ret_val = igb_force_mac_fc(hw); -	} - -	if (ret_val) { -		hw_dbg("Error forcing flow control settings\n"); -		goto out; -	} - -	/* -	 * Check for the case where we have copper media and auto-neg is -	 * enabled.  In this case, we need to check and see if Auto-Neg -	 * has completed, and if so, how the PHY and link partner has -	 * flow control configured. -	 */ -	if ((hw->phy.media_type == e1000_media_type_copper) && mac->autoneg) { -		/* -		 * Read the MII Status Register and check to see if AutoNeg -		 * has completed.  We read this twice because this reg has -		 * some "sticky" (latched) bits. -		 */ -		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, -						   &mii_status_reg); -		if (ret_val) -			goto out; -		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, -						   &mii_status_reg); -		if (ret_val) -			goto out; - -		if (!(mii_status_reg & MII_SR_AUTONEG_COMPLETE)) { -			hw_dbg("Copper PHY and Auto Neg " -				 "has not completed.\n"); -			goto out; -		} - -		/* -		 * The AutoNeg process has completed, so we now need to -		 * read both the Auto Negotiation Advertisement -		 * Register (Address 4) and the Auto_Negotiation Base -		 * Page Ability Register (Address 5) to determine how -		 * flow control was negotiated. -		 */ -		ret_val = hw->phy.ops.read_reg(hw, PHY_AUTONEG_ADV, -					    &mii_nway_adv_reg); -		if (ret_val) -			goto out; -		ret_val = hw->phy.ops.read_reg(hw, PHY_LP_ABILITY, -					    &mii_nway_lp_ability_reg); -		if (ret_val) -			goto out; - -		/* -		 * Two bits in the Auto Negotiation Advertisement Register -		 * (Address 4) and two bits in the Auto Negotiation Base -		 * Page Ability Register (Address 5) determine flow control -		 * for both the PHY and the link partner.  The following -		 * table, taken out of the IEEE 802.3ab/D6.0 dated March 25, -		 * 1999, describes these PAUSE resolution bits and how flow -		 * control is determined based upon these settings. -		 * NOTE:  DC = Don't Care -		 * -		 *   LOCAL DEVICE  |   LINK PARTNER -		 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | NIC Resolution -		 *-------|---------|-------|---------|-------------------- -		 *   0   |    0    |  DC   |   DC    | e1000_fc_none -		 *   0   |    1    |   0   |   DC    | e1000_fc_none -		 *   0   |    1    |   1   |    0    | e1000_fc_none -		 *   0   |    1    |   1   |    1    | e1000_fc_tx_pause -		 *   1   |    0    |   0   |   DC    | e1000_fc_none -		 *   1   |   DC    |   1   |   DC    | e1000_fc_full -		 *   1   |    1    |   0   |    0    | e1000_fc_none -		 *   1   |    1    |   0   |    1    | e1000_fc_rx_pause -		 * -		 * Are both PAUSE bits set to 1?  If so, this implies -		 * Symmetric Flow Control is enabled at both ends.  The -		 * ASM_DIR bits are irrelevant per the spec. -		 * -		 * For Symmetric Flow Control: -		 * -		 *   LOCAL DEVICE  |   LINK PARTNER -		 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result -		 *-------|---------|-------|---------|-------------------- -		 *   1   |   DC    |   1   |   DC    | E1000_fc_full -		 * -		 */ -		if ((mii_nway_adv_reg & NWAY_AR_PAUSE) && -		    (mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE)) { -			/* -			 * Now we need to check if the user selected RX ONLY -			 * of pause frames.  In this case, we had to advertise -			 * FULL flow control because we could not advertise RX -			 * ONLY. Hence, we must now check to see if we need to -			 * turn OFF  the TRANSMISSION of PAUSE frames. -			 */ -			if (hw->fc.requested_mode == e1000_fc_full) { -				hw->fc.current_mode = e1000_fc_full; -				hw_dbg("Flow Control = FULL.\r\n"); -			} else { -				hw->fc.current_mode = e1000_fc_rx_pause; -				hw_dbg("Flow Control = " -				       "RX PAUSE frames only.\r\n"); -			} -		} -		/* -		 * For receiving PAUSE frames ONLY. -		 * -		 *   LOCAL DEVICE  |   LINK PARTNER -		 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result -		 *-------|---------|-------|---------|-------------------- -		 *   0   |    1    |   1   |    1    | e1000_fc_tx_pause -		 */ -		else if (!(mii_nway_adv_reg & NWAY_AR_PAUSE) && -			  (mii_nway_adv_reg & NWAY_AR_ASM_DIR) && -			  (mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE) && -			  (mii_nway_lp_ability_reg & NWAY_LPAR_ASM_DIR)) { -			hw->fc.current_mode = e1000_fc_tx_pause; -			hw_dbg("Flow Control = TX PAUSE frames only.\r\n"); -		} -		/* -		 * For transmitting PAUSE frames ONLY. -		 * -		 *   LOCAL DEVICE  |   LINK PARTNER -		 * PAUSE | ASM_DIR | PAUSE | ASM_DIR | Result -		 *-------|---------|-------|---------|-------------------- -		 *   1   |    1    |   0   |    1    | e1000_fc_rx_pause -		 */ -		else if ((mii_nway_adv_reg & NWAY_AR_PAUSE) && -			 (mii_nway_adv_reg & NWAY_AR_ASM_DIR) && -			 !(mii_nway_lp_ability_reg & NWAY_LPAR_PAUSE) && -			 (mii_nway_lp_ability_reg & NWAY_LPAR_ASM_DIR)) { -			hw->fc.current_mode = e1000_fc_rx_pause; -			hw_dbg("Flow Control = RX PAUSE frames only.\r\n"); -		} -		/* -		 * Per the IEEE spec, at this point flow control should be -		 * disabled.  However, we want to consider that we could -		 * be connected to a legacy switch that doesn't advertise -		 * desired flow control, but can be forced on the link -		 * partner.  So if we advertised no flow control, that is -		 * what we will resolve to.  If we advertised some kind of -		 * receive capability (Rx Pause Only or Full Flow Control) -		 * and the link partner advertised none, we will configure -		 * ourselves to enable Rx Flow Control only.  We can do -		 * this safely for two reasons:  If the link partner really -		 * didn't want flow control enabled, and we enable Rx, no -		 * harm done since we won't be receiving any PAUSE frames -		 * anyway.  If the intent on the link partner was to have -		 * flow control enabled, then by us enabling RX only, we -		 * can at least receive pause frames and process them. -		 * This is a good idea because in most cases, since we are -		 * predominantly a server NIC, more times than not we will -		 * be asked to delay transmission of packets than asking -		 * our link partner to pause transmission of frames. -		 */ -		else if ((hw->fc.requested_mode == e1000_fc_none || -			  hw->fc.requested_mode == e1000_fc_tx_pause) || -			 hw->fc.strict_ieee) { -			hw->fc.current_mode = e1000_fc_none; -			hw_dbg("Flow Control = NONE.\r\n"); -		} else { -			hw->fc.current_mode = e1000_fc_rx_pause; -			hw_dbg("Flow Control = RX PAUSE frames only.\r\n"); -		} - -		/* -		 * Now we need to do one last check...  If we auto- -		 * negotiated to HALF DUPLEX, flow control should not be -		 * enabled per IEEE 802.3 spec. -		 */ -		ret_val = hw->mac.ops.get_speed_and_duplex(hw, &speed, &duplex); -		if (ret_val) { -			hw_dbg("Error getting link speed and duplex\n"); -			goto out; -		} - -		if (duplex == HALF_DUPLEX) -			hw->fc.current_mode = e1000_fc_none; - -		/* -		 * Now we call a subroutine to actually force the MAC -		 * controller to use the correct flow control settings. -		 */ -		ret_val = igb_force_mac_fc(hw); -		if (ret_val) { -			hw_dbg("Error forcing flow control settings\n"); -			goto out; -		} -	} - -out: -	return ret_val; -} - -/** - *  igb_get_speed_and_duplex_copper - Retreive current speed/duplex - *  @hw: pointer to the HW structure - *  @speed: stores the current speed - *  @duplex: stores the current duplex - * - *  Read the status register for the current speed/duplex and store the current - *  speed and duplex for copper connections. - **/ -s32 igb_get_speed_and_duplex_copper(struct e1000_hw *hw, u16 *speed, -				      u16 *duplex) -{ -	u32 status; - -	status = rd32(E1000_STATUS); -	if (status & E1000_STATUS_SPEED_1000) { -		*speed = SPEED_1000; -		hw_dbg("1000 Mbs, "); -	} else if (status & E1000_STATUS_SPEED_100) { -		*speed = SPEED_100; -		hw_dbg("100 Mbs, "); -	} else { -		*speed = SPEED_10; -		hw_dbg("10 Mbs, "); -	} - -	if (status & E1000_STATUS_FD) { -		*duplex = FULL_DUPLEX; -		hw_dbg("Full Duplex\n"); -	} else { -		*duplex = HALF_DUPLEX; -		hw_dbg("Half Duplex\n"); -	} - -	return 0; -} - -/** - *  igb_get_hw_semaphore - Acquire hardware semaphore - *  @hw: pointer to the HW structure - * - *  Acquire the HW semaphore to access the PHY or NVM - **/ -s32 igb_get_hw_semaphore(struct e1000_hw *hw) -{ -	u32 swsm; -	s32 ret_val = 0; -	s32 timeout = hw->nvm.word_size + 1; -	s32 i = 0; - -	/* Get the SW semaphore */ -	while (i < timeout) { -		swsm = rd32(E1000_SWSM); -		if (!(swsm & E1000_SWSM_SMBI)) -			break; - -		udelay(50); -		i++; -	} - -	if (i == timeout) { -		hw_dbg("Driver can't access device - SMBI bit is set.\n"); -		ret_val = -E1000_ERR_NVM; -		goto out; -	} - -	/* Get the FW semaphore. */ -	for (i = 0; i < timeout; i++) { -		swsm = rd32(E1000_SWSM); -		wr32(E1000_SWSM, swsm | E1000_SWSM_SWESMBI); - -		/* Semaphore acquired if bit latched */ -		if (rd32(E1000_SWSM) & E1000_SWSM_SWESMBI) -			break; - -		udelay(50); -	} - -	if (i == timeout) { -		/* Release semaphores */ -		igb_put_hw_semaphore(hw); -		hw_dbg("Driver can't access the NVM\n"); -		ret_val = -E1000_ERR_NVM; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_put_hw_semaphore - Release hardware semaphore - *  @hw: pointer to the HW structure - * - *  Release hardware semaphore used to access the PHY or NVM - **/ -void igb_put_hw_semaphore(struct e1000_hw *hw) -{ -	u32 swsm; - -	swsm = rd32(E1000_SWSM); - -	swsm &= ~(E1000_SWSM_SMBI | E1000_SWSM_SWESMBI); - -	wr32(E1000_SWSM, swsm); -} - -/** - *  igb_get_auto_rd_done - Check for auto read completion - *  @hw: pointer to the HW structure - * - *  Check EEPROM for Auto Read done bit. - **/ -s32 igb_get_auto_rd_done(struct e1000_hw *hw) -{ -	s32 i = 0; -	s32 ret_val = 0; - - -	while (i < AUTO_READ_DONE_TIMEOUT) { -		if (rd32(E1000_EECD) & E1000_EECD_AUTO_RD) -			break; -		msleep(1); -		i++; -	} - -	if (i == AUTO_READ_DONE_TIMEOUT) { -		hw_dbg("Auto read by HW from NVM has not completed.\n"); -		ret_val = -E1000_ERR_RESET; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_valid_led_default - Verify a valid default LED config - *  @hw: pointer to the HW structure - *  @data: pointer to the NVM (EEPROM) - * - *  Read the EEPROM for the current default LED configuration.  If the - *  LED configuration is not valid, set to a valid LED configuration. - **/ -static s32 igb_valid_led_default(struct e1000_hw *hw, u16 *data) -{ -	s32 ret_val; - -	ret_val = hw->nvm.ops.read(hw, NVM_ID_LED_SETTINGS, 1, data); -	if (ret_val) { -		hw_dbg("NVM Read Error\n"); -		goto out; -	} - -	if (*data == ID_LED_RESERVED_0000 || *data == ID_LED_RESERVED_FFFF) { -		switch(hw->phy.media_type) { -		case e1000_media_type_internal_serdes: -			*data = ID_LED_DEFAULT_82575_SERDES; -			break; -		case e1000_media_type_copper: -		default: -			*data = ID_LED_DEFAULT; -			break; -		} -	} -out: -	return ret_val; -} - -/** - *  igb_id_led_init - - *  @hw: pointer to the HW structure - * - **/ -s32 igb_id_led_init(struct e1000_hw *hw) -{ -	struct e1000_mac_info *mac = &hw->mac; -	s32 ret_val; -	const u32 ledctl_mask = 0x000000FF; -	const u32 ledctl_on = E1000_LEDCTL_MODE_LED_ON; -	const u32 ledctl_off = E1000_LEDCTL_MODE_LED_OFF; -	u16 data, i, temp; -	const u16 led_mask = 0x0F; - -	ret_val = igb_valid_led_default(hw, &data); -	if (ret_val) -		goto out; - -	mac->ledctl_default = rd32(E1000_LEDCTL); -	mac->ledctl_mode1 = mac->ledctl_default; -	mac->ledctl_mode2 = mac->ledctl_default; - -	for (i = 0; i < 4; i++) { -		temp = (data >> (i << 2)) & led_mask; -		switch (temp) { -		case ID_LED_ON1_DEF2: -		case ID_LED_ON1_ON2: -		case ID_LED_ON1_OFF2: -			mac->ledctl_mode1 &= ~(ledctl_mask << (i << 3)); -			mac->ledctl_mode1 |= ledctl_on << (i << 3); -			break; -		case ID_LED_OFF1_DEF2: -		case ID_LED_OFF1_ON2: -		case ID_LED_OFF1_OFF2: -			mac->ledctl_mode1 &= ~(ledctl_mask << (i << 3)); -			mac->ledctl_mode1 |= ledctl_off << (i << 3); -			break; -		default: -			/* Do nothing */ -			break; -		} -		switch (temp) { -		case ID_LED_DEF1_ON2: -		case ID_LED_ON1_ON2: -		case ID_LED_OFF1_ON2: -			mac->ledctl_mode2 &= ~(ledctl_mask << (i << 3)); -			mac->ledctl_mode2 |= ledctl_on << (i << 3); -			break; -		case ID_LED_DEF1_OFF2: -		case ID_LED_ON1_OFF2: -		case ID_LED_OFF1_OFF2: -			mac->ledctl_mode2 &= ~(ledctl_mask << (i << 3)); -			mac->ledctl_mode2 |= ledctl_off << (i << 3); -			break; -		default: -			/* Do nothing */ -			break; -		} -	} - -out: -	return ret_val; -} - -/** - *  igb_cleanup_led - Set LED config to default operation - *  @hw: pointer to the HW structure - * - *  Remove the current LED configuration and set the LED configuration - *  to the default value, saved from the EEPROM. - **/ -s32 igb_cleanup_led(struct e1000_hw *hw) -{ -	wr32(E1000_LEDCTL, hw->mac.ledctl_default); -	return 0; -} - -/** - *  igb_blink_led - Blink LED - *  @hw: pointer to the HW structure - * - *  Blink the led's which are set to be on. - **/ -s32 igb_blink_led(struct e1000_hw *hw) -{ -	u32 ledctl_blink = 0; -	u32 i; - -	/* -	 * set the blink bit for each LED that's "on" (0x0E) -	 * in ledctl_mode2 -	 */ -	ledctl_blink = hw->mac.ledctl_mode2; -	for (i = 0; i < 4; i++) -		if (((hw->mac.ledctl_mode2 >> (i * 8)) & 0xFF) == -		    E1000_LEDCTL_MODE_LED_ON) -			ledctl_blink |= (E1000_LEDCTL_LED0_BLINK << -					 (i * 8)); - -	wr32(E1000_LEDCTL, ledctl_blink); - -	return 0; -} - -/** - *  igb_led_off - Turn LED off - *  @hw: pointer to the HW structure - * - *  Turn LED off. - **/ -s32 igb_led_off(struct e1000_hw *hw) -{ -	switch (hw->phy.media_type) { -	case e1000_media_type_copper: -		wr32(E1000_LEDCTL, hw->mac.ledctl_mode1); -		break; -	default: -		break; -	} - -	return 0; -} - -/** - *  igb_disable_pcie_master - Disables PCI-express master access - *  @hw: pointer to the HW structure - * - *  Returns 0 (0) if successful, else returns -10 - *  (-E1000_ERR_MASTER_REQUESTS_PENDING) if master disable bit has not casued - *  the master requests to be disabled. - * - *  Disables PCI-Express master access and verifies there are no pending - *  requests. - **/ -s32 igb_disable_pcie_master(struct e1000_hw *hw) -{ -	u32 ctrl; -	s32 timeout = MASTER_DISABLE_TIMEOUT; -	s32 ret_val = 0; - -	if (hw->bus.type != e1000_bus_type_pci_express) -		goto out; - -	ctrl = rd32(E1000_CTRL); -	ctrl |= E1000_CTRL_GIO_MASTER_DISABLE; -	wr32(E1000_CTRL, ctrl); - -	while (timeout) { -		if (!(rd32(E1000_STATUS) & -		      E1000_STATUS_GIO_MASTER_ENABLE)) -			break; -		udelay(100); -		timeout--; -	} - -	if (!timeout) { -		hw_dbg("Master requests are pending.\n"); -		ret_val = -E1000_ERR_MASTER_REQUESTS_PENDING; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_validate_mdi_setting - Verify MDI/MDIx settings - *  @hw: pointer to the HW structure - * - *  Verify that when not using auto-negotitation that MDI/MDIx is correctly - *  set, which is forced to MDI mode only. - **/ -s32 igb_validate_mdi_setting(struct e1000_hw *hw) -{ -	s32 ret_val = 0; - -	if (!hw->mac.autoneg && (hw->phy.mdix == 0 || hw->phy.mdix == 3)) { -		hw_dbg("Invalid MDI setting detected\n"); -		hw->phy.mdix = 1; -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_write_8bit_ctrl_reg - Write a 8bit CTRL register - *  @hw: pointer to the HW structure - *  @reg: 32bit register offset such as E1000_SCTL - *  @offset: register offset to write to - *  @data: data to write at register offset - * - *  Writes an address/data control type register.  There are several of these - *  and they all have the format address << 8 | data and bit 31 is polled for - *  completion. - **/ -s32 igb_write_8bit_ctrl_reg(struct e1000_hw *hw, u32 reg, -			      u32 offset, u8 data) -{ -	u32 i, regvalue = 0; -	s32 ret_val = 0; - -	/* Set up the address and data */ -	regvalue = ((u32)data) | (offset << E1000_GEN_CTL_ADDRESS_SHIFT); -	wr32(reg, regvalue); - -	/* Poll the ready bit to see if the MDI read completed */ -	for (i = 0; i < E1000_GEN_POLL_TIMEOUT; i++) { -		udelay(5); -		regvalue = rd32(reg); -		if (regvalue & E1000_GEN_CTL_READY) -			break; -	} -	if (!(regvalue & E1000_GEN_CTL_READY)) { -		hw_dbg("Reg %08x did not indicate ready\n", reg); -		ret_val = -E1000_ERR_PHY; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_enable_mng_pass_thru - Enable processing of ARP's - *  @hw: pointer to the HW structure - * - *  Verifies the hardware needs to leave interface enabled so that frames can - *  be directed to and from the management interface. - **/ -bool igb_enable_mng_pass_thru(struct e1000_hw *hw) -{ -	u32 manc; -	u32 fwsm, factps; -	bool ret_val = false; - -	if (!hw->mac.asf_firmware_present) -		goto out; - -	manc = rd32(E1000_MANC); - -	if (!(manc & E1000_MANC_RCV_TCO_EN)) -		goto out; - -	if (hw->mac.arc_subsystem_valid) { -		fwsm = rd32(E1000_FWSM); -		factps = rd32(E1000_FACTPS); - -		if (!(factps & E1000_FACTPS_MNGCG) && -		    ((fwsm & E1000_FWSM_MODE_MASK) == -		     (e1000_mng_mode_pt << E1000_FWSM_MODE_SHIFT))) { -			ret_val = true; -			goto out; -		} -	} else { -		if ((manc & E1000_MANC_SMBUS_EN) && -		    !(manc & E1000_MANC_ASF_EN)) { -			ret_val = true; -			goto out; -		} -	} - -out: -	return ret_val; -} diff --git a/drivers/net/igb/e1000_mac.h b/drivers/net/igb/e1000_mac.h deleted file mode 100644 index 601be99711c..00000000000 --- a/drivers/net/igb/e1000_mac.h +++ /dev/null @@ -1,90 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_MAC_H_ -#define _E1000_MAC_H_ - -#include "e1000_hw.h" - -#include "e1000_phy.h" -#include "e1000_nvm.h" -#include "e1000_defines.h" - -/* - * Functions that should not be called directly from drivers but can be used - * by other files in this 'shared code' - */ -s32  igb_blink_led(struct e1000_hw *hw); -s32  igb_check_for_copper_link(struct e1000_hw *hw); -s32  igb_cleanup_led(struct e1000_hw *hw); -s32  igb_config_fc_after_link_up(struct e1000_hw *hw); -s32  igb_disable_pcie_master(struct e1000_hw *hw); -s32  igb_force_mac_fc(struct e1000_hw *hw); -s32  igb_get_auto_rd_done(struct e1000_hw *hw); -s32  igb_get_bus_info_pcie(struct e1000_hw *hw); -s32  igb_get_hw_semaphore(struct e1000_hw *hw); -s32  igb_get_speed_and_duplex_copper(struct e1000_hw *hw, u16 *speed, -				       u16 *duplex); -s32  igb_id_led_init(struct e1000_hw *hw); -s32  igb_led_off(struct e1000_hw *hw); -void igb_update_mc_addr_list(struct e1000_hw *hw, -	                     u8 *mc_addr_list, u32 mc_addr_count); -s32  igb_setup_link(struct e1000_hw *hw); -s32  igb_validate_mdi_setting(struct e1000_hw *hw); -s32  igb_write_8bit_ctrl_reg(struct e1000_hw *hw, u32 reg, -			       u32 offset, u8 data); - -void igb_clear_hw_cntrs_base(struct e1000_hw *hw); -void igb_clear_vfta(struct e1000_hw *hw); -s32  igb_vfta_set(struct e1000_hw *hw, u32 vid, bool add); -void igb_config_collision_dist(struct e1000_hw *hw); -void igb_init_rx_addrs(struct e1000_hw *hw, u16 rar_count); -void igb_mta_set(struct e1000_hw *hw, u32 hash_value); -void igb_put_hw_semaphore(struct e1000_hw *hw); -void igb_rar_set(struct e1000_hw *hw, u8 *addr, u32 index); -s32  igb_check_alt_mac_addr(struct e1000_hw *hw); - -bool igb_enable_mng_pass_thru(struct e1000_hw *hw); - -enum e1000_mng_mode { -	e1000_mng_mode_none = 0, -	e1000_mng_mode_asf, -	e1000_mng_mode_pt, -	e1000_mng_mode_ipmi, -	e1000_mng_mode_host_if_only -}; - -#define E1000_FACTPS_MNGCG    0x20000000 - -#define E1000_FWSM_MODE_MASK  0xE -#define E1000_FWSM_MODE_SHIFT 1 - -#define E1000_MNG_DHCP_COOKIE_STATUS_VLAN    0x2 - -extern void e1000_init_function_pointers_82575(struct e1000_hw *hw); - -#endif diff --git a/drivers/net/igb/e1000_mbx.c b/drivers/net/igb/e1000_mbx.c deleted file mode 100644 index c474cdb7004..00000000000 --- a/drivers/net/igb/e1000_mbx.c +++ /dev/null @@ -1,448 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#include "e1000_mbx.h" - -/** - *  igb_read_mbx - Reads a message from the mailbox - *  @hw: pointer to the HW structure - *  @msg: The message buffer - *  @size: Length of buffer - *  @mbx_id: id of mailbox to read - * - *  returns SUCCESS if it successfuly read message from buffer - **/ -s32 igb_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	s32 ret_val = -E1000_ERR_MBX; - -	/* limit read to size of mailbox */ -	if (size > mbx->size) -		size = mbx->size; - -	if (mbx->ops.read) -		ret_val = mbx->ops.read(hw, msg, size, mbx_id); - -	return ret_val; -} - -/** - *  igb_write_mbx - Write a message to the mailbox - *  @hw: pointer to the HW structure - *  @msg: The message buffer - *  @size: Length of buffer - *  @mbx_id: id of mailbox to write - * - *  returns SUCCESS if it successfully copied message into the buffer - **/ -s32 igb_write_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	s32 ret_val = 0; - -	if (size > mbx->size) -		ret_val = -E1000_ERR_MBX; - -	else if (mbx->ops.write) -		ret_val = mbx->ops.write(hw, msg, size, mbx_id); - -	return ret_val; -} - -/** - *  igb_check_for_msg - checks to see if someone sent us mail - *  @hw: pointer to the HW structure - *  @mbx_id: id of mailbox to check - * - *  returns SUCCESS if the Status bit was found or else ERR_MBX - **/ -s32 igb_check_for_msg(struct e1000_hw *hw, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	s32 ret_val = -E1000_ERR_MBX; - -	if (mbx->ops.check_for_msg) -		ret_val = mbx->ops.check_for_msg(hw, mbx_id); - -	return ret_val; -} - -/** - *  igb_check_for_ack - checks to see if someone sent us ACK - *  @hw: pointer to the HW structure - *  @mbx_id: id of mailbox to check - * - *  returns SUCCESS if the Status bit was found or else ERR_MBX - **/ -s32 igb_check_for_ack(struct e1000_hw *hw, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	s32 ret_val = -E1000_ERR_MBX; - -	if (mbx->ops.check_for_ack) -		ret_val = mbx->ops.check_for_ack(hw, mbx_id); - -	return ret_val; -} - -/** - *  igb_check_for_rst - checks to see if other side has reset - *  @hw: pointer to the HW structure - *  @mbx_id: id of mailbox to check - * - *  returns SUCCESS if the Status bit was found or else ERR_MBX - **/ -s32 igb_check_for_rst(struct e1000_hw *hw, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	s32 ret_val = -E1000_ERR_MBX; - -	if (mbx->ops.check_for_rst) -		ret_val = mbx->ops.check_for_rst(hw, mbx_id); - -	return ret_val; -} - -/** - *  igb_poll_for_msg - Wait for message notification - *  @hw: pointer to the HW structure - *  @mbx_id: id of mailbox to write - * - *  returns SUCCESS if it successfully received a message notification - **/ -static s32 igb_poll_for_msg(struct e1000_hw *hw, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	int countdown = mbx->timeout; - -	if (!countdown || !mbx->ops.check_for_msg) -		goto out; - -	while (countdown && mbx->ops.check_for_msg(hw, mbx_id)) { -		countdown--; -		if (!countdown) -			break; -		udelay(mbx->usec_delay); -	} - -	/* if we failed, all future posted messages fail until reset */ -	if (!countdown) -		mbx->timeout = 0; -out: -	return countdown ? 0 : -E1000_ERR_MBX; -} - -/** - *  igb_poll_for_ack - Wait for message acknowledgement - *  @hw: pointer to the HW structure - *  @mbx_id: id of mailbox to write - * - *  returns SUCCESS if it successfully received a message acknowledgement - **/ -static s32 igb_poll_for_ack(struct e1000_hw *hw, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	int countdown = mbx->timeout; - -	if (!countdown || !mbx->ops.check_for_ack) -		goto out; - -	while (countdown && mbx->ops.check_for_ack(hw, mbx_id)) { -		countdown--; -		if (!countdown) -			break; -		udelay(mbx->usec_delay); -	} - -	/* if we failed, all future posted messages fail until reset */ -	if (!countdown) -		mbx->timeout = 0; -out: -	return countdown ? 0 : -E1000_ERR_MBX; -} - -/** - *  igb_read_posted_mbx - Wait for message notification and receive message - *  @hw: pointer to the HW structure - *  @msg: The message buffer - *  @size: Length of buffer - *  @mbx_id: id of mailbox to write - * - *  returns SUCCESS if it successfully received a message notification and - *  copied it into the receive buffer. - **/ -static s32 igb_read_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	s32 ret_val = -E1000_ERR_MBX; - -	if (!mbx->ops.read) -		goto out; - -	ret_val = igb_poll_for_msg(hw, mbx_id); - -	if (!ret_val) -		ret_val = mbx->ops.read(hw, msg, size, mbx_id); -out: -	return ret_val; -} - -/** - *  igb_write_posted_mbx - Write a message to the mailbox, wait for ack - *  @hw: pointer to the HW structure - *  @msg: The message buffer - *  @size: Length of buffer - *  @mbx_id: id of mailbox to write - * - *  returns SUCCESS if it successfully copied message into the buffer and - *  received an ack to that message within delay * timeout period - **/ -static s32 igb_write_posted_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; -	s32 ret_val = -E1000_ERR_MBX; - -	/* exit if either we can't write or there isn't a defined timeout */ -	if (!mbx->ops.write || !mbx->timeout) -		goto out; - -	/* send msg */ -	ret_val = mbx->ops.write(hw, msg, size, mbx_id); - -	/* if msg sent wait until we receive an ack */ -	if (!ret_val) -		ret_val = igb_poll_for_ack(hw, mbx_id); -out: -	return ret_val; -} - -static s32 igb_check_for_bit_pf(struct e1000_hw *hw, u32 mask) -{ -	u32 mbvficr = rd32(E1000_MBVFICR); -	s32 ret_val = -E1000_ERR_MBX; - -	if (mbvficr & mask) { -		ret_val = 0; -		wr32(E1000_MBVFICR, mask); -	} - -	return ret_val; -} - -/** - *  igb_check_for_msg_pf - checks to see if the VF has sent mail - *  @hw: pointer to the HW structure - *  @vf_number: the VF index - * - *  returns SUCCESS if the VF has set the Status bit or else ERR_MBX - **/ -static s32 igb_check_for_msg_pf(struct e1000_hw *hw, u16 vf_number) -{ -	s32 ret_val = -E1000_ERR_MBX; - -	if (!igb_check_for_bit_pf(hw, E1000_MBVFICR_VFREQ_VF1 << vf_number)) { -		ret_val = 0; -		hw->mbx.stats.reqs++; -	} - -	return ret_val; -} - -/** - *  igb_check_for_ack_pf - checks to see if the VF has ACKed - *  @hw: pointer to the HW structure - *  @vf_number: the VF index - * - *  returns SUCCESS if the VF has set the Status bit or else ERR_MBX - **/ -static s32 igb_check_for_ack_pf(struct e1000_hw *hw, u16 vf_number) -{ -	s32 ret_val = -E1000_ERR_MBX; - -	if (!igb_check_for_bit_pf(hw, E1000_MBVFICR_VFACK_VF1 << vf_number)) { -		ret_val = 0; -		hw->mbx.stats.acks++; -	} - -	return ret_val; -} - -/** - *  igb_check_for_rst_pf - checks to see if the VF has reset - *  @hw: pointer to the HW structure - *  @vf_number: the VF index - * - *  returns SUCCESS if the VF has set the Status bit or else ERR_MBX - **/ -static s32 igb_check_for_rst_pf(struct e1000_hw *hw, u16 vf_number) -{ -	u32 vflre = rd32(E1000_VFLRE); -	s32 ret_val = -E1000_ERR_MBX; - -	if (vflre & (1 << vf_number)) { -		ret_val = 0; -		wr32(E1000_VFLRE, (1 << vf_number)); -		hw->mbx.stats.rsts++; -	} - -	return ret_val; -} - -/** - *  igb_obtain_mbx_lock_pf - obtain mailbox lock - *  @hw: pointer to the HW structure - *  @vf_number: the VF index - * - *  return SUCCESS if we obtained the mailbox lock - **/ -static s32 igb_obtain_mbx_lock_pf(struct e1000_hw *hw, u16 vf_number) -{ -	s32 ret_val = -E1000_ERR_MBX; -	u32 p2v_mailbox; - - -	/* Take ownership of the buffer */ -	wr32(E1000_P2VMAILBOX(vf_number), E1000_P2VMAILBOX_PFU); - -	/* reserve mailbox for vf use */ -	p2v_mailbox = rd32(E1000_P2VMAILBOX(vf_number)); -	if (p2v_mailbox & E1000_P2VMAILBOX_PFU) -		ret_val = 0; - -	return ret_val; -} - -/** - *  igb_write_mbx_pf - Places a message in the mailbox - *  @hw: pointer to the HW structure - *  @msg: The message buffer - *  @size: Length of buffer - *  @vf_number: the VF index - * - *  returns SUCCESS if it successfully copied message into the buffer - **/ -static s32 igb_write_mbx_pf(struct e1000_hw *hw, u32 *msg, u16 size, -                              u16 vf_number) -{ -	s32 ret_val; -	u16 i; - -	/* lock the mailbox to prevent pf/vf race condition */ -	ret_val = igb_obtain_mbx_lock_pf(hw, vf_number); -	if (ret_val) -		goto out_no_write; - -	/* flush msg and acks as we are overwriting the message buffer */ -	igb_check_for_msg_pf(hw, vf_number); -	igb_check_for_ack_pf(hw, vf_number); - -	/* copy the caller specified message to the mailbox memory buffer */ -	for (i = 0; i < size; i++) -		array_wr32(E1000_VMBMEM(vf_number), i, msg[i]); - -	/* Interrupt VF to tell it a message has been sent and release buffer*/ -	wr32(E1000_P2VMAILBOX(vf_number), E1000_P2VMAILBOX_STS); - -	/* update stats */ -	hw->mbx.stats.msgs_tx++; - -out_no_write: -	return ret_val; - -} - -/** - *  igb_read_mbx_pf - Read a message from the mailbox - *  @hw: pointer to the HW structure - *  @msg: The message buffer - *  @size: Length of buffer - *  @vf_number: the VF index - * - *  This function copies a message from the mailbox buffer to the caller's - *  memory buffer.  The presumption is that the caller knows that there was - *  a message due to a VF request so no polling for message is needed. - **/ -static s32 igb_read_mbx_pf(struct e1000_hw *hw, u32 *msg, u16 size, -                             u16 vf_number) -{ -	s32 ret_val; -	u16 i; - -	/* lock the mailbox to prevent pf/vf race condition */ -	ret_val = igb_obtain_mbx_lock_pf(hw, vf_number); -	if (ret_val) -		goto out_no_read; - -	/* copy the message to the mailbox memory buffer */ -	for (i = 0; i < size; i++) -		msg[i] = array_rd32(E1000_VMBMEM(vf_number), i); - -	/* Acknowledge the message and release buffer */ -	wr32(E1000_P2VMAILBOX(vf_number), E1000_P2VMAILBOX_ACK); - -	/* update stats */ -	hw->mbx.stats.msgs_rx++; - -out_no_read: -	return ret_val; -} - -/** - *  e1000_init_mbx_params_pf - set initial values for pf mailbox - *  @hw: pointer to the HW structure - * - *  Initializes the hw->mbx struct to correct values for pf mailbox - */ -s32 igb_init_mbx_params_pf(struct e1000_hw *hw) -{ -	struct e1000_mbx_info *mbx = &hw->mbx; - -	if (hw->mac.type == e1000_82576) { -		mbx->timeout = 0; -		mbx->usec_delay = 0; - -		mbx->size = E1000_VFMAILBOX_SIZE; - -		mbx->ops.read = igb_read_mbx_pf; -		mbx->ops.write = igb_write_mbx_pf; -		mbx->ops.read_posted = igb_read_posted_mbx; -		mbx->ops.write_posted = igb_write_posted_mbx; -		mbx->ops.check_for_msg = igb_check_for_msg_pf; -		mbx->ops.check_for_ack = igb_check_for_ack_pf; -		mbx->ops.check_for_rst = igb_check_for_rst_pf; - -		mbx->stats.msgs_tx = 0; -		mbx->stats.msgs_rx = 0; -		mbx->stats.reqs = 0; -		mbx->stats.acks = 0; -		mbx->stats.rsts = 0; -	} - -	return 0; -} - diff --git a/drivers/net/igb/e1000_mbx.h b/drivers/net/igb/e1000_mbx.h deleted file mode 100644 index bb112fb6c3a..00000000000 --- a/drivers/net/igb/e1000_mbx.h +++ /dev/null @@ -1,77 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_MBX_H_ -#define _E1000_MBX_H_ - -#include "e1000_hw.h" - -#define E1000_P2VMAILBOX_STS   0x00000001 /* Initiate message send to VF */ -#define E1000_P2VMAILBOX_ACK   0x00000002 /* Ack message recv'd from VF */ -#define E1000_P2VMAILBOX_VFU   0x00000004 /* VF owns the mailbox buffer */ -#define E1000_P2VMAILBOX_PFU   0x00000008 /* PF owns the mailbox buffer */ -#define E1000_P2VMAILBOX_RVFU  0x00000010 /* Reset VFU - used when VF stuck */ - -#define E1000_MBVFICR_VFREQ_MASK 0x000000FF /* bits for VF messages */ -#define E1000_MBVFICR_VFREQ_VF1  0x00000001 /* bit for VF 1 message */ -#define E1000_MBVFICR_VFACK_MASK 0x00FF0000 /* bits for VF acks */ -#define E1000_MBVFICR_VFACK_VF1  0x00010000 /* bit for VF 1 ack */ - -#define E1000_VFMAILBOX_SIZE   16 /* 16 32 bit words - 64 bytes */ - -/* If it's a E1000_VF_* msg then it originates in the VF and is sent to the - * PF.  The reverse is true if it is E1000_PF_*. - * Message ACK's are the value or'd with 0xF0000000 - */ -#define E1000_VT_MSGTYPE_ACK      0x80000000  /* Messages below or'd with -                                               * this are the ACK */ -#define E1000_VT_MSGTYPE_NACK     0x40000000  /* Messages below or'd with -                                               * this are the NACK */ -#define E1000_VT_MSGTYPE_CTS      0x20000000  /* Indicates that VF is still -                                                 clear to send requests */ -#define E1000_VT_MSGINFO_SHIFT    16 -/* bits 23:16 are used for exra info for certain messages */ -#define E1000_VT_MSGINFO_MASK     (0xFF << E1000_VT_MSGINFO_SHIFT) - -#define E1000_VF_RESET            0x01 /* VF requests reset */ -#define E1000_VF_SET_MAC_ADDR     0x02 /* VF requests to set MAC addr */ -#define E1000_VF_SET_MULTICAST    0x03 /* VF requests to set MC addr */ -#define E1000_VF_SET_VLAN         0x04 /* VF requests to set VLAN */ -#define E1000_VF_SET_LPE          0x05 /* VF requests to set VMOLR.LPE */ -#define E1000_VF_SET_PROMISC      0x06 /*VF requests to clear VMOLR.ROPE/MPME*/ -#define E1000_VF_SET_PROMISC_MULTICAST    (0x02 << E1000_VT_MSGINFO_SHIFT) - -#define E1000_PF_CONTROL_MSG      0x0100 /* PF control message */ - -s32 igb_read_mbx(struct e1000_hw *, u32 *, u16, u16); -s32 igb_write_mbx(struct e1000_hw *, u32 *, u16, u16); -s32 igb_check_for_msg(struct e1000_hw *, u16); -s32 igb_check_for_ack(struct e1000_hw *, u16); -s32 igb_check_for_rst(struct e1000_hw *, u16); -s32 igb_init_mbx_params_pf(struct e1000_hw *); - -#endif /* _E1000_MBX_H_ */ diff --git a/drivers/net/igb/e1000_nvm.c b/drivers/net/igb/e1000_nvm.c deleted file mode 100644 index d83b77fa403..00000000000 --- a/drivers/net/igb/e1000_nvm.c +++ /dev/null @@ -1,569 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#include <linux/if_ether.h> -#include <linux/delay.h> - -#include "e1000_mac.h" -#include "e1000_nvm.h" - -/** - *  igb_raise_eec_clk - Raise EEPROM clock - *  @hw: pointer to the HW structure - *  @eecd: pointer to the EEPROM - * - *  Enable/Raise the EEPROM clock bit. - **/ -static void igb_raise_eec_clk(struct e1000_hw *hw, u32 *eecd) -{ -	*eecd = *eecd | E1000_EECD_SK; -	wr32(E1000_EECD, *eecd); -	wrfl(); -	udelay(hw->nvm.delay_usec); -} - -/** - *  igb_lower_eec_clk - Lower EEPROM clock - *  @hw: pointer to the HW structure - *  @eecd: pointer to the EEPROM - * - *  Clear/Lower the EEPROM clock bit. - **/ -static void igb_lower_eec_clk(struct e1000_hw *hw, u32 *eecd) -{ -	*eecd = *eecd & ~E1000_EECD_SK; -	wr32(E1000_EECD, *eecd); -	wrfl(); -	udelay(hw->nvm.delay_usec); -} - -/** - *  igb_shift_out_eec_bits - Shift data bits our to the EEPROM - *  @hw: pointer to the HW structure - *  @data: data to send to the EEPROM - *  @count: number of bits to shift out - * - *  We need to shift 'count' bits out to the EEPROM.  So, the value in the - *  "data" parameter will be shifted out to the EEPROM one bit at a time. - *  In order to do this, "data" must be broken down into bits. - **/ -static void igb_shift_out_eec_bits(struct e1000_hw *hw, u16 data, u16 count) -{ -	struct e1000_nvm_info *nvm = &hw->nvm; -	u32 eecd = rd32(E1000_EECD); -	u32 mask; - -	mask = 0x01 << (count - 1); -	if (nvm->type == e1000_nvm_eeprom_spi) -		eecd |= E1000_EECD_DO; - -	do { -		eecd &= ~E1000_EECD_DI; - -		if (data & mask) -			eecd |= E1000_EECD_DI; - -		wr32(E1000_EECD, eecd); -		wrfl(); - -		udelay(nvm->delay_usec); - -		igb_raise_eec_clk(hw, &eecd); -		igb_lower_eec_clk(hw, &eecd); - -		mask >>= 1; -	} while (mask); - -	eecd &= ~E1000_EECD_DI; -	wr32(E1000_EECD, eecd); -} - -/** - *  igb_shift_in_eec_bits - Shift data bits in from the EEPROM - *  @hw: pointer to the HW structure - *  @count: number of bits to shift in - * - *  In order to read a register from the EEPROM, we need to shift 'count' bits - *  in from the EEPROM.  Bits are "shifted in" by raising the clock input to - *  the EEPROM (setting the SK bit), and then reading the value of the data out - *  "DO" bit.  During this "shifting in" process the data in "DI" bit should - *  always be clear. - **/ -static u16 igb_shift_in_eec_bits(struct e1000_hw *hw, u16 count) -{ -	u32 eecd; -	u32 i; -	u16 data; - -	eecd = rd32(E1000_EECD); - -	eecd &= ~(E1000_EECD_DO | E1000_EECD_DI); -	data = 0; - -	for (i = 0; i < count; i++) { -		data <<= 1; -		igb_raise_eec_clk(hw, &eecd); - -		eecd = rd32(E1000_EECD); - -		eecd &= ~E1000_EECD_DI; -		if (eecd & E1000_EECD_DO) -			data |= 1; - -		igb_lower_eec_clk(hw, &eecd); -	} - -	return data; -} - -/** - *  igb_poll_eerd_eewr_done - Poll for EEPROM read/write completion - *  @hw: pointer to the HW structure - *  @ee_reg: EEPROM flag for polling - * - *  Polls the EEPROM status bit for either read or write completion based - *  upon the value of 'ee_reg'. - **/ -static s32 igb_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg) -{ -	u32 attempts = 100000; -	u32 i, reg = 0; -	s32 ret_val = -E1000_ERR_NVM; - -	for (i = 0; i < attempts; i++) { -		if (ee_reg == E1000_NVM_POLL_READ) -			reg = rd32(E1000_EERD); -		else -			reg = rd32(E1000_EEWR); - -		if (reg & E1000_NVM_RW_REG_DONE) { -			ret_val = 0; -			break; -		} - -		udelay(5); -	} - -	return ret_val; -} - -/** - *  igb_acquire_nvm - Generic request for access to EEPROM - *  @hw: pointer to the HW structure - * - *  Set the EEPROM access request bit and wait for EEPROM access grant bit. - *  Return successful if access grant bit set, else clear the request for - *  EEPROM access and return -E1000_ERR_NVM (-1). - **/ -s32 igb_acquire_nvm(struct e1000_hw *hw) -{ -	u32 eecd = rd32(E1000_EECD); -	s32 timeout = E1000_NVM_GRANT_ATTEMPTS; -	s32 ret_val = 0; - - -	wr32(E1000_EECD, eecd | E1000_EECD_REQ); -	eecd = rd32(E1000_EECD); - -	while (timeout) { -		if (eecd & E1000_EECD_GNT) -			break; -		udelay(5); -		eecd = rd32(E1000_EECD); -		timeout--; -	} - -	if (!timeout) { -		eecd &= ~E1000_EECD_REQ; -		wr32(E1000_EECD, eecd); -		hw_dbg("Could not acquire NVM grant\n"); -		ret_val = -E1000_ERR_NVM; -	} - -	return ret_val; -} - -/** - *  igb_standby_nvm - Return EEPROM to standby state - *  @hw: pointer to the HW structure - * - *  Return the EEPROM to a standby state. - **/ -static void igb_standby_nvm(struct e1000_hw *hw) -{ -	struct e1000_nvm_info *nvm = &hw->nvm; -	u32 eecd = rd32(E1000_EECD); - -	if (nvm->type == e1000_nvm_eeprom_spi) { -		/* Toggle CS to flush commands */ -		eecd |= E1000_EECD_CS; -		wr32(E1000_EECD, eecd); -		wrfl(); -		udelay(nvm->delay_usec); -		eecd &= ~E1000_EECD_CS; -		wr32(E1000_EECD, eecd); -		wrfl(); -		udelay(nvm->delay_usec); -	} -} - -/** - *  e1000_stop_nvm - Terminate EEPROM command - *  @hw: pointer to the HW structure - * - *  Terminates the current command by inverting the EEPROM's chip select pin. - **/ -static void e1000_stop_nvm(struct e1000_hw *hw) -{ -	u32 eecd; - -	eecd = rd32(E1000_EECD); -	if (hw->nvm.type == e1000_nvm_eeprom_spi) { -		/* Pull CS high */ -		eecd |= E1000_EECD_CS; -		igb_lower_eec_clk(hw, &eecd); -	} -} - -/** - *  igb_release_nvm - Release exclusive access to EEPROM - *  @hw: pointer to the HW structure - * - *  Stop any current commands to the EEPROM and clear the EEPROM request bit. - **/ -void igb_release_nvm(struct e1000_hw *hw) -{ -	u32 eecd; - -	e1000_stop_nvm(hw); - -	eecd = rd32(E1000_EECD); -	eecd &= ~E1000_EECD_REQ; -	wr32(E1000_EECD, eecd); -} - -/** - *  igb_ready_nvm_eeprom - Prepares EEPROM for read/write - *  @hw: pointer to the HW structure - * - *  Setups the EEPROM for reading and writing. - **/ -static s32 igb_ready_nvm_eeprom(struct e1000_hw *hw) -{ -	struct e1000_nvm_info *nvm = &hw->nvm; -	u32 eecd = rd32(E1000_EECD); -	s32 ret_val = 0; -	u16 timeout = 0; -	u8 spi_stat_reg; - - -	if (nvm->type == e1000_nvm_eeprom_spi) { -		/* Clear SK and CS */ -		eecd &= ~(E1000_EECD_CS | E1000_EECD_SK); -		wr32(E1000_EECD, eecd); -		udelay(1); -		timeout = NVM_MAX_RETRY_SPI; - -		/* -		 * Read "Status Register" repeatedly until the LSB is cleared. -		 * The EEPROM will signal that the command has been completed -		 * by clearing bit 0 of the internal status register.  If it's -		 * not cleared within 'timeout', then error out. -		 */ -		while (timeout) { -			igb_shift_out_eec_bits(hw, NVM_RDSR_OPCODE_SPI, -						 hw->nvm.opcode_bits); -			spi_stat_reg = (u8)igb_shift_in_eec_bits(hw, 8); -			if (!(spi_stat_reg & NVM_STATUS_RDY_SPI)) -				break; - -			udelay(5); -			igb_standby_nvm(hw); -			timeout--; -		} - -		if (!timeout) { -			hw_dbg("SPI NVM Status error\n"); -			ret_val = -E1000_ERR_NVM; -			goto out; -		} -	} - -out: -	return ret_val; -} - -/** - *  igb_read_nvm_eerd - Reads EEPROM using EERD register - *  @hw: pointer to the HW structure - *  @offset: offset of word in the EEPROM to read - *  @words: number of words to read - *  @data: word read from the EEPROM - * - *  Reads a 16 bit word from the EEPROM using the EERD register. - **/ -s32 igb_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) -{ -	struct e1000_nvm_info *nvm = &hw->nvm; -	u32 i, eerd = 0; -	s32 ret_val = 0; - -	/* -	 * A check for invalid values:  offset too large, too many words, -	 * and not enough words. -	 */ -	if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || -	    (words == 0)) { -		hw_dbg("nvm parameter(s) out of bounds\n"); -		ret_val = -E1000_ERR_NVM; -		goto out; -	} - -	for (i = 0; i < words; i++) { -		eerd = ((offset+i) << E1000_NVM_RW_ADDR_SHIFT) + -		       E1000_NVM_RW_REG_START; - -		wr32(E1000_EERD, eerd); -		ret_val = igb_poll_eerd_eewr_done(hw, E1000_NVM_POLL_READ); -		if (ret_val) -			break; - -		data[i] = (rd32(E1000_EERD) >> -			   E1000_NVM_RW_REG_DATA); -	} - -out: -	return ret_val; -} - -/** - *  igb_write_nvm_spi - Write to EEPROM using SPI - *  @hw: pointer to the HW structure - *  @offset: offset within the EEPROM to be written to - *  @words: number of words to write - *  @data: 16 bit word(s) to be written to the EEPROM - * - *  Writes data to EEPROM at offset using SPI interface. - * - *  If e1000_update_nvm_checksum is not called after this function , the - *  EEPROM will most likley contain an invalid checksum. - **/ -s32 igb_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) -{ -	struct e1000_nvm_info *nvm = &hw->nvm; -	s32 ret_val; -	u16 widx = 0; - -	/* -	 * A check for invalid values:  offset too large, too many words, -	 * and not enough words. -	 */ -	if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || -	    (words == 0)) { -		hw_dbg("nvm parameter(s) out of bounds\n"); -		ret_val = -E1000_ERR_NVM; -		goto out; -	} - -	ret_val = hw->nvm.ops.acquire(hw); -	if (ret_val) -		goto out; - -	msleep(10); - -	while (widx < words) { -		u8 write_opcode = NVM_WRITE_OPCODE_SPI; - -		ret_val = igb_ready_nvm_eeprom(hw); -		if (ret_val) -			goto release; - -		igb_standby_nvm(hw); - -		/* Send the WRITE ENABLE command (8 bit opcode) */ -		igb_shift_out_eec_bits(hw, NVM_WREN_OPCODE_SPI, -					 nvm->opcode_bits); - -		igb_standby_nvm(hw); - -		/* -		 * Some SPI eeproms use the 8th address bit embedded in the -		 * opcode -		 */ -		if ((nvm->address_bits == 8) && (offset >= 128)) -			write_opcode |= NVM_A8_OPCODE_SPI; - -		/* Send the Write command (8-bit opcode + addr) */ -		igb_shift_out_eec_bits(hw, write_opcode, nvm->opcode_bits); -		igb_shift_out_eec_bits(hw, (u16)((offset + widx) * 2), -					 nvm->address_bits); - -		/* Loop to allow for up to whole page write of eeprom */ -		while (widx < words) { -			u16 word_out = data[widx]; -			word_out = (word_out >> 8) | (word_out << 8); -			igb_shift_out_eec_bits(hw, word_out, 16); -			widx++; - -			if ((((offset + widx) * 2) % nvm->page_size) == 0) { -				igb_standby_nvm(hw); -				break; -			} -		} -	} - -	msleep(10); -release: -	hw->nvm.ops.release(hw); - -out: -	return ret_val; -} - -/** - *  igb_read_part_num - Read device part number - *  @hw: pointer to the HW structure - *  @part_num: pointer to device part number - * - *  Reads the product board assembly (PBA) number from the EEPROM and stores - *  the value in part_num. - **/ -s32 igb_read_part_num(struct e1000_hw *hw, u32 *part_num) -{ -	s32  ret_val; -	u16 nvm_data; - -	ret_val = hw->nvm.ops.read(hw, NVM_PBA_OFFSET_0, 1, &nvm_data); -	if (ret_val) { -		hw_dbg("NVM Read Error\n"); -		goto out; -	} -	*part_num = (u32)(nvm_data << 16); - -	ret_val = hw->nvm.ops.read(hw, NVM_PBA_OFFSET_1, 1, &nvm_data); -	if (ret_val) { -		hw_dbg("NVM Read Error\n"); -		goto out; -	} -	*part_num |= nvm_data; - -out: -	return ret_val; -} - -/** - *  igb_read_mac_addr - Read device MAC address - *  @hw: pointer to the HW structure - * - *  Reads the device MAC address from the EEPROM and stores the value. - *  Since devices with two ports use the same EEPROM, we increment the - *  last bit in the MAC address for the second port. - **/ -s32 igb_read_mac_addr(struct e1000_hw *hw) -{ -	u32 rar_high; -	u32 rar_low; -	u16 i; - -	rar_high = rd32(E1000_RAH(0)); -	rar_low = rd32(E1000_RAL(0)); - -	for (i = 0; i < E1000_RAL_MAC_ADDR_LEN; i++) -		hw->mac.perm_addr[i] = (u8)(rar_low >> (i*8)); - -	for (i = 0; i < E1000_RAH_MAC_ADDR_LEN; i++) -		hw->mac.perm_addr[i+4] = (u8)(rar_high >> (i*8)); - -	for (i = 0; i < ETH_ALEN; i++) -		hw->mac.addr[i] = hw->mac.perm_addr[i]; - -	return 0; -} - -/** - *  igb_validate_nvm_checksum - Validate EEPROM checksum - *  @hw: pointer to the HW structure - * - *  Calculates the EEPROM checksum by reading/adding each word of the EEPROM - *  and then verifies that the sum of the EEPROM is equal to 0xBABA. - **/ -s32 igb_validate_nvm_checksum(struct e1000_hw *hw) -{ -	s32 ret_val = 0; -	u16 checksum = 0; -	u16 i, nvm_data; - -	for (i = 0; i < (NVM_CHECKSUM_REG + 1); i++) { -		ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data); -		if (ret_val) { -			hw_dbg("NVM Read Error\n"); -			goto out; -		} -		checksum += nvm_data; -	} - -	if (checksum != (u16) NVM_SUM) { -		hw_dbg("NVM Checksum Invalid\n"); -		ret_val = -E1000_ERR_NVM; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_update_nvm_checksum - Update EEPROM checksum - *  @hw: pointer to the HW structure - * - *  Updates the EEPROM checksum by reading/adding each word of the EEPROM - *  up to the checksum.  Then calculates the EEPROM checksum and writes the - *  value to the EEPROM. - **/ -s32 igb_update_nvm_checksum(struct e1000_hw *hw) -{ -	s32  ret_val; -	u16 checksum = 0; -	u16 i, nvm_data; - -	for (i = 0; i < NVM_CHECKSUM_REG; i++) { -		ret_val = hw->nvm.ops.read(hw, i, 1, &nvm_data); -		if (ret_val) { -			hw_dbg("NVM Read Error while updating checksum.\n"); -			goto out; -		} -		checksum += nvm_data; -	} -	checksum = (u16) NVM_SUM - checksum; -	ret_val = hw->nvm.ops.write(hw, NVM_CHECKSUM_REG, 1, &checksum); -	if (ret_val) -		hw_dbg("NVM Write Error while updating checksum.\n"); - -out: -	return ret_val; -} - diff --git a/drivers/net/igb/e1000_nvm.h b/drivers/net/igb/e1000_nvm.h deleted file mode 100644 index 1041c34dcbe..00000000000 --- a/drivers/net/igb/e1000_nvm.h +++ /dev/null @@ -1,40 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_NVM_H_ -#define _E1000_NVM_H_ - -s32  igb_acquire_nvm(struct e1000_hw *hw); -void igb_release_nvm(struct e1000_hw *hw); -s32  igb_read_mac_addr(struct e1000_hw *hw); -s32  igb_read_part_num(struct e1000_hw *hw, u32 *part_num); -s32  igb_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); -s32  igb_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); -s32  igb_validate_nvm_checksum(struct e1000_hw *hw); -s32  igb_update_nvm_checksum(struct e1000_hw *hw); - -#endif diff --git a/drivers/net/igb/e1000_phy.c b/drivers/net/igb/e1000_phy.c deleted file mode 100644 index ddd036a7899..00000000000 --- a/drivers/net/igb/e1000_phy.c +++ /dev/null @@ -1,2340 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#include <linux/if_ether.h> -#include <linux/delay.h> - -#include "e1000_mac.h" -#include "e1000_phy.h" - -static s32  igb_phy_setup_autoneg(struct e1000_hw *hw); -static void igb_phy_force_speed_duplex_setup(struct e1000_hw *hw, -					       u16 *phy_ctrl); -static s32  igb_wait_autoneg(struct e1000_hw *hw); - -/* Cable length tables */ -static const u16 e1000_m88_cable_length_table[] = -	{ 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED }; -#define M88E1000_CABLE_LENGTH_TABLE_SIZE \ -                (sizeof(e1000_m88_cable_length_table) / \ -                 sizeof(e1000_m88_cable_length_table[0])) - -static const u16 e1000_igp_2_cable_length_table[] = -    { 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21, -      0, 0, 0, 3, 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41, -      6, 10, 14, 18, 22, 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61, -      21, 26, 31, 35, 40, 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82, -      40, 45, 51, 56, 61, 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104, -      60, 66, 72, 77, 82, 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121, -      83, 89, 95, 100, 105, 109, 113, 116, 119, 122, 124, -      104, 109, 114, 118, 121, 124}; -#define IGP02E1000_CABLE_LENGTH_TABLE_SIZE \ -		(sizeof(e1000_igp_2_cable_length_table) / \ -		 sizeof(e1000_igp_2_cable_length_table[0])) - -/** - *  igb_check_reset_block - Check if PHY reset is blocked - *  @hw: pointer to the HW structure - * - *  Read the PHY management control register and check whether a PHY reset - *  is blocked.  If a reset is not blocked return 0, otherwise - *  return E1000_BLK_PHY_RESET (12). - **/ -s32 igb_check_reset_block(struct e1000_hw *hw) -{ -	u32 manc; - -	manc = rd32(E1000_MANC); - -	return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ? -	       E1000_BLK_PHY_RESET : 0; -} - -/** - *  igb_get_phy_id - Retrieve the PHY ID and revision - *  @hw: pointer to the HW structure - * - *  Reads the PHY registers and stores the PHY ID and possibly the PHY - *  revision in the hardware structure. - **/ -s32 igb_get_phy_id(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val = 0; -	u16 phy_id; - -	ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id); -	if (ret_val) -		goto out; - -	phy->id = (u32)(phy_id << 16); -	udelay(20); -	ret_val = phy->ops.read_reg(hw, PHY_ID2, &phy_id); -	if (ret_val) -		goto out; - -	phy->id |= (u32)(phy_id & PHY_REVISION_MASK); -	phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK); - -out: -	return ret_val; -} - -/** - *  igb_phy_reset_dsp - Reset PHY DSP - *  @hw: pointer to the HW structure - * - *  Reset the digital signal processor. - **/ -static s32 igb_phy_reset_dsp(struct e1000_hw *hw) -{ -	s32 ret_val = 0; - -	if (!(hw->phy.ops.write_reg)) -		goto out; - -	ret_val = hw->phy.ops.write_reg(hw, M88E1000_PHY_GEN_CONTROL, 0xC1); -	if (ret_val) -		goto out; - -	ret_val = hw->phy.ops.write_reg(hw, M88E1000_PHY_GEN_CONTROL, 0); - -out: -	return ret_val; -} - -/** - *  igb_read_phy_reg_mdic - Read MDI control register - *  @hw: pointer to the HW structure - *  @offset: register offset to be read - *  @data: pointer to the read data - * - *  Reads the MDI control regsiter in the PHY at offset and stores the - *  information read to data. - **/ -s32 igb_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data) -{ -	struct e1000_phy_info *phy = &hw->phy; -	u32 i, mdic = 0; -	s32 ret_val = 0; - -	if (offset > MAX_PHY_REG_ADDRESS) { -		hw_dbg("PHY Address %d is out of range\n", offset); -		ret_val = -E1000_ERR_PARAM; -		goto out; -	} - -	/* -	 * Set up Op-code, Phy Address, and register offset in the MDI -	 * Control register.  The MAC will take care of interfacing with the -	 * PHY to retrieve the desired data. -	 */ -	mdic = ((offset << E1000_MDIC_REG_SHIFT) | -		(phy->addr << E1000_MDIC_PHY_SHIFT) | -		(E1000_MDIC_OP_READ)); - -	wr32(E1000_MDIC, mdic); - -	/* -	 * Poll the ready bit to see if the MDI read completed -	 * Increasing the time out as testing showed failures with -	 * the lower time out -	 */ -	for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) { -		udelay(50); -		mdic = rd32(E1000_MDIC); -		if (mdic & E1000_MDIC_READY) -			break; -	} -	if (!(mdic & E1000_MDIC_READY)) { -		hw_dbg("MDI Read did not complete\n"); -		ret_val = -E1000_ERR_PHY; -		goto out; -	} -	if (mdic & E1000_MDIC_ERROR) { -		hw_dbg("MDI Error\n"); -		ret_val = -E1000_ERR_PHY; -		goto out; -	} -	*data = (u16) mdic; - -out: -	return ret_val; -} - -/** - *  igb_write_phy_reg_mdic - Write MDI control register - *  @hw: pointer to the HW structure - *  @offset: register offset to write to - *  @data: data to write to register at offset - * - *  Writes data to MDI control register in the PHY at offset. - **/ -s32 igb_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data) -{ -	struct e1000_phy_info *phy = &hw->phy; -	u32 i, mdic = 0; -	s32 ret_val = 0; - -	if (offset > MAX_PHY_REG_ADDRESS) { -		hw_dbg("PHY Address %d is out of range\n", offset); -		ret_val = -E1000_ERR_PARAM; -		goto out; -	} - -	/* -	 * Set up Op-code, Phy Address, and register offset in the MDI -	 * Control register.  The MAC will take care of interfacing with the -	 * PHY to retrieve the desired data. -	 */ -	mdic = (((u32)data) | -		(offset << E1000_MDIC_REG_SHIFT) | -		(phy->addr << E1000_MDIC_PHY_SHIFT) | -		(E1000_MDIC_OP_WRITE)); - -	wr32(E1000_MDIC, mdic); - -	/* -	 * Poll the ready bit to see if the MDI read completed -	 * Increasing the time out as testing showed failures with -	 * the lower time out -	 */ -	for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) { -		udelay(50); -		mdic = rd32(E1000_MDIC); -		if (mdic & E1000_MDIC_READY) -			break; -	} -	if (!(mdic & E1000_MDIC_READY)) { -		hw_dbg("MDI Write did not complete\n"); -		ret_val = -E1000_ERR_PHY; -		goto out; -	} -	if (mdic & E1000_MDIC_ERROR) { -		hw_dbg("MDI Error\n"); -		ret_val = -E1000_ERR_PHY; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_read_phy_reg_i2c - Read PHY register using i2c - *  @hw: pointer to the HW structure - *  @offset: register offset to be read - *  @data: pointer to the read data - * - *  Reads the PHY register at offset using the i2c interface and stores the - *  retrieved information in data. - **/ -s32 igb_read_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 *data) -{ -	struct e1000_phy_info *phy = &hw->phy; -	u32 i, i2ccmd = 0; - - -	/* -	 * Set up Op-code, Phy Address, and register address in the I2CCMD -	 * register.  The MAC will take care of interfacing with the -	 * PHY to retrieve the desired data. -	 */ -	i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) | -	          (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) | -	          (E1000_I2CCMD_OPCODE_READ)); - -	wr32(E1000_I2CCMD, i2ccmd); - -	/* Poll the ready bit to see if the I2C read completed */ -	for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) { -		udelay(50); -		i2ccmd = rd32(E1000_I2CCMD); -		if (i2ccmd & E1000_I2CCMD_READY) -			break; -	} -	if (!(i2ccmd & E1000_I2CCMD_READY)) { -		hw_dbg("I2CCMD Read did not complete\n"); -		return -E1000_ERR_PHY; -	} -	if (i2ccmd & E1000_I2CCMD_ERROR) { -		hw_dbg("I2CCMD Error bit set\n"); -		return -E1000_ERR_PHY; -	} - -	/* Need to byte-swap the 16-bit value. */ -	*data = ((i2ccmd >> 8) & 0x00FF) | ((i2ccmd << 8) & 0xFF00); - -	return 0; -} - -/** - *  igb_write_phy_reg_i2c - Write PHY register using i2c - *  @hw: pointer to the HW structure - *  @offset: register offset to write to - *  @data: data to write at register offset - * - *  Writes the data to PHY register at the offset using the i2c interface. - **/ -s32 igb_write_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 data) -{ -	struct e1000_phy_info *phy = &hw->phy; -	u32 i, i2ccmd = 0; -	u16 phy_data_swapped; - - -	/* Swap the data bytes for the I2C interface */ -	phy_data_swapped = ((data >> 8) & 0x00FF) | ((data << 8) & 0xFF00); - -	/* -	 * Set up Op-code, Phy Address, and register address in the I2CCMD -	 * register.  The MAC will take care of interfacing with the -	 * PHY to retrieve the desired data. -	 */ -	i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) | -	          (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) | -	          E1000_I2CCMD_OPCODE_WRITE | -	          phy_data_swapped); - -	wr32(E1000_I2CCMD, i2ccmd); - -	/* Poll the ready bit to see if the I2C read completed */ -	for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) { -		udelay(50); -		i2ccmd = rd32(E1000_I2CCMD); -		if (i2ccmd & E1000_I2CCMD_READY) -			break; -	} -	if (!(i2ccmd & E1000_I2CCMD_READY)) { -		hw_dbg("I2CCMD Write did not complete\n"); -		return -E1000_ERR_PHY; -	} -	if (i2ccmd & E1000_I2CCMD_ERROR) { -		hw_dbg("I2CCMD Error bit set\n"); -		return -E1000_ERR_PHY; -	} - -	return 0; -} - -/** - *  igb_read_phy_reg_igp - Read igp PHY register - *  @hw: pointer to the HW structure - *  @offset: register offset to be read - *  @data: pointer to the read data - * - *  Acquires semaphore, if necessary, then reads the PHY register at offset - *  and storing the retrieved information in data.  Release any acquired - *  semaphores before exiting. - **/ -s32 igb_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data) -{ -	s32 ret_val = 0; - -	if (!(hw->phy.ops.acquire)) -		goto out; - -	ret_val = hw->phy.ops.acquire(hw); -	if (ret_val) -		goto out; - -	if (offset > MAX_PHY_MULTI_PAGE_REG) { -		ret_val = igb_write_phy_reg_mdic(hw, -						   IGP01E1000_PHY_PAGE_SELECT, -						   (u16)offset); -		if (ret_val) { -			hw->phy.ops.release(hw); -			goto out; -		} -	} - -	ret_val = igb_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, -					data); - -	hw->phy.ops.release(hw); - -out: -	return ret_val; -} - -/** - *  igb_write_phy_reg_igp - Write igp PHY register - *  @hw: pointer to the HW structure - *  @offset: register offset to write to - *  @data: data to write at register offset - * - *  Acquires semaphore, if necessary, then writes the data to PHY register - *  at the offset.  Release any acquired semaphores before exiting. - **/ -s32 igb_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data) -{ -	s32 ret_val = 0; - -	if (!(hw->phy.ops.acquire)) -		goto out; - -	ret_val = hw->phy.ops.acquire(hw); -	if (ret_val) -		goto out; - -	if (offset > MAX_PHY_MULTI_PAGE_REG) { -		ret_val = igb_write_phy_reg_mdic(hw, -						   IGP01E1000_PHY_PAGE_SELECT, -						   (u16)offset); -		if (ret_val) { -			hw->phy.ops.release(hw); -			goto out; -		} -	} - -	ret_val = igb_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset, -					   data); - -	hw->phy.ops.release(hw); - -out: -	return ret_val; -} - -/** - *  igb_copper_link_setup_82580 - Setup 82580 PHY for copper link - *  @hw: pointer to the HW structure - * - *  Sets up Carrier-sense on Transmit and downshift values. - **/ -s32 igb_copper_link_setup_82580(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data; - - -	if (phy->reset_disable) { -		ret_val = 0; -		goto out; -	} - -	if (phy->type == e1000_phy_82580) { -		ret_val = hw->phy.ops.reset(hw); -		if (ret_val) { -			hw_dbg("Error resetting the PHY.\n"); -			goto out; -		} -	} - -	/* Enable CRS on TX. This must be set for half-duplex operation. */ -	ret_val = phy->ops.read_reg(hw, I82580_CFG_REG, &phy_data); -	if (ret_val) -		goto out; - -	phy_data |= I82580_CFG_ASSERT_CRS_ON_TX; - -	/* Enable downshift */ -	phy_data |= I82580_CFG_ENABLE_DOWNSHIFT; - -	ret_val = phy->ops.write_reg(hw, I82580_CFG_REG, phy_data); - -out: -	return ret_val; -} - -/** - *  igb_copper_link_setup_m88 - Setup m88 PHY's for copper link - *  @hw: pointer to the HW structure - * - *  Sets up MDI/MDI-X and polarity for m88 PHY's.  If necessary, transmit clock - *  and downshift values are set also. - **/ -s32 igb_copper_link_setup_m88(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data; - -	if (phy->reset_disable) { -		ret_val = 0; -		goto out; -	} - -	/* Enable CRS on TX. This must be set for half-duplex operation. */ -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); -	if (ret_val) -		goto out; - -	phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX; - -	/* -	 * Options: -	 *   MDI/MDI-X = 0 (default) -	 *   0 - Auto for all speeds -	 *   1 - MDI mode -	 *   2 - MDI-X mode -	 *   3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes) -	 */ -	phy_data &= ~M88E1000_PSCR_AUTO_X_MODE; - -	switch (phy->mdix) { -	case 1: -		phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE; -		break; -	case 2: -		phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE; -		break; -	case 3: -		phy_data |= M88E1000_PSCR_AUTO_X_1000T; -		break; -	case 0: -	default: -		phy_data |= M88E1000_PSCR_AUTO_X_MODE; -		break; -	} - -	/* -	 * Options: -	 *   disable_polarity_correction = 0 (default) -	 *       Automatic Correction for Reversed Cable Polarity -	 *   0 - Disabled -	 *   1 - Enabled -	 */ -	phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL; -	if (phy->disable_polarity_correction == 1) -		phy_data |= M88E1000_PSCR_POLARITY_REVERSAL; - -	ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data); -	if (ret_val) -		goto out; - -	if (phy->revision < E1000_REVISION_4) { -		/* -		 * Force TX_CLK in the Extended PHY Specific Control Register -		 * to 25MHz clock. -		 */ -		ret_val = phy->ops.read_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, -					     &phy_data); -		if (ret_val) -			goto out; - -		phy_data |= M88E1000_EPSCR_TX_CLK_25; - -		if ((phy->revision == E1000_REVISION_2) && -		    (phy->id == M88E1111_I_PHY_ID)) { -			/* 82573L PHY - set the downshift counter to 5x. */ -			phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK; -			phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X; -		} else { -			/* Configure Master and Slave downshift values */ -			phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK | -				      M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK); -			phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X | -				     M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X); -		} -		ret_val = phy->ops.write_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, -					     phy_data); -		if (ret_val) -			goto out; -	} - -	/* Commit the changes. */ -	ret_val = igb_phy_sw_reset(hw); -	if (ret_val) { -		hw_dbg("Error committing the PHY changes\n"); -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_copper_link_setup_m88_gen2 - Setup m88 PHY's for copper link - *  @hw: pointer to the HW structure - * - *  Sets up MDI/MDI-X and polarity for i347-AT4, m88e1322 and m88e1112 PHY's. - *  Also enables and sets the downshift parameters. - **/ -s32 igb_copper_link_setup_m88_gen2(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data; - -	if (phy->reset_disable) { -		ret_val = 0; -		goto out; -	} - -	/* Enable CRS on Tx. This must be set for half-duplex operation. */ -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); -	if (ret_val) -		goto out; - -	/* -	 * Options: -	 *   MDI/MDI-X = 0 (default) -	 *   0 - Auto for all speeds -	 *   1 - MDI mode -	 *   2 - MDI-X mode -	 *   3 - Auto for 1000Base-T only (MDI-X for 10/100Base-T modes) -	 */ -	phy_data &= ~M88E1000_PSCR_AUTO_X_MODE; - -	switch (phy->mdix) { -	case 1: -		phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE; -		break; -	case 2: -		phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE; -		break; -	case 3: -		/* M88E1112 does not support this mode) */ -		if (phy->id != M88E1112_E_PHY_ID) { -			phy_data |= M88E1000_PSCR_AUTO_X_1000T; -			break; -		} -	case 0: -	default: -		phy_data |= M88E1000_PSCR_AUTO_X_MODE; -		break; -	} - -	/* -	 * Options: -	 *   disable_polarity_correction = 0 (default) -	 *       Automatic Correction for Reversed Cable Polarity -	 *   0 - Disabled -	 *   1 - Enabled -	 */ -	phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL; -	if (phy->disable_polarity_correction == 1) -		phy_data |= M88E1000_PSCR_POLARITY_REVERSAL; - -	/* Enable downshift and setting it to X6 */ -	phy_data &= ~I347AT4_PSCR_DOWNSHIFT_MASK; -	phy_data |= I347AT4_PSCR_DOWNSHIFT_6X; -	phy_data |= I347AT4_PSCR_DOWNSHIFT_ENABLE; - -	ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data); -	if (ret_val) -		goto out; - -	/* Commit the changes. */ -	ret_val = igb_phy_sw_reset(hw); -	if (ret_val) { -		hw_dbg("Error committing the PHY changes\n"); -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_copper_link_setup_igp - Setup igp PHY's for copper link - *  @hw: pointer to the HW structure - * - *  Sets up LPLU, MDI/MDI-X, polarity, Smartspeed and Master/Slave config for - *  igp PHY's. - **/ -s32 igb_copper_link_setup_igp(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 data; - -	if (phy->reset_disable) { -		ret_val = 0; -		goto out; -	} - -	ret_val = phy->ops.reset(hw); -	if (ret_val) { -		hw_dbg("Error resetting the PHY.\n"); -		goto out; -	} - -	/* -	 * Wait 100ms for MAC to configure PHY from NVM settings, to avoid -	 * timeout issues when LFS is enabled. -	 */ -	msleep(100); - -	/* -	 * The NVM settings will configure LPLU in D3 for -	 * non-IGP1 PHYs. -	 */ -	if (phy->type == e1000_phy_igp) { -		/* disable lplu d3 during driver init */ -		if (phy->ops.set_d3_lplu_state) -			ret_val = phy->ops.set_d3_lplu_state(hw, false); -		if (ret_val) { -			hw_dbg("Error Disabling LPLU D3\n"); -			goto out; -		} -	} - -	/* disable lplu d0 during driver init */ -	ret_val = phy->ops.set_d0_lplu_state(hw, false); -	if (ret_val) { -		hw_dbg("Error Disabling LPLU D0\n"); -		goto out; -	} -	/* Configure mdi-mdix settings */ -	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CTRL, &data); -	if (ret_val) -		goto out; - -	data &= ~IGP01E1000_PSCR_AUTO_MDIX; - -	switch (phy->mdix) { -	case 1: -		data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX; -		break; -	case 2: -		data |= IGP01E1000_PSCR_FORCE_MDI_MDIX; -		break; -	case 0: -	default: -		data |= IGP01E1000_PSCR_AUTO_MDIX; -		break; -	} -	ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CTRL, data); -	if (ret_val) -		goto out; - -	/* set auto-master slave resolution settings */ -	if (hw->mac.autoneg) { -		/* -		 * when autonegotiation advertisement is only 1000Mbps then we -		 * should disable SmartSpeed and enable Auto MasterSlave -		 * resolution as hardware default. -		 */ -		if (phy->autoneg_advertised == ADVERTISE_1000_FULL) { -			/* Disable SmartSpeed */ -			ret_val = phy->ops.read_reg(hw, -						    IGP01E1000_PHY_PORT_CONFIG, -						    &data); -			if (ret_val) -				goto out; - -			data &= ~IGP01E1000_PSCFR_SMART_SPEED; -			ret_val = phy->ops.write_reg(hw, -						     IGP01E1000_PHY_PORT_CONFIG, -						     data); -			if (ret_val) -				goto out; - -			/* Set auto Master/Slave resolution process */ -			ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL, &data); -			if (ret_val) -				goto out; - -			data &= ~CR_1000T_MS_ENABLE; -			ret_val = phy->ops.write_reg(hw, PHY_1000T_CTRL, data); -			if (ret_val) -				goto out; -		} - -		ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL, &data); -		if (ret_val) -			goto out; - -		/* load defaults for future use */ -		phy->original_ms_type = (data & CR_1000T_MS_ENABLE) ? -			((data & CR_1000T_MS_VALUE) ? -			e1000_ms_force_master : -			e1000_ms_force_slave) : -			e1000_ms_auto; - -		switch (phy->ms_type) { -		case e1000_ms_force_master: -			data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE); -			break; -		case e1000_ms_force_slave: -			data |= CR_1000T_MS_ENABLE; -			data &= ~(CR_1000T_MS_VALUE); -			break; -		case e1000_ms_auto: -			data &= ~CR_1000T_MS_ENABLE; -		default: -			break; -		} -		ret_val = phy->ops.write_reg(hw, PHY_1000T_CTRL, data); -		if (ret_val) -			goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_copper_link_autoneg - Setup/Enable autoneg for copper link - *  @hw: pointer to the HW structure - * - *  Performs initial bounds checking on autoneg advertisement parameter, then - *  configure to advertise the full capability.  Setup the PHY to autoneg - *  and restart the negotiation process between the link partner.  If - *  autoneg_wait_to_complete, then wait for autoneg to complete before exiting. - **/ -static s32 igb_copper_link_autoneg(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_ctrl; - -	/* -	 * Perform some bounds checking on the autoneg advertisement -	 * parameter. -	 */ -	phy->autoneg_advertised &= phy->autoneg_mask; - -	/* -	 * If autoneg_advertised is zero, we assume it was not defaulted -	 * by the calling code so we set to advertise full capability. -	 */ -	if (phy->autoneg_advertised == 0) -		phy->autoneg_advertised = phy->autoneg_mask; - -	hw_dbg("Reconfiguring auto-neg advertisement params\n"); -	ret_val = igb_phy_setup_autoneg(hw); -	if (ret_val) { -		hw_dbg("Error Setting up Auto-Negotiation\n"); -		goto out; -	} -	hw_dbg("Restarting Auto-Neg\n"); - -	/* -	 * Restart auto-negotiation by setting the Auto Neg Enable bit and -	 * the Auto Neg Restart bit in the PHY control register. -	 */ -	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_ctrl); -	if (ret_val) -		goto out; - -	phy_ctrl |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG); -	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_ctrl); -	if (ret_val) -		goto out; - -	/* -	 * Does the user want to wait for Auto-Neg to complete here, or -	 * check at a later time (for example, callback routine). -	 */ -	if (phy->autoneg_wait_to_complete) { -		ret_val = igb_wait_autoneg(hw); -		if (ret_val) { -			hw_dbg("Error while waiting for " -			       "autoneg to complete\n"); -			goto out; -		} -	} - -	hw->mac.get_link_status = true; - -out: -	return ret_val; -} - -/** - *  igb_phy_setup_autoneg - Configure PHY for auto-negotiation - *  @hw: pointer to the HW structure - * - *  Reads the MII auto-neg advertisement register and/or the 1000T control - *  register and if the PHY is already setup for auto-negotiation, then - *  return successful.  Otherwise, setup advertisement and flow control to - *  the appropriate values for the wanted auto-negotiation. - **/ -static s32 igb_phy_setup_autoneg(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 mii_autoneg_adv_reg; -	u16 mii_1000t_ctrl_reg = 0; - -	phy->autoneg_advertised &= phy->autoneg_mask; - -	/* Read the MII Auto-Neg Advertisement Register (Address 4). */ -	ret_val = phy->ops.read_reg(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg); -	if (ret_val) -		goto out; - -	if (phy->autoneg_mask & ADVERTISE_1000_FULL) { -		/* Read the MII 1000Base-T Control Register (Address 9). */ -		ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL, -					    &mii_1000t_ctrl_reg); -		if (ret_val) -			goto out; -	} - -	/* -	 * Need to parse both autoneg_advertised and fc and set up -	 * the appropriate PHY registers.  First we will parse for -	 * autoneg_advertised software override.  Since we can advertise -	 * a plethora of combinations, we need to check each bit -	 * individually. -	 */ - -	/* -	 * First we clear all the 10/100 mb speed bits in the Auto-Neg -	 * Advertisement Register (Address 4) and the 1000 mb speed bits in -	 * the  1000Base-T Control Register (Address 9). -	 */ -	mii_autoneg_adv_reg &= ~(NWAY_AR_100TX_FD_CAPS | -				 NWAY_AR_100TX_HD_CAPS | -				 NWAY_AR_10T_FD_CAPS   | -				 NWAY_AR_10T_HD_CAPS); -	mii_1000t_ctrl_reg &= ~(CR_1000T_HD_CAPS | CR_1000T_FD_CAPS); - -	hw_dbg("autoneg_advertised %x\n", phy->autoneg_advertised); - -	/* Do we want to advertise 10 Mb Half Duplex? */ -	if (phy->autoneg_advertised & ADVERTISE_10_HALF) { -		hw_dbg("Advertise 10mb Half duplex\n"); -		mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS; -	} - -	/* Do we want to advertise 10 Mb Full Duplex? */ -	if (phy->autoneg_advertised & ADVERTISE_10_FULL) { -		hw_dbg("Advertise 10mb Full duplex\n"); -		mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS; -	} - -	/* Do we want to advertise 100 Mb Half Duplex? */ -	if (phy->autoneg_advertised & ADVERTISE_100_HALF) { -		hw_dbg("Advertise 100mb Half duplex\n"); -		mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS; -	} - -	/* Do we want to advertise 100 Mb Full Duplex? */ -	if (phy->autoneg_advertised & ADVERTISE_100_FULL) { -		hw_dbg("Advertise 100mb Full duplex\n"); -		mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS; -	} - -	/* We do not allow the Phy to advertise 1000 Mb Half Duplex */ -	if (phy->autoneg_advertised & ADVERTISE_1000_HALF) -		hw_dbg("Advertise 1000mb Half duplex request denied!\n"); - -	/* Do we want to advertise 1000 Mb Full Duplex? */ -	if (phy->autoneg_advertised & ADVERTISE_1000_FULL) { -		hw_dbg("Advertise 1000mb Full duplex\n"); -		mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS; -	} - -	/* -	 * Check for a software override of the flow control settings, and -	 * setup the PHY advertisement registers accordingly.  If -	 * auto-negotiation is enabled, then software will have to set the -	 * "PAUSE" bits to the correct value in the Auto-Negotiation -	 * Advertisement Register (PHY_AUTONEG_ADV) and re-start auto- -	 * negotiation. -	 * -	 * The possible values of the "fc" parameter are: -	 *      0:  Flow control is completely disabled -	 *      1:  Rx flow control is enabled (we can receive pause frames -	 *          but not send pause frames). -	 *      2:  Tx flow control is enabled (we can send pause frames -	 *          but we do not support receiving pause frames). -	 *      3:  Both Rx and TX flow control (symmetric) are enabled. -	 *  other:  No software override.  The flow control configuration -	 *          in the EEPROM is used. -	 */ -	switch (hw->fc.current_mode) { -	case e1000_fc_none: -		/* -		 * Flow control (RX & TX) is completely disabled by a -		 * software over-ride. -		 */ -		mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE); -		break; -	case e1000_fc_rx_pause: -		/* -		 * RX Flow control is enabled, and TX Flow control is -		 * disabled, by a software over-ride. -		 * -		 * Since there really isn't a way to advertise that we are -		 * capable of RX Pause ONLY, we will advertise that we -		 * support both symmetric and asymmetric RX PAUSE.  Later -		 * (in e1000_config_fc_after_link_up) we will disable the -		 * hw's ability to send PAUSE frames. -		 */ -		mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE); -		break; -	case e1000_fc_tx_pause: -		/* -		 * TX Flow control is enabled, and RX Flow control is -		 * disabled, by a software over-ride. -		 */ -		mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR; -		mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE; -		break; -	case e1000_fc_full: -		/* -		 * Flow control (both RX and TX) is enabled by a software -		 * over-ride. -		 */ -		mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE); -		break; -	default: -		hw_dbg("Flow control param set incorrectly\n"); -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -	ret_val = phy->ops.write_reg(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg); -	if (ret_val) -		goto out; - -	hw_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg); - -	if (phy->autoneg_mask & ADVERTISE_1000_FULL) { -		ret_val = phy->ops.write_reg(hw, -					     PHY_1000T_CTRL, -					     mii_1000t_ctrl_reg); -		if (ret_val) -			goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_setup_copper_link - Configure copper link settings - *  @hw: pointer to the HW structure - * - *  Calls the appropriate function to configure the link for auto-neg or forced - *  speed and duplex.  Then we check for link, once link is established calls - *  to configure collision distance and flow control are called.  If link is - *  not established, we return -E1000_ERR_PHY (-2). - **/ -s32 igb_setup_copper_link(struct e1000_hw *hw) -{ -	s32 ret_val; -	bool link; - - -	if (hw->mac.autoneg) { -		/* -		 * Setup autoneg and flow control advertisement and perform -		 * autonegotiation. -		 */ -		ret_val = igb_copper_link_autoneg(hw); -		if (ret_val) -			goto out; -	} else { -		/* -		 * PHY will be set to 10H, 10F, 100H or 100F -		 * depending on user settings. -		 */ -		hw_dbg("Forcing Speed and Duplex\n"); -		ret_val = hw->phy.ops.force_speed_duplex(hw); -		if (ret_val) { -			hw_dbg("Error Forcing Speed and Duplex\n"); -			goto out; -		} -	} - -	/* -	 * Check link status. Wait up to 100 microseconds for link to become -	 * valid. -	 */ -	ret_val = igb_phy_has_link(hw, -	                           COPPER_LINK_UP_LIMIT, -	                           10, -	                           &link); -	if (ret_val) -		goto out; - -	if (link) { -		hw_dbg("Valid link established!!!\n"); -		igb_config_collision_dist(hw); -		ret_val = igb_config_fc_after_link_up(hw); -	} else { -		hw_dbg("Unable to establish link!!!\n"); -	} - -out: -	return ret_val; -} - -/** - *  igb_phy_force_speed_duplex_igp - Force speed/duplex for igp PHY - *  @hw: pointer to the HW structure - * - *  Calls the PHY setup function to force speed and duplex.  Clears the - *  auto-crossover to force MDI manually.  Waits for link and returns - *  successful if link up is successful, else -E1000_ERR_PHY (-2). - **/ -s32 igb_phy_force_speed_duplex_igp(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data; -	bool link; - -	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data); -	if (ret_val) -		goto out; - -	igb_phy_force_speed_duplex_setup(hw, &phy_data); - -	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data); -	if (ret_val) -		goto out; - -	/* -	 * Clear Auto-Crossover to force MDI manually.  IGP requires MDI -	 * forced whenever speed and duplex are forced. -	 */ -	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data); -	if (ret_val) -		goto out; - -	phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX; -	phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX; - -	ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CTRL, phy_data); -	if (ret_val) -		goto out; - -	hw_dbg("IGP PSCR: %X\n", phy_data); - -	udelay(1); - -	if (phy->autoneg_wait_to_complete) { -		hw_dbg("Waiting for forced speed/duplex link on IGP phy.\n"); - -		ret_val = igb_phy_has_link(hw, -						     PHY_FORCE_LIMIT, -						     100000, -						     &link); -		if (ret_val) -			goto out; - -		if (!link) -			hw_dbg("Link taking longer than expected.\n"); - -		/* Try once more */ -		ret_val = igb_phy_has_link(hw, -						     PHY_FORCE_LIMIT, -						     100000, -						     &link); -		if (ret_val) -			goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_phy_force_speed_duplex_m88 - Force speed/duplex for m88 PHY - *  @hw: pointer to the HW structure - * - *  Calls the PHY setup function to force speed and duplex.  Clears the - *  auto-crossover to force MDI manually.  Resets the PHY to commit the - *  changes.  If time expires while waiting for link up, we reset the DSP. - *  After reset, TX_CLK and CRS on TX must be set.  Return successful upon - *  successful completion, else return corresponding error code. - **/ -s32 igb_phy_force_speed_duplex_m88(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data; -	bool link; - -	/* -	 * Clear Auto-Crossover to force MDI manually.  M88E1000 requires MDI -	 * forced whenever speed and duplex are forced. -	 */ -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); -	if (ret_val) -		goto out; - -	phy_data &= ~M88E1000_PSCR_AUTO_X_MODE; -	ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data); -	if (ret_val) -		goto out; - -	hw_dbg("M88E1000 PSCR: %X\n", phy_data); - -	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data); -	if (ret_val) -		goto out; - -	igb_phy_force_speed_duplex_setup(hw, &phy_data); - -	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data); -	if (ret_val) -		goto out; - -	/* Reset the phy to commit changes. */ -	ret_val = igb_phy_sw_reset(hw); -	if (ret_val) -		goto out; - -	if (phy->autoneg_wait_to_complete) { -		hw_dbg("Waiting for forced speed/duplex link on M88 phy.\n"); - -		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 100000, &link); -		if (ret_val) -			goto out; - -		if (!link) { -			if (hw->phy.type != e1000_phy_m88 || -			    hw->phy.id == I347AT4_E_PHY_ID || -			    hw->phy.id == M88E1112_E_PHY_ID) { -				hw_dbg("Link taking longer than expected.\n"); -			} else { - -				/* -				 * We didn't get link. -				 * Reset the DSP and cross our fingers. -				 */ -				ret_val = phy->ops.write_reg(hw, -							     M88E1000_PHY_PAGE_SELECT, -							     0x001d); -				if (ret_val) -					goto out; -				ret_val = igb_phy_reset_dsp(hw); -				if (ret_val) -					goto out; -			} -		} - -		/* Try once more */ -		ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, -					   100000, &link); -		if (ret_val) -			goto out; -	} - -	if (hw->phy.type != e1000_phy_m88 || -	    hw->phy.id == I347AT4_E_PHY_ID || -	    hw->phy.id == M88E1112_E_PHY_ID) -		goto out; - -	ret_val = phy->ops.read_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data); -	if (ret_val) -		goto out; - -	/* -	 * Resetting the phy means we need to re-force TX_CLK in the -	 * Extended PHY Specific Control Register to 25MHz clock from -	 * the reset value of 2.5MHz. -	 */ -	phy_data |= M88E1000_EPSCR_TX_CLK_25; -	ret_val = phy->ops.write_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data); -	if (ret_val) -		goto out; - -	/* -	 * In addition, we must re-enable CRS on Tx for both half and full -	 * duplex. -	 */ -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); -	if (ret_val) -		goto out; - -	phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX; -	ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data); - -out: -	return ret_val; -} - -/** - *  igb_phy_force_speed_duplex_setup - Configure forced PHY speed/duplex - *  @hw: pointer to the HW structure - *  @phy_ctrl: pointer to current value of PHY_CONTROL - * - *  Forces speed and duplex on the PHY by doing the following: disable flow - *  control, force speed/duplex on the MAC, disable auto speed detection, - *  disable auto-negotiation, configure duplex, configure speed, configure - *  the collision distance, write configuration to CTRL register.  The - *  caller must write to the PHY_CONTROL register for these settings to - *  take affect. - **/ -static void igb_phy_force_speed_duplex_setup(struct e1000_hw *hw, -					       u16 *phy_ctrl) -{ -	struct e1000_mac_info *mac = &hw->mac; -	u32 ctrl; - -	/* Turn off flow control when forcing speed/duplex */ -	hw->fc.current_mode = e1000_fc_none; - -	/* Force speed/duplex on the mac */ -	ctrl = rd32(E1000_CTRL); -	ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX); -	ctrl &= ~E1000_CTRL_SPD_SEL; - -	/* Disable Auto Speed Detection */ -	ctrl &= ~E1000_CTRL_ASDE; - -	/* Disable autoneg on the phy */ -	*phy_ctrl &= ~MII_CR_AUTO_NEG_EN; - -	/* Forcing Full or Half Duplex? */ -	if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) { -		ctrl &= ~E1000_CTRL_FD; -		*phy_ctrl &= ~MII_CR_FULL_DUPLEX; -		hw_dbg("Half Duplex\n"); -	} else { -		ctrl |= E1000_CTRL_FD; -		*phy_ctrl |= MII_CR_FULL_DUPLEX; -		hw_dbg("Full Duplex\n"); -	} - -	/* Forcing 10mb or 100mb? */ -	if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) { -		ctrl |= E1000_CTRL_SPD_100; -		*phy_ctrl |= MII_CR_SPEED_100; -		*phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10); -		hw_dbg("Forcing 100mb\n"); -	} else { -		ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100); -		*phy_ctrl |= MII_CR_SPEED_10; -		*phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100); -		hw_dbg("Forcing 10mb\n"); -	} - -	igb_config_collision_dist(hw); - -	wr32(E1000_CTRL, ctrl); -} - -/** - *  igb_set_d3_lplu_state - Sets low power link up state for D3 - *  @hw: pointer to the HW structure - *  @active: boolean used to enable/disable lplu - * - *  Success returns 0, Failure returns 1 - * - *  The low power link up (lplu) state is set to the power management level D3 - *  and SmartSpeed is disabled when active is true, else clear lplu for D3 - *  and enable Smartspeed.  LPLU and Smartspeed are mutually exclusive.  LPLU - *  is used during Dx states where the power conservation is most important. - *  During driver activity, SmartSpeed should be enabled so performance is - *  maintained. - **/ -s32 igb_set_d3_lplu_state(struct e1000_hw *hw, bool active) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val = 0; -	u16 data; - -	if (!(hw->phy.ops.read_reg)) -		goto out; - -	ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data); -	if (ret_val) -		goto out; - -	if (!active) { -		data &= ~IGP02E1000_PM_D3_LPLU; -		ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT, -					     data); -		if (ret_val) -			goto out; -		/* -		 * LPLU and SmartSpeed are mutually exclusive.  LPLU is used -		 * during Dx states where the power conservation is most -		 * important.  During driver activity we should enable -		 * SmartSpeed, so performance is maintained. -		 */ -		if (phy->smart_speed == e1000_smart_speed_on) { -			ret_val = phy->ops.read_reg(hw, -						    IGP01E1000_PHY_PORT_CONFIG, -						    &data); -			if (ret_val) -				goto out; - -			data |= IGP01E1000_PSCFR_SMART_SPEED; -			ret_val = phy->ops.write_reg(hw, -						     IGP01E1000_PHY_PORT_CONFIG, -						     data); -			if (ret_val) -				goto out; -		} else if (phy->smart_speed == e1000_smart_speed_off) { -			ret_val = phy->ops.read_reg(hw, -						     IGP01E1000_PHY_PORT_CONFIG, -						     &data); -			if (ret_val) -				goto out; - -			data &= ~IGP01E1000_PSCFR_SMART_SPEED; -			ret_val = phy->ops.write_reg(hw, -						     IGP01E1000_PHY_PORT_CONFIG, -						     data); -			if (ret_val) -				goto out; -		} -	} else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) || -		   (phy->autoneg_advertised == E1000_ALL_NOT_GIG) || -		   (phy->autoneg_advertised == E1000_ALL_10_SPEED)) { -		data |= IGP02E1000_PM_D3_LPLU; -		ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT, -					      data); -		if (ret_val) -			goto out; - -		/* When LPLU is enabled, we should disable SmartSpeed */ -		ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG, -					     &data); -		if (ret_val) -			goto out; - -		data &= ~IGP01E1000_PSCFR_SMART_SPEED; -		ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG, -					      data); -	} - -out: -	return ret_val; -} - -/** - *  igb_check_downshift - Checks whether a downshift in speed occured - *  @hw: pointer to the HW structure - * - *  Success returns 0, Failure returns 1 - * - *  A downshift is detected by querying the PHY link health. - **/ -s32 igb_check_downshift(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data, offset, mask; - -	switch (phy->type) { -	case e1000_phy_m88: -	case e1000_phy_gg82563: -		offset	= M88E1000_PHY_SPEC_STATUS; -		mask	= M88E1000_PSSR_DOWNSHIFT; -		break; -	case e1000_phy_igp_2: -	case e1000_phy_igp: -	case e1000_phy_igp_3: -		offset	= IGP01E1000_PHY_LINK_HEALTH; -		mask	= IGP01E1000_PLHR_SS_DOWNGRADE; -		break; -	default: -		/* speed downshift not supported */ -		phy->speed_downgraded = false; -		ret_val = 0; -		goto out; -	} - -	ret_val = phy->ops.read_reg(hw, offset, &phy_data); - -	if (!ret_val) -		phy->speed_downgraded = (phy_data & mask) ? true : false; - -out: -	return ret_val; -} - -/** - *  igb_check_polarity_m88 - Checks the polarity. - *  @hw: pointer to the HW structure - * - *  Success returns 0, Failure returns -E1000_ERR_PHY (-2) - * - *  Polarity is determined based on the PHY specific status register. - **/ -static s32 igb_check_polarity_m88(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 data; - -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &data); - -	if (!ret_val) -		phy->cable_polarity = (data & M88E1000_PSSR_REV_POLARITY) -				      ? e1000_rev_polarity_reversed -				      : e1000_rev_polarity_normal; - -	return ret_val; -} - -/** - *  igb_check_polarity_igp - Checks the polarity. - *  @hw: pointer to the HW structure - * - *  Success returns 0, Failure returns -E1000_ERR_PHY (-2) - * - *  Polarity is determined based on the PHY port status register, and the - *  current speed (since there is no polarity at 100Mbps). - **/ -static s32 igb_check_polarity_igp(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 data, offset, mask; - -	/* -	 * Polarity is determined based on the speed of -	 * our connection. -	 */ -	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_STATUS, &data); -	if (ret_val) -		goto out; - -	if ((data & IGP01E1000_PSSR_SPEED_MASK) == -	    IGP01E1000_PSSR_SPEED_1000MBPS) { -		offset	= IGP01E1000_PHY_PCS_INIT_REG; -		mask	= IGP01E1000_PHY_POLARITY_MASK; -	} else { -		/* -		 * This really only applies to 10Mbps since -		 * there is no polarity for 100Mbps (always 0). -		 */ -		offset	= IGP01E1000_PHY_PORT_STATUS; -		mask	= IGP01E1000_PSSR_POLARITY_REVERSED; -	} - -	ret_val = phy->ops.read_reg(hw, offset, &data); - -	if (!ret_val) -		phy->cable_polarity = (data & mask) -				      ? e1000_rev_polarity_reversed -				      : e1000_rev_polarity_normal; - -out: -	return ret_val; -} - -/** - *  igb_wait_autoneg - Wait for auto-neg compeletion - *  @hw: pointer to the HW structure - * - *  Waits for auto-negotiation to complete or for the auto-negotiation time - *  limit to expire, which ever happens first. - **/ -static s32 igb_wait_autoneg(struct e1000_hw *hw) -{ -	s32 ret_val = 0; -	u16 i, phy_status; - -	/* Break after autoneg completes or PHY_AUTO_NEG_LIMIT expires. */ -	for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) { -		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); -		if (ret_val) -			break; -		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); -		if (ret_val) -			break; -		if (phy_status & MII_SR_AUTONEG_COMPLETE) -			break; -		msleep(100); -	} - -	/* -	 * PHY_AUTO_NEG_TIME expiration doesn't guarantee auto-negotiation -	 * has completed. -	 */ -	return ret_val; -} - -/** - *  igb_phy_has_link - Polls PHY for link - *  @hw: pointer to the HW structure - *  @iterations: number of times to poll for link - *  @usec_interval: delay between polling attempts - *  @success: pointer to whether polling was successful or not - * - *  Polls the PHY status register for link, 'iterations' number of times. - **/ -s32 igb_phy_has_link(struct e1000_hw *hw, u32 iterations, -			       u32 usec_interval, bool *success) -{ -	s32 ret_val = 0; -	u16 i, phy_status; - -	for (i = 0; i < iterations; i++) { -		/* -		 * Some PHYs require the PHY_STATUS register to be read -		 * twice due to the link bit being sticky.  No harm doing -		 * it across the board. -		 */ -		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); -		if (ret_val) { -			/* -			 * If the first read fails, another entity may have -			 * ownership of the resources, wait and try again to -			 * see if they have relinquished the resources yet. -			 */ -			udelay(usec_interval); -		} -		ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status); -		if (ret_val) -			break; -		if (phy_status & MII_SR_LINK_STATUS) -			break; -		if (usec_interval >= 1000) -			mdelay(usec_interval/1000); -		else -			udelay(usec_interval); -	} - -	*success = (i < iterations) ? true : false; - -	return ret_val; -} - -/** - *  igb_get_cable_length_m88 - Determine cable length for m88 PHY - *  @hw: pointer to the HW structure - * - *  Reads the PHY specific status register to retrieve the cable length - *  information.  The cable length is determined by averaging the minimum and - *  maximum values to get the "average" cable length.  The m88 PHY has four - *  possible cable length values, which are: - *	Register Value		Cable Length - *	0			< 50 meters - *	1			50 - 80 meters - *	2			80 - 110 meters - *	3			110 - 140 meters - *	4			> 140 meters - **/ -s32 igb_get_cable_length_m88(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data, index; - -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data); -	if (ret_val) -		goto out; - -	index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >> -		M88E1000_PSSR_CABLE_LENGTH_SHIFT; -	if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1) { -		ret_val = -E1000_ERR_PHY; -		goto out; -	} - -	phy->min_cable_length = e1000_m88_cable_length_table[index]; -	phy->max_cable_length = e1000_m88_cable_length_table[index + 1]; - -	phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2; - -out: -	return ret_val; -} - -s32 igb_get_cable_length_m88_gen2(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data, phy_data2, index, default_page, is_cm; - -	switch (hw->phy.id) { -	case I347AT4_E_PHY_ID: -		/* Remember the original page select and set it to 7 */ -		ret_val = phy->ops.read_reg(hw, I347AT4_PAGE_SELECT, -					    &default_page); -		if (ret_val) -			goto out; - -		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0x07); -		if (ret_val) -			goto out; - -		/* Get cable length from PHY Cable Diagnostics Control Reg */ -		ret_val = phy->ops.read_reg(hw, (I347AT4_PCDL + phy->addr), -					    &phy_data); -		if (ret_val) -			goto out; - -		/* Check if the unit of cable length is meters or cm */ -		ret_val = phy->ops.read_reg(hw, I347AT4_PCDC, &phy_data2); -		if (ret_val) -			goto out; - -		is_cm = !(phy_data & I347AT4_PCDC_CABLE_LENGTH_UNIT); - -		/* Populate the phy structure with cable length in meters */ -		phy->min_cable_length = phy_data / (is_cm ? 100 : 1); -		phy->max_cable_length = phy_data / (is_cm ? 100 : 1); -		phy->cable_length = phy_data / (is_cm ? 100 : 1); - -		/* Reset the page selec to its original value */ -		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, -					     default_page); -		if (ret_val) -			goto out; -		break; -	case M88E1112_E_PHY_ID: -		/* Remember the original page select and set it to 5 */ -		ret_val = phy->ops.read_reg(hw, I347AT4_PAGE_SELECT, -					    &default_page); -		if (ret_val) -			goto out; - -		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0x05); -		if (ret_val) -			goto out; - -		ret_val = phy->ops.read_reg(hw, M88E1112_VCT_DSP_DISTANCE, -					    &phy_data); -		if (ret_val) -			goto out; - -		index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >> -			M88E1000_PSSR_CABLE_LENGTH_SHIFT; -		if (index >= M88E1000_CABLE_LENGTH_TABLE_SIZE - 1) { -			ret_val = -E1000_ERR_PHY; -			goto out; -		} - -		phy->min_cable_length = e1000_m88_cable_length_table[index]; -		phy->max_cable_length = e1000_m88_cable_length_table[index + 1]; - -		phy->cable_length = (phy->min_cable_length + -				     phy->max_cable_length) / 2; - -		/* Reset the page select to its original value */ -		ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, -					     default_page); -		if (ret_val) -			goto out; - -		break; -	default: -		ret_val = -E1000_ERR_PHY; -		goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_get_cable_length_igp_2 - Determine cable length for igp2 PHY - *  @hw: pointer to the HW structure - * - *  The automatic gain control (agc) normalizes the amplitude of the - *  received signal, adjusting for the attenuation produced by the - *  cable.  By reading the AGC registers, which represent the - *  combination of coarse and fine gain value, the value can be put - *  into a lookup table to obtain the approximate cable length - *  for each channel. - **/ -s32 igb_get_cable_length_igp_2(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val = 0; -	u16 phy_data, i, agc_value = 0; -	u16 cur_agc_index, max_agc_index = 0; -	u16 min_agc_index = IGP02E1000_CABLE_LENGTH_TABLE_SIZE - 1; -	u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = -							 {IGP02E1000_PHY_AGC_A, -							  IGP02E1000_PHY_AGC_B, -							  IGP02E1000_PHY_AGC_C, -							  IGP02E1000_PHY_AGC_D}; - -	/* Read the AGC registers for all channels */ -	for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) { -		ret_val = phy->ops.read_reg(hw, agc_reg_array[i], &phy_data); -		if (ret_val) -			goto out; - -		/* -		 * Getting bits 15:9, which represent the combination of -		 * coarse and fine gain values.  The result is a number -		 * that can be put into the lookup table to obtain the -		 * approximate cable length. -		 */ -		cur_agc_index = (phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) & -				IGP02E1000_AGC_LENGTH_MASK; - -		/* Array index bound check. */ -		if ((cur_agc_index >= IGP02E1000_CABLE_LENGTH_TABLE_SIZE) || -		    (cur_agc_index == 0)) { -			ret_val = -E1000_ERR_PHY; -			goto out; -		} - -		/* Remove min & max AGC values from calculation. */ -		if (e1000_igp_2_cable_length_table[min_agc_index] > -		    e1000_igp_2_cable_length_table[cur_agc_index]) -			min_agc_index = cur_agc_index; -		if (e1000_igp_2_cable_length_table[max_agc_index] < -		    e1000_igp_2_cable_length_table[cur_agc_index]) -			max_agc_index = cur_agc_index; - -		agc_value += e1000_igp_2_cable_length_table[cur_agc_index]; -	} - -	agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] + -		      e1000_igp_2_cable_length_table[max_agc_index]); -	agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2); - -	/* Calculate cable length with the error range of +/- 10 meters. */ -	phy->min_cable_length = ((agc_value - IGP02E1000_AGC_RANGE) > 0) ? -				 (agc_value - IGP02E1000_AGC_RANGE) : 0; -	phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE; - -	phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2; - -out: -	return ret_val; -} - -/** - *  igb_get_phy_info_m88 - Retrieve PHY information - *  @hw: pointer to the HW structure - * - *  Valid for only copper links.  Read the PHY status register (sticky read) - *  to verify that link is up.  Read the PHY special control register to - *  determine the polarity and 10base-T extended distance.  Read the PHY - *  special status register to determine MDI/MDIx and current speed.  If - *  speed is 1000, then determine cable length, local and remote receiver. - **/ -s32 igb_get_phy_info_m88(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32  ret_val; -	u16 phy_data; -	bool link; - -	if (phy->media_type != e1000_media_type_copper) { -		hw_dbg("Phy info is only valid for copper media\n"); -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -	ret_val = igb_phy_has_link(hw, 1, 0, &link); -	if (ret_val) -		goto out; - -	if (!link) { -		hw_dbg("Phy info is only valid if link is up\n"); -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); -	if (ret_val) -		goto out; - -	phy->polarity_correction = (phy_data & M88E1000_PSCR_POLARITY_REVERSAL) -				   ? true : false; - -	ret_val = igb_check_polarity_m88(hw); -	if (ret_val) -		goto out; - -	ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data); -	if (ret_val) -		goto out; - -	phy->is_mdix = (phy_data & M88E1000_PSSR_MDIX) ? true : false; - -	if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) { -		ret_val = phy->ops.get_cable_length(hw); -		if (ret_val) -			goto out; - -		ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &phy_data); -		if (ret_val) -			goto out; - -		phy->local_rx = (phy_data & SR_1000T_LOCAL_RX_STATUS) -				? e1000_1000t_rx_status_ok -				: e1000_1000t_rx_status_not_ok; - -		phy->remote_rx = (phy_data & SR_1000T_REMOTE_RX_STATUS) -				 ? e1000_1000t_rx_status_ok -				 : e1000_1000t_rx_status_not_ok; -	} else { -		/* Set values to "undefined" */ -		phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED; -		phy->local_rx = e1000_1000t_rx_status_undefined; -		phy->remote_rx = e1000_1000t_rx_status_undefined; -	} - -out: -	return ret_val; -} - -/** - *  igb_get_phy_info_igp - Retrieve igp PHY information - *  @hw: pointer to the HW structure - * - *  Read PHY status to determine if link is up.  If link is up, then - *  set/determine 10base-T extended distance and polarity correction.  Read - *  PHY port status to determine MDI/MDIx and speed.  Based on the speed, - *  determine on the cable length, local and remote receiver. - **/ -s32 igb_get_phy_info_igp(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 data; -	bool link; - -	ret_val = igb_phy_has_link(hw, 1, 0, &link); -	if (ret_val) -		goto out; - -	if (!link) { -		hw_dbg("Phy info is only valid if link is up\n"); -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -	phy->polarity_correction = true; - -	ret_val = igb_check_polarity_igp(hw); -	if (ret_val) -		goto out; - -	ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_STATUS, &data); -	if (ret_val) -		goto out; - -	phy->is_mdix = (data & IGP01E1000_PSSR_MDIX) ? true : false; - -	if ((data & IGP01E1000_PSSR_SPEED_MASK) == -	    IGP01E1000_PSSR_SPEED_1000MBPS) { -		ret_val = phy->ops.get_cable_length(hw); -		if (ret_val) -			goto out; - -		ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &data); -		if (ret_val) -			goto out; - -		phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS) -				? e1000_1000t_rx_status_ok -				: e1000_1000t_rx_status_not_ok; - -		phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS) -				 ? e1000_1000t_rx_status_ok -				 : e1000_1000t_rx_status_not_ok; -	} else { -		phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED; -		phy->local_rx = e1000_1000t_rx_status_undefined; -		phy->remote_rx = e1000_1000t_rx_status_undefined; -	} - -out: -	return ret_val; -} - -/** - *  igb_phy_sw_reset - PHY software reset - *  @hw: pointer to the HW structure - * - *  Does a software reset of the PHY by reading the PHY control register and - *  setting/write the control register reset bit to the PHY. - **/ -s32 igb_phy_sw_reset(struct e1000_hw *hw) -{ -	s32 ret_val = 0; -	u16 phy_ctrl; - -	if (!(hw->phy.ops.read_reg)) -		goto out; - -	ret_val = hw->phy.ops.read_reg(hw, PHY_CONTROL, &phy_ctrl); -	if (ret_val) -		goto out; - -	phy_ctrl |= MII_CR_RESET; -	ret_val = hw->phy.ops.write_reg(hw, PHY_CONTROL, phy_ctrl); -	if (ret_val) -		goto out; - -	udelay(1); - -out: -	return ret_val; -} - -/** - *  igb_phy_hw_reset - PHY hardware reset - *  @hw: pointer to the HW structure - * - *  Verify the reset block is not blocking us from resetting.  Acquire - *  semaphore (if necessary) and read/set/write the device control reset - *  bit in the PHY.  Wait the appropriate delay time for the device to - *  reset and relase the semaphore (if necessary). - **/ -s32 igb_phy_hw_reset(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32  ret_val; -	u32 ctrl; - -	ret_val = igb_check_reset_block(hw); -	if (ret_val) { -		ret_val = 0; -		goto out; -	} - -	ret_val = phy->ops.acquire(hw); -	if (ret_val) -		goto out; - -	ctrl = rd32(E1000_CTRL); -	wr32(E1000_CTRL, ctrl | E1000_CTRL_PHY_RST); -	wrfl(); - -	udelay(phy->reset_delay_us); - -	wr32(E1000_CTRL, ctrl); -	wrfl(); - -	udelay(150); - -	phy->ops.release(hw); - -	ret_val = phy->ops.get_cfg_done(hw); - -out: -	return ret_val; -} - -/** - *  igb_phy_init_script_igp3 - Inits the IGP3 PHY - *  @hw: pointer to the HW structure - * - *  Initializes a Intel Gigabit PHY3 when an EEPROM is not present. - **/ -s32 igb_phy_init_script_igp3(struct e1000_hw *hw) -{ -	hw_dbg("Running IGP 3 PHY init script\n"); - -	/* PHY init IGP 3 */ -	/* Enable rise/fall, 10-mode work in class-A */ -	hw->phy.ops.write_reg(hw, 0x2F5B, 0x9018); -	/* Remove all caps from Replica path filter */ -	hw->phy.ops.write_reg(hw, 0x2F52, 0x0000); -	/* Bias trimming for ADC, AFE and Driver (Default) */ -	hw->phy.ops.write_reg(hw, 0x2FB1, 0x8B24); -	/* Increase Hybrid poly bias */ -	hw->phy.ops.write_reg(hw, 0x2FB2, 0xF8F0); -	/* Add 4% to TX amplitude in Giga mode */ -	hw->phy.ops.write_reg(hw, 0x2010, 0x10B0); -	/* Disable trimming (TTT) */ -	hw->phy.ops.write_reg(hw, 0x2011, 0x0000); -	/* Poly DC correction to 94.6% + 2% for all channels */ -	hw->phy.ops.write_reg(hw, 0x20DD, 0x249A); -	/* ABS DC correction to 95.9% */ -	hw->phy.ops.write_reg(hw, 0x20DE, 0x00D3); -	/* BG temp curve trim */ -	hw->phy.ops.write_reg(hw, 0x28B4, 0x04CE); -	/* Increasing ADC OPAMP stage 1 currents to max */ -	hw->phy.ops.write_reg(hw, 0x2F70, 0x29E4); -	/* Force 1000 ( required for enabling PHY regs configuration) */ -	hw->phy.ops.write_reg(hw, 0x0000, 0x0140); -	/* Set upd_freq to 6 */ -	hw->phy.ops.write_reg(hw, 0x1F30, 0x1606); -	/* Disable NPDFE */ -	hw->phy.ops.write_reg(hw, 0x1F31, 0xB814); -	/* Disable adaptive fixed FFE (Default) */ -	hw->phy.ops.write_reg(hw, 0x1F35, 0x002A); -	/* Enable FFE hysteresis */ -	hw->phy.ops.write_reg(hw, 0x1F3E, 0x0067); -	/* Fixed FFE for short cable lengths */ -	hw->phy.ops.write_reg(hw, 0x1F54, 0x0065); -	/* Fixed FFE for medium cable lengths */ -	hw->phy.ops.write_reg(hw, 0x1F55, 0x002A); -	/* Fixed FFE for long cable lengths */ -	hw->phy.ops.write_reg(hw, 0x1F56, 0x002A); -	/* Enable Adaptive Clip Threshold */ -	hw->phy.ops.write_reg(hw, 0x1F72, 0x3FB0); -	/* AHT reset limit to 1 */ -	hw->phy.ops.write_reg(hw, 0x1F76, 0xC0FF); -	/* Set AHT master delay to 127 msec */ -	hw->phy.ops.write_reg(hw, 0x1F77, 0x1DEC); -	/* Set scan bits for AHT */ -	hw->phy.ops.write_reg(hw, 0x1F78, 0xF9EF); -	/* Set AHT Preset bits */ -	hw->phy.ops.write_reg(hw, 0x1F79, 0x0210); -	/* Change integ_factor of channel A to 3 */ -	hw->phy.ops.write_reg(hw, 0x1895, 0x0003); -	/* Change prop_factor of channels BCD to 8 */ -	hw->phy.ops.write_reg(hw, 0x1796, 0x0008); -	/* Change cg_icount + enable integbp for channels BCD */ -	hw->phy.ops.write_reg(hw, 0x1798, 0xD008); -	/* -	 * Change cg_icount + enable integbp + change prop_factor_master -	 * to 8 for channel A -	 */ -	hw->phy.ops.write_reg(hw, 0x1898, 0xD918); -	/* Disable AHT in Slave mode on channel A */ -	hw->phy.ops.write_reg(hw, 0x187A, 0x0800); -	/* -	 * Enable LPLU and disable AN to 1000 in non-D0a states, -	 * Enable SPD+B2B -	 */ -	hw->phy.ops.write_reg(hw, 0x0019, 0x008D); -	/* Enable restart AN on an1000_dis change */ -	hw->phy.ops.write_reg(hw, 0x001B, 0x2080); -	/* Enable wh_fifo read clock in 10/100 modes */ -	hw->phy.ops.write_reg(hw, 0x0014, 0x0045); -	/* Restart AN, Speed selection is 1000 */ -	hw->phy.ops.write_reg(hw, 0x0000, 0x1340); - -	return 0; -} - -/** - * igb_power_up_phy_copper - Restore copper link in case of PHY power down - * @hw: pointer to the HW structure - * - * In the case of a PHY power down to save power, or to turn off link during a - * driver unload, restore the link to previous settings. - **/ -void igb_power_up_phy_copper(struct e1000_hw *hw) -{ -	u16 mii_reg = 0; - -	/* The PHY will retain its settings across a power down/up cycle */ -	hw->phy.ops.read_reg(hw, PHY_CONTROL, &mii_reg); -	mii_reg &= ~MII_CR_POWER_DOWN; -	hw->phy.ops.write_reg(hw, PHY_CONTROL, mii_reg); -} - -/** - * igb_power_down_phy_copper - Power down copper PHY - * @hw: pointer to the HW structure - * - * Power down PHY to save power when interface is down and wake on lan - * is not enabled. - **/ -void igb_power_down_phy_copper(struct e1000_hw *hw) -{ -	u16 mii_reg = 0; - -	/* The PHY will retain its settings across a power down/up cycle */ -	hw->phy.ops.read_reg(hw, PHY_CONTROL, &mii_reg); -	mii_reg |= MII_CR_POWER_DOWN; -	hw->phy.ops.write_reg(hw, PHY_CONTROL, mii_reg); -	msleep(1); -} - -/** - *  igb_check_polarity_82580 - Checks the polarity. - *  @hw: pointer to the HW structure - * - *  Success returns 0, Failure returns -E1000_ERR_PHY (-2) - * - *  Polarity is determined based on the PHY specific status register. - **/ -static s32 igb_check_polarity_82580(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 data; - - -	ret_val = phy->ops.read_reg(hw, I82580_PHY_STATUS_2, &data); - -	if (!ret_val) -		phy->cable_polarity = (data & I82580_PHY_STATUS2_REV_POLARITY) -		                      ? e1000_rev_polarity_reversed -		                      : e1000_rev_polarity_normal; - -	return ret_val; -} - -/** - *  igb_phy_force_speed_duplex_82580 - Force speed/duplex for I82580 PHY - *  @hw: pointer to the HW structure - * - *  Calls the PHY setup function to force speed and duplex.  Clears the - *  auto-crossover to force MDI manually.  Waits for link and returns - *  successful if link up is successful, else -E1000_ERR_PHY (-2). - **/ -s32 igb_phy_force_speed_duplex_82580(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data; -	bool link; - - -	ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data); -	if (ret_val) -		goto out; - -	igb_phy_force_speed_duplex_setup(hw, &phy_data); - -	ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data); -	if (ret_val) -		goto out; - -	/* -	 * Clear Auto-Crossover to force MDI manually.  82580 requires MDI -	 * forced whenever speed and duplex are forced. -	 */ -	ret_val = phy->ops.read_reg(hw, I82580_PHY_CTRL_2, &phy_data); -	if (ret_val) -		goto out; - -	phy_data &= ~I82580_PHY_CTRL2_AUTO_MDIX; -	phy_data &= ~I82580_PHY_CTRL2_FORCE_MDI_MDIX; - -	ret_val = phy->ops.write_reg(hw, I82580_PHY_CTRL_2, phy_data); -	if (ret_val) -		goto out; - -	hw_dbg("I82580_PHY_CTRL_2: %X\n", phy_data); - -	udelay(1); - -	if (phy->autoneg_wait_to_complete) { -		hw_dbg("Waiting for forced speed/duplex link on 82580 phy\n"); - -		ret_val = igb_phy_has_link(hw, -		                           PHY_FORCE_LIMIT, -		                           100000, -		                           &link); -		if (ret_val) -			goto out; - -		if (!link) -			hw_dbg("Link taking longer than expected.\n"); - -		/* Try once more */ -		ret_val = igb_phy_has_link(hw, -		                           PHY_FORCE_LIMIT, -		                           100000, -		                           &link); -		if (ret_val) -			goto out; -	} - -out: -	return ret_val; -} - -/** - *  igb_get_phy_info_82580 - Retrieve I82580 PHY information - *  @hw: pointer to the HW structure - * - *  Read PHY status to determine if link is up.  If link is up, then - *  set/determine 10base-T extended distance and polarity correction.  Read - *  PHY port status to determine MDI/MDIx and speed.  Based on the speed, - *  determine on the cable length, local and remote receiver. - **/ -s32 igb_get_phy_info_82580(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 data; -	bool link; - - -	ret_val = igb_phy_has_link(hw, 1, 0, &link); -	if (ret_val) -		goto out; - -	if (!link) { -		hw_dbg("Phy info is only valid if link is up\n"); -		ret_val = -E1000_ERR_CONFIG; -		goto out; -	} - -	phy->polarity_correction = true; - -	ret_val = igb_check_polarity_82580(hw); -	if (ret_val) -		goto out; - -	ret_val = phy->ops.read_reg(hw, I82580_PHY_STATUS_2, &data); -	if (ret_val) -		goto out; - -	phy->is_mdix = (data & I82580_PHY_STATUS2_MDIX) ? true : false; - -	if ((data & I82580_PHY_STATUS2_SPEED_MASK) == -	    I82580_PHY_STATUS2_SPEED_1000MBPS) { -		ret_val = hw->phy.ops.get_cable_length(hw); -		if (ret_val) -			goto out; - -		ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &data); -		if (ret_val) -			goto out; - -		phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS) -		                ? e1000_1000t_rx_status_ok -		                : e1000_1000t_rx_status_not_ok; - -		phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS) -		                 ? e1000_1000t_rx_status_ok -		                 : e1000_1000t_rx_status_not_ok; -	} else { -		phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED; -		phy->local_rx = e1000_1000t_rx_status_undefined; -		phy->remote_rx = e1000_1000t_rx_status_undefined; -	} - -out: -	return ret_val; -} - -/** - *  igb_get_cable_length_82580 - Determine cable length for 82580 PHY - *  @hw: pointer to the HW structure - * - * Reads the diagnostic status register and verifies result is valid before - * placing it in the phy_cable_length field. - **/ -s32 igb_get_cable_length_82580(struct e1000_hw *hw) -{ -	struct e1000_phy_info *phy = &hw->phy; -	s32 ret_val; -	u16 phy_data, length; - - -	ret_val = phy->ops.read_reg(hw, I82580_PHY_DIAG_STATUS, &phy_data); -	if (ret_val) -		goto out; - -	length = (phy_data & I82580_DSTATUS_CABLE_LENGTH) >> -	         I82580_DSTATUS_CABLE_LENGTH_SHIFT; - -	if (length == E1000_CABLE_LENGTH_UNDEFINED) -		ret_val = -E1000_ERR_PHY; - -	phy->cable_length = length; - -out: -	return ret_val; -} diff --git a/drivers/net/igb/e1000_phy.h b/drivers/net/igb/e1000_phy.h deleted file mode 100644 index 2cc117705a3..00000000000 --- a/drivers/net/igb/e1000_phy.h +++ /dev/null @@ -1,136 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_PHY_H_ -#define _E1000_PHY_H_ - -enum e1000_ms_type { -	e1000_ms_hw_default = 0, -	e1000_ms_force_master, -	e1000_ms_force_slave, -	e1000_ms_auto -}; - -enum e1000_smart_speed { -	e1000_smart_speed_default = 0, -	e1000_smart_speed_on, -	e1000_smart_speed_off -}; - -s32  igb_check_downshift(struct e1000_hw *hw); -s32  igb_check_reset_block(struct e1000_hw *hw); -s32  igb_copper_link_setup_igp(struct e1000_hw *hw); -s32  igb_copper_link_setup_m88(struct e1000_hw *hw); -s32  igb_copper_link_setup_m88_gen2(struct e1000_hw *hw); -s32  igb_phy_force_speed_duplex_igp(struct e1000_hw *hw); -s32  igb_phy_force_speed_duplex_m88(struct e1000_hw *hw); -s32  igb_get_cable_length_m88(struct e1000_hw *hw); -s32  igb_get_cable_length_m88_gen2(struct e1000_hw *hw); -s32  igb_get_cable_length_igp_2(struct e1000_hw *hw); -s32  igb_get_phy_id(struct e1000_hw *hw); -s32  igb_get_phy_info_igp(struct e1000_hw *hw); -s32  igb_get_phy_info_m88(struct e1000_hw *hw); -s32  igb_phy_sw_reset(struct e1000_hw *hw); -s32  igb_phy_hw_reset(struct e1000_hw *hw); -s32  igb_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data); -s32  igb_set_d3_lplu_state(struct e1000_hw *hw, bool active); -s32  igb_setup_copper_link(struct e1000_hw *hw); -s32  igb_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data); -s32  igb_phy_has_link(struct e1000_hw *hw, u32 iterations, -				u32 usec_interval, bool *success); -void igb_power_up_phy_copper(struct e1000_hw *hw); -void igb_power_down_phy_copper(struct e1000_hw *hw); -s32  igb_phy_init_script_igp3(struct e1000_hw *hw); -s32  igb_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data); -s32  igb_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data); -s32  igb_read_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 *data); -s32  igb_write_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 data); -s32  igb_copper_link_setup_82580(struct e1000_hw *hw); -s32  igb_get_phy_info_82580(struct e1000_hw *hw); -s32  igb_phy_force_speed_duplex_82580(struct e1000_hw *hw); -s32  igb_get_cable_length_82580(struct e1000_hw *hw); - -/* IGP01E1000 Specific Registers */ -#define IGP01E1000_PHY_PORT_CONFIG        0x10 /* Port Config */ -#define IGP01E1000_PHY_PORT_STATUS        0x11 /* Status */ -#define IGP01E1000_PHY_PORT_CTRL          0x12 /* Control */ -#define IGP01E1000_PHY_LINK_HEALTH        0x13 /* PHY Link Health */ -#define IGP02E1000_PHY_POWER_MGMT         0x19 /* Power Management */ -#define IGP01E1000_PHY_PAGE_SELECT        0x1F /* Page Select */ -#define IGP01E1000_PHY_PCS_INIT_REG       0x00B4 -#define IGP01E1000_PHY_POLARITY_MASK      0x0078 -#define IGP01E1000_PSCR_AUTO_MDIX         0x1000 -#define IGP01E1000_PSCR_FORCE_MDI_MDIX    0x2000 /* 0=MDI, 1=MDIX */ -#define IGP01E1000_PSCFR_SMART_SPEED      0x0080 - -#define I82580_ADDR_REG                   16 -#define I82580_CFG_REG                    22 -#define I82580_CFG_ASSERT_CRS_ON_TX       (1 << 15) -#define I82580_CFG_ENABLE_DOWNSHIFT       (3 << 10) /* auto downshift 100/10 */ -#define I82580_CTRL_REG                   23 -#define I82580_CTRL_DOWNSHIFT_MASK        (7 << 10) - -/* 82580 specific PHY registers */ -#define I82580_PHY_CTRL_2            18 -#define I82580_PHY_LBK_CTRL          19 -#define I82580_PHY_STATUS_2          26 -#define I82580_PHY_DIAG_STATUS       31 - -/* I82580 PHY Status 2 */ -#define I82580_PHY_STATUS2_REV_POLARITY   0x0400 -#define I82580_PHY_STATUS2_MDIX           0x0800 -#define I82580_PHY_STATUS2_SPEED_MASK     0x0300 -#define I82580_PHY_STATUS2_SPEED_1000MBPS 0x0200 -#define I82580_PHY_STATUS2_SPEED_100MBPS  0x0100 - -/* I82580 PHY Control 2 */ -#define I82580_PHY_CTRL2_AUTO_MDIX        0x0400 -#define I82580_PHY_CTRL2_FORCE_MDI_MDIX   0x0200 - -/* I82580 PHY Diagnostics Status */ -#define I82580_DSTATUS_CABLE_LENGTH       0x03FC -#define I82580_DSTATUS_CABLE_LENGTH_SHIFT 2 -/* Enable flexible speed on link-up */ -#define IGP02E1000_PM_D0_LPLU             0x0002 /* For D0a states */ -#define IGP02E1000_PM_D3_LPLU             0x0004 /* For all other states */ -#define IGP01E1000_PLHR_SS_DOWNGRADE      0x8000 -#define IGP01E1000_PSSR_POLARITY_REVERSED 0x0002 -#define IGP01E1000_PSSR_MDIX              0x0800 -#define IGP01E1000_PSSR_SPEED_MASK        0xC000 -#define IGP01E1000_PSSR_SPEED_1000MBPS    0xC000 -#define IGP02E1000_PHY_CHANNEL_NUM        4 -#define IGP02E1000_PHY_AGC_A              0x11B1 -#define IGP02E1000_PHY_AGC_B              0x12B1 -#define IGP02E1000_PHY_AGC_C              0x14B1 -#define IGP02E1000_PHY_AGC_D              0x18B1 -#define IGP02E1000_AGC_LENGTH_SHIFT       9   /* Course - 15:13, Fine - 12:9 */ -#define IGP02E1000_AGC_LENGTH_MASK        0x7F -#define IGP02E1000_AGC_RANGE              15 - -#define E1000_CABLE_LENGTH_UNDEFINED      0xFF - -#endif diff --git a/drivers/net/igb/e1000_regs.h b/drivers/net/igb/e1000_regs.h deleted file mode 100644 index abb7333a1fb..00000000000 --- a/drivers/net/igb/e1000_regs.h +++ /dev/null @@ -1,326 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#ifndef _E1000_REGS_H_ -#define _E1000_REGS_H_ - -#define E1000_CTRL     0x00000  /* Device Control - RW */ -#define E1000_STATUS   0x00008  /* Device Status - RO */ -#define E1000_EECD     0x00010  /* EEPROM/Flash Control - RW */ -#define E1000_EERD     0x00014  /* EEPROM Read - RW */ -#define E1000_CTRL_EXT 0x00018  /* Extended Device Control - RW */ -#define E1000_MDIC     0x00020  /* MDI Control - RW */ -#define E1000_MDICNFG  0x00E04  /* MDI Config - RW */ -#define E1000_SCTL     0x00024  /* SerDes Control - RW */ -#define E1000_FCAL     0x00028  /* Flow Control Address Low - RW */ -#define E1000_FCAH     0x0002C  /* Flow Control Address High -RW */ -#define E1000_FCT      0x00030  /* Flow Control Type - RW */ -#define E1000_CONNSW   0x00034  /* Copper/Fiber switch control - RW */ -#define E1000_VET      0x00038  /* VLAN Ether Type - RW */ -#define E1000_ICR      0x000C0  /* Interrupt Cause Read - R/clr */ -#define E1000_ITR      0x000C4  /* Interrupt Throttling Rate - RW */ -#define E1000_ICS      0x000C8  /* Interrupt Cause Set - WO */ -#define E1000_IMS      0x000D0  /* Interrupt Mask Set - RW */ -#define E1000_IMC      0x000D8  /* Interrupt Mask Clear - WO */ -#define E1000_IAM      0x000E0  /* Interrupt Acknowledge Auto Mask */ -#define E1000_RCTL     0x00100  /* RX Control - RW */ -#define E1000_FCTTV    0x00170  /* Flow Control Transmit Timer Value - RW */ -#define E1000_TXCW     0x00178  /* TX Configuration Word - RW */ -#define E1000_EICR     0x01580  /* Ext. Interrupt Cause Read - R/clr */ -#define E1000_EITR(_n) (0x01680 + (0x4 * (_n))) -#define E1000_EICS     0x01520  /* Ext. Interrupt Cause Set - W0 */ -#define E1000_EIMS     0x01524  /* Ext. Interrupt Mask Set/Read - RW */ -#define E1000_EIMC     0x01528  /* Ext. Interrupt Mask Clear - WO */ -#define E1000_EIAC     0x0152C  /* Ext. Interrupt Auto Clear - RW */ -#define E1000_EIAM     0x01530  /* Ext. Interrupt Ack Auto Clear Mask - RW */ -#define E1000_GPIE     0x01514  /* General Purpose Interrupt Enable - RW */ -#define E1000_IVAR0    0x01700  /* Interrupt Vector Allocation (array) - RW */ -#define E1000_IVAR_MISC 0x01740 /* IVAR for "other" causes - RW */ -#define E1000_TCTL     0x00400  /* TX Control - RW */ -#define E1000_TCTL_EXT 0x00404  /* Extended TX Control - RW */ -#define E1000_TIPG     0x00410  /* TX Inter-packet gap -RW */ -#define E1000_AIT      0x00458  /* Adaptive Interframe Spacing Throttle - RW */ -#define E1000_LEDCTL   0x00E00  /* LED Control - RW */ -#define E1000_PBA      0x01000  /* Packet Buffer Allocation - RW */ -#define E1000_PBS      0x01008  /* Packet Buffer Size */ -#define E1000_EEMNGCTL 0x01010  /* MNG EEprom Control */ -#define E1000_EEWR     0x0102C  /* EEPROM Write Register - RW */ -#define E1000_I2CCMD   0x01028  /* SFPI2C Command Register - RW */ -#define E1000_FRTIMER  0x01048  /* Free Running Timer - RW */ -#define E1000_TCPTIMER 0x0104C  /* TCP Timer - RW */ -#define E1000_FCRTL    0x02160  /* Flow Control Receive Threshold Low - RW */ -#define E1000_FCRTH    0x02168  /* Flow Control Receive Threshold High - RW */ -#define E1000_FCRTV    0x02460  /* Flow Control Refresh Timer Value - RW */ - -/* IEEE 1588 TIMESYNCH */ -#define E1000_TSYNCRXCTL 0x0B620 /* Rx Time Sync Control register - RW */ -#define E1000_TSYNCTXCTL 0x0B614 /* Tx Time Sync Control register - RW */ -#define E1000_TSYNCRXCFG 0x05F50 /* Time Sync Rx Configuration - RW */ -#define E1000_RXSTMPL    0x0B624 /* Rx timestamp Low - RO */ -#define E1000_RXSTMPH    0x0B628 /* Rx timestamp High - RO */ -#define E1000_RXSATRL    0x0B62C /* Rx timestamp attribute low - RO */ -#define E1000_RXSATRH    0x0B630 /* Rx timestamp attribute high - RO */ -#define E1000_TXSTMPL    0x0B618 /* Tx timestamp value Low - RO */ -#define E1000_TXSTMPH    0x0B61C /* Tx timestamp value High - RO */ -#define E1000_SYSTIML    0x0B600 /* System time register Low - RO */ -#define E1000_SYSTIMH    0x0B604 /* System time register High - RO */ -#define E1000_TIMINCA    0x0B608 /* Increment attributes register - RW */ -#define E1000_TSAUXC     0x0B640 /* Timesync Auxiliary Control register */ -#define E1000_SYSTIMR    0x0B6F8 /* System time register Residue */ - -/* Filtering Registers */ -#define E1000_SAQF(_n) (0x5980 + 4 * (_n)) -#define E1000_DAQF(_n) (0x59A0 + 4 * (_n)) -#define E1000_SPQF(_n) (0x59C0 + 4 * (_n)) -#define E1000_FTQF(_n) (0x59E0 + 4 * (_n)) -#define E1000_SAQF0 E1000_SAQF(0) -#define E1000_DAQF0 E1000_DAQF(0) -#define E1000_SPQF0 E1000_SPQF(0) -#define E1000_FTQF0 E1000_FTQF(0) -#define E1000_SYNQF(_n) (0x055FC + (4 * (_n))) /* SYN Packet Queue Fltr */ -#define E1000_ETQF(_n)  (0x05CB0 + (4 * (_n))) /* EType Queue Fltr */ - -#define E1000_RQDPC(_n) (0x0C030 + ((_n) * 0x40)) - -/* Split and Replication RX Control - RW */ -#define E1000_RXPBS    0x02404  /* Rx Packet Buffer Size - RW */ -/* - * Convenience macros - * - * Note: "_n" is the queue number of the register to be written to. - * - * Example usage: - * E1000_RDBAL_REG(current_rx_queue) - */ -#define E1000_RDBAL(_n)   ((_n) < 4 ? (0x02800 + ((_n) * 0x100)) \ -				    : (0x0C000 + ((_n) * 0x40))) -#define E1000_RDBAH(_n)   ((_n) < 4 ? (0x02804 + ((_n) * 0x100)) \ -				    : (0x0C004 + ((_n) * 0x40))) -#define E1000_RDLEN(_n)   ((_n) < 4 ? (0x02808 + ((_n) * 0x100)) \ -				    : (0x0C008 + ((_n) * 0x40))) -#define E1000_SRRCTL(_n)  ((_n) < 4 ? (0x0280C + ((_n) * 0x100)) \ -				    : (0x0C00C + ((_n) * 0x40))) -#define E1000_RDH(_n)     ((_n) < 4 ? (0x02810 + ((_n) * 0x100)) \ -				    : (0x0C010 + ((_n) * 0x40))) -#define E1000_RDT(_n)     ((_n) < 4 ? (0x02818 + ((_n) * 0x100)) \ -				    : (0x0C018 + ((_n) * 0x40))) -#define E1000_RXDCTL(_n)  ((_n) < 4 ? (0x02828 + ((_n) * 0x100)) \ -				    : (0x0C028 + ((_n) * 0x40))) -#define E1000_TDBAL(_n)   ((_n) < 4 ? (0x03800 + ((_n) * 0x100)) \ -				    : (0x0E000 + ((_n) * 0x40))) -#define E1000_TDBAH(_n)   ((_n) < 4 ? (0x03804 + ((_n) * 0x100)) \ -				    : (0x0E004 + ((_n) * 0x40))) -#define E1000_TDLEN(_n)   ((_n) < 4 ? (0x03808 + ((_n) * 0x100)) \ -				    : (0x0E008 + ((_n) * 0x40))) -#define E1000_TDH(_n)     ((_n) < 4 ? (0x03810 + ((_n) * 0x100)) \ -				    : (0x0E010 + ((_n) * 0x40))) -#define E1000_TDT(_n)     ((_n) < 4 ? (0x03818 + ((_n) * 0x100)) \ -				    : (0x0E018 + ((_n) * 0x40))) -#define E1000_TXDCTL(_n)  ((_n) < 4 ? (0x03828 + ((_n) * 0x100)) \ -				    : (0x0E028 + ((_n) * 0x40))) -#define E1000_DCA_TXCTRL(_n) (0x03814 + (_n << 8)) -#define E1000_DCA_RXCTRL(_n) (0x02814 + (_n << 8)) -#define E1000_TDWBAL(_n)  ((_n) < 4 ? (0x03838 + ((_n) * 0x100)) \ -				    : (0x0E038 + ((_n) * 0x40))) -#define E1000_TDWBAH(_n)  ((_n) < 4 ? (0x0383C + ((_n) * 0x100)) \ -				    : (0x0E03C + ((_n) * 0x40))) -#define E1000_TDFH     0x03410  /* TX Data FIFO Head - RW */ -#define E1000_TDFT     0x03418  /* TX Data FIFO Tail - RW */ -#define E1000_TDFHS    0x03420  /* TX Data FIFO Head Saved - RW */ -#define E1000_TDFPC    0x03430  /* TX Data FIFO Packet Count - RW */ -#define E1000_DTXCTL   0x03590  /* DMA TX Control - RW */ -#define E1000_CRCERRS  0x04000  /* CRC Error Count - R/clr */ -#define E1000_ALGNERRC 0x04004  /* Alignment Error Count - R/clr */ -#define E1000_SYMERRS  0x04008  /* Symbol Error Count - R/clr */ -#define E1000_RXERRC   0x0400C  /* Receive Error Count - R/clr */ -#define E1000_MPC      0x04010  /* Missed Packet Count - R/clr */ -#define E1000_SCC      0x04014  /* Single Collision Count - R/clr */ -#define E1000_ECOL     0x04018  /* Excessive Collision Count - R/clr */ -#define E1000_MCC      0x0401C  /* Multiple Collision Count - R/clr */ -#define E1000_LATECOL  0x04020  /* Late Collision Count - R/clr */ -#define E1000_COLC     0x04028  /* Collision Count - R/clr */ -#define E1000_DC       0x04030  /* Defer Count - R/clr */ -#define E1000_TNCRS    0x04034  /* TX-No CRS - R/clr */ -#define E1000_SEC      0x04038  /* Sequence Error Count - R/clr */ -#define E1000_CEXTERR  0x0403C  /* Carrier Extension Error Count - R/clr */ -#define E1000_RLEC     0x04040  /* Receive Length Error Count - R/clr */ -#define E1000_XONRXC   0x04048  /* XON RX Count - R/clr */ -#define E1000_XONTXC   0x0404C  /* XON TX Count - R/clr */ -#define E1000_XOFFRXC  0x04050  /* XOFF RX Count - R/clr */ -#define E1000_XOFFTXC  0x04054  /* XOFF TX Count - R/clr */ -#define E1000_FCRUC    0x04058  /* Flow Control RX Unsupported Count- R/clr */ -#define E1000_PRC64    0x0405C  /* Packets RX (64 bytes) - R/clr */ -#define E1000_PRC127   0x04060  /* Packets RX (65-127 bytes) - R/clr */ -#define E1000_PRC255   0x04064  /* Packets RX (128-255 bytes) - R/clr */ -#define E1000_PRC511   0x04068  /* Packets RX (255-511 bytes) - R/clr */ -#define E1000_PRC1023  0x0406C  /* Packets RX (512-1023 bytes) - R/clr */ -#define E1000_PRC1522  0x04070  /* Packets RX (1024-1522 bytes) - R/clr */ -#define E1000_GPRC     0x04074  /* Good Packets RX Count - R/clr */ -#define E1000_BPRC     0x04078  /* Broadcast Packets RX Count - R/clr */ -#define E1000_MPRC     0x0407C  /* Multicast Packets RX Count - R/clr */ -#define E1000_GPTC     0x04080  /* Good Packets TX Count - R/clr */ -#define E1000_GORCL    0x04088  /* Good Octets RX Count Low - R/clr */ -#define E1000_GORCH    0x0408C  /* Good Octets RX Count High - R/clr */ -#define E1000_GOTCL    0x04090  /* Good Octets TX Count Low - R/clr */ -#define E1000_GOTCH    0x04094  /* Good Octets TX Count High - R/clr */ -#define E1000_RNBC     0x040A0  /* RX No Buffers Count - R/clr */ -#define E1000_RUC      0x040A4  /* RX Undersize Count - R/clr */ -#define E1000_RFC      0x040A8  /* RX Fragment Count - R/clr */ -#define E1000_ROC      0x040AC  /* RX Oversize Count - R/clr */ -#define E1000_RJC      0x040B0  /* RX Jabber Count - R/clr */ -#define E1000_MGTPRC   0x040B4  /* Management Packets RX Count - R/clr */ -#define E1000_MGTPDC   0x040B8  /* Management Packets Dropped Count - R/clr */ -#define E1000_MGTPTC   0x040BC  /* Management Packets TX Count - R/clr */ -#define E1000_TORL     0x040C0  /* Total Octets RX Low - R/clr */ -#define E1000_TORH     0x040C4  /* Total Octets RX High - R/clr */ -#define E1000_TOTL     0x040C8  /* Total Octets TX Low - R/clr */ -#define E1000_TOTH     0x040CC  /* Total Octets TX High - R/clr */ -#define E1000_TPR      0x040D0  /* Total Packets RX - R/clr */ -#define E1000_TPT      0x040D4  /* Total Packets TX - R/clr */ -#define E1000_PTC64    0x040D8  /* Packets TX (64 bytes) - R/clr */ -#define E1000_PTC127   0x040DC  /* Packets TX (65-127 bytes) - R/clr */ -#define E1000_PTC255   0x040E0  /* Packets TX (128-255 bytes) - R/clr */ -#define E1000_PTC511   0x040E4  /* Packets TX (256-511 bytes) - R/clr */ -#define E1000_PTC1023  0x040E8  /* Packets TX (512-1023 bytes) - R/clr */ -#define E1000_PTC1522  0x040EC  /* Packets TX (1024-1522 Bytes) - R/clr */ -#define E1000_MPTC     0x040F0  /* Multicast Packets TX Count - R/clr */ -#define E1000_BPTC     0x040F4  /* Broadcast Packets TX Count - R/clr */ -#define E1000_TSCTC    0x040F8  /* TCP Segmentation Context TX - R/clr */ -#define E1000_TSCTFC   0x040FC  /* TCP Segmentation Context TX Fail - R/clr */ -#define E1000_IAC      0x04100  /* Interrupt Assertion Count */ -/* Interrupt Cause Rx Packet Timer Expire Count */ -#define E1000_ICRXPTC  0x04104 -/* Interrupt Cause Rx Absolute Timer Expire Count */ -#define E1000_ICRXATC  0x04108 -/* Interrupt Cause Tx Packet Timer Expire Count */ -#define E1000_ICTXPTC  0x0410C -/* Interrupt Cause Tx Absolute Timer Expire Count */ -#define E1000_ICTXATC  0x04110 -/* Interrupt Cause Tx Queue Empty Count */ -#define E1000_ICTXQEC  0x04118 -/* Interrupt Cause Tx Queue Minimum Threshold Count */ -#define E1000_ICTXQMTC 0x0411C -/* Interrupt Cause Rx Descriptor Minimum Threshold Count */ -#define E1000_ICRXDMTC 0x04120 -#define E1000_ICRXOC   0x04124  /* Interrupt Cause Receiver Overrun Count */ -#define E1000_PCS_CFG0    0x04200  /* PCS Configuration 0 - RW */ -#define E1000_PCS_LCTL    0x04208  /* PCS Link Control - RW */ -#define E1000_PCS_LSTAT   0x0420C  /* PCS Link Status - RO */ -#define E1000_CBTMPC      0x0402C  /* Circuit Breaker TX Packet Count */ -#define E1000_HTDPMC      0x0403C  /* Host Transmit Discarded Packets */ -#define E1000_CBRMPC      0x040FC  /* Circuit Breaker RX Packet Count */ -#define E1000_RPTHC       0x04104  /* Rx Packets To Host */ -#define E1000_HGPTC       0x04118  /* Host Good Packets TX Count */ -#define E1000_HTCBDPC     0x04124  /* Host TX Circuit Breaker Dropped Count */ -#define E1000_HGORCL      0x04128  /* Host Good Octets Received Count Low */ -#define E1000_HGORCH      0x0412C  /* Host Good Octets Received Count High */ -#define E1000_HGOTCL      0x04130  /* Host Good Octets Transmit Count Low */ -#define E1000_HGOTCH      0x04134  /* Host Good Octets Transmit Count High */ -#define E1000_LENERRS     0x04138  /* Length Errors Count */ -#define E1000_SCVPC       0x04228  /* SerDes/SGMII Code Violation Pkt Count */ -#define E1000_PCS_ANADV   0x04218  /* AN advertisement - RW */ -#define E1000_PCS_LPAB    0x0421C  /* Link Partner Ability - RW */ -#define E1000_PCS_NPTX    0x04220  /* AN Next Page Transmit - RW */ -#define E1000_PCS_LPABNP  0x04224  /* Link Partner Ability Next Page - RW */ -#define E1000_RXCSUM   0x05000  /* RX Checksum Control - RW */ -#define E1000_RLPML    0x05004  /* RX Long Packet Max Length */ -#define E1000_RFCTL    0x05008  /* Receive Filter Control*/ -#define E1000_MTA      0x05200  /* Multicast Table Array - RW Array */ -#define E1000_RA       0x05400  /* Receive Address - RW Array */ -#define E1000_RA2      0x054E0  /* 2nd half of receive address array - RW Array */ -#define E1000_PSRTYPE(_i)       (0x05480 + ((_i) * 4)) -#define E1000_RAL(_i)  (((_i) <= 15) ? (0x05400 + ((_i) * 8)) : \ -                                       (0x054E0 + ((_i - 16) * 8))) -#define E1000_RAH(_i)  (((_i) <= 15) ? (0x05404 + ((_i) * 8)) : \ -                                       (0x054E4 + ((_i - 16) * 8))) -#define E1000_IP4AT_REG(_i)     (0x05840 + ((_i) * 8)) -#define E1000_IP6AT_REG(_i)     (0x05880 + ((_i) * 4)) -#define E1000_WUPM_REG(_i)      (0x05A00 + ((_i) * 4)) -#define E1000_FFMT_REG(_i)      (0x09000 + ((_i) * 8)) -#define E1000_FFVT_REG(_i)      (0x09800 + ((_i) * 8)) -#define E1000_FFLT_REG(_i)      (0x05F00 + ((_i) * 8)) -#define E1000_VFTA     0x05600  /* VLAN Filter Table Array - RW Array */ -#define E1000_VT_CTL   0x0581C  /* VMDq Control - RW */ -#define E1000_WUC      0x05800  /* Wakeup Control - RW */ -#define E1000_WUFC     0x05808  /* Wakeup Filter Control - RW */ -#define E1000_WUS      0x05810  /* Wakeup Status - RO */ -#define E1000_MANC     0x05820  /* Management Control - RW */ -#define E1000_IPAV     0x05838  /* IP Address Valid - RW */ -#define E1000_WUPL     0x05900  /* Wakeup Packet Length - RW */ - -#define E1000_SW_FW_SYNC  0x05B5C /* Software-Firmware Synchronization - RW */ -#define E1000_CCMCTL      0x05B48 /* CCM Control Register */ -#define E1000_GIOCTL      0x05B44 /* GIO Analog Control Register */ -#define E1000_SCCTL       0x05B4C /* PCIc PLL Configuration Register */ -#define E1000_GCR         0x05B00 /* PCI-Ex Control */ -#define E1000_FACTPS    0x05B30 /* Function Active and Power State to MNG */ -#define E1000_SWSM      0x05B50 /* SW Semaphore */ -#define E1000_FWSM      0x05B54 /* FW Semaphore */ -#define E1000_DCA_CTRL  0x05B74 /* DCA Control - RW */ - -/* RSS registers */ -#define E1000_MRQC      0x05818 /* Multiple Receive Control - RW */ -#define E1000_IMIR(_i)      (0x05A80 + ((_i) * 4))  /* Immediate Interrupt */ -#define E1000_IMIREXT(_i)   (0x05AA0 + ((_i) * 4))  /* Immediate Interrupt Ext*/ -#define E1000_IMIRVP    0x05AC0 /* Immediate Interrupt RX VLAN Priority - RW */ -/* MSI-X Allocation Register (_i) - RW */ -#define E1000_MSIXBM(_i)    (0x01600 + ((_i) * 4)) -/* Redirection Table - RW Array */ -#define E1000_RETA(_i)  (0x05C00 + ((_i) * 4)) -#define E1000_RSSRK(_i) (0x05C80 + ((_i) * 4)) /* RSS Random Key - RW Array */ - -/* VT Registers */ -#define E1000_MBVFICR   0x00C80 /* Mailbox VF Cause - RWC */ -#define E1000_MBVFIMR   0x00C84 /* Mailbox VF int Mask - RW */ -#define E1000_VFLRE     0x00C88 /* VF Register Events - RWC */ -#define E1000_VFRE      0x00C8C /* VF Receive Enables */ -#define E1000_VFTE      0x00C90 /* VF Transmit Enables */ -#define E1000_QDE       0x02408 /* Queue Drop Enable - RW */ -#define E1000_DTXSWC    0x03500 /* DMA Tx Switch Control - RW */ -#define E1000_RPLOLR    0x05AF0 /* Replication Offload - RW */ -#define E1000_UTA       0x0A000 /* Unicast Table Array - RW */ -#define E1000_IOVTCL    0x05BBC /* IOV Control Register */ -/* These act per VF so an array friendly macro is used */ -#define E1000_P2VMAILBOX(_n)   (0x00C00 + (4 * (_n))) -#define E1000_VMBMEM(_n)       (0x00800 + (64 * (_n))) -#define E1000_VMOLR(_n)        (0x05AD0 + (4 * (_n))) -#define E1000_VLVF(_n)         (0x05D00 + (4 * (_n))) /* VLAN Virtual Machine -                                                       * Filter - RW */ -#define E1000_VMVIR(_n)        (0x03700 + (4 * (_n))) - -#define wr32(reg, value) (writel(value, hw->hw_addr + reg)) -#define rd32(reg) (readl(hw->hw_addr + reg)) -#define wrfl() ((void)rd32(E1000_STATUS)) - -#define array_wr32(reg, offset, value) \ -	(writel(value, hw->hw_addr + reg + ((offset) << 2))) -#define array_rd32(reg, offset) \ -	(readl(hw->hw_addr + reg + ((offset) << 2))) - -/* DMA Coalescing registers */ -#define E1000_PCIEMISC          0x05BB8 /* PCIE misc config register */ -#endif diff --git a/drivers/net/igb/igb.h b/drivers/net/igb/igb.h deleted file mode 100644 index edab9c44239..00000000000 --- a/drivers/net/igb/igb.h +++ /dev/null @@ -1,404 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - - -/* Linux PRO/1000 Ethernet Driver main header file */ - -#ifndef _IGB_H_ -#define _IGB_H_ - -#include "e1000_mac.h" -#include "e1000_82575.h" - -#include <linux/clocksource.h> -#include <linux/timecompare.h> -#include <linux/net_tstamp.h> - -struct igb_adapter; - -/* ((1000000000ns / (6000ints/s * 1024ns)) << 2 = 648 */ -#define IGB_START_ITR 648 - -/* TX/RX descriptor defines */ -#define IGB_DEFAULT_TXD                  256 -#define IGB_MIN_TXD                       80 -#define IGB_MAX_TXD                     4096 - -#define IGB_DEFAULT_RXD                  256 -#define IGB_MIN_RXD                       80 -#define IGB_MAX_RXD                     4096 - -#define IGB_DEFAULT_ITR                    3 /* dynamic */ -#define IGB_MAX_ITR_USECS              10000 -#define IGB_MIN_ITR_USECS                 10 -#define NON_Q_VECTORS                      1 -#define MAX_Q_VECTORS                      8 - -/* Transmit and receive queues */ -#define IGB_MAX_RX_QUEUES                  (adapter->vfs_allocated_count ? 2 : \ -                                           (hw->mac.type > e1000_82575 ? 8 : 4)) -#define IGB_ABS_MAX_TX_QUEUES              8 -#define IGB_MAX_TX_QUEUES                  IGB_MAX_RX_QUEUES - -#define IGB_MAX_VF_MC_ENTRIES              30 -#define IGB_MAX_VF_FUNCTIONS               8 -#define IGB_MAX_VFTA_ENTRIES               128 - -struct vf_data_storage { -	unsigned char vf_mac_addresses[ETH_ALEN]; -	u16 vf_mc_hashes[IGB_MAX_VF_MC_ENTRIES]; -	u16 num_vf_mc_hashes; -	u16 vlans_enabled; -	u32 flags; -	unsigned long last_nack; -	u16 pf_vlan; /* When set, guest VLAN config not allowed. */ -	u16 pf_qos; -}; - -#define IGB_VF_FLAG_CTS            0x00000001 /* VF is clear to send data */ -#define IGB_VF_FLAG_UNI_PROMISC    0x00000002 /* VF has unicast promisc */ -#define IGB_VF_FLAG_MULTI_PROMISC  0x00000004 /* VF has multicast promisc */ -#define IGB_VF_FLAG_PF_SET_MAC     0x00000008 /* PF has set MAC address */ - -/* RX descriptor control thresholds. - * PTHRESH - MAC will consider prefetch if it has fewer than this number of - *           descriptors available in its onboard memory. - *           Setting this to 0 disables RX descriptor prefetch. - * HTHRESH - MAC will only prefetch if there are at least this many descriptors - *           available in host memory. - *           If PTHRESH is 0, this should also be 0. - * WTHRESH - RX descriptor writeback threshold - MAC will delay writing back - *           descriptors until either it has this many to write back, or the - *           ITR timer expires. - */ -#define IGB_RX_PTHRESH                     8 -#define IGB_RX_HTHRESH                     8 -#define IGB_RX_WTHRESH                     1 -#define IGB_TX_PTHRESH                     8 -#define IGB_TX_HTHRESH                     1 -#define IGB_TX_WTHRESH                     ((hw->mac.type == e1000_82576 && \ -                                             adapter->msix_entries) ? 1 : 16) - -/* this is the size past which hardware will drop packets when setting LPE=0 */ -#define MAXIMUM_ETHERNET_VLAN_SIZE 1522 - -/* Supported Rx Buffer Sizes */ -#define IGB_RXBUFFER_64    64     /* Used for packet split */ -#define IGB_RXBUFFER_128   128    /* Used for packet split */ -#define IGB_RXBUFFER_1024  1024 -#define IGB_RXBUFFER_2048  2048 -#define IGB_RXBUFFER_16384 16384 - -#define MAX_STD_JUMBO_FRAME_SIZE 9234 - -/* How many Tx Descriptors do we need to call netif_wake_queue ? */ -#define IGB_TX_QUEUE_WAKE	16 -/* How many Rx Buffers do we bundle into one write to the hardware ? */ -#define IGB_RX_BUFFER_WRITE	16	/* Must be power of 2 */ - -#define AUTO_ALL_MODES            0 -#define IGB_EEPROM_APME         0x0400 - -#ifndef IGB_MASTER_SLAVE -/* Switch to override PHY master/slave setting */ -#define IGB_MASTER_SLAVE	e1000_ms_hw_default -#endif - -#define IGB_MNG_VLAN_NONE -1 - -/* wrapper around a pointer to a socket buffer, - * so a DMA handle can be stored along with the buffer */ -struct igb_buffer { -	struct sk_buff *skb; -	dma_addr_t dma; -	union { -		/* TX */ -		struct { -			unsigned long time_stamp; -			u16 length; -			u16 next_to_watch; -			unsigned int bytecount; -			u16 gso_segs; -			u8 tx_flags; -			u8 mapped_as_page; -		}; -		/* RX */ -		struct { -			struct page *page; -			dma_addr_t page_dma; -			u16 page_offset; -		}; -	}; -}; - -struct igb_tx_queue_stats { -	u64 packets; -	u64 bytes; -	u64 restart_queue; -	u64 restart_queue2; -}; - -struct igb_rx_queue_stats { -	u64 packets; -	u64 bytes; -	u64 drops; -	u64 csum_err; -	u64 alloc_failed; -}; - -struct igb_q_vector { -	struct igb_adapter *adapter; /* backlink */ -	struct igb_ring *rx_ring; -	struct igb_ring *tx_ring; -	struct napi_struct napi; - -	u32 eims_value; -	u16 cpu; - -	u16 itr_val; -	u8 set_itr; -	void __iomem *itr_register; - -	char name[IFNAMSIZ + 9]; -}; - -struct igb_ring { -	struct igb_q_vector *q_vector; /* backlink to q_vector */ -	struct net_device *netdev;     /* back pointer to net_device */ -	struct device *dev;            /* device pointer for dma mapping */ -	dma_addr_t dma;                /* phys address of the ring */ -	void *desc;                    /* descriptor ring memory */ -	unsigned int size;             /* length of desc. ring in bytes */ -	u16 count;                     /* number of desc. in the ring */ -	u16 next_to_use; -	u16 next_to_clean; -	u8 queue_index; -	u8 reg_idx; -	void __iomem *head; -	void __iomem *tail; -	struct igb_buffer *buffer_info; /* array of buffer info structs */ - -	unsigned int total_bytes; -	unsigned int total_packets; - -	u32 flags; - -	union { -		/* TX */ -		struct { -			struct igb_tx_queue_stats tx_stats; -			struct u64_stats_sync tx_syncp; -			struct u64_stats_sync tx_syncp2; -			bool detect_tx_hung; -		}; -		/* RX */ -		struct { -			struct igb_rx_queue_stats rx_stats; -			struct u64_stats_sync rx_syncp; -			u32 rx_buffer_len; -		}; -	}; -}; - -#define IGB_RING_FLAG_RX_CSUM        0x00000001 /* RX CSUM enabled */ -#define IGB_RING_FLAG_RX_SCTP_CSUM   0x00000002 /* SCTP CSUM offload enabled */ - -#define IGB_RING_FLAG_TX_CTX_IDX     0x00000001 /* HW requires context index */ - -#define IGB_ADVTXD_DCMD (E1000_TXD_CMD_EOP | E1000_TXD_CMD_RS) - -#define E1000_RX_DESC_ADV(R, i)	    \ -	(&(((union e1000_adv_rx_desc *)((R).desc))[i])) -#define E1000_TX_DESC_ADV(R, i)	    \ -	(&(((union e1000_adv_tx_desc *)((R).desc))[i])) -#define E1000_TX_CTXTDESC_ADV(R, i)	    \ -	(&(((struct e1000_adv_tx_context_desc *)((R).desc))[i])) - -/* igb_desc_unused - calculate if we have unused descriptors */ -static inline int igb_desc_unused(struct igb_ring *ring) -{ -	if (ring->next_to_clean > ring->next_to_use) -		return ring->next_to_clean - ring->next_to_use - 1; - -	return ring->count + ring->next_to_clean - ring->next_to_use - 1; -} - -/* board specific private data structure */ -struct igb_adapter { -	struct timer_list watchdog_timer; -	struct timer_list phy_info_timer; -	struct vlan_group *vlgrp; -	u16 mng_vlan_id; -	u32 bd_number; -	u32 wol; -	u32 en_mng_pt; -	u16 link_speed; -	u16 link_duplex; - -	/* Interrupt Throttle Rate */ -	u32 rx_itr_setting; -	u32 tx_itr_setting; -	u16 tx_itr; -	u16 rx_itr; - -	struct work_struct reset_task; -	struct work_struct watchdog_task; -	bool fc_autoneg; -	u8  tx_timeout_factor; -	struct timer_list blink_timer; -	unsigned long led_status; - -	/* TX */ -	struct igb_ring *tx_ring[16]; -	u32 tx_timeout_count; - -	/* RX */ -	struct igb_ring *rx_ring[16]; -	int num_tx_queues; -	int num_rx_queues; - -	u32 max_frame_size; -	u32 min_frame_size; - -	/* OS defined structs */ -	struct net_device *netdev; -	struct pci_dev *pdev; -	struct cyclecounter cycles; -	struct timecounter clock; -	struct timecompare compare; -	struct hwtstamp_config hwtstamp_config; - -	spinlock_t stats64_lock; -	struct rtnl_link_stats64 stats64; - -	/* structs defined in e1000_hw.h */ -	struct e1000_hw hw; -	struct e1000_hw_stats stats; -	struct e1000_phy_info phy_info; -	struct e1000_phy_stats phy_stats; - -	u32 test_icr; -	struct igb_ring test_tx_ring; -	struct igb_ring test_rx_ring; - -	int msg_enable; - -	unsigned int num_q_vectors; -	struct igb_q_vector *q_vector[MAX_Q_VECTORS]; -	struct msix_entry *msix_entries; -	u32 eims_enable_mask; -	u32 eims_other; - -	/* to not mess up cache alignment, always add to the bottom */ -	unsigned long state; -	unsigned int flags; -	u32 eeprom_wol; - -	struct igb_ring *multi_tx_table[IGB_ABS_MAX_TX_QUEUES]; -	u16 tx_ring_count; -	u16 rx_ring_count; -	unsigned int vfs_allocated_count; -	struct vf_data_storage *vf_data; -	u32 rss_queues; -}; - -#define IGB_FLAG_HAS_MSI           (1 << 0) -#define IGB_FLAG_DCA_ENABLED       (1 << 1) -#define IGB_FLAG_QUAD_PORT_A       (1 << 2) -#define IGB_FLAG_QUEUE_PAIRS       (1 << 3) - -#define IGB_82576_TSYNC_SHIFT 19 -#define IGB_82580_TSYNC_SHIFT 24 -#define IGB_TS_HDR_LEN        16 -enum e1000_state_t { -	__IGB_TESTING, -	__IGB_RESETTING, -	__IGB_DOWN -}; - -enum igb_boards { -	board_82575, -}; - -extern char igb_driver_name[]; -extern char igb_driver_version[]; - -extern int igb_up(struct igb_adapter *); -extern void igb_down(struct igb_adapter *); -extern void igb_reinit_locked(struct igb_adapter *); -extern void igb_reset(struct igb_adapter *); -extern int igb_set_spd_dplx(struct igb_adapter *, u16); -extern int igb_setup_tx_resources(struct igb_ring *); -extern int igb_setup_rx_resources(struct igb_ring *); -extern void igb_free_tx_resources(struct igb_ring *); -extern void igb_free_rx_resources(struct igb_ring *); -extern void igb_configure_tx_ring(struct igb_adapter *, struct igb_ring *); -extern void igb_configure_rx_ring(struct igb_adapter *, struct igb_ring *); -extern void igb_setup_tctl(struct igb_adapter *); -extern void igb_setup_rctl(struct igb_adapter *); -extern netdev_tx_t igb_xmit_frame_ring_adv(struct sk_buff *, struct igb_ring *); -extern void igb_unmap_and_free_tx_resource(struct igb_ring *, -					   struct igb_buffer *); -extern void igb_alloc_rx_buffers_adv(struct igb_ring *, int); -extern void igb_update_stats(struct igb_adapter *, struct rtnl_link_stats64 *); -extern bool igb_has_link(struct igb_adapter *adapter); -extern void igb_set_ethtool_ops(struct net_device *); -extern void igb_power_up_link(struct igb_adapter *); - -static inline s32 igb_reset_phy(struct e1000_hw *hw) -{ -	if (hw->phy.ops.reset) -		return hw->phy.ops.reset(hw); - -	return 0; -} - -static inline s32 igb_read_phy_reg(struct e1000_hw *hw, u32 offset, u16 *data) -{ -	if (hw->phy.ops.read_reg) -		return hw->phy.ops.read_reg(hw, offset, data); - -	return 0; -} - -static inline s32 igb_write_phy_reg(struct e1000_hw *hw, u32 offset, u16 data) -{ -	if (hw->phy.ops.write_reg) -		return hw->phy.ops.write_reg(hw, offset, data); - -	return 0; -} - -static inline s32 igb_get_phy_info(struct e1000_hw *hw) -{ -	if (hw->phy.ops.get_phy_info) -		return hw->phy.ops.get_phy_info(hw); - -	return 0; -} - -#endif /* _IGB_H_ */ diff --git a/drivers/net/igb/igb_ethtool.c b/drivers/net/igb/igb_ethtool.c deleted file mode 100644 index a70e16bcfa7..00000000000 --- a/drivers/net/igb/igb_ethtool.c +++ /dev/null @@ -1,2212 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -/* ethtool support for igb */ - -#include <linux/vmalloc.h> -#include <linux/netdevice.h> -#include <linux/pci.h> -#include <linux/delay.h> -#include <linux/interrupt.h> -#include <linux/if_ether.h> -#include <linux/ethtool.h> -#include <linux/sched.h> -#include <linux/slab.h> - -#include "igb.h" - -struct igb_stats { -	char stat_string[ETH_GSTRING_LEN]; -	int sizeof_stat; -	int stat_offset; -}; - -#define IGB_STAT(_name, _stat) { \ -	.stat_string = _name, \ -	.sizeof_stat = FIELD_SIZEOF(struct igb_adapter, _stat), \ -	.stat_offset = offsetof(struct igb_adapter, _stat) \ -} -static const struct igb_stats igb_gstrings_stats[] = { -	IGB_STAT("rx_packets", stats.gprc), -	IGB_STAT("tx_packets", stats.gptc), -	IGB_STAT("rx_bytes", stats.gorc), -	IGB_STAT("tx_bytes", stats.gotc), -	IGB_STAT("rx_broadcast", stats.bprc), -	IGB_STAT("tx_broadcast", stats.bptc), -	IGB_STAT("rx_multicast", stats.mprc), -	IGB_STAT("tx_multicast", stats.mptc), -	IGB_STAT("multicast", stats.mprc), -	IGB_STAT("collisions", stats.colc), -	IGB_STAT("rx_crc_errors", stats.crcerrs), -	IGB_STAT("rx_no_buffer_count", stats.rnbc), -	IGB_STAT("rx_missed_errors", stats.mpc), -	IGB_STAT("tx_aborted_errors", stats.ecol), -	IGB_STAT("tx_carrier_errors", stats.tncrs), -	IGB_STAT("tx_window_errors", stats.latecol), -	IGB_STAT("tx_abort_late_coll", stats.latecol), -	IGB_STAT("tx_deferred_ok", stats.dc), -	IGB_STAT("tx_single_coll_ok", stats.scc), -	IGB_STAT("tx_multi_coll_ok", stats.mcc), -	IGB_STAT("tx_timeout_count", tx_timeout_count), -	IGB_STAT("rx_long_length_errors", stats.roc), -	IGB_STAT("rx_short_length_errors", stats.ruc), -	IGB_STAT("rx_align_errors", stats.algnerrc), -	IGB_STAT("tx_tcp_seg_good", stats.tsctc), -	IGB_STAT("tx_tcp_seg_failed", stats.tsctfc), -	IGB_STAT("rx_flow_control_xon", stats.xonrxc), -	IGB_STAT("rx_flow_control_xoff", stats.xoffrxc), -	IGB_STAT("tx_flow_control_xon", stats.xontxc), -	IGB_STAT("tx_flow_control_xoff", stats.xofftxc), -	IGB_STAT("rx_long_byte_count", stats.gorc), -	IGB_STAT("tx_dma_out_of_sync", stats.doosync), -	IGB_STAT("tx_smbus", stats.mgptc), -	IGB_STAT("rx_smbus", stats.mgprc), -	IGB_STAT("dropped_smbus", stats.mgpdc), -}; - -#define IGB_NETDEV_STAT(_net_stat) { \ -	.stat_string = __stringify(_net_stat), \ -	.sizeof_stat = FIELD_SIZEOF(struct rtnl_link_stats64, _net_stat), \ -	.stat_offset = offsetof(struct rtnl_link_stats64, _net_stat) \ -} -static const struct igb_stats igb_gstrings_net_stats[] = { -	IGB_NETDEV_STAT(rx_errors), -	IGB_NETDEV_STAT(tx_errors), -	IGB_NETDEV_STAT(tx_dropped), -	IGB_NETDEV_STAT(rx_length_errors), -	IGB_NETDEV_STAT(rx_over_errors), -	IGB_NETDEV_STAT(rx_frame_errors), -	IGB_NETDEV_STAT(rx_fifo_errors), -	IGB_NETDEV_STAT(tx_fifo_errors), -	IGB_NETDEV_STAT(tx_heartbeat_errors) -}; - -#define IGB_GLOBAL_STATS_LEN	\ -	(sizeof(igb_gstrings_stats) / sizeof(struct igb_stats)) -#define IGB_NETDEV_STATS_LEN	\ -	(sizeof(igb_gstrings_net_stats) / sizeof(struct igb_stats)) -#define IGB_RX_QUEUE_STATS_LEN \ -	(sizeof(struct igb_rx_queue_stats) / sizeof(u64)) - -#define IGB_TX_QUEUE_STATS_LEN 3 /* packets, bytes, restart_queue */ - -#define IGB_QUEUE_STATS_LEN \ -	((((struct igb_adapter *)netdev_priv(netdev))->num_rx_queues * \ -	  IGB_RX_QUEUE_STATS_LEN) + \ -	 (((struct igb_adapter *)netdev_priv(netdev))->num_tx_queues * \ -	  IGB_TX_QUEUE_STATS_LEN)) -#define IGB_STATS_LEN \ -	(IGB_GLOBAL_STATS_LEN + IGB_NETDEV_STATS_LEN + IGB_QUEUE_STATS_LEN) - -static const char igb_gstrings_test[][ETH_GSTRING_LEN] = { -	"Register test  (offline)", "Eeprom test    (offline)", -	"Interrupt test (offline)", "Loopback test  (offline)", -	"Link test   (on/offline)" -}; -#define IGB_TEST_LEN (sizeof(igb_gstrings_test) / ETH_GSTRING_LEN) - -static int igb_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	u32 status; - -	if (hw->phy.media_type == e1000_media_type_copper) { - -		ecmd->supported = (SUPPORTED_10baseT_Half | -				   SUPPORTED_10baseT_Full | -				   SUPPORTED_100baseT_Half | -				   SUPPORTED_100baseT_Full | -				   SUPPORTED_1000baseT_Full| -				   SUPPORTED_Autoneg | -				   SUPPORTED_TP); -		ecmd->advertising = ADVERTISED_TP; - -		if (hw->mac.autoneg == 1) { -			ecmd->advertising |= ADVERTISED_Autoneg; -			/* the e1000 autoneg seems to match ethtool nicely */ -			ecmd->advertising |= hw->phy.autoneg_advertised; -		} - -		ecmd->port = PORT_TP; -		ecmd->phy_address = hw->phy.addr; -	} else { -		ecmd->supported   = (SUPPORTED_1000baseT_Full | -				     SUPPORTED_FIBRE | -				     SUPPORTED_Autoneg); - -		ecmd->advertising = (ADVERTISED_1000baseT_Full | -				     ADVERTISED_FIBRE | -				     ADVERTISED_Autoneg); - -		ecmd->port = PORT_FIBRE; -	} - -	ecmd->transceiver = XCVR_INTERNAL; - -	status = rd32(E1000_STATUS); - -	if (status & E1000_STATUS_LU) { - -		if ((status & E1000_STATUS_SPEED_1000) || -		    hw->phy.media_type != e1000_media_type_copper) -			ecmd->speed = SPEED_1000; -		else if (status & E1000_STATUS_SPEED_100) -			ecmd->speed = SPEED_100; -		else -			ecmd->speed = SPEED_10; - -		if ((status & E1000_STATUS_FD) || -		    hw->phy.media_type != e1000_media_type_copper) -			ecmd->duplex = DUPLEX_FULL; -		else -			ecmd->duplex = DUPLEX_HALF; -	} else { -		ecmd->speed = -1; -		ecmd->duplex = -1; -	} - -	ecmd->autoneg = hw->mac.autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE; -	return 0; -} - -static int igb_set_settings(struct net_device *netdev, struct ethtool_cmd *ecmd) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; - -	/* When SoL/IDER sessions are active, autoneg/speed/duplex -	 * cannot be changed */ -	if (igb_check_reset_block(hw)) { -		dev_err(&adapter->pdev->dev, "Cannot change link " -			"characteristics when SoL/IDER is active.\n"); -		return -EINVAL; -	} - -	while (test_and_set_bit(__IGB_RESETTING, &adapter->state)) -		msleep(1); - -	if (ecmd->autoneg == AUTONEG_ENABLE) { -		hw->mac.autoneg = 1; -		hw->phy.autoneg_advertised = ecmd->advertising | -					     ADVERTISED_TP | -					     ADVERTISED_Autoneg; -		ecmd->advertising = hw->phy.autoneg_advertised; -		if (adapter->fc_autoneg) -			hw->fc.requested_mode = e1000_fc_default; -	} else { -		if (igb_set_spd_dplx(adapter, ecmd->speed + ecmd->duplex)) { -			clear_bit(__IGB_RESETTING, &adapter->state); -			return -EINVAL; -		} -	} - -	/* reset the link */ -	if (netif_running(adapter->netdev)) { -		igb_down(adapter); -		igb_up(adapter); -	} else -		igb_reset(adapter); - -	clear_bit(__IGB_RESETTING, &adapter->state); -	return 0; -} - -static u32 igb_get_link(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_mac_info *mac = &adapter->hw.mac; - -	/* -	 * If the link is not reported up to netdev, interrupts are disabled, -	 * and so the physical link state may have changed since we last -	 * looked. Set get_link_status to make sure that the true link -	 * state is interrogated, rather than pulling a cached and possibly -	 * stale link state from the driver. -	 */ -	if (!netif_carrier_ok(netdev)) -		mac->get_link_status = 1; - -	return igb_has_link(adapter); -} - -static void igb_get_pauseparam(struct net_device *netdev, -			       struct ethtool_pauseparam *pause) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; - -	pause->autoneg = -		(adapter->fc_autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE); - -	if (hw->fc.current_mode == e1000_fc_rx_pause) -		pause->rx_pause = 1; -	else if (hw->fc.current_mode == e1000_fc_tx_pause) -		pause->tx_pause = 1; -	else if (hw->fc.current_mode == e1000_fc_full) { -		pause->rx_pause = 1; -		pause->tx_pause = 1; -	} -} - -static int igb_set_pauseparam(struct net_device *netdev, -			      struct ethtool_pauseparam *pause) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	int retval = 0; - -	adapter->fc_autoneg = pause->autoneg; - -	while (test_and_set_bit(__IGB_RESETTING, &adapter->state)) -		msleep(1); - -	if (adapter->fc_autoneg == AUTONEG_ENABLE) { -		hw->fc.requested_mode = e1000_fc_default; -		if (netif_running(adapter->netdev)) { -			igb_down(adapter); -			igb_up(adapter); -		} else { -			igb_reset(adapter); -		} -	} else { -		if (pause->rx_pause && pause->tx_pause) -			hw->fc.requested_mode = e1000_fc_full; -		else if (pause->rx_pause && !pause->tx_pause) -			hw->fc.requested_mode = e1000_fc_rx_pause; -		else if (!pause->rx_pause && pause->tx_pause) -			hw->fc.requested_mode = e1000_fc_tx_pause; -		else if (!pause->rx_pause && !pause->tx_pause) -			hw->fc.requested_mode = e1000_fc_none; - -		hw->fc.current_mode = hw->fc.requested_mode; - -		retval = ((hw->phy.media_type == e1000_media_type_copper) ? -			  igb_force_mac_fc(hw) : igb_setup_link(hw)); -	} - -	clear_bit(__IGB_RESETTING, &adapter->state); -	return retval; -} - -static u32 igb_get_rx_csum(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	return !!(adapter->rx_ring[0]->flags & IGB_RING_FLAG_RX_CSUM); -} - -static int igb_set_rx_csum(struct net_device *netdev, u32 data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	int i; - -	for (i = 0; i < adapter->num_rx_queues; i++) { -		if (data) -			adapter->rx_ring[i]->flags |= IGB_RING_FLAG_RX_CSUM; -		else -			adapter->rx_ring[i]->flags &= ~IGB_RING_FLAG_RX_CSUM; -	} - -	return 0; -} - -static u32 igb_get_tx_csum(struct net_device *netdev) -{ -	return (netdev->features & NETIF_F_IP_CSUM) != 0; -} - -static int igb_set_tx_csum(struct net_device *netdev, u32 data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	if (data) { -		netdev->features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM); -		if (adapter->hw.mac.type >= e1000_82576) -			netdev->features |= NETIF_F_SCTP_CSUM; -	} else { -		netdev->features &= ~(NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | -		                      NETIF_F_SCTP_CSUM); -	} - -	return 0; -} - -static int igb_set_tso(struct net_device *netdev, u32 data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	if (data) { -		netdev->features |= NETIF_F_TSO; -		netdev->features |= NETIF_F_TSO6; -	} else { -		netdev->features &= ~NETIF_F_TSO; -		netdev->features &= ~NETIF_F_TSO6; -	} - -	dev_info(&adapter->pdev->dev, "TSO is %s\n", -		 data ? "Enabled" : "Disabled"); -	return 0; -} - -static u32 igb_get_msglevel(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	return adapter->msg_enable; -} - -static void igb_set_msglevel(struct net_device *netdev, u32 data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	adapter->msg_enable = data; -} - -static int igb_get_regs_len(struct net_device *netdev) -{ -#define IGB_REGS_LEN 551 -	return IGB_REGS_LEN * sizeof(u32); -} - -static void igb_get_regs(struct net_device *netdev, -			 struct ethtool_regs *regs, void *p) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	u32 *regs_buff = p; -	u8 i; - -	memset(p, 0, IGB_REGS_LEN * sizeof(u32)); - -	regs->version = (1 << 24) | (hw->revision_id << 16) | hw->device_id; - -	/* General Registers */ -	regs_buff[0] = rd32(E1000_CTRL); -	regs_buff[1] = rd32(E1000_STATUS); -	regs_buff[2] = rd32(E1000_CTRL_EXT); -	regs_buff[3] = rd32(E1000_MDIC); -	regs_buff[4] = rd32(E1000_SCTL); -	regs_buff[5] = rd32(E1000_CONNSW); -	regs_buff[6] = rd32(E1000_VET); -	regs_buff[7] = rd32(E1000_LEDCTL); -	regs_buff[8] = rd32(E1000_PBA); -	regs_buff[9] = rd32(E1000_PBS); -	regs_buff[10] = rd32(E1000_FRTIMER); -	regs_buff[11] = rd32(E1000_TCPTIMER); - -	/* NVM Register */ -	regs_buff[12] = rd32(E1000_EECD); - -	/* Interrupt */ -	/* Reading EICS for EICR because they read the -	 * same but EICS does not clear on read */ -	regs_buff[13] = rd32(E1000_EICS); -	regs_buff[14] = rd32(E1000_EICS); -	regs_buff[15] = rd32(E1000_EIMS); -	regs_buff[16] = rd32(E1000_EIMC); -	regs_buff[17] = rd32(E1000_EIAC); -	regs_buff[18] = rd32(E1000_EIAM); -	/* Reading ICS for ICR because they read the -	 * same but ICS does not clear on read */ -	regs_buff[19] = rd32(E1000_ICS); -	regs_buff[20] = rd32(E1000_ICS); -	regs_buff[21] = rd32(E1000_IMS); -	regs_buff[22] = rd32(E1000_IMC); -	regs_buff[23] = rd32(E1000_IAC); -	regs_buff[24] = rd32(E1000_IAM); -	regs_buff[25] = rd32(E1000_IMIRVP); - -	/* Flow Control */ -	regs_buff[26] = rd32(E1000_FCAL); -	regs_buff[27] = rd32(E1000_FCAH); -	regs_buff[28] = rd32(E1000_FCTTV); -	regs_buff[29] = rd32(E1000_FCRTL); -	regs_buff[30] = rd32(E1000_FCRTH); -	regs_buff[31] = rd32(E1000_FCRTV); - -	/* Receive */ -	regs_buff[32] = rd32(E1000_RCTL); -	regs_buff[33] = rd32(E1000_RXCSUM); -	regs_buff[34] = rd32(E1000_RLPML); -	regs_buff[35] = rd32(E1000_RFCTL); -	regs_buff[36] = rd32(E1000_MRQC); -	regs_buff[37] = rd32(E1000_VT_CTL); - -	/* Transmit */ -	regs_buff[38] = rd32(E1000_TCTL); -	regs_buff[39] = rd32(E1000_TCTL_EXT); -	regs_buff[40] = rd32(E1000_TIPG); -	regs_buff[41] = rd32(E1000_DTXCTL); - -	/* Wake Up */ -	regs_buff[42] = rd32(E1000_WUC); -	regs_buff[43] = rd32(E1000_WUFC); -	regs_buff[44] = rd32(E1000_WUS); -	regs_buff[45] = rd32(E1000_IPAV); -	regs_buff[46] = rd32(E1000_WUPL); - -	/* MAC */ -	regs_buff[47] = rd32(E1000_PCS_CFG0); -	regs_buff[48] = rd32(E1000_PCS_LCTL); -	regs_buff[49] = rd32(E1000_PCS_LSTAT); -	regs_buff[50] = rd32(E1000_PCS_ANADV); -	regs_buff[51] = rd32(E1000_PCS_LPAB); -	regs_buff[52] = rd32(E1000_PCS_NPTX); -	regs_buff[53] = rd32(E1000_PCS_LPABNP); - -	/* Statistics */ -	regs_buff[54] = adapter->stats.crcerrs; -	regs_buff[55] = adapter->stats.algnerrc; -	regs_buff[56] = adapter->stats.symerrs; -	regs_buff[57] = adapter->stats.rxerrc; -	regs_buff[58] = adapter->stats.mpc; -	regs_buff[59] = adapter->stats.scc; -	regs_buff[60] = adapter->stats.ecol; -	regs_buff[61] = adapter->stats.mcc; -	regs_buff[62] = adapter->stats.latecol; -	regs_buff[63] = adapter->stats.colc; -	regs_buff[64] = adapter->stats.dc; -	regs_buff[65] = adapter->stats.tncrs; -	regs_buff[66] = adapter->stats.sec; -	regs_buff[67] = adapter->stats.htdpmc; -	regs_buff[68] = adapter->stats.rlec; -	regs_buff[69] = adapter->stats.xonrxc; -	regs_buff[70] = adapter->stats.xontxc; -	regs_buff[71] = adapter->stats.xoffrxc; -	regs_buff[72] = adapter->stats.xofftxc; -	regs_buff[73] = adapter->stats.fcruc; -	regs_buff[74] = adapter->stats.prc64; -	regs_buff[75] = adapter->stats.prc127; -	regs_buff[76] = adapter->stats.prc255; -	regs_buff[77] = adapter->stats.prc511; -	regs_buff[78] = adapter->stats.prc1023; -	regs_buff[79] = adapter->stats.prc1522; -	regs_buff[80] = adapter->stats.gprc; -	regs_buff[81] = adapter->stats.bprc; -	regs_buff[82] = adapter->stats.mprc; -	regs_buff[83] = adapter->stats.gptc; -	regs_buff[84] = adapter->stats.gorc; -	regs_buff[86] = adapter->stats.gotc; -	regs_buff[88] = adapter->stats.rnbc; -	regs_buff[89] = adapter->stats.ruc; -	regs_buff[90] = adapter->stats.rfc; -	regs_buff[91] = adapter->stats.roc; -	regs_buff[92] = adapter->stats.rjc; -	regs_buff[93] = adapter->stats.mgprc; -	regs_buff[94] = adapter->stats.mgpdc; -	regs_buff[95] = adapter->stats.mgptc; -	regs_buff[96] = adapter->stats.tor; -	regs_buff[98] = adapter->stats.tot; -	regs_buff[100] = adapter->stats.tpr; -	regs_buff[101] = adapter->stats.tpt; -	regs_buff[102] = adapter->stats.ptc64; -	regs_buff[103] = adapter->stats.ptc127; -	regs_buff[104] = adapter->stats.ptc255; -	regs_buff[105] = adapter->stats.ptc511; -	regs_buff[106] = adapter->stats.ptc1023; -	regs_buff[107] = adapter->stats.ptc1522; -	regs_buff[108] = adapter->stats.mptc; -	regs_buff[109] = adapter->stats.bptc; -	regs_buff[110] = adapter->stats.tsctc; -	regs_buff[111] = adapter->stats.iac; -	regs_buff[112] = adapter->stats.rpthc; -	regs_buff[113] = adapter->stats.hgptc; -	regs_buff[114] = adapter->stats.hgorc; -	regs_buff[116] = adapter->stats.hgotc; -	regs_buff[118] = adapter->stats.lenerrs; -	regs_buff[119] = adapter->stats.scvpc; -	regs_buff[120] = adapter->stats.hrmpc; - -	for (i = 0; i < 4; i++) -		regs_buff[121 + i] = rd32(E1000_SRRCTL(i)); -	for (i = 0; i < 4; i++) -		regs_buff[125 + i] = rd32(E1000_PSRTYPE(i)); -	for (i = 0; i < 4; i++) -		regs_buff[129 + i] = rd32(E1000_RDBAL(i)); -	for (i = 0; i < 4; i++) -		regs_buff[133 + i] = rd32(E1000_RDBAH(i)); -	for (i = 0; i < 4; i++) -		regs_buff[137 + i] = rd32(E1000_RDLEN(i)); -	for (i = 0; i < 4; i++) -		regs_buff[141 + i] = rd32(E1000_RDH(i)); -	for (i = 0; i < 4; i++) -		regs_buff[145 + i] = rd32(E1000_RDT(i)); -	for (i = 0; i < 4; i++) -		regs_buff[149 + i] = rd32(E1000_RXDCTL(i)); - -	for (i = 0; i < 10; i++) -		regs_buff[153 + i] = rd32(E1000_EITR(i)); -	for (i = 0; i < 8; i++) -		regs_buff[163 + i] = rd32(E1000_IMIR(i)); -	for (i = 0; i < 8; i++) -		regs_buff[171 + i] = rd32(E1000_IMIREXT(i)); -	for (i = 0; i < 16; i++) -		regs_buff[179 + i] = rd32(E1000_RAL(i)); -	for (i = 0; i < 16; i++) -		regs_buff[195 + i] = rd32(E1000_RAH(i)); - -	for (i = 0; i < 4; i++) -		regs_buff[211 + i] = rd32(E1000_TDBAL(i)); -	for (i = 0; i < 4; i++) -		regs_buff[215 + i] = rd32(E1000_TDBAH(i)); -	for (i = 0; i < 4; i++) -		regs_buff[219 + i] = rd32(E1000_TDLEN(i)); -	for (i = 0; i < 4; i++) -		regs_buff[223 + i] = rd32(E1000_TDH(i)); -	for (i = 0; i < 4; i++) -		regs_buff[227 + i] = rd32(E1000_TDT(i)); -	for (i = 0; i < 4; i++) -		regs_buff[231 + i] = rd32(E1000_TXDCTL(i)); -	for (i = 0; i < 4; i++) -		regs_buff[235 + i] = rd32(E1000_TDWBAL(i)); -	for (i = 0; i < 4; i++) -		regs_buff[239 + i] = rd32(E1000_TDWBAH(i)); -	for (i = 0; i < 4; i++) -		regs_buff[243 + i] = rd32(E1000_DCA_TXCTRL(i)); - -	for (i = 0; i < 4; i++) -		regs_buff[247 + i] = rd32(E1000_IP4AT_REG(i)); -	for (i = 0; i < 4; i++) -		regs_buff[251 + i] = rd32(E1000_IP6AT_REG(i)); -	for (i = 0; i < 32; i++) -		regs_buff[255 + i] = rd32(E1000_WUPM_REG(i)); -	for (i = 0; i < 128; i++) -		regs_buff[287 + i] = rd32(E1000_FFMT_REG(i)); -	for (i = 0; i < 128; i++) -		regs_buff[415 + i] = rd32(E1000_FFVT_REG(i)); -	for (i = 0; i < 4; i++) -		regs_buff[543 + i] = rd32(E1000_FFLT_REG(i)); - -	regs_buff[547] = rd32(E1000_TDFH); -	regs_buff[548] = rd32(E1000_TDFT); -	regs_buff[549] = rd32(E1000_TDFHS); -	regs_buff[550] = rd32(E1000_TDFPC); - -} - -static int igb_get_eeprom_len(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	return adapter->hw.nvm.word_size * 2; -} - -static int igb_get_eeprom(struct net_device *netdev, -			  struct ethtool_eeprom *eeprom, u8 *bytes) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	u16 *eeprom_buff; -	int first_word, last_word; -	int ret_val = 0; -	u16 i; - -	if (eeprom->len == 0) -		return -EINVAL; - -	eeprom->magic = hw->vendor_id | (hw->device_id << 16); - -	first_word = eeprom->offset >> 1; -	last_word = (eeprom->offset + eeprom->len - 1) >> 1; - -	eeprom_buff = kmalloc(sizeof(u16) * -			(last_word - first_word + 1), GFP_KERNEL); -	if (!eeprom_buff) -		return -ENOMEM; - -	if (hw->nvm.type == e1000_nvm_eeprom_spi) -		ret_val = hw->nvm.ops.read(hw, first_word, -					    last_word - first_word + 1, -					    eeprom_buff); -	else { -		for (i = 0; i < last_word - first_word + 1; i++) { -			ret_val = hw->nvm.ops.read(hw, first_word + i, 1, -						    &eeprom_buff[i]); -			if (ret_val) -				break; -		} -	} - -	/* Device's eeprom is always little-endian, word addressable */ -	for (i = 0; i < last_word - first_word + 1; i++) -		le16_to_cpus(&eeprom_buff[i]); - -	memcpy(bytes, (u8 *)eeprom_buff + (eeprom->offset & 1), -			eeprom->len); -	kfree(eeprom_buff); - -	return ret_val; -} - -static int igb_set_eeprom(struct net_device *netdev, -			  struct ethtool_eeprom *eeprom, u8 *bytes) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	u16 *eeprom_buff; -	void *ptr; -	int max_len, first_word, last_word, ret_val = 0; -	u16 i; - -	if (eeprom->len == 0) -		return -EOPNOTSUPP; - -	if (eeprom->magic != (hw->vendor_id | (hw->device_id << 16))) -		return -EFAULT; - -	max_len = hw->nvm.word_size * 2; - -	first_word = eeprom->offset >> 1; -	last_word = (eeprom->offset + eeprom->len - 1) >> 1; -	eeprom_buff = kmalloc(max_len, GFP_KERNEL); -	if (!eeprom_buff) -		return -ENOMEM; - -	ptr = (void *)eeprom_buff; - -	if (eeprom->offset & 1) { -		/* need read/modify/write of first changed EEPROM word */ -		/* only the second byte of the word is being modified */ -		ret_val = hw->nvm.ops.read(hw, first_word, 1, -					    &eeprom_buff[0]); -		ptr++; -	} -	if (((eeprom->offset + eeprom->len) & 1) && (ret_val == 0)) { -		/* need read/modify/write of last changed EEPROM word */ -		/* only the first byte of the word is being modified */ -		ret_val = hw->nvm.ops.read(hw, last_word, 1, -				   &eeprom_buff[last_word - first_word]); -	} - -	/* Device's eeprom is always little-endian, word addressable */ -	for (i = 0; i < last_word - first_word + 1; i++) -		le16_to_cpus(&eeprom_buff[i]); - -	memcpy(ptr, bytes, eeprom->len); - -	for (i = 0; i < last_word - first_word + 1; i++) -		eeprom_buff[i] = cpu_to_le16(eeprom_buff[i]); - -	ret_val = hw->nvm.ops.write(hw, first_word, -				     last_word - first_word + 1, eeprom_buff); - -	/* Update the checksum over the first part of the EEPROM if needed -	 * and flush shadow RAM for 82573 controllers */ -	if ((ret_val == 0) && ((first_word <= NVM_CHECKSUM_REG))) -		igb_update_nvm_checksum(hw); - -	kfree(eeprom_buff); -	return ret_val; -} - -static void igb_get_drvinfo(struct net_device *netdev, -			    struct ethtool_drvinfo *drvinfo) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	char firmware_version[32]; -	u16 eeprom_data; - -	strncpy(drvinfo->driver,  igb_driver_name, 32); -	strncpy(drvinfo->version, igb_driver_version, 32); - -	/* EEPROM image version # is reported as firmware version # for -	 * 82575 controllers */ -	adapter->hw.nvm.ops.read(&adapter->hw, 5, 1, &eeprom_data); -	sprintf(firmware_version, "%d.%d-%d", -		(eeprom_data & 0xF000) >> 12, -		(eeprom_data & 0x0FF0) >> 4, -		eeprom_data & 0x000F); - -	strncpy(drvinfo->fw_version, firmware_version, 32); -	strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32); -	drvinfo->n_stats = IGB_STATS_LEN; -	drvinfo->testinfo_len = IGB_TEST_LEN; -	drvinfo->regdump_len = igb_get_regs_len(netdev); -	drvinfo->eedump_len = igb_get_eeprom_len(netdev); -} - -static void igb_get_ringparam(struct net_device *netdev, -			      struct ethtool_ringparam *ring) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	ring->rx_max_pending = IGB_MAX_RXD; -	ring->tx_max_pending = IGB_MAX_TXD; -	ring->rx_mini_max_pending = 0; -	ring->rx_jumbo_max_pending = 0; -	ring->rx_pending = adapter->rx_ring_count; -	ring->tx_pending = adapter->tx_ring_count; -	ring->rx_mini_pending = 0; -	ring->rx_jumbo_pending = 0; -} - -static int igb_set_ringparam(struct net_device *netdev, -			     struct ethtool_ringparam *ring) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct igb_ring *temp_ring; -	int i, err = 0; -	u16 new_rx_count, new_tx_count; - -	if ((ring->rx_mini_pending) || (ring->rx_jumbo_pending)) -		return -EINVAL; - -	new_rx_count = min_t(u32, ring->rx_pending, IGB_MAX_RXD); -	new_rx_count = max_t(u16, new_rx_count, IGB_MIN_RXD); -	new_rx_count = ALIGN(new_rx_count, REQ_RX_DESCRIPTOR_MULTIPLE); - -	new_tx_count = min_t(u32, ring->tx_pending, IGB_MAX_TXD); -	new_tx_count = max_t(u16, new_tx_count, IGB_MIN_TXD); -	new_tx_count = ALIGN(new_tx_count, REQ_TX_DESCRIPTOR_MULTIPLE); - -	if ((new_tx_count == adapter->tx_ring_count) && -	    (new_rx_count == adapter->rx_ring_count)) { -		/* nothing to do */ -		return 0; -	} - -	while (test_and_set_bit(__IGB_RESETTING, &adapter->state)) -		msleep(1); - -	if (!netif_running(adapter->netdev)) { -		for (i = 0; i < adapter->num_tx_queues; i++) -			adapter->tx_ring[i]->count = new_tx_count; -		for (i = 0; i < adapter->num_rx_queues; i++) -			adapter->rx_ring[i]->count = new_rx_count; -		adapter->tx_ring_count = new_tx_count; -		adapter->rx_ring_count = new_rx_count; -		goto clear_reset; -	} - -	if (adapter->num_tx_queues > adapter->num_rx_queues) -		temp_ring = vmalloc(adapter->num_tx_queues * sizeof(struct igb_ring)); -	else -		temp_ring = vmalloc(adapter->num_rx_queues * sizeof(struct igb_ring)); - -	if (!temp_ring) { -		err = -ENOMEM; -		goto clear_reset; -	} - -	igb_down(adapter); - -	/* -	 * We can't just free everything and then setup again, -	 * because the ISRs in MSI-X mode get passed pointers -	 * to the tx and rx ring structs. -	 */ -	if (new_tx_count != adapter->tx_ring_count) { -		for (i = 0; i < adapter->num_tx_queues; i++) { -			memcpy(&temp_ring[i], adapter->tx_ring[i], -			       sizeof(struct igb_ring)); - -			temp_ring[i].count = new_tx_count; -			err = igb_setup_tx_resources(&temp_ring[i]); -			if (err) { -				while (i) { -					i--; -					igb_free_tx_resources(&temp_ring[i]); -				} -				goto err_setup; -			} -		} - -		for (i = 0; i < adapter->num_tx_queues; i++) { -			igb_free_tx_resources(adapter->tx_ring[i]); - -			memcpy(adapter->tx_ring[i], &temp_ring[i], -			       sizeof(struct igb_ring)); -		} - -		adapter->tx_ring_count = new_tx_count; -	} - -	if (new_rx_count != adapter->rx_ring_count) { -		for (i = 0; i < adapter->num_rx_queues; i++) { -			memcpy(&temp_ring[i], adapter->rx_ring[i], -			       sizeof(struct igb_ring)); - -			temp_ring[i].count = new_rx_count; -			err = igb_setup_rx_resources(&temp_ring[i]); -			if (err) { -				while (i) { -					i--; -					igb_free_rx_resources(&temp_ring[i]); -				} -				goto err_setup; -			} - -		} - -		for (i = 0; i < adapter->num_rx_queues; i++) { -			igb_free_rx_resources(adapter->rx_ring[i]); - -			memcpy(adapter->rx_ring[i], &temp_ring[i], -			       sizeof(struct igb_ring)); -		} - -		adapter->rx_ring_count = new_rx_count; -	} -err_setup: -	igb_up(adapter); -	vfree(temp_ring); -clear_reset: -	clear_bit(__IGB_RESETTING, &adapter->state); -	return err; -} - -/* ethtool register test data */ -struct igb_reg_test { -	u16 reg; -	u16 reg_offset; -	u16 array_len; -	u16 test_type; -	u32 mask; -	u32 write; -}; - -/* In the hardware, registers are laid out either singly, in arrays - * spaced 0x100 bytes apart, or in contiguous tables.  We assume - * most tests take place on arrays or single registers (handled - * as a single-element array) and special-case the tables. - * Table tests are always pattern tests. - * - * We also make provision for some required setup steps by specifying - * registers to be written without any read-back testing. - */ - -#define PATTERN_TEST	1 -#define SET_READ_TEST	2 -#define WRITE_NO_TEST	3 -#define TABLE32_TEST	4 -#define TABLE64_TEST_LO	5 -#define TABLE64_TEST_HI	6 - -/* i350 reg test */ -static struct igb_reg_test reg_test_i350[] = { -	{ E1000_FCAL,	   0x100, 1,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_FCAH,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_FCT,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_VET,	   0x100, 1,  PATTERN_TEST, 0xFFFF0000, 0xFFFF0000 }, -	{ E1000_RDBAL(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_RDBAH(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDLEN(0),  0x100, 4,  PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, -	{ E1000_RDBAL(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_RDBAH(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDLEN(4),  0x40,  4,  PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, -	/* RDH is read-only for i350, only test RDT. */ -	{ E1000_RDT(0),	   0x100, 4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_RDT(4),	   0x40,  4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_FCRTH,	   0x100, 1,  PATTERN_TEST, 0x0000FFF0, 0x0000FFF0 }, -	{ E1000_FCTTV,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_TIPG,	   0x100, 1,  PATTERN_TEST, 0x3FFFFFFF, 0x3FFFFFFF }, -	{ E1000_TDBAL(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_TDBAH(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_TDLEN(0),  0x100, 4,  PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, -	{ E1000_TDBAL(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_TDBAH(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_TDLEN(4),  0x40,  4,  PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, -	{ E1000_TDT(0),	   0x100, 4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_TDT(4),	   0x40,  4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_RCTL,	   0x100, 1,  SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_RCTL, 	   0x100, 1,  SET_READ_TEST, 0x04CFB0FE, 0x003FFFFB }, -	{ E1000_RCTL, 	   0x100, 1,  SET_READ_TEST, 0x04CFB0FE, 0xFFFFFFFF }, -	{ E1000_TCTL,	   0x100, 1,  SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_RA,	   0, 16, TABLE64_TEST_LO, -						0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RA,	   0, 16, TABLE64_TEST_HI, -						0xC3FFFFFF, 0xFFFFFFFF }, -	{ E1000_RA2,	   0, 16, TABLE64_TEST_LO, -						0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RA2,	   0, 16, TABLE64_TEST_HI, -						0xC3FFFFFF, 0xFFFFFFFF }, -	{ E1000_MTA,	   0, 128, TABLE32_TEST, -						0xFFFFFFFF, 0xFFFFFFFF }, -	{ 0, 0, 0, 0 } -}; - -/* 82580 reg test */ -static struct igb_reg_test reg_test_82580[] = { -	{ E1000_FCAL,	   0x100, 1,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_FCAH,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_FCT,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_VET,	   0x100, 1,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDBAL(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_RDBAH(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDLEN(0),  0x100, 4,  PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	{ E1000_RDBAL(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_RDBAH(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDLEN(4),  0x40,  4,  PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	/* RDH is read-only for 82580, only test RDT. */ -	{ E1000_RDT(0),	   0x100, 4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_RDT(4),	   0x40,  4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_FCRTH,	   0x100, 1,  PATTERN_TEST, 0x0000FFF0, 0x0000FFF0 }, -	{ E1000_FCTTV,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_TIPG,	   0x100, 1,  PATTERN_TEST, 0x3FFFFFFF, 0x3FFFFFFF }, -	{ E1000_TDBAL(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_TDBAH(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_TDLEN(0),  0x100, 4,  PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	{ E1000_TDBAL(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_TDBAH(4),  0x40,  4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_TDLEN(4),  0x40,  4,  PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	{ E1000_TDT(0),	   0x100, 4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_TDT(4),	   0x40,  4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_RCTL,	   0x100, 1,  SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_RCTL, 	   0x100, 1,  SET_READ_TEST, 0x04CFB0FE, 0x003FFFFB }, -	{ E1000_RCTL, 	   0x100, 1,  SET_READ_TEST, 0x04CFB0FE, 0xFFFFFFFF }, -	{ E1000_TCTL,	   0x100, 1,  SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_RA,	   0, 16, TABLE64_TEST_LO, -						0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RA,	   0, 16, TABLE64_TEST_HI, -						0x83FFFFFF, 0xFFFFFFFF }, -	{ E1000_RA2,	   0, 8, TABLE64_TEST_LO, -						0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RA2,	   0, 8, TABLE64_TEST_HI, -						0x83FFFFFF, 0xFFFFFFFF }, -	{ E1000_MTA,	   0, 128, TABLE32_TEST, -						0xFFFFFFFF, 0xFFFFFFFF }, -	{ 0, 0, 0, 0 } -}; - -/* 82576 reg test */ -static struct igb_reg_test reg_test_82576[] = { -	{ E1000_FCAL,	   0x100, 1,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_FCAH,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_FCT,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_VET,	   0x100, 1,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDBAL(0),  0x100, 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_RDBAH(0),  0x100, 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDLEN(0),  0x100, 4, PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	{ E1000_RDBAL(4),  0x40, 12, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_RDBAH(4),  0x40, 12, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDLEN(4),  0x40, 12, PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	/* Enable all RX queues before testing. */ -	{ E1000_RXDCTL(0), 0x100, 4,  WRITE_NO_TEST, 0, E1000_RXDCTL_QUEUE_ENABLE }, -	{ E1000_RXDCTL(4), 0x40, 12,  WRITE_NO_TEST, 0, E1000_RXDCTL_QUEUE_ENABLE }, -	/* RDH is read-only for 82576, only test RDT. */ -	{ E1000_RDT(0),	   0x100, 4,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_RDT(4),	   0x40, 12,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_RXDCTL(0), 0x100, 4,  WRITE_NO_TEST, 0, 0 }, -	{ E1000_RXDCTL(4), 0x40, 12,  WRITE_NO_TEST, 0, 0 }, -	{ E1000_FCRTH,	   0x100, 1,  PATTERN_TEST, 0x0000FFF0, 0x0000FFF0 }, -	{ E1000_FCTTV,	   0x100, 1,  PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_TIPG,	   0x100, 1,  PATTERN_TEST, 0x3FFFFFFF, 0x3FFFFFFF }, -	{ E1000_TDBAL(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_TDBAH(0),  0x100, 4,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_TDLEN(0),  0x100, 4,  PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	{ E1000_TDBAL(4),  0x40, 12,  PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_TDBAH(4),  0x40, 12,  PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_TDLEN(4),  0x40, 12,  PATTERN_TEST, 0x000FFFF0, 0x000FFFFF }, -	{ E1000_RCTL,	   0x100, 1,  SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_RCTL, 	   0x100, 1,  SET_READ_TEST, 0x04CFB0FE, 0x003FFFFB }, -	{ E1000_RCTL, 	   0x100, 1,  SET_READ_TEST, 0x04CFB0FE, 0xFFFFFFFF }, -	{ E1000_TCTL,	   0x100, 1,  SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_RA,	   0, 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RA,	   0, 16, TABLE64_TEST_HI, 0x83FFFFFF, 0xFFFFFFFF }, -	{ E1000_RA2,	   0, 8, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RA2,	   0, 8, TABLE64_TEST_HI, 0x83FFFFFF, 0xFFFFFFFF }, -	{ E1000_MTA,	   0, 128,TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ 0, 0, 0, 0 } -}; - -/* 82575 register test */ -static struct igb_reg_test reg_test_82575[] = { -	{ E1000_FCAL,      0x100, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_FCAH,      0x100, 1, PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_FCT,       0x100, 1, PATTERN_TEST, 0x0000FFFF, 0xFFFFFFFF }, -	{ E1000_VET,       0x100, 1, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDBAL(0),  0x100, 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_RDBAH(0),  0x100, 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RDLEN(0),  0x100, 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, -	/* Enable all four RX queues before testing. */ -	{ E1000_RXDCTL(0), 0x100, 4, WRITE_NO_TEST, 0, E1000_RXDCTL_QUEUE_ENABLE }, -	/* RDH is read-only for 82575, only test RDT. */ -	{ E1000_RDT(0),    0x100, 4, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_RXDCTL(0), 0x100, 4, WRITE_NO_TEST, 0, 0 }, -	{ E1000_FCRTH,     0x100, 1, PATTERN_TEST, 0x0000FFF0, 0x0000FFF0 }, -	{ E1000_FCTTV,     0x100, 1, PATTERN_TEST, 0x0000FFFF, 0x0000FFFF }, -	{ E1000_TIPG,      0x100, 1, PATTERN_TEST, 0x3FFFFFFF, 0x3FFFFFFF }, -	{ E1000_TDBAL(0),  0x100, 4, PATTERN_TEST, 0xFFFFFF80, 0xFFFFFFFF }, -	{ E1000_TDBAH(0),  0x100, 4, PATTERN_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_TDLEN(0),  0x100, 4, PATTERN_TEST, 0x000FFF80, 0x000FFFFF }, -	{ E1000_RCTL,      0x100, 1, SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_RCTL,      0x100, 1, SET_READ_TEST, 0x04CFB3FE, 0x003FFFFB }, -	{ E1000_RCTL,      0x100, 1, SET_READ_TEST, 0x04CFB3FE, 0xFFFFFFFF }, -	{ E1000_TCTL,      0x100, 1, SET_READ_TEST, 0xFFFFFFFF, 0x00000000 }, -	{ E1000_TXCW,      0x100, 1, PATTERN_TEST, 0xC000FFFF, 0x0000FFFF }, -	{ E1000_RA,        0, 16, TABLE64_TEST_LO, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ E1000_RA,        0, 16, TABLE64_TEST_HI, 0x800FFFFF, 0xFFFFFFFF }, -	{ E1000_MTA,       0, 128, TABLE32_TEST, 0xFFFFFFFF, 0xFFFFFFFF }, -	{ 0, 0, 0, 0 } -}; - -static bool reg_pattern_test(struct igb_adapter *adapter, u64 *data, -			     int reg, u32 mask, u32 write) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 pat, val; -	static const u32 _test[] = -		{0x5A5A5A5A, 0xA5A5A5A5, 0x00000000, 0xFFFFFFFF}; -	for (pat = 0; pat < ARRAY_SIZE(_test); pat++) { -		wr32(reg, (_test[pat] & write)); -		val = rd32(reg); -		if (val != (_test[pat] & write & mask)) { -			dev_err(&adapter->pdev->dev, "pattern test reg %04X " -				"failed: got 0x%08X expected 0x%08X\n", -				reg, val, (_test[pat] & write & mask)); -			*data = reg; -			return 1; -		} -	} - -	return 0; -} - -static bool reg_set_and_check(struct igb_adapter *adapter, u64 *data, -			      int reg, u32 mask, u32 write) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 val; -	wr32(reg, write & mask); -	val = rd32(reg); -	if ((write & mask) != (val & mask)) { -		dev_err(&adapter->pdev->dev, "set/check reg %04X test failed:" -			" got 0x%08X expected 0x%08X\n", reg, -			(val & mask), (write & mask)); -		*data = reg; -		return 1; -	} - -	return 0; -} - -#define REG_PATTERN_TEST(reg, mask, write) \ -	do { \ -		if (reg_pattern_test(adapter, data, reg, mask, write)) \ -			return 1; \ -	} while (0) - -#define REG_SET_AND_CHECK(reg, mask, write) \ -	do { \ -		if (reg_set_and_check(adapter, data, reg, mask, write)) \ -			return 1; \ -	} while (0) - -static int igb_reg_test(struct igb_adapter *adapter, u64 *data) -{ -	struct e1000_hw *hw = &adapter->hw; -	struct igb_reg_test *test; -	u32 value, before, after; -	u32 i, toggle; - -	switch (adapter->hw.mac.type) { -	case e1000_i350: -		test = reg_test_i350; -		toggle = 0x7FEFF3FF; -		break; -	case e1000_82580: -		test = reg_test_82580; -		toggle = 0x7FEFF3FF; -		break; -	case e1000_82576: -		test = reg_test_82576; -		toggle = 0x7FFFF3FF; -		break; -	default: -		test = reg_test_82575; -		toggle = 0x7FFFF3FF; -		break; -	} - -	/* Because the status register is such a special case, -	 * we handle it separately from the rest of the register -	 * tests.  Some bits are read-only, some toggle, and some -	 * are writable on newer MACs. -	 */ -	before = rd32(E1000_STATUS); -	value = (rd32(E1000_STATUS) & toggle); -	wr32(E1000_STATUS, toggle); -	after = rd32(E1000_STATUS) & toggle; -	if (value != after) { -		dev_err(&adapter->pdev->dev, "failed STATUS register test " -			"got: 0x%08X expected: 0x%08X\n", after, value); -		*data = 1; -		return 1; -	} -	/* restore previous status */ -	wr32(E1000_STATUS, before); - -	/* Perform the remainder of the register test, looping through -	 * the test table until we either fail or reach the null entry. -	 */ -	while (test->reg) { -		for (i = 0; i < test->array_len; i++) { -			switch (test->test_type) { -			case PATTERN_TEST: -				REG_PATTERN_TEST(test->reg + -						(i * test->reg_offset), -						test->mask, -						test->write); -				break; -			case SET_READ_TEST: -				REG_SET_AND_CHECK(test->reg + -						(i * test->reg_offset), -						test->mask, -						test->write); -				break; -			case WRITE_NO_TEST: -				writel(test->write, -				    (adapter->hw.hw_addr + test->reg) -					+ (i * test->reg_offset)); -				break; -			case TABLE32_TEST: -				REG_PATTERN_TEST(test->reg + (i * 4), -						test->mask, -						test->write); -				break; -			case TABLE64_TEST_LO: -				REG_PATTERN_TEST(test->reg + (i * 8), -						test->mask, -						test->write); -				break; -			case TABLE64_TEST_HI: -				REG_PATTERN_TEST((test->reg + 4) + (i * 8), -						test->mask, -						test->write); -				break; -			} -		} -		test++; -	} - -	*data = 0; -	return 0; -} - -static int igb_eeprom_test(struct igb_adapter *adapter, u64 *data) -{ -	u16 temp; -	u16 checksum = 0; -	u16 i; - -	*data = 0; -	/* Read and add up the contents of the EEPROM */ -	for (i = 0; i < (NVM_CHECKSUM_REG + 1); i++) { -		if ((adapter->hw.nvm.ops.read(&adapter->hw, i, 1, &temp)) < 0) { -			*data = 1; -			break; -		} -		checksum += temp; -	} - -	/* If Checksum is not Correct return error else test passed */ -	if ((checksum != (u16) NVM_SUM) && !(*data)) -		*data = 2; - -	return *data; -} - -static irqreturn_t igb_test_intr(int irq, void *data) -{ -	struct igb_adapter *adapter = (struct igb_adapter *) data; -	struct e1000_hw *hw = &adapter->hw; - -	adapter->test_icr |= rd32(E1000_ICR); - -	return IRQ_HANDLED; -} - -static int igb_intr_test(struct igb_adapter *adapter, u64 *data) -{ -	struct e1000_hw *hw = &adapter->hw; -	struct net_device *netdev = adapter->netdev; -	u32 mask, ics_mask, i = 0, shared_int = true; -	u32 irq = adapter->pdev->irq; - -	*data = 0; - -	/* Hook up test interrupt handler just for this test */ -	if (adapter->msix_entries) { -		if (request_irq(adapter->msix_entries[0].vector, -		                igb_test_intr, 0, netdev->name, adapter)) { -			*data = 1; -			return -1; -		} -	} else if (adapter->flags & IGB_FLAG_HAS_MSI) { -		shared_int = false; -		if (request_irq(irq, -		                igb_test_intr, 0, netdev->name, adapter)) { -			*data = 1; -			return -1; -		} -	} else if (!request_irq(irq, igb_test_intr, IRQF_PROBE_SHARED, -				netdev->name, adapter)) { -		shared_int = false; -	} else if (request_irq(irq, igb_test_intr, IRQF_SHARED, -		 netdev->name, adapter)) { -		*data = 1; -		return -1; -	} -	dev_info(&adapter->pdev->dev, "testing %s interrupt\n", -		(shared_int ? "shared" : "unshared")); - -	/* Disable all the interrupts */ -	wr32(E1000_IMC, ~0); -	msleep(10); - -	/* Define all writable bits for ICS */ -	switch (hw->mac.type) { -	case e1000_82575: -		ics_mask = 0x37F47EDD; -		break; -	case e1000_82576: -		ics_mask = 0x77D4FBFD; -		break; -	case e1000_82580: -		ics_mask = 0x77DCFED5; -		break; -	case e1000_i350: -		ics_mask = 0x77DCFED5; -		break; -	default: -		ics_mask = 0x7FFFFFFF; -		break; -	} - -	/* Test each interrupt */ -	for (; i < 31; i++) { -		/* Interrupt to test */ -		mask = 1 << i; - -		if (!(mask & ics_mask)) -			continue; - -		if (!shared_int) { -			/* Disable the interrupt to be reported in -			 * the cause register and then force the same -			 * interrupt and see if one gets posted.  If -			 * an interrupt was posted to the bus, the -			 * test failed. -			 */ -			adapter->test_icr = 0; - -			/* Flush any pending interrupts */ -			wr32(E1000_ICR, ~0); - -			wr32(E1000_IMC, mask); -			wr32(E1000_ICS, mask); -			msleep(10); - -			if (adapter->test_icr & mask) { -				*data = 3; -				break; -			} -		} - -		/* Enable the interrupt to be reported in -		 * the cause register and then force the same -		 * interrupt and see if one gets posted.  If -		 * an interrupt was not posted to the bus, the -		 * test failed. -		 */ -		adapter->test_icr = 0; - -		/* Flush any pending interrupts */ -		wr32(E1000_ICR, ~0); - -		wr32(E1000_IMS, mask); -		wr32(E1000_ICS, mask); -		msleep(10); - -		if (!(adapter->test_icr & mask)) { -			*data = 4; -			break; -		} - -		if (!shared_int) { -			/* Disable the other interrupts to be reported in -			 * the cause register and then force the other -			 * interrupts and see if any get posted.  If -			 * an interrupt was posted to the bus, the -			 * test failed. -			 */ -			adapter->test_icr = 0; - -			/* Flush any pending interrupts */ -			wr32(E1000_ICR, ~0); - -			wr32(E1000_IMC, ~mask); -			wr32(E1000_ICS, ~mask); -			msleep(10); - -			if (adapter->test_icr & mask) { -				*data = 5; -				break; -			} -		} -	} - -	/* Disable all the interrupts */ -	wr32(E1000_IMC, ~0); -	msleep(10); - -	/* Unhook test interrupt handler */ -	if (adapter->msix_entries) -		free_irq(adapter->msix_entries[0].vector, adapter); -	else -		free_irq(irq, adapter); - -	return *data; -} - -static void igb_free_desc_rings(struct igb_adapter *adapter) -{ -	igb_free_tx_resources(&adapter->test_tx_ring); -	igb_free_rx_resources(&adapter->test_rx_ring); -} - -static int igb_setup_desc_rings(struct igb_adapter *adapter) -{ -	struct igb_ring *tx_ring = &adapter->test_tx_ring; -	struct igb_ring *rx_ring = &adapter->test_rx_ring; -	struct e1000_hw *hw = &adapter->hw; -	int ret_val; - -	/* Setup Tx descriptor ring and Tx buffers */ -	tx_ring->count = IGB_DEFAULT_TXD; -	tx_ring->dev = &adapter->pdev->dev; -	tx_ring->netdev = adapter->netdev; -	tx_ring->reg_idx = adapter->vfs_allocated_count; - -	if (igb_setup_tx_resources(tx_ring)) { -		ret_val = 1; -		goto err_nomem; -	} - -	igb_setup_tctl(adapter); -	igb_configure_tx_ring(adapter, tx_ring); - -	/* Setup Rx descriptor ring and Rx buffers */ -	rx_ring->count = IGB_DEFAULT_RXD; -	rx_ring->dev = &adapter->pdev->dev; -	rx_ring->netdev = adapter->netdev; -	rx_ring->rx_buffer_len = IGB_RXBUFFER_2048; -	rx_ring->reg_idx = adapter->vfs_allocated_count; - -	if (igb_setup_rx_resources(rx_ring)) { -		ret_val = 3; -		goto err_nomem; -	} - -	/* set the default queue to queue 0 of PF */ -	wr32(E1000_MRQC, adapter->vfs_allocated_count << 3); - -	/* enable receive ring */ -	igb_setup_rctl(adapter); -	igb_configure_rx_ring(adapter, rx_ring); - -	igb_alloc_rx_buffers_adv(rx_ring, igb_desc_unused(rx_ring)); - -	return 0; - -err_nomem: -	igb_free_desc_rings(adapter); -	return ret_val; -} - -static void igb_phy_disable_receiver(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; - -	/* Write out to PHY registers 29 and 30 to disable the Receiver. */ -	igb_write_phy_reg(hw, 29, 0x001F); -	igb_write_phy_reg(hw, 30, 0x8FFC); -	igb_write_phy_reg(hw, 29, 0x001A); -	igb_write_phy_reg(hw, 30, 0x8FF0); -} - -static int igb_integrated_phy_loopback(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 ctrl_reg = 0; - -	hw->mac.autoneg = false; - -	if (hw->phy.type == e1000_phy_m88) { -		/* Auto-MDI/MDIX Off */ -		igb_write_phy_reg(hw, M88E1000_PHY_SPEC_CTRL, 0x0808); -		/* reset to update Auto-MDI/MDIX */ -		igb_write_phy_reg(hw, PHY_CONTROL, 0x9140); -		/* autoneg off */ -		igb_write_phy_reg(hw, PHY_CONTROL, 0x8140); -	} else if (hw->phy.type == e1000_phy_82580) { -		/* enable MII loopback */ -		igb_write_phy_reg(hw, I82580_PHY_LBK_CTRL, 0x8041); -	} - -	ctrl_reg = rd32(E1000_CTRL); - -	/* force 1000, set loopback */ -	igb_write_phy_reg(hw, PHY_CONTROL, 0x4140); - -	/* Now set up the MAC to the same speed/duplex as the PHY. */ -	ctrl_reg = rd32(E1000_CTRL); -	ctrl_reg &= ~E1000_CTRL_SPD_SEL; /* Clear the speed sel bits */ -	ctrl_reg |= (E1000_CTRL_FRCSPD | /* Set the Force Speed Bit */ -		     E1000_CTRL_FRCDPX | /* Set the Force Duplex Bit */ -		     E1000_CTRL_SPD_1000 |/* Force Speed to 1000 */ -		     E1000_CTRL_FD |	 /* Force Duplex to FULL */ -		     E1000_CTRL_SLU);	 /* Set link up enable bit */ - -	if (hw->phy.type == e1000_phy_m88) -		ctrl_reg |= E1000_CTRL_ILOS; /* Invert Loss of Signal */ - -	wr32(E1000_CTRL, ctrl_reg); - -	/* Disable the receiver on the PHY so when a cable is plugged in, the -	 * PHY does not begin to autoneg when a cable is reconnected to the NIC. -	 */ -	if (hw->phy.type == e1000_phy_m88) -		igb_phy_disable_receiver(adapter); - -	udelay(500); - -	return 0; -} - -static int igb_set_phy_loopback(struct igb_adapter *adapter) -{ -	return igb_integrated_phy_loopback(adapter); -} - -static int igb_setup_loopback_test(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 reg; - -	reg = rd32(E1000_CTRL_EXT); - -	/* use CTRL_EXT to identify link type as SGMII can appear as copper */ -	if (reg & E1000_CTRL_EXT_LINK_MODE_MASK) { -		reg = rd32(E1000_RCTL); -		reg |= E1000_RCTL_LBM_TCVR; -		wr32(E1000_RCTL, reg); - -		wr32(E1000_SCTL, E1000_ENABLE_SERDES_LOOPBACK); - -		reg = rd32(E1000_CTRL); -		reg &= ~(E1000_CTRL_RFCE | -			 E1000_CTRL_TFCE | -			 E1000_CTRL_LRST); -		reg |= E1000_CTRL_SLU | -		       E1000_CTRL_FD; -		wr32(E1000_CTRL, reg); - -		/* Unset switch control to serdes energy detect */ -		reg = rd32(E1000_CONNSW); -		reg &= ~E1000_CONNSW_ENRGSRC; -		wr32(E1000_CONNSW, reg); - -		/* Set PCS register for forced speed */ -		reg = rd32(E1000_PCS_LCTL); -		reg &= ~E1000_PCS_LCTL_AN_ENABLE;     /* Disable Autoneg*/ -		reg |= E1000_PCS_LCTL_FLV_LINK_UP |   /* Force link up */ -		       E1000_PCS_LCTL_FSV_1000 |      /* Force 1000    */ -		       E1000_PCS_LCTL_FDV_FULL |      /* SerDes Full duplex */ -		       E1000_PCS_LCTL_FSD |           /* Force Speed */ -		       E1000_PCS_LCTL_FORCE_LINK;     /* Force Link */ -		wr32(E1000_PCS_LCTL, reg); - -		return 0; -	} - -	return igb_set_phy_loopback(adapter); -} - -static void igb_loopback_cleanup(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 rctl; -	u16 phy_reg; - -	rctl = rd32(E1000_RCTL); -	rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC); -	wr32(E1000_RCTL, rctl); - -	hw->mac.autoneg = true; -	igb_read_phy_reg(hw, PHY_CONTROL, &phy_reg); -	if (phy_reg & MII_CR_LOOPBACK) { -		phy_reg &= ~MII_CR_LOOPBACK; -		igb_write_phy_reg(hw, PHY_CONTROL, phy_reg); -		igb_phy_sw_reset(hw); -	} -} - -static void igb_create_lbtest_frame(struct sk_buff *skb, -				    unsigned int frame_size) -{ -	memset(skb->data, 0xFF, frame_size); -	frame_size /= 2; -	memset(&skb->data[frame_size], 0xAA, frame_size - 1); -	memset(&skb->data[frame_size + 10], 0xBE, 1); -	memset(&skb->data[frame_size + 12], 0xAF, 1); -} - -static int igb_check_lbtest_frame(struct sk_buff *skb, unsigned int frame_size) -{ -	frame_size /= 2; -	if (*(skb->data + 3) == 0xFF) { -		if ((*(skb->data + frame_size + 10) == 0xBE) && -		   (*(skb->data + frame_size + 12) == 0xAF)) { -			return 0; -		} -	} -	return 13; -} - -static int igb_clean_test_rings(struct igb_ring *rx_ring, -                                struct igb_ring *tx_ring, -                                unsigned int size) -{ -	union e1000_adv_rx_desc *rx_desc; -	struct igb_buffer *buffer_info; -	int rx_ntc, tx_ntc, count = 0; -	u32 staterr; - -	/* initialize next to clean and descriptor values */ -	rx_ntc = rx_ring->next_to_clean; -	tx_ntc = tx_ring->next_to_clean; -	rx_desc = E1000_RX_DESC_ADV(*rx_ring, rx_ntc); -	staterr = le32_to_cpu(rx_desc->wb.upper.status_error); - -	while (staterr & E1000_RXD_STAT_DD) { -		/* check rx buffer */ -		buffer_info = &rx_ring->buffer_info[rx_ntc]; - -		/* unmap rx buffer, will be remapped by alloc_rx_buffers */ -		dma_unmap_single(rx_ring->dev, -		                 buffer_info->dma, -				 rx_ring->rx_buffer_len, -				 DMA_FROM_DEVICE); -		buffer_info->dma = 0; - -		/* verify contents of skb */ -		if (!igb_check_lbtest_frame(buffer_info->skb, size)) -			count++; - -		/* unmap buffer on tx side */ -		buffer_info = &tx_ring->buffer_info[tx_ntc]; -		igb_unmap_and_free_tx_resource(tx_ring, buffer_info); - -		/* increment rx/tx next to clean counters */ -		rx_ntc++; -		if (rx_ntc == rx_ring->count) -			rx_ntc = 0; -		tx_ntc++; -		if (tx_ntc == tx_ring->count) -			tx_ntc = 0; - -		/* fetch next descriptor */ -		rx_desc = E1000_RX_DESC_ADV(*rx_ring, rx_ntc); -		staterr = le32_to_cpu(rx_desc->wb.upper.status_error); -	} - -	/* re-map buffers to ring, store next to clean values */ -	igb_alloc_rx_buffers_adv(rx_ring, count); -	rx_ring->next_to_clean = rx_ntc; -	tx_ring->next_to_clean = tx_ntc; - -	return count; -} - -static int igb_run_loopback_test(struct igb_adapter *adapter) -{ -	struct igb_ring *tx_ring = &adapter->test_tx_ring; -	struct igb_ring *rx_ring = &adapter->test_rx_ring; -	int i, j, lc, good_cnt, ret_val = 0; -	unsigned int size = 1024; -	netdev_tx_t tx_ret_val; -	struct sk_buff *skb; - -	/* allocate test skb */ -	skb = alloc_skb(size, GFP_KERNEL); -	if (!skb) -		return 11; - -	/* place data into test skb */ -	igb_create_lbtest_frame(skb, size); -	skb_put(skb, size); - -	/* -	 * Calculate the loop count based on the largest descriptor ring -	 * The idea is to wrap the largest ring a number of times using 64 -	 * send/receive pairs during each loop -	 */ - -	if (rx_ring->count <= tx_ring->count) -		lc = ((tx_ring->count / 64) * 2) + 1; -	else -		lc = ((rx_ring->count / 64) * 2) + 1; - -	for (j = 0; j <= lc; j++) { /* loop count loop */ -		/* reset count of good packets */ -		good_cnt = 0; - -		/* place 64 packets on the transmit queue*/ -		for (i = 0; i < 64; i++) { -			skb_get(skb); -			tx_ret_val = igb_xmit_frame_ring_adv(skb, tx_ring); -			if (tx_ret_val == NETDEV_TX_OK) -				good_cnt++; -		} - -		if (good_cnt != 64) { -			ret_val = 12; -			break; -		} - -		/* allow 200 milliseconds for packets to go from tx to rx */ -		msleep(200); - -		good_cnt = igb_clean_test_rings(rx_ring, tx_ring, size); -		if (good_cnt != 64) { -			ret_val = 13; -			break; -		} -	} /* end loop count loop */ - -	/* free the original skb */ -	kfree_skb(skb); - -	return ret_val; -} - -static int igb_loopback_test(struct igb_adapter *adapter, u64 *data) -{ -	/* PHY loopback cannot be performed if SoL/IDER -	 * sessions are active */ -	if (igb_check_reset_block(&adapter->hw)) { -		dev_err(&adapter->pdev->dev, -			"Cannot do PHY loopback test " -			"when SoL/IDER is active.\n"); -		*data = 0; -		goto out; -	} -	*data = igb_setup_desc_rings(adapter); -	if (*data) -		goto out; -	*data = igb_setup_loopback_test(adapter); -	if (*data) -		goto err_loopback; -	*data = igb_run_loopback_test(adapter); -	igb_loopback_cleanup(adapter); - -err_loopback: -	igb_free_desc_rings(adapter); -out: -	return *data; -} - -static int igb_link_test(struct igb_adapter *adapter, u64 *data) -{ -	struct e1000_hw *hw = &adapter->hw; -	*data = 0; -	if (hw->phy.media_type == e1000_media_type_internal_serdes) { -		int i = 0; -		hw->mac.serdes_has_link = false; - -		/* On some blade server designs, link establishment -		 * could take as long as 2-3 minutes */ -		do { -			hw->mac.ops.check_for_link(&adapter->hw); -			if (hw->mac.serdes_has_link) -				return *data; -			msleep(20); -		} while (i++ < 3750); - -		*data = 1; -	} else { -		hw->mac.ops.check_for_link(&adapter->hw); -		if (hw->mac.autoneg) -			msleep(4000); - -		if (!(rd32(E1000_STATUS) & E1000_STATUS_LU)) -			*data = 1; -	} -	return *data; -} - -static void igb_diag_test(struct net_device *netdev, -			  struct ethtool_test *eth_test, u64 *data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	u16 autoneg_advertised; -	u8 forced_speed_duplex, autoneg; -	bool if_running = netif_running(netdev); - -	set_bit(__IGB_TESTING, &adapter->state); -	if (eth_test->flags == ETH_TEST_FL_OFFLINE) { -		/* Offline tests */ - -		/* save speed, duplex, autoneg settings */ -		autoneg_advertised = adapter->hw.phy.autoneg_advertised; -		forced_speed_duplex = adapter->hw.mac.forced_speed_duplex; -		autoneg = adapter->hw.mac.autoneg; - -		dev_info(&adapter->pdev->dev, "offline testing starting\n"); - -		/* power up link for link test */ -		igb_power_up_link(adapter); - -		/* Link test performed before hardware reset so autoneg doesn't -		 * interfere with test result */ -		if (igb_link_test(adapter, &data[4])) -			eth_test->flags |= ETH_TEST_FL_FAILED; - -		if (if_running) -			/* indicate we're in test mode */ -			dev_close(netdev); -		else -			igb_reset(adapter); - -		if (igb_reg_test(adapter, &data[0])) -			eth_test->flags |= ETH_TEST_FL_FAILED; - -		igb_reset(adapter); -		if (igb_eeprom_test(adapter, &data[1])) -			eth_test->flags |= ETH_TEST_FL_FAILED; - -		igb_reset(adapter); -		if (igb_intr_test(adapter, &data[2])) -			eth_test->flags |= ETH_TEST_FL_FAILED; - -		igb_reset(adapter); -		/* power up link for loopback test */ -		igb_power_up_link(adapter); -		if (igb_loopback_test(adapter, &data[3])) -			eth_test->flags |= ETH_TEST_FL_FAILED; - -		/* restore speed, duplex, autoneg settings */ -		adapter->hw.phy.autoneg_advertised = autoneg_advertised; -		adapter->hw.mac.forced_speed_duplex = forced_speed_duplex; -		adapter->hw.mac.autoneg = autoneg; - -		/* force this routine to wait until autoneg complete/timeout */ -		adapter->hw.phy.autoneg_wait_to_complete = true; -		igb_reset(adapter); -		adapter->hw.phy.autoneg_wait_to_complete = false; - -		clear_bit(__IGB_TESTING, &adapter->state); -		if (if_running) -			dev_open(netdev); -	} else { -		dev_info(&adapter->pdev->dev, "online testing starting\n"); - -		/* PHY is powered down when interface is down */ -		if (if_running && igb_link_test(adapter, &data[4])) -			eth_test->flags |= ETH_TEST_FL_FAILED; -		else -			data[4] = 0; - -		/* Online tests aren't run; pass by default */ -		data[0] = 0; -		data[1] = 0; -		data[2] = 0; -		data[3] = 0; - -		clear_bit(__IGB_TESTING, &adapter->state); -	} -	msleep_interruptible(4 * 1000); -} - -static int igb_wol_exclusion(struct igb_adapter *adapter, -			     struct ethtool_wolinfo *wol) -{ -	struct e1000_hw *hw = &adapter->hw; -	int retval = 1; /* fail by default */ - -	switch (hw->device_id) { -	case E1000_DEV_ID_82575GB_QUAD_COPPER: -		/* WoL not supported */ -		wol->supported = 0; -		break; -	case E1000_DEV_ID_82575EB_FIBER_SERDES: -	case E1000_DEV_ID_82576_FIBER: -	case E1000_DEV_ID_82576_SERDES: -		/* Wake events not supported on port B */ -		if (rd32(E1000_STATUS) & E1000_STATUS_FUNC_1) { -			wol->supported = 0; -			break; -		} -		/* return success for non excluded adapter ports */ -		retval = 0; -		break; -	case E1000_DEV_ID_82576_QUAD_COPPER: -	case E1000_DEV_ID_82576_QUAD_COPPER_ET2: -		/* quad port adapters only support WoL on port A */ -		if (!(adapter->flags & IGB_FLAG_QUAD_PORT_A)) { -			wol->supported = 0; -			break; -		} -		/* return success for non excluded adapter ports */ -		retval = 0; -		break; -	default: -		/* dual port cards only support WoL on port A from now on -		 * unless it was enabled in the eeprom for port B -		 * so exclude FUNC_1 ports from having WoL enabled */ -		if ((rd32(E1000_STATUS) & E1000_STATUS_FUNC_MASK) && -		    !adapter->eeprom_wol) { -			wol->supported = 0; -			break; -		} - -		retval = 0; -	} - -	return retval; -} - -static void igb_get_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	wol->supported = WAKE_UCAST | WAKE_MCAST | -	                 WAKE_BCAST | WAKE_MAGIC | -	                 WAKE_PHY; -	wol->wolopts = 0; - -	/* this function will set ->supported = 0 and return 1 if wol is not -	 * supported by this hardware */ -	if (igb_wol_exclusion(adapter, wol) || -	    !device_can_wakeup(&adapter->pdev->dev)) -		return; - -	/* apply any specific unsupported masks here */ -	switch (adapter->hw.device_id) { -	default: -		break; -	} - -	if (adapter->wol & E1000_WUFC_EX) -		wol->wolopts |= WAKE_UCAST; -	if (adapter->wol & E1000_WUFC_MC) -		wol->wolopts |= WAKE_MCAST; -	if (adapter->wol & E1000_WUFC_BC) -		wol->wolopts |= WAKE_BCAST; -	if (adapter->wol & E1000_WUFC_MAG) -		wol->wolopts |= WAKE_MAGIC; -	if (adapter->wol & E1000_WUFC_LNKC) -		wol->wolopts |= WAKE_PHY; -} - -static int igb_set_wol(struct net_device *netdev, struct ethtool_wolinfo *wol) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	if (wol->wolopts & (WAKE_ARP | WAKE_MAGICSECURE)) -		return -EOPNOTSUPP; - -	if (igb_wol_exclusion(adapter, wol) || -	    !device_can_wakeup(&adapter->pdev->dev)) -		return wol->wolopts ? -EOPNOTSUPP : 0; - -	/* these settings will always override what we currently have */ -	adapter->wol = 0; - -	if (wol->wolopts & WAKE_UCAST) -		adapter->wol |= E1000_WUFC_EX; -	if (wol->wolopts & WAKE_MCAST) -		adapter->wol |= E1000_WUFC_MC; -	if (wol->wolopts & WAKE_BCAST) -		adapter->wol |= E1000_WUFC_BC; -	if (wol->wolopts & WAKE_MAGIC) -		adapter->wol |= E1000_WUFC_MAG; -	if (wol->wolopts & WAKE_PHY) -		adapter->wol |= E1000_WUFC_LNKC; -	device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); - -	return 0; -} - -/* bit defines for adapter->led_status */ -#define IGB_LED_ON		0 - -static int igb_phys_id(struct net_device *netdev, u32 data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	unsigned long timeout; - -	timeout = data * 1000; - -	/* -	 *  msleep_interruptable only accepts unsigned int so we are limited -	 * in how long a duration we can wait -	 */ -	if (!timeout || timeout > UINT_MAX) -		timeout = UINT_MAX; - -	igb_blink_led(hw); -	msleep_interruptible(timeout); - -	igb_led_off(hw); -	clear_bit(IGB_LED_ON, &adapter->led_status); -	igb_cleanup_led(hw); - -	return 0; -} - -static int igb_set_coalesce(struct net_device *netdev, -			    struct ethtool_coalesce *ec) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	int i; - -	if ((ec->rx_coalesce_usecs > IGB_MAX_ITR_USECS) || -	    ((ec->rx_coalesce_usecs > 3) && -	     (ec->rx_coalesce_usecs < IGB_MIN_ITR_USECS)) || -	    (ec->rx_coalesce_usecs == 2)) -		return -EINVAL; - -	if ((ec->tx_coalesce_usecs > IGB_MAX_ITR_USECS) || -	    ((ec->tx_coalesce_usecs > 3) && -	     (ec->tx_coalesce_usecs < IGB_MIN_ITR_USECS)) || -	    (ec->tx_coalesce_usecs == 2)) -		return -EINVAL; - -	if ((adapter->flags & IGB_FLAG_QUEUE_PAIRS) && ec->tx_coalesce_usecs) -		return -EINVAL; - -	/* convert to rate of irq's per second */ -	if (ec->rx_coalesce_usecs && ec->rx_coalesce_usecs <= 3) -		adapter->rx_itr_setting = ec->rx_coalesce_usecs; -	else -		adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2; - -	/* convert to rate of irq's per second */ -	if (adapter->flags & IGB_FLAG_QUEUE_PAIRS) -		adapter->tx_itr_setting = adapter->rx_itr_setting; -	else if (ec->tx_coalesce_usecs && ec->tx_coalesce_usecs <= 3) -		adapter->tx_itr_setting = ec->tx_coalesce_usecs; -	else -		adapter->tx_itr_setting = ec->tx_coalesce_usecs << 2; - -	for (i = 0; i < adapter->num_q_vectors; i++) { -		struct igb_q_vector *q_vector = adapter->q_vector[i]; -		if (q_vector->rx_ring) -			q_vector->itr_val = adapter->rx_itr_setting; -		else -			q_vector->itr_val = adapter->tx_itr_setting; -		if (q_vector->itr_val && q_vector->itr_val <= 3) -			q_vector->itr_val = IGB_START_ITR; -		q_vector->set_itr = 1; -	} - -	return 0; -} - -static int igb_get_coalesce(struct net_device *netdev, -			    struct ethtool_coalesce *ec) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	if (adapter->rx_itr_setting <= 3) -		ec->rx_coalesce_usecs = adapter->rx_itr_setting; -	else -		ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2; - -	if (!(adapter->flags & IGB_FLAG_QUEUE_PAIRS)) { -		if (adapter->tx_itr_setting <= 3) -			ec->tx_coalesce_usecs = adapter->tx_itr_setting; -		else -			ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2; -	} - -	return 0; -} - -static int igb_nway_reset(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	if (netif_running(netdev)) -		igb_reinit_locked(adapter); -	return 0; -} - -static int igb_get_sset_count(struct net_device *netdev, int sset) -{ -	switch (sset) { -	case ETH_SS_STATS: -		return IGB_STATS_LEN; -	case ETH_SS_TEST: -		return IGB_TEST_LEN; -	default: -		return -ENOTSUPP; -	} -} - -static void igb_get_ethtool_stats(struct net_device *netdev, -				  struct ethtool_stats *stats, u64 *data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct rtnl_link_stats64 *net_stats = &adapter->stats64; -	unsigned int start; -	struct igb_ring *ring; -	int i, j; -	char *p; - -	spin_lock(&adapter->stats64_lock); -	igb_update_stats(adapter, net_stats); - -	for (i = 0; i < IGB_GLOBAL_STATS_LEN; i++) { -		p = (char *)adapter + igb_gstrings_stats[i].stat_offset; -		data[i] = (igb_gstrings_stats[i].sizeof_stat == -			sizeof(u64)) ? *(u64 *)p : *(u32 *)p; -	} -	for (j = 0; j < IGB_NETDEV_STATS_LEN; j++, i++) { -		p = (char *)net_stats + igb_gstrings_net_stats[j].stat_offset; -		data[i] = (igb_gstrings_net_stats[j].sizeof_stat == -			sizeof(u64)) ? *(u64 *)p : *(u32 *)p; -	} -	for (j = 0; j < adapter->num_tx_queues; j++) { -		u64	restart2; - -		ring = adapter->tx_ring[j]; -		do { -			start = u64_stats_fetch_begin_bh(&ring->tx_syncp); -			data[i]   = ring->tx_stats.packets; -			data[i+1] = ring->tx_stats.bytes; -			data[i+2] = ring->tx_stats.restart_queue; -		} while (u64_stats_fetch_retry_bh(&ring->tx_syncp, start)); -		do { -			start = u64_stats_fetch_begin_bh(&ring->tx_syncp2); -			restart2  = ring->tx_stats.restart_queue2; -		} while (u64_stats_fetch_retry_bh(&ring->tx_syncp2, start)); -		data[i+2] += restart2; - -		i += IGB_TX_QUEUE_STATS_LEN; -	} -	for (j = 0; j < adapter->num_rx_queues; j++) { -		ring = adapter->rx_ring[j]; -		do { -			start = u64_stats_fetch_begin_bh(&ring->rx_syncp); -			data[i]   = ring->rx_stats.packets; -			data[i+1] = ring->rx_stats.bytes; -			data[i+2] = ring->rx_stats.drops; -			data[i+3] = ring->rx_stats.csum_err; -			data[i+4] = ring->rx_stats.alloc_failed; -		} while (u64_stats_fetch_retry_bh(&ring->rx_syncp, start)); -		i += IGB_RX_QUEUE_STATS_LEN; -	} -	spin_unlock(&adapter->stats64_lock); -} - -static void igb_get_strings(struct net_device *netdev, u32 stringset, u8 *data) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	u8 *p = data; -	int i; - -	switch (stringset) { -	case ETH_SS_TEST: -		memcpy(data, *igb_gstrings_test, -			IGB_TEST_LEN*ETH_GSTRING_LEN); -		break; -	case ETH_SS_STATS: -		for (i = 0; i < IGB_GLOBAL_STATS_LEN; i++) { -			memcpy(p, igb_gstrings_stats[i].stat_string, -			       ETH_GSTRING_LEN); -			p += ETH_GSTRING_LEN; -		} -		for (i = 0; i < IGB_NETDEV_STATS_LEN; i++) { -			memcpy(p, igb_gstrings_net_stats[i].stat_string, -			       ETH_GSTRING_LEN); -			p += ETH_GSTRING_LEN; -		} -		for (i = 0; i < adapter->num_tx_queues; i++) { -			sprintf(p, "tx_queue_%u_packets", i); -			p += ETH_GSTRING_LEN; -			sprintf(p, "tx_queue_%u_bytes", i); -			p += ETH_GSTRING_LEN; -			sprintf(p, "tx_queue_%u_restart", i); -			p += ETH_GSTRING_LEN; -		} -		for (i = 0; i < adapter->num_rx_queues; i++) { -			sprintf(p, "rx_queue_%u_packets", i); -			p += ETH_GSTRING_LEN; -			sprintf(p, "rx_queue_%u_bytes", i); -			p += ETH_GSTRING_LEN; -			sprintf(p, "rx_queue_%u_drops", i); -			p += ETH_GSTRING_LEN; -			sprintf(p, "rx_queue_%u_csum_err", i); -			p += ETH_GSTRING_LEN; -			sprintf(p, "rx_queue_%u_alloc_failed", i); -			p += ETH_GSTRING_LEN; -		} -/*		BUG_ON(p - data != IGB_STATS_LEN * ETH_GSTRING_LEN); */ -		break; -	} -} - -static const struct ethtool_ops igb_ethtool_ops = { -	.get_settings           = igb_get_settings, -	.set_settings           = igb_set_settings, -	.get_drvinfo            = igb_get_drvinfo, -	.get_regs_len           = igb_get_regs_len, -	.get_regs               = igb_get_regs, -	.get_wol                = igb_get_wol, -	.set_wol                = igb_set_wol, -	.get_msglevel           = igb_get_msglevel, -	.set_msglevel           = igb_set_msglevel, -	.nway_reset             = igb_nway_reset, -	.get_link               = igb_get_link, -	.get_eeprom_len         = igb_get_eeprom_len, -	.get_eeprom             = igb_get_eeprom, -	.set_eeprom             = igb_set_eeprom, -	.get_ringparam          = igb_get_ringparam, -	.set_ringparam          = igb_set_ringparam, -	.get_pauseparam         = igb_get_pauseparam, -	.set_pauseparam         = igb_set_pauseparam, -	.get_rx_csum            = igb_get_rx_csum, -	.set_rx_csum            = igb_set_rx_csum, -	.get_tx_csum            = igb_get_tx_csum, -	.set_tx_csum            = igb_set_tx_csum, -	.get_sg                 = ethtool_op_get_sg, -	.set_sg                 = ethtool_op_set_sg, -	.get_tso                = ethtool_op_get_tso, -	.set_tso                = igb_set_tso, -	.self_test              = igb_diag_test, -	.get_strings            = igb_get_strings, -	.phys_id                = igb_phys_id, -	.get_sset_count         = igb_get_sset_count, -	.get_ethtool_stats      = igb_get_ethtool_stats, -	.get_coalesce           = igb_get_coalesce, -	.set_coalesce           = igb_set_coalesce, -}; - -void igb_set_ethtool_ops(struct net_device *netdev) -{ -	SET_ETHTOOL_OPS(netdev, &igb_ethtool_ops); -} diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c deleted file mode 100644 index 67ea262e482..00000000000 --- a/drivers/net/igb/igb_main.c +++ /dev/null @@ -1,6587 +0,0 @@ -/******************************************************************************* - -  Intel(R) Gigabit Ethernet Linux driver -  Copyright(c) 2007-2009 Intel Corporation. - -  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: -  e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> -  Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 - -*******************************************************************************/ - -#include <linux/module.h> -#include <linux/types.h> -#include <linux/init.h> -#include <linux/vmalloc.h> -#include <linux/pagemap.h> -#include <linux/netdevice.h> -#include <linux/ipv6.h> -#include <linux/slab.h> -#include <net/checksum.h> -#include <net/ip6_checksum.h> -#include <linux/net_tstamp.h> -#include <linux/mii.h> -#include <linux/ethtool.h> -#include <linux/if_vlan.h> -#include <linux/pci.h> -#include <linux/pci-aspm.h> -#include <linux/delay.h> -#include <linux/interrupt.h> -#include <linux/if_ether.h> -#include <linux/aer.h> -#ifdef CONFIG_IGB_DCA -#include <linux/dca.h> -#endif -#include "igb.h" - -#define DRV_VERSION "2.1.0-k2" -char igb_driver_name[] = "igb"; -char igb_driver_version[] = DRV_VERSION; -static const char igb_driver_string[] = -				"Intel(R) Gigabit Ethernet Network Driver"; -static const char igb_copyright[] = "Copyright (c) 2007-2009 Intel Corporation."; - -static const struct e1000_info *igb_info_tbl[] = { -	[board_82575] = &e1000_82575_info, -}; - -static DEFINE_PCI_DEVICE_TABLE(igb_pci_tbl) = { -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_COPPER), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_FIBER), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_SERDES), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_I350_SGMII), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_COPPER), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_FIBER), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_SERDES), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_SGMII), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82580_COPPER_DUAL), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_DH89XXCC_SGMII), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_DH89XXCC_SERDES), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_NS), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_NS_SERDES), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_FIBER), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_SERDES_QUAD), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_QUAD_COPPER_ET2), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82576_QUAD_COPPER), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_COPPER), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82575EB_FIBER_SERDES), board_82575 }, -	{ PCI_VDEVICE(INTEL, E1000_DEV_ID_82575GB_QUAD_COPPER), board_82575 }, -	/* required last entry */ -	{0, } -}; - -MODULE_DEVICE_TABLE(pci, igb_pci_tbl); - -void igb_reset(struct igb_adapter *); -static int igb_setup_all_tx_resources(struct igb_adapter *); -static int igb_setup_all_rx_resources(struct igb_adapter *); -static void igb_free_all_tx_resources(struct igb_adapter *); -static void igb_free_all_rx_resources(struct igb_adapter *); -static void igb_setup_mrqc(struct igb_adapter *); -static int igb_probe(struct pci_dev *, const struct pci_device_id *); -static void __devexit igb_remove(struct pci_dev *pdev); -static int igb_sw_init(struct igb_adapter *); -static int igb_open(struct net_device *); -static int igb_close(struct net_device *); -static void igb_configure_tx(struct igb_adapter *); -static void igb_configure_rx(struct igb_adapter *); -static void igb_clean_all_tx_rings(struct igb_adapter *); -static void igb_clean_all_rx_rings(struct igb_adapter *); -static void igb_clean_tx_ring(struct igb_ring *); -static void igb_clean_rx_ring(struct igb_ring *); -static void igb_set_rx_mode(struct net_device *); -static void igb_update_phy_info(unsigned long); -static void igb_watchdog(unsigned long); -static void igb_watchdog_task(struct work_struct *); -static netdev_tx_t igb_xmit_frame_adv(struct sk_buff *skb, struct net_device *); -static struct rtnl_link_stats64 *igb_get_stats64(struct net_device *dev, -						 struct rtnl_link_stats64 *stats); -static int igb_change_mtu(struct net_device *, int); -static int igb_set_mac(struct net_device *, void *); -static void igb_set_uta(struct igb_adapter *adapter); -static irqreturn_t igb_intr(int irq, void *); -static irqreturn_t igb_intr_msi(int irq, void *); -static irqreturn_t igb_msix_other(int irq, void *); -static irqreturn_t igb_msix_ring(int irq, void *); -#ifdef CONFIG_IGB_DCA -static void igb_update_dca(struct igb_q_vector *); -static void igb_setup_dca(struct igb_adapter *); -#endif /* CONFIG_IGB_DCA */ -static bool igb_clean_tx_irq(struct igb_q_vector *); -static int igb_poll(struct napi_struct *, int); -static bool igb_clean_rx_irq_adv(struct igb_q_vector *, int *, int); -static int igb_ioctl(struct net_device *, struct ifreq *, int cmd); -static void igb_tx_timeout(struct net_device *); -static void igb_reset_task(struct work_struct *); -static void igb_vlan_rx_register(struct net_device *, struct vlan_group *); -static void igb_vlan_rx_add_vid(struct net_device *, u16); -static void igb_vlan_rx_kill_vid(struct net_device *, u16); -static void igb_restore_vlan(struct igb_adapter *); -static void igb_rar_set_qsel(struct igb_adapter *, u8 *, u32 , u8); -static void igb_ping_all_vfs(struct igb_adapter *); -static void igb_msg_task(struct igb_adapter *); -static void igb_vmm_control(struct igb_adapter *); -static int igb_set_vf_mac(struct igb_adapter *, int, unsigned char *); -static void igb_restore_vf_multicasts(struct igb_adapter *adapter); -static int igb_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac); -static int igb_ndo_set_vf_vlan(struct net_device *netdev, -			       int vf, u16 vlan, u8 qos); -static int igb_ndo_set_vf_bw(struct net_device *netdev, int vf, int tx_rate); -static int igb_ndo_get_vf_config(struct net_device *netdev, int vf, -				 struct ifla_vf_info *ivi); - -#ifdef CONFIG_PM -static int igb_suspend(struct pci_dev *, pm_message_t); -static int igb_resume(struct pci_dev *); -#endif -static void igb_shutdown(struct pci_dev *); -#ifdef CONFIG_IGB_DCA -static int igb_notify_dca(struct notifier_block *, unsigned long, void *); -static struct notifier_block dca_notifier = { -	.notifier_call	= igb_notify_dca, -	.next		= NULL, -	.priority	= 0 -}; -#endif -#ifdef CONFIG_NET_POLL_CONTROLLER -/* for netdump / net console */ -static void igb_netpoll(struct net_device *); -#endif -#ifdef CONFIG_PCI_IOV -static unsigned int max_vfs = 0; -module_param(max_vfs, uint, 0); -MODULE_PARM_DESC(max_vfs, "Maximum number of virtual functions to allocate " -                 "per physical function"); -#endif /* CONFIG_PCI_IOV */ - -static pci_ers_result_t igb_io_error_detected(struct pci_dev *, -		     pci_channel_state_t); -static pci_ers_result_t igb_io_slot_reset(struct pci_dev *); -static void igb_io_resume(struct pci_dev *); - -static struct pci_error_handlers igb_err_handler = { -	.error_detected = igb_io_error_detected, -	.slot_reset = igb_io_slot_reset, -	.resume = igb_io_resume, -}; - - -static struct pci_driver igb_driver = { -	.name     = igb_driver_name, -	.id_table = igb_pci_tbl, -	.probe    = igb_probe, -	.remove   = __devexit_p(igb_remove), -#ifdef CONFIG_PM -	/* Power Managment Hooks */ -	.suspend  = igb_suspend, -	.resume   = igb_resume, -#endif -	.shutdown = igb_shutdown, -	.err_handler = &igb_err_handler -}; - -MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>"); -MODULE_DESCRIPTION("Intel(R) Gigabit Ethernet Network Driver"); -MODULE_LICENSE("GPL"); -MODULE_VERSION(DRV_VERSION); - -struct igb_reg_info { -	u32 ofs; -	char *name; -}; - -static const struct igb_reg_info igb_reg_info_tbl[] = { - -	/* General Registers */ -	{E1000_CTRL, "CTRL"}, -	{E1000_STATUS, "STATUS"}, -	{E1000_CTRL_EXT, "CTRL_EXT"}, - -	/* Interrupt Registers */ -	{E1000_ICR, "ICR"}, - -	/* RX Registers */ -	{E1000_RCTL, "RCTL"}, -	{E1000_RDLEN(0), "RDLEN"}, -	{E1000_RDH(0), "RDH"}, -	{E1000_RDT(0), "RDT"}, -	{E1000_RXDCTL(0), "RXDCTL"}, -	{E1000_RDBAL(0), "RDBAL"}, -	{E1000_RDBAH(0), "RDBAH"}, - -	/* TX Registers */ -	{E1000_TCTL, "TCTL"}, -	{E1000_TDBAL(0), "TDBAL"}, -	{E1000_TDBAH(0), "TDBAH"}, -	{E1000_TDLEN(0), "TDLEN"}, -	{E1000_TDH(0), "TDH"}, -	{E1000_TDT(0), "TDT"}, -	{E1000_TXDCTL(0), "TXDCTL"}, -	{E1000_TDFH, "TDFH"}, -	{E1000_TDFT, "TDFT"}, -	{E1000_TDFHS, "TDFHS"}, -	{E1000_TDFPC, "TDFPC"}, - -	/* List Terminator */ -	{} -}; - -/* - * igb_regdump - register printout routine - */ -static void igb_regdump(struct e1000_hw *hw, struct igb_reg_info *reginfo) -{ -	int n = 0; -	char rname[16]; -	u32 regs[8]; - -	switch (reginfo->ofs) { -	case E1000_RDLEN(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_RDLEN(n)); -		break; -	case E1000_RDH(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_RDH(n)); -		break; -	case E1000_RDT(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_RDT(n)); -		break; -	case E1000_RXDCTL(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_RXDCTL(n)); -		break; -	case E1000_RDBAL(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_RDBAL(n)); -		break; -	case E1000_RDBAH(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_RDBAH(n)); -		break; -	case E1000_TDBAL(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_RDBAL(n)); -		break; -	case E1000_TDBAH(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_TDBAH(n)); -		break; -	case E1000_TDLEN(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_TDLEN(n)); -		break; -	case E1000_TDH(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_TDH(n)); -		break; -	case E1000_TDT(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_TDT(n)); -		break; -	case E1000_TXDCTL(0): -		for (n = 0; n < 4; n++) -			regs[n] = rd32(E1000_TXDCTL(n)); -		break; -	default: -		printk(KERN_INFO "%-15s %08x\n", -			reginfo->name, rd32(reginfo->ofs)); -		return; -	} - -	snprintf(rname, 16, "%s%s", reginfo->name, "[0-3]"); -	printk(KERN_INFO "%-15s ", rname); -	for (n = 0; n < 4; n++) -		printk(KERN_CONT "%08x ", regs[n]); -	printk(KERN_CONT "\n"); -} - -/* - * igb_dump - Print registers, tx-rings and rx-rings - */ -static void igb_dump(struct igb_adapter *adapter) -{ -	struct net_device *netdev = adapter->netdev; -	struct e1000_hw *hw = &adapter->hw; -	struct igb_reg_info *reginfo; -	int n = 0; -	struct igb_ring *tx_ring; -	union e1000_adv_tx_desc *tx_desc; -	struct my_u0 { u64 a; u64 b; } *u0; -	struct igb_buffer *buffer_info; -	struct igb_ring *rx_ring; -	union e1000_adv_rx_desc *rx_desc; -	u32 staterr; -	int i = 0; - -	if (!netif_msg_hw(adapter)) -		return; - -	/* Print netdevice Info */ -	if (netdev) { -		dev_info(&adapter->pdev->dev, "Net device Info\n"); -		printk(KERN_INFO "Device Name     state            " -			"trans_start      last_rx\n"); -		printk(KERN_INFO "%-15s %016lX %016lX %016lX\n", -		netdev->name, -		netdev->state, -		netdev->trans_start, -		netdev->last_rx); -	} - -	/* Print Registers */ -	dev_info(&adapter->pdev->dev, "Register Dump\n"); -	printk(KERN_INFO " Register Name   Value\n"); -	for (reginfo = (struct igb_reg_info *)igb_reg_info_tbl; -	     reginfo->name; reginfo++) { -		igb_regdump(hw, reginfo); -	} - -	/* Print TX Ring Summary */ -	if (!netdev || !netif_running(netdev)) -		goto exit; - -	dev_info(&adapter->pdev->dev, "TX Rings Summary\n"); -	printk(KERN_INFO "Queue [NTU] [NTC] [bi(ntc)->dma  ]" -		" leng ntw timestamp\n"); -	for (n = 0; n < adapter->num_tx_queues; n++) { -		tx_ring = adapter->tx_ring[n]; -		buffer_info = &tx_ring->buffer_info[tx_ring->next_to_clean]; -		printk(KERN_INFO " %5d %5X %5X %016llX %04X %3X %016llX\n", -			   n, tx_ring->next_to_use, tx_ring->next_to_clean, -			   (u64)buffer_info->dma, -			   buffer_info->length, -			   buffer_info->next_to_watch, -			   (u64)buffer_info->time_stamp); -	} - -	/* Print TX Rings */ -	if (!netif_msg_tx_done(adapter)) -		goto rx_ring_summary; - -	dev_info(&adapter->pdev->dev, "TX Rings Dump\n"); - -	/* Transmit Descriptor Formats -	 * -	 * Advanced Transmit Descriptor -	 *   +--------------------------------------------------------------+ -	 * 0 |         Buffer Address [63:0]                                | -	 *   +--------------------------------------------------------------+ -	 * 8 | PAYLEN  | PORTS  |CC|IDX | STA | DCMD  |DTYP|MAC|RSV| DTALEN | -	 *   +--------------------------------------------------------------+ -	 *   63      46 45    40 39 38 36 35 32 31   24             15       0 -	 */ - -	for (n = 0; n < adapter->num_tx_queues; n++) { -		tx_ring = adapter->tx_ring[n]; -		printk(KERN_INFO "------------------------------------\n"); -		printk(KERN_INFO "TX QUEUE INDEX = %d\n", tx_ring->queue_index); -		printk(KERN_INFO "------------------------------------\n"); -		printk(KERN_INFO "T [desc]     [address 63:0  ] " -			"[PlPOCIStDDM Ln] [bi->dma       ] " -			"leng  ntw timestamp        bi->skb\n"); - -		for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) { -			tx_desc = E1000_TX_DESC_ADV(*tx_ring, i); -			buffer_info = &tx_ring->buffer_info[i]; -			u0 = (struct my_u0 *)tx_desc; -			printk(KERN_INFO "T [0x%03X]    %016llX %016llX %016llX" -				" %04X  %3X %016llX %p", i, -				le64_to_cpu(u0->a), -				le64_to_cpu(u0->b), -				(u64)buffer_info->dma, -				buffer_info->length, -				buffer_info->next_to_watch, -				(u64)buffer_info->time_stamp, -				buffer_info->skb); -			if (i == tx_ring->next_to_use && -				i == tx_ring->next_to_clean) -				printk(KERN_CONT " NTC/U\n"); -			else if (i == tx_ring->next_to_use) -				printk(KERN_CONT " NTU\n"); -			else if (i == tx_ring->next_to_clean) -				printk(KERN_CONT " NTC\n"); -			else -				printk(KERN_CONT "\n"); - -			if (netif_msg_pktdata(adapter) && buffer_info->dma != 0) -				print_hex_dump(KERN_INFO, "", -					DUMP_PREFIX_ADDRESS, -					16, 1, phys_to_virt(buffer_info->dma), -					buffer_info->length, true); -		} -	} - -	/* Print RX Rings Summary */ -rx_ring_summary: -	dev_info(&adapter->pdev->dev, "RX Rings Summary\n"); -	printk(KERN_INFO "Queue [NTU] [NTC]\n"); -	for (n = 0; n < adapter->num_rx_queues; n++) { -		rx_ring = adapter->rx_ring[n]; -		printk(KERN_INFO " %5d %5X %5X\n", n, -			   rx_ring->next_to_use, rx_ring->next_to_clean); -	} - -	/* Print RX Rings */ -	if (!netif_msg_rx_status(adapter)) -		goto exit; - -	dev_info(&adapter->pdev->dev, "RX Rings Dump\n"); - -	/* Advanced Receive Descriptor (Read) Format -	 *    63                                           1        0 -	 *    +-----------------------------------------------------+ -	 *  0 |       Packet Buffer Address [63:1]           |A0/NSE| -	 *    +----------------------------------------------+------+ -	 *  8 |       Header Buffer Address [63:1]           |  DD  | -	 *    +-----------------------------------------------------+ -	 * -	 * -	 * Advanced Receive Descriptor (Write-Back) Format -	 * -	 *   63       48 47    32 31  30      21 20 17 16   4 3     0 -	 *   +------------------------------------------------------+ -	 * 0 | Packet     IP     |SPH| HDR_LEN   | RSV|Packet|  RSS | -	 *   | Checksum   Ident  |   |           |    | Type | Type | -	 *   +------------------------------------------------------+ -	 * 8 | VLAN Tag | Length | Extended Error | Extended Status | -	 *   +------------------------------------------------------+ -	 *   63       48 47    32 31            20 19               0 -	 */ - -	for (n = 0; n < adapter->num_rx_queues; n++) { -		rx_ring = adapter->rx_ring[n]; -		printk(KERN_INFO "------------------------------------\n"); -		printk(KERN_INFO "RX QUEUE INDEX = %d\n", rx_ring->queue_index); -		printk(KERN_INFO "------------------------------------\n"); -		printk(KERN_INFO "R  [desc]      [ PktBuf     A0] " -			"[  HeadBuf   DD] [bi->dma       ] [bi->skb] " -			"<-- Adv Rx Read format\n"); -		printk(KERN_INFO "RWB[desc]      [PcsmIpSHl PtRs] " -			"[vl er S cks ln] ---------------- [bi->skb] " -			"<-- Adv Rx Write-Back format\n"); - -		for (i = 0; i < rx_ring->count; i++) { -			buffer_info = &rx_ring->buffer_info[i]; -			rx_desc = E1000_RX_DESC_ADV(*rx_ring, i); -			u0 = (struct my_u0 *)rx_desc; -			staterr = le32_to_cpu(rx_desc->wb.upper.status_error); -			if (staterr & E1000_RXD_STAT_DD) { -				/* Descriptor Done */ -				printk(KERN_INFO "RWB[0x%03X]     %016llX " -					"%016llX ---------------- %p", i, -					le64_to_cpu(u0->a), -					le64_to_cpu(u0->b), -					buffer_info->skb); -			} else { -				printk(KERN_INFO "R  [0x%03X]     %016llX " -					"%016llX %016llX %p", i, -					le64_to_cpu(u0->a), -					le64_to_cpu(u0->b), -					(u64)buffer_info->dma, -					buffer_info->skb); - -				if (netif_msg_pktdata(adapter)) { -					print_hex_dump(KERN_INFO, "", -						DUMP_PREFIX_ADDRESS, -						16, 1, -						phys_to_virt(buffer_info->dma), -						rx_ring->rx_buffer_len, true); -					if (rx_ring->rx_buffer_len -						< IGB_RXBUFFER_1024) -						print_hex_dump(KERN_INFO, "", -						  DUMP_PREFIX_ADDRESS, -						  16, 1, -						  phys_to_virt( -						    buffer_info->page_dma + -						    buffer_info->page_offset), -						  PAGE_SIZE/2, true); -				} -			} - -			if (i == rx_ring->next_to_use) -				printk(KERN_CONT " NTU\n"); -			else if (i == rx_ring->next_to_clean) -				printk(KERN_CONT " NTC\n"); -			else -				printk(KERN_CONT "\n"); - -		} -	} - -exit: -	return; -} - - -/** - * igb_read_clock - read raw cycle counter (to be used by time counter) - */ -static cycle_t igb_read_clock(const struct cyclecounter *tc) -{ -	struct igb_adapter *adapter = -		container_of(tc, struct igb_adapter, cycles); -	struct e1000_hw *hw = &adapter->hw; -	u64 stamp = 0; -	int shift = 0; - -	/* -	 * The timestamp latches on lowest register read. For the 82580 -	 * the lowest register is SYSTIMR instead of SYSTIML.  However we never -	 * adjusted TIMINCA so SYSTIMR will just read as all 0s so ignore it. -	 */ -	if (hw->mac.type == e1000_82580) { -		stamp = rd32(E1000_SYSTIMR) >> 8; -		shift = IGB_82580_TSYNC_SHIFT; -	} - -	stamp |= (u64)rd32(E1000_SYSTIML) << shift; -	stamp |= (u64)rd32(E1000_SYSTIMH) << (shift + 32); -	return stamp; -} - -/** - * igb_get_hw_dev - return device - * used by hardware layer to print debugging information - **/ -struct net_device *igb_get_hw_dev(struct e1000_hw *hw) -{ -	struct igb_adapter *adapter = hw->back; -	return adapter->netdev; -} - -/** - * igb_init_module - Driver Registration Routine - * - * igb_init_module is the first routine called when the driver is - * loaded. All it does is register with the PCI subsystem. - **/ -static int __init igb_init_module(void) -{ -	int ret; -	printk(KERN_INFO "%s - version %s\n", -	       igb_driver_string, igb_driver_version); - -	printk(KERN_INFO "%s\n", igb_copyright); - -#ifdef CONFIG_IGB_DCA -	dca_register_notify(&dca_notifier); -#endif -	ret = pci_register_driver(&igb_driver); -	return ret; -} - -module_init(igb_init_module); - -/** - * igb_exit_module - Driver Exit Cleanup Routine - * - * igb_exit_module is called just before the driver is removed - * from memory. - **/ -static void __exit igb_exit_module(void) -{ -#ifdef CONFIG_IGB_DCA -	dca_unregister_notify(&dca_notifier); -#endif -	pci_unregister_driver(&igb_driver); -} - -module_exit(igb_exit_module); - -#define Q_IDX_82576(i) (((i & 0x1) << 3) + (i >> 1)) -/** - * igb_cache_ring_register - Descriptor ring to register mapping - * @adapter: board private structure to initialize - * - * Once we know the feature-set enabled for the device, we'll cache - * the register offset the descriptor ring is assigned to. - **/ -static void igb_cache_ring_register(struct igb_adapter *adapter) -{ -	int i = 0, j = 0; -	u32 rbase_offset = adapter->vfs_allocated_count; - -	switch (adapter->hw.mac.type) { -	case e1000_82576: -		/* The queues are allocated for virtualization such that VF 0 -		 * is allocated queues 0 and 8, VF 1 queues 1 and 9, etc. -		 * In order to avoid collision we start at the first free queue -		 * and continue consuming queues in the same sequence -		 */ -		if (adapter->vfs_allocated_count) { -			for (; i < adapter->rss_queues; i++) -				adapter->rx_ring[i]->reg_idx = rbase_offset + -				                               Q_IDX_82576(i); -		} -	case e1000_82575: -	case e1000_82580: -	case e1000_i350: -	default: -		for (; i < adapter->num_rx_queues; i++) -			adapter->rx_ring[i]->reg_idx = rbase_offset + i; -		for (; j < adapter->num_tx_queues; j++) -			adapter->tx_ring[j]->reg_idx = rbase_offset + j; -		break; -	} -} - -static void igb_free_queues(struct igb_adapter *adapter) -{ -	int i; - -	for (i = 0; i < adapter->num_tx_queues; i++) { -		kfree(adapter->tx_ring[i]); -		adapter->tx_ring[i] = NULL; -	} -	for (i = 0; i < adapter->num_rx_queues; i++) { -		kfree(adapter->rx_ring[i]); -		adapter->rx_ring[i] = NULL; -	} -	adapter->num_rx_queues = 0; -	adapter->num_tx_queues = 0; -} - -/** - * igb_alloc_queues - Allocate memory for all rings - * @adapter: board private structure to initialize - * - * We allocate one ring per queue at run-time since we don't know the - * number of queues at compile-time. - **/ -static int igb_alloc_queues(struct igb_adapter *adapter) -{ -	struct igb_ring *ring; -	int i; - -	for (i = 0; i < adapter->num_tx_queues; i++) { -		ring = kzalloc(sizeof(struct igb_ring), GFP_KERNEL); -		if (!ring) -			goto err; -		ring->count = adapter->tx_ring_count; -		ring->queue_index = i; -		ring->dev = &adapter->pdev->dev; -		ring->netdev = adapter->netdev; -		/* For 82575, context index must be unique per ring. */ -		if (adapter->hw.mac.type == e1000_82575) -			ring->flags = IGB_RING_FLAG_TX_CTX_IDX; -		adapter->tx_ring[i] = ring; -	} - -	for (i = 0; i < adapter->num_rx_queues; i++) { -		ring = kzalloc(sizeof(struct igb_ring), GFP_KERNEL); -		if (!ring) -			goto err; -		ring->count = adapter->rx_ring_count; -		ring->queue_index = i; -		ring->dev = &adapter->pdev->dev; -		ring->netdev = adapter->netdev; -		ring->rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE; -		ring->flags = IGB_RING_FLAG_RX_CSUM; /* enable rx checksum */ -		/* set flag indicating ring supports SCTP checksum offload */ -		if (adapter->hw.mac.type >= e1000_82576) -			ring->flags |= IGB_RING_FLAG_RX_SCTP_CSUM; -		adapter->rx_ring[i] = ring; -	} - -	igb_cache_ring_register(adapter); - -	return 0; - -err: -	igb_free_queues(adapter); - -	return -ENOMEM; -} - -#define IGB_N0_QUEUE -1 -static void igb_assign_vector(struct igb_q_vector *q_vector, int msix_vector) -{ -	u32 msixbm = 0; -	struct igb_adapter *adapter = q_vector->adapter; -	struct e1000_hw *hw = &adapter->hw; -	u32 ivar, index; -	int rx_queue = IGB_N0_QUEUE; -	int tx_queue = IGB_N0_QUEUE; - -	if (q_vector->rx_ring) -		rx_queue = q_vector->rx_ring->reg_idx; -	if (q_vector->tx_ring) -		tx_queue = q_vector->tx_ring->reg_idx; - -	switch (hw->mac.type) { -	case e1000_82575: -		/* The 82575 assigns vectors using a bitmask, which matches the -		   bitmask for the EICR/EIMS/EIMC registers.  To assign one -		   or more queues to a vector, we write the appropriate bits -		   into the MSIXBM register for that vector. */ -		if (rx_queue > IGB_N0_QUEUE) -			msixbm = E1000_EICR_RX_QUEUE0 << rx_queue; -		if (tx_queue > IGB_N0_QUEUE) -			msixbm |= E1000_EICR_TX_QUEUE0 << tx_queue; -		if (!adapter->msix_entries && msix_vector == 0) -			msixbm |= E1000_EIMS_OTHER; -		array_wr32(E1000_MSIXBM(0), msix_vector, msixbm); -		q_vector->eims_value = msixbm; -		break; -	case e1000_82576: -		/* 82576 uses a table-based method for assigning vectors. -		   Each queue has a single entry in the table to which we write -		   a vector number along with a "valid" bit.  Sadly, the layout -		   of the table is somewhat counterintuitive. */ -		if (rx_queue > IGB_N0_QUEUE) { -			index = (rx_queue & 0x7); -			ivar = array_rd32(E1000_IVAR0, index); -			if (rx_queue < 8) { -				/* vector goes into low byte of register */ -				ivar = ivar & 0xFFFFFF00; -				ivar |= msix_vector | E1000_IVAR_VALID; -			} else { -				/* vector goes into third byte of register */ -				ivar = ivar & 0xFF00FFFF; -				ivar |= (msix_vector | E1000_IVAR_VALID) << 16; -			} -			array_wr32(E1000_IVAR0, index, ivar); -		} -		if (tx_queue > IGB_N0_QUEUE) { -			index = (tx_queue & 0x7); -			ivar = array_rd32(E1000_IVAR0, index); -			if (tx_queue < 8) { -				/* vector goes into second byte of register */ -				ivar = ivar & 0xFFFF00FF; -				ivar |= (msix_vector | E1000_IVAR_VALID) << 8; -			} else { -				/* vector goes into high byte of register */ -				ivar = ivar & 0x00FFFFFF; -				ivar |= (msix_vector | E1000_IVAR_VALID) << 24; -			} -			array_wr32(E1000_IVAR0, index, ivar); -		} -		q_vector->eims_value = 1 << msix_vector; -		break; -	case e1000_82580: -	case e1000_i350: -		/* 82580 uses the same table-based approach as 82576 but has fewer -		   entries as a result we carry over for queues greater than 4. */ -		if (rx_queue > IGB_N0_QUEUE) { -			index = (rx_queue >> 1); -			ivar = array_rd32(E1000_IVAR0, index); -			if (rx_queue & 0x1) { -				/* vector goes into third byte of register */ -				ivar = ivar & 0xFF00FFFF; -				ivar |= (msix_vector | E1000_IVAR_VALID) << 16; -			} else { -				/* vector goes into low byte of register */ -				ivar = ivar & 0xFFFFFF00; -				ivar |= msix_vector | E1000_IVAR_VALID; -			} -			array_wr32(E1000_IVAR0, index, ivar); -		} -		if (tx_queue > IGB_N0_QUEUE) { -			index = (tx_queue >> 1); -			ivar = array_rd32(E1000_IVAR0, index); -			if (tx_queue & 0x1) { -				/* vector goes into high byte of register */ -				ivar = ivar & 0x00FFFFFF; -				ivar |= (msix_vector | E1000_IVAR_VALID) << 24; -			} else { -				/* vector goes into second byte of register */ -				ivar = ivar & 0xFFFF00FF; -				ivar |= (msix_vector | E1000_IVAR_VALID) << 8; -			} -			array_wr32(E1000_IVAR0, index, ivar); -		} -		q_vector->eims_value = 1 << msix_vector; -		break; -	default: -		BUG(); -		break; -	} - -	/* add q_vector eims value to global eims_enable_mask */ -	adapter->eims_enable_mask |= q_vector->eims_value; - -	/* configure q_vector to set itr on first interrupt */ -	q_vector->set_itr = 1; -} - -/** - * igb_configure_msix - Configure MSI-X hardware - * - * igb_configure_msix sets up the hardware to properly - * generate MSI-X interrupts. - **/ -static void igb_configure_msix(struct igb_adapter *adapter) -{ -	u32 tmp; -	int i, vector = 0; -	struct e1000_hw *hw = &adapter->hw; - -	adapter->eims_enable_mask = 0; - -	/* set vector for other causes, i.e. link changes */ -	switch (hw->mac.type) { -	case e1000_82575: -		tmp = rd32(E1000_CTRL_EXT); -		/* enable MSI-X PBA support*/ -		tmp |= E1000_CTRL_EXT_PBA_CLR; - -		/* Auto-Mask interrupts upon ICR read. */ -		tmp |= E1000_CTRL_EXT_EIAME; -		tmp |= E1000_CTRL_EXT_IRCA; - -		wr32(E1000_CTRL_EXT, tmp); - -		/* enable msix_other interrupt */ -		array_wr32(E1000_MSIXBM(0), vector++, -		                      E1000_EIMS_OTHER); -		adapter->eims_other = E1000_EIMS_OTHER; - -		break; - -	case e1000_82576: -	case e1000_82580: -	case e1000_i350: -		/* Turn on MSI-X capability first, or our settings -		 * won't stick.  And it will take days to debug. */ -		wr32(E1000_GPIE, E1000_GPIE_MSIX_MODE | -		                E1000_GPIE_PBA | E1000_GPIE_EIAME | -		                E1000_GPIE_NSICR); - -		/* enable msix_other interrupt */ -		adapter->eims_other = 1 << vector; -		tmp = (vector++ | E1000_IVAR_VALID) << 8; - -		wr32(E1000_IVAR_MISC, tmp); -		break; -	default: -		/* do nothing, since nothing else supports MSI-X */ -		break; -	} /* switch (hw->mac.type) */ - -	adapter->eims_enable_mask |= adapter->eims_other; - -	for (i = 0; i < adapter->num_q_vectors; i++) -		igb_assign_vector(adapter->q_vector[i], vector++); - -	wrfl(); -} - -/** - * igb_request_msix - Initialize MSI-X interrupts - * - * igb_request_msix allocates MSI-X vectors and requests interrupts from the - * kernel. - **/ -static int igb_request_msix(struct igb_adapter *adapter) -{ -	struct net_device *netdev = adapter->netdev; -	struct e1000_hw *hw = &adapter->hw; -	int i, err = 0, vector = 0; - -	err = request_irq(adapter->msix_entries[vector].vector, -	                  igb_msix_other, 0, netdev->name, adapter); -	if (err) -		goto out; -	vector++; - -	for (i = 0; i < adapter->num_q_vectors; i++) { -		struct igb_q_vector *q_vector = adapter->q_vector[i]; - -		q_vector->itr_register = hw->hw_addr + E1000_EITR(vector); - -		if (q_vector->rx_ring && q_vector->tx_ring) -			sprintf(q_vector->name, "%s-TxRx-%u", netdev->name, -			        q_vector->rx_ring->queue_index); -		else if (q_vector->tx_ring) -			sprintf(q_vector->name, "%s-tx-%u", netdev->name, -			        q_vector->tx_ring->queue_index); -		else if (q_vector->rx_ring) -			sprintf(q_vector->name, "%s-rx-%u", netdev->name, -			        q_vector->rx_ring->queue_index); -		else -			sprintf(q_vector->name, "%s-unused", netdev->name); - -		err = request_irq(adapter->msix_entries[vector].vector, -		                  igb_msix_ring, 0, q_vector->name, -		                  q_vector); -		if (err) -			goto out; -		vector++; -	} - -	igb_configure_msix(adapter); -	return 0; -out: -	return err; -} - -static void igb_reset_interrupt_capability(struct igb_adapter *adapter) -{ -	if (adapter->msix_entries) { -		pci_disable_msix(adapter->pdev); -		kfree(adapter->msix_entries); -		adapter->msix_entries = NULL; -	} else if (adapter->flags & IGB_FLAG_HAS_MSI) { -		pci_disable_msi(adapter->pdev); -	} -} - -/** - * igb_free_q_vectors - Free memory allocated for interrupt vectors - * @adapter: board private structure to initialize - * - * This function frees the memory allocated to the q_vectors.  In addition if - * NAPI is enabled it will delete any references to the NAPI struct prior - * to freeing the q_vector. - **/ -static void igb_free_q_vectors(struct igb_adapter *adapter) -{ -	int v_idx; - -	for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) { -		struct igb_q_vector *q_vector = adapter->q_vector[v_idx]; -		adapter->q_vector[v_idx] = NULL; -		if (!q_vector) -			continue; -		netif_napi_del(&q_vector->napi); -		kfree(q_vector); -	} -	adapter->num_q_vectors = 0; -} - -/** - * igb_clear_interrupt_scheme - reset the device to a state of no interrupts - * - * This function resets the device so that it has 0 rx queues, tx queues, and - * MSI-X interrupts allocated. - */ -static void igb_clear_interrupt_scheme(struct igb_adapter *adapter) -{ -	igb_free_queues(adapter); -	igb_free_q_vectors(adapter); -	igb_reset_interrupt_capability(adapter); -} - -/** - * igb_set_interrupt_capability - set MSI or MSI-X if supported - * - * Attempt to configure interrupts using the best available - * capabilities of the hardware and kernel. - **/ -static int igb_set_interrupt_capability(struct igb_adapter *adapter) -{ -	int err; -	int numvecs, i; - -	/* Number of supported queues. */ -	adapter->num_rx_queues = adapter->rss_queues; -	if (adapter->vfs_allocated_count) -		adapter->num_tx_queues = 1; -	else -		adapter->num_tx_queues = adapter->rss_queues; - -	/* start with one vector for every rx queue */ -	numvecs = adapter->num_rx_queues; - -	/* if tx handler is separate add 1 for every tx queue */ -	if (!(adapter->flags & IGB_FLAG_QUEUE_PAIRS)) -		numvecs += adapter->num_tx_queues; - -	/* store the number of vectors reserved for queues */ -	adapter->num_q_vectors = numvecs; - -	/* add 1 vector for link status interrupts */ -	numvecs++; -	adapter->msix_entries = kcalloc(numvecs, sizeof(struct msix_entry), -					GFP_KERNEL); -	if (!adapter->msix_entries) -		goto msi_only; - -	for (i = 0; i < numvecs; i++) -		adapter->msix_entries[i].entry = i; - -	err = pci_enable_msix(adapter->pdev, -			      adapter->msix_entries, -			      numvecs); -	if (err == 0) -		goto out; - -	igb_reset_interrupt_capability(adapter); - -	/* If we can't do MSI-X, try MSI */ -msi_only: -#ifdef CONFIG_PCI_IOV -	/* disable SR-IOV for non MSI-X configurations */ -	if (adapter->vf_data) { -		struct e1000_hw *hw = &adapter->hw; -		/* disable iov and allow time for transactions to clear */ -		pci_disable_sriov(adapter->pdev); -		msleep(500); - -		kfree(adapter->vf_data); -		adapter->vf_data = NULL; -		wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ); -		msleep(100); -		dev_info(&adapter->pdev->dev, "IOV Disabled\n"); -	} -#endif -	adapter->vfs_allocated_count = 0; -	adapter->rss_queues = 1; -	adapter->flags |= IGB_FLAG_QUEUE_PAIRS; -	adapter->num_rx_queues = 1; -	adapter->num_tx_queues = 1; -	adapter->num_q_vectors = 1; -	if (!pci_enable_msi(adapter->pdev)) -		adapter->flags |= IGB_FLAG_HAS_MSI; -out: -	/* Notify the stack of the (possibly) reduced queue counts. */ -	netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues); -	return netif_set_real_num_rx_queues(adapter->netdev, -					    adapter->num_rx_queues); -} - -/** - * igb_alloc_q_vectors - Allocate memory for interrupt vectors - * @adapter: board private structure to initialize - * - * We allocate one q_vector per queue interrupt.  If allocation fails we - * return -ENOMEM. - **/ -static int igb_alloc_q_vectors(struct igb_adapter *adapter) -{ -	struct igb_q_vector *q_vector; -	struct e1000_hw *hw = &adapter->hw; -	int v_idx; - -	for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) { -		q_vector = kzalloc(sizeof(struct igb_q_vector), GFP_KERNEL); -		if (!q_vector) -			goto err_out; -		q_vector->adapter = adapter; -		q_vector->itr_register = hw->hw_addr + E1000_EITR(0); -		q_vector->itr_val = IGB_START_ITR; -		netif_napi_add(adapter->netdev, &q_vector->napi, igb_poll, 64); -		adapter->q_vector[v_idx] = q_vector; -	} -	return 0; - -err_out: -	igb_free_q_vectors(adapter); -	return -ENOMEM; -} - -static void igb_map_rx_ring_to_vector(struct igb_adapter *adapter, -                                      int ring_idx, int v_idx) -{ -	struct igb_q_vector *q_vector = adapter->q_vector[v_idx]; - -	q_vector->rx_ring = adapter->rx_ring[ring_idx]; -	q_vector->rx_ring->q_vector = q_vector; -	q_vector->itr_val = adapter->rx_itr_setting; -	if (q_vector->itr_val && q_vector->itr_val <= 3) -		q_vector->itr_val = IGB_START_ITR; -} - -static void igb_map_tx_ring_to_vector(struct igb_adapter *adapter, -                                      int ring_idx, int v_idx) -{ -	struct igb_q_vector *q_vector = adapter->q_vector[v_idx]; - -	q_vector->tx_ring = adapter->tx_ring[ring_idx]; -	q_vector->tx_ring->q_vector = q_vector; -	q_vector->itr_val = adapter->tx_itr_setting; -	if (q_vector->itr_val && q_vector->itr_val <= 3) -		q_vector->itr_val = IGB_START_ITR; -} - -/** - * igb_map_ring_to_vector - maps allocated queues to vectors - * - * This function maps the recently allocated queues to vectors. - **/ -static int igb_map_ring_to_vector(struct igb_adapter *adapter) -{ -	int i; -	int v_idx = 0; - -	if ((adapter->num_q_vectors < adapter->num_rx_queues) || -	    (adapter->num_q_vectors < adapter->num_tx_queues)) -		return -ENOMEM; - -	if (adapter->num_q_vectors >= -	    (adapter->num_rx_queues + adapter->num_tx_queues)) { -		for (i = 0; i < adapter->num_rx_queues; i++) -			igb_map_rx_ring_to_vector(adapter, i, v_idx++); -		for (i = 0; i < adapter->num_tx_queues; i++) -			igb_map_tx_ring_to_vector(adapter, i, v_idx++); -	} else { -		for (i = 0; i < adapter->num_rx_queues; i++) { -			if (i < adapter->num_tx_queues) -				igb_map_tx_ring_to_vector(adapter, i, v_idx); -			igb_map_rx_ring_to_vector(adapter, i, v_idx++); -		} -		for (; i < adapter->num_tx_queues; i++) -			igb_map_tx_ring_to_vector(adapter, i, v_idx++); -	} -	return 0; -} - -/** - * igb_init_interrupt_scheme - initialize interrupts, allocate queues/vectors - * - * This function initializes the interrupts and allocates all of the queues. - **/ -static int igb_init_interrupt_scheme(struct igb_adapter *adapter) -{ -	struct pci_dev *pdev = adapter->pdev; -	int err; - -	err = igb_set_interrupt_capability(adapter); -	if (err) -		return err; - -	err = igb_alloc_q_vectors(adapter); -	if (err) { -		dev_err(&pdev->dev, "Unable to allocate memory for vectors\n"); -		goto err_alloc_q_vectors; -	} - -	err = igb_alloc_queues(adapter); -	if (err) { -		dev_err(&pdev->dev, "Unable to allocate memory for queues\n"); -		goto err_alloc_queues; -	} - -	err = igb_map_ring_to_vector(adapter); -	if (err) { -		dev_err(&pdev->dev, "Invalid q_vector to ring mapping\n"); -		goto err_map_queues; -	} - - -	return 0; -err_map_queues: -	igb_free_queues(adapter); -err_alloc_queues: -	igb_free_q_vectors(adapter); -err_alloc_q_vectors: -	igb_reset_interrupt_capability(adapter); -	return err; -} - -/** - * igb_request_irq - initialize interrupts - * - * Attempts to configure interrupts using the best available - * capabilities of the hardware and kernel. - **/ -static int igb_request_irq(struct igb_adapter *adapter) -{ -	struct net_device *netdev = adapter->netdev; -	struct pci_dev *pdev = adapter->pdev; -	int err = 0; - -	if (adapter->msix_entries) { -		err = igb_request_msix(adapter); -		if (!err) -			goto request_done; -		/* fall back to MSI */ -		igb_clear_interrupt_scheme(adapter); -		if (!pci_enable_msi(adapter->pdev)) -			adapter->flags |= IGB_FLAG_HAS_MSI; -		igb_free_all_tx_resources(adapter); -		igb_free_all_rx_resources(adapter); -		adapter->num_tx_queues = 1; -		adapter->num_rx_queues = 1; -		adapter->num_q_vectors = 1; -		err = igb_alloc_q_vectors(adapter); -		if (err) { -			dev_err(&pdev->dev, -			        "Unable to allocate memory for vectors\n"); -			goto request_done; -		} -		err = igb_alloc_queues(adapter); -		if (err) { -			dev_err(&pdev->dev, -			        "Unable to allocate memory for queues\n"); -			igb_free_q_vectors(adapter); -			goto request_done; -		} -		igb_setup_all_tx_resources(adapter); -		igb_setup_all_rx_resources(adapter); -	} else { -		igb_assign_vector(adapter->q_vector[0], 0); -	} - -	if (adapter->flags & IGB_FLAG_HAS_MSI) { -		err = request_irq(adapter->pdev->irq, igb_intr_msi, 0, -				  netdev->name, adapter); -		if (!err) -			goto request_done; - -		/* fall back to legacy interrupts */ -		igb_reset_interrupt_capability(adapter); -		adapter->flags &= ~IGB_FLAG_HAS_MSI; -	} - -	err = request_irq(adapter->pdev->irq, igb_intr, IRQF_SHARED, -			  netdev->name, adapter); - -	if (err) -		dev_err(&adapter->pdev->dev, "Error %d getting interrupt\n", -			err); - -request_done: -	return err; -} - -static void igb_free_irq(struct igb_adapter *adapter) -{ -	if (adapter->msix_entries) { -		int vector = 0, i; - -		free_irq(adapter->msix_entries[vector++].vector, adapter); - -		for (i = 0; i < adapter->num_q_vectors; i++) { -			struct igb_q_vector *q_vector = adapter->q_vector[i]; -			free_irq(adapter->msix_entries[vector++].vector, -			         q_vector); -		} -	} else { -		free_irq(adapter->pdev->irq, adapter); -	} -} - -/** - * igb_irq_disable - Mask off interrupt generation on the NIC - * @adapter: board private structure - **/ -static void igb_irq_disable(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; - -	/* -	 * we need to be careful when disabling interrupts.  The VFs are also -	 * mapped into these registers and so clearing the bits can cause -	 * issues on the VF drivers so we only need to clear what we set -	 */ -	if (adapter->msix_entries) { -		u32 regval = rd32(E1000_EIAM); -		wr32(E1000_EIAM, regval & ~adapter->eims_enable_mask); -		wr32(E1000_EIMC, adapter->eims_enable_mask); -		regval = rd32(E1000_EIAC); -		wr32(E1000_EIAC, regval & ~adapter->eims_enable_mask); -	} - -	wr32(E1000_IAM, 0); -	wr32(E1000_IMC, ~0); -	wrfl(); -	if (adapter->msix_entries) { -		int i; -		for (i = 0; i < adapter->num_q_vectors; i++) -			synchronize_irq(adapter->msix_entries[i].vector); -	} else { -		synchronize_irq(adapter->pdev->irq); -	} -} - -/** - * igb_irq_enable - Enable default interrupt generation settings - * @adapter: board private structure - **/ -static void igb_irq_enable(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; - -	if (adapter->msix_entries) { -		u32 ims = E1000_IMS_LSC | E1000_IMS_DOUTSYNC; -		u32 regval = rd32(E1000_EIAC); -		wr32(E1000_EIAC, regval | adapter->eims_enable_mask); -		regval = rd32(E1000_EIAM); -		wr32(E1000_EIAM, regval | adapter->eims_enable_mask); -		wr32(E1000_EIMS, adapter->eims_enable_mask); -		if (adapter->vfs_allocated_count) { -			wr32(E1000_MBVFIMR, 0xFF); -			ims |= E1000_IMS_VMMB; -		} -		if (adapter->hw.mac.type == e1000_82580) -			ims |= E1000_IMS_DRSTA; - -		wr32(E1000_IMS, ims); -	} else { -		wr32(E1000_IMS, IMS_ENABLE_MASK | -				E1000_IMS_DRSTA); -		wr32(E1000_IAM, IMS_ENABLE_MASK | -				E1000_IMS_DRSTA); -	} -} - -static void igb_update_mng_vlan(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u16 vid = adapter->hw.mng_cookie.vlan_id; -	u16 old_vid = adapter->mng_vlan_id; - -	if (hw->mng_cookie.status & E1000_MNG_DHCP_COOKIE_STATUS_VLAN) { -		/* add VID to filter table */ -		igb_vfta_set(hw, vid, true); -		adapter->mng_vlan_id = vid; -	} else { -		adapter->mng_vlan_id = IGB_MNG_VLAN_NONE; -	} - -	if ((old_vid != (u16)IGB_MNG_VLAN_NONE) && -	    (vid != old_vid) && -	    !vlan_group_get_device(adapter->vlgrp, old_vid)) { -		/* remove VID from filter table */ -		igb_vfta_set(hw, old_vid, false); -	} -} - -/** - * igb_release_hw_control - release control of the h/w to f/w - * @adapter: address of board private structure - * - * igb_release_hw_control resets CTRL_EXT:DRV_LOAD bit. - * For ASF and Pass Through versions of f/w this means that the - * driver is no longer loaded. - * - **/ -static void igb_release_hw_control(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 ctrl_ext; - -	/* Let firmware take over control of h/w */ -	ctrl_ext = rd32(E1000_CTRL_EXT); -	wr32(E1000_CTRL_EXT, -			ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD); -} - -/** - * igb_get_hw_control - get control of the h/w from f/w - * @adapter: address of board private structure - * - * igb_get_hw_control sets CTRL_EXT:DRV_LOAD bit. - * For ASF and Pass Through versions of f/w this means that - * the driver is loaded. - * - **/ -static void igb_get_hw_control(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 ctrl_ext; - -	/* Let firmware know the driver has taken over */ -	ctrl_ext = rd32(E1000_CTRL_EXT); -	wr32(E1000_CTRL_EXT, -			ctrl_ext | E1000_CTRL_EXT_DRV_LOAD); -} - -/** - * igb_configure - configure the hardware for RX and TX - * @adapter: private board structure - **/ -static void igb_configure(struct igb_adapter *adapter) -{ -	struct net_device *netdev = adapter->netdev; -	int i; - -	igb_get_hw_control(adapter); -	igb_set_rx_mode(netdev); - -	igb_restore_vlan(adapter); - -	igb_setup_tctl(adapter); -	igb_setup_mrqc(adapter); -	igb_setup_rctl(adapter); - -	igb_configure_tx(adapter); -	igb_configure_rx(adapter); - -	igb_rx_fifo_flush_82575(&adapter->hw); - -	/* call igb_desc_unused which always leaves -	 * at least 1 descriptor unused to make sure -	 * next_to_use != next_to_clean */ -	for (i = 0; i < adapter->num_rx_queues; i++) { -		struct igb_ring *ring = adapter->rx_ring[i]; -		igb_alloc_rx_buffers_adv(ring, igb_desc_unused(ring)); -	} -} - -/** - * igb_power_up_link - Power up the phy/serdes link - * @adapter: address of board private structure - **/ -void igb_power_up_link(struct igb_adapter *adapter) -{ -	if (adapter->hw.phy.media_type == e1000_media_type_copper) -		igb_power_up_phy_copper(&adapter->hw); -	else -		igb_power_up_serdes_link_82575(&adapter->hw); -} - -/** - * igb_power_down_link - Power down the phy/serdes link - * @adapter: address of board private structure - */ -static void igb_power_down_link(struct igb_adapter *adapter) -{ -	if (adapter->hw.phy.media_type == e1000_media_type_copper) -		igb_power_down_phy_copper_82575(&adapter->hw); -	else -		igb_shutdown_serdes_link_82575(&adapter->hw); -} - -/** - * igb_up - Open the interface and prepare it to handle traffic - * @adapter: board private structure - **/ -int igb_up(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	int i; - -	/* hardware has been reset, we need to reload some things */ -	igb_configure(adapter); - -	clear_bit(__IGB_DOWN, &adapter->state); - -	for (i = 0; i < adapter->num_q_vectors; i++) { -		struct igb_q_vector *q_vector = adapter->q_vector[i]; -		napi_enable(&q_vector->napi); -	} -	if (adapter->msix_entries) -		igb_configure_msix(adapter); -	else -		igb_assign_vector(adapter->q_vector[0], 0); - -	/* Clear any pending interrupts. */ -	rd32(E1000_ICR); -	igb_irq_enable(adapter); - -	/* notify VFs that reset has been completed */ -	if (adapter->vfs_allocated_count) { -		u32 reg_data = rd32(E1000_CTRL_EXT); -		reg_data |= E1000_CTRL_EXT_PFRSTD; -		wr32(E1000_CTRL_EXT, reg_data); -	} - -	netif_tx_start_all_queues(adapter->netdev); - -	/* start the watchdog. */ -	hw->mac.get_link_status = 1; -	schedule_work(&adapter->watchdog_task); - -	return 0; -} - -void igb_down(struct igb_adapter *adapter) -{ -	struct net_device *netdev = adapter->netdev; -	struct e1000_hw *hw = &adapter->hw; -	u32 tctl, rctl; -	int i; - -	/* signal that we're down so the interrupt handler does not -	 * reschedule our watchdog timer */ -	set_bit(__IGB_DOWN, &adapter->state); - -	/* disable receives in the hardware */ -	rctl = rd32(E1000_RCTL); -	wr32(E1000_RCTL, rctl & ~E1000_RCTL_EN); -	/* flush and sleep below */ - -	netif_tx_stop_all_queues(netdev); - -	/* disable transmits in the hardware */ -	tctl = rd32(E1000_TCTL); -	tctl &= ~E1000_TCTL_EN; -	wr32(E1000_TCTL, tctl); -	/* flush both disables and wait for them to finish */ -	wrfl(); -	msleep(10); - -	for (i = 0; i < adapter->num_q_vectors; i++) { -		struct igb_q_vector *q_vector = adapter->q_vector[i]; -		napi_disable(&q_vector->napi); -	} - -	igb_irq_disable(adapter); - -	del_timer_sync(&adapter->watchdog_timer); -	del_timer_sync(&adapter->phy_info_timer); - -	netif_carrier_off(netdev); - -	/* record the stats before reset*/ -	spin_lock(&adapter->stats64_lock); -	igb_update_stats(adapter, &adapter->stats64); -	spin_unlock(&adapter->stats64_lock); - -	adapter->link_speed = 0; -	adapter->link_duplex = 0; - -	if (!pci_channel_offline(adapter->pdev)) -		igb_reset(adapter); -	igb_clean_all_tx_rings(adapter); -	igb_clean_all_rx_rings(adapter); -#ifdef CONFIG_IGB_DCA - -	/* since we reset the hardware DCA settings were cleared */ -	igb_setup_dca(adapter); -#endif -} - -void igb_reinit_locked(struct igb_adapter *adapter) -{ -	WARN_ON(in_interrupt()); -	while (test_and_set_bit(__IGB_RESETTING, &adapter->state)) -		msleep(1); -	igb_down(adapter); -	igb_up(adapter); -	clear_bit(__IGB_RESETTING, &adapter->state); -} - -void igb_reset(struct igb_adapter *adapter) -{ -	struct pci_dev *pdev = adapter->pdev; -	struct e1000_hw *hw = &adapter->hw; -	struct e1000_mac_info *mac = &hw->mac; -	struct e1000_fc_info *fc = &hw->fc; -	u32 pba = 0, tx_space, min_tx_space, min_rx_space; -	u16 hwm; - -	/* Repartition Pba for greater than 9k mtu -	 * To take effect CTRL.RST is required. -	 */ -	switch (mac->type) { -	case e1000_i350: -	case e1000_82580: -		pba = rd32(E1000_RXPBS); -		pba = igb_rxpbs_adjust_82580(pba); -		break; -	case e1000_82576: -		pba = rd32(E1000_RXPBS); -		pba &= E1000_RXPBS_SIZE_MASK_82576; -		break; -	case e1000_82575: -	default: -		pba = E1000_PBA_34K; -		break; -	} - -	if ((adapter->max_frame_size > ETH_FRAME_LEN + ETH_FCS_LEN) && -	    (mac->type < e1000_82576)) { -		/* adjust PBA for jumbo frames */ -		wr32(E1000_PBA, pba); - -		/* To maintain wire speed transmits, the Tx FIFO should be -		 * large enough to accommodate two full transmit packets, -		 * rounded up to the next 1KB and expressed in KB.  Likewise, -		 * the Rx FIFO should be large enough to accommodate at least -		 * one full receive packet and is similarly rounded up and -		 * expressed in KB. */ -		pba = rd32(E1000_PBA); -		/* upper 16 bits has Tx packet buffer allocation size in KB */ -		tx_space = pba >> 16; -		/* lower 16 bits has Rx packet buffer allocation size in KB */ -		pba &= 0xffff; -		/* the tx fifo also stores 16 bytes of information about the tx -		 * but don't include ethernet FCS because hardware appends it */ -		min_tx_space = (adapter->max_frame_size + -				sizeof(union e1000_adv_tx_desc) - -				ETH_FCS_LEN) * 2; -		min_tx_space = ALIGN(min_tx_space, 1024); -		min_tx_space >>= 10; -		/* software strips receive CRC, so leave room for it */ -		min_rx_space = adapter->max_frame_size; -		min_rx_space = ALIGN(min_rx_space, 1024); -		min_rx_space >>= 10; - -		/* If current Tx allocation is less than the min Tx FIFO size, -		 * and the min Tx FIFO size is less than the current Rx FIFO -		 * allocation, take space away from current Rx allocation */ -		if (tx_space < min_tx_space && -		    ((min_tx_space - tx_space) < pba)) { -			pba = pba - (min_tx_space - tx_space); - -			/* if short on rx space, rx wins and must trump tx -			 * adjustment */ -			if (pba < min_rx_space) -				pba = min_rx_space; -		} -		wr32(E1000_PBA, pba); -	} - -	/* flow control settings */ -	/* The high water mark must be low enough to fit one full frame -	 * (or the size used for early receive) above it in the Rx FIFO. -	 * Set it to the lower of: -	 * - 90% of the Rx FIFO size, or -	 * - the full Rx FIFO size minus one full frame */ -	hwm = min(((pba << 10) * 9 / 10), -			((pba << 10) - 2 * adapter->max_frame_size)); - -	fc->high_water = hwm & 0xFFF0;	/* 16-byte granularity */ -	fc->low_water = fc->high_water - 16; -	fc->pause_time = 0xFFFF; -	fc->send_xon = 1; -	fc->current_mode = fc->requested_mode; - -	/* disable receive for all VFs and wait one second */ -	if (adapter->vfs_allocated_count) { -		int i; -		for (i = 0 ; i < adapter->vfs_allocated_count; i++) -			adapter->vf_data[i].flags = 0; - -		/* ping all the active vfs to let them know we are going down */ -		igb_ping_all_vfs(adapter); - -		/* disable transmits and receives */ -		wr32(E1000_VFRE, 0); -		wr32(E1000_VFTE, 0); -	} - -	/* Allow time for pending master requests to run */ -	hw->mac.ops.reset_hw(hw); -	wr32(E1000_WUC, 0); - -	if (hw->mac.ops.init_hw(hw)) -		dev_err(&pdev->dev, "Hardware Error\n"); - -	if (hw->mac.type == e1000_82580) { -		u32 reg = rd32(E1000_PCIEMISC); -		wr32(E1000_PCIEMISC, -		                reg & ~E1000_PCIEMISC_LX_DECISION); -	} -	if (!netif_running(adapter->netdev)) -		igb_power_down_link(adapter); - -	igb_update_mng_vlan(adapter); - -	/* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */ -	wr32(E1000_VET, ETHERNET_IEEE_VLAN_TYPE); - -	igb_get_phy_info(hw); -} - -static const struct net_device_ops igb_netdev_ops = { -	.ndo_open		= igb_open, -	.ndo_stop		= igb_close, -	.ndo_start_xmit		= igb_xmit_frame_adv, -	.ndo_get_stats64	= igb_get_stats64, -	.ndo_set_rx_mode	= igb_set_rx_mode, -	.ndo_set_multicast_list	= igb_set_rx_mode, -	.ndo_set_mac_address	= igb_set_mac, -	.ndo_change_mtu		= igb_change_mtu, -	.ndo_do_ioctl		= igb_ioctl, -	.ndo_tx_timeout		= igb_tx_timeout, -	.ndo_validate_addr	= eth_validate_addr, -	.ndo_vlan_rx_register	= igb_vlan_rx_register, -	.ndo_vlan_rx_add_vid	= igb_vlan_rx_add_vid, -	.ndo_vlan_rx_kill_vid	= igb_vlan_rx_kill_vid, -	.ndo_set_vf_mac		= igb_ndo_set_vf_mac, -	.ndo_set_vf_vlan	= igb_ndo_set_vf_vlan, -	.ndo_set_vf_tx_rate	= igb_ndo_set_vf_bw, -	.ndo_get_vf_config	= igb_ndo_get_vf_config, -#ifdef CONFIG_NET_POLL_CONTROLLER -	.ndo_poll_controller	= igb_netpoll, -#endif -}; - -/** - * igb_probe - Device Initialization Routine - * @pdev: PCI device information struct - * @ent: entry in igb_pci_tbl - * - * Returns 0 on success, negative on failure - * - * igb_probe initializes an adapter identified by a pci_dev structure. - * The OS initialization, configuring of the adapter private structure, - * and a hardware reset occur. - **/ -static int __devinit igb_probe(struct pci_dev *pdev, -			       const struct pci_device_id *ent) -{ -	struct net_device *netdev; -	struct igb_adapter *adapter; -	struct e1000_hw *hw; -	u16 eeprom_data = 0; -	static int global_quad_port_a; /* global quad port a indication */ -	const struct e1000_info *ei = igb_info_tbl[ent->driver_data]; -	unsigned long mmio_start, mmio_len; -	int err, pci_using_dac; -	u16 eeprom_apme_mask = IGB_EEPROM_APME; -	u32 part_num; - -	/* Catch broken hardware that put the wrong VF device ID in -	 * the PCIe SR-IOV capability. -	 */ -	if (pdev->is_virtfn) { -		WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n", -		     pci_name(pdev), pdev->vendor, pdev->device); -		return -EINVAL; -	} - -	err = pci_enable_device_mem(pdev); -	if (err) -		return err; - -	pci_using_dac = 0; -	err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)); -	if (!err) { -		err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64)); -		if (!err) -			pci_using_dac = 1; -	} else { -		err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)); -		if (err) { -			err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32)); -			if (err) { -				dev_err(&pdev->dev, "No usable DMA " -					"configuration, aborting\n"); -				goto err_dma; -			} -		} -	} - -	err = pci_request_selected_regions(pdev, pci_select_bars(pdev, -	                                   IORESOURCE_MEM), -	                                   igb_driver_name); -	if (err) -		goto err_pci_reg; - -	pci_enable_pcie_error_reporting(pdev); - -	pci_set_master(pdev); -	pci_save_state(pdev); - -	err = -ENOMEM; -	netdev = alloc_etherdev_mq(sizeof(struct igb_adapter), -	                           IGB_ABS_MAX_TX_QUEUES); -	if (!netdev) -		goto err_alloc_etherdev; - -	SET_NETDEV_DEV(netdev, &pdev->dev); - -	pci_set_drvdata(pdev, netdev); -	adapter = netdev_priv(netdev); -	adapter->netdev = netdev; -	adapter->pdev = pdev; -	hw = &adapter->hw; -	hw->back = adapter; -	adapter->msg_enable = NETIF_MSG_DRV | NETIF_MSG_PROBE; - -	mmio_start = pci_resource_start(pdev, 0); -	mmio_len = pci_resource_len(pdev, 0); - -	err = -EIO; -	hw->hw_addr = ioremap(mmio_start, mmio_len); -	if (!hw->hw_addr) -		goto err_ioremap; - -	netdev->netdev_ops = &igb_netdev_ops; -	igb_set_ethtool_ops(netdev); -	netdev->watchdog_timeo = 5 * HZ; - -	strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1); - -	netdev->mem_start = mmio_start; -	netdev->mem_end = mmio_start + mmio_len; - -	/* PCI config space info */ -	hw->vendor_id = pdev->vendor; -	hw->device_id = pdev->device; -	hw->revision_id = pdev->revision; -	hw->subsystem_vendor_id = pdev->subsystem_vendor; -	hw->subsystem_device_id = pdev->subsystem_device; - -	/* Copy the default MAC, PHY and NVM function pointers */ -	memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops)); -	memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops)); -	memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops)); -	/* Initialize skew-specific constants */ -	err = ei->get_invariants(hw); -	if (err) -		goto err_sw_init; - -	/* setup the private structure */ -	err = igb_sw_init(adapter); -	if (err) -		goto err_sw_init; - -	igb_get_bus_info_pcie(hw); - -	hw->phy.autoneg_wait_to_complete = false; - -	/* Copper options */ -	if (hw->phy.media_type == e1000_media_type_copper) { -		hw->phy.mdix = AUTO_ALL_MODES; -		hw->phy.disable_polarity_correction = false; -		hw->phy.ms_type = e1000_ms_hw_default; -	} - -	if (igb_check_reset_block(hw)) -		dev_info(&pdev->dev, -			"PHY reset is blocked due to SOL/IDER session.\n"); - -	netdev->features = NETIF_F_SG | -			   NETIF_F_IP_CSUM | -			   NETIF_F_HW_VLAN_TX | -			   NETIF_F_HW_VLAN_RX | -			   NETIF_F_HW_VLAN_FILTER; - -	netdev->features |= NETIF_F_IPV6_CSUM; -	netdev->features |= NETIF_F_TSO; -	netdev->features |= NETIF_F_TSO6; -	netdev->features |= NETIF_F_GRO; - -	netdev->vlan_features |= NETIF_F_TSO; -	netdev->vlan_features |= NETIF_F_TSO6; -	netdev->vlan_features |= NETIF_F_IP_CSUM; -	netdev->vlan_features |= NETIF_F_IPV6_CSUM; -	netdev->vlan_features |= NETIF_F_SG; - -	if (pci_using_dac) { -		netdev->features |= NETIF_F_HIGHDMA; -		netdev->vlan_features |= NETIF_F_HIGHDMA; -	} - -	if (hw->mac.type >= e1000_82576) -		netdev->features |= NETIF_F_SCTP_CSUM; - -	adapter->en_mng_pt = igb_enable_mng_pass_thru(hw); - -	/* before reading the NVM, reset the controller to put the device in a -	 * known good starting state */ -	hw->mac.ops.reset_hw(hw); - -	/* make sure the NVM is good */ -	if (igb_validate_nvm_checksum(hw) < 0) { -		dev_err(&pdev->dev, "The NVM Checksum Is Not Valid\n"); -		err = -EIO; -		goto err_eeprom; -	} - -	/* copy the MAC address out of the NVM */ -	if (hw->mac.ops.read_mac_addr(hw)) -		dev_err(&pdev->dev, "NVM Read Error\n"); - -	memcpy(netdev->dev_addr, hw->mac.addr, netdev->addr_len); -	memcpy(netdev->perm_addr, hw->mac.addr, netdev->addr_len); - -	if (!is_valid_ether_addr(netdev->perm_addr)) { -		dev_err(&pdev->dev, "Invalid MAC Address\n"); -		err = -EIO; -		goto err_eeprom; -	} - -	setup_timer(&adapter->watchdog_timer, igb_watchdog, -	            (unsigned long) adapter); -	setup_timer(&adapter->phy_info_timer, igb_update_phy_info, -	            (unsigned long) adapter); - -	INIT_WORK(&adapter->reset_task, igb_reset_task); -	INIT_WORK(&adapter->watchdog_task, igb_watchdog_task); - -	/* Initialize link properties that are user-changeable */ -	adapter->fc_autoneg = true; -	hw->mac.autoneg = true; -	hw->phy.autoneg_advertised = 0x2f; - -	hw->fc.requested_mode = e1000_fc_default; -	hw->fc.current_mode = e1000_fc_default; - -	igb_validate_mdi_setting(hw); - -	/* Initial Wake on LAN setting If APM wake is enabled in the EEPROM, -	 * enable the ACPI Magic Packet filter -	 */ - -	if (hw->bus.func == 0) -		hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data); -	else if (hw->mac.type == e1000_82580) -		hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_A + -		                 NVM_82580_LAN_FUNC_OFFSET(hw->bus.func), 1, -		                 &eeprom_data); -	else if (hw->bus.func == 1) -		hw->nvm.ops.read(hw, NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data); - -	if (eeprom_data & eeprom_apme_mask) -		adapter->eeprom_wol |= E1000_WUFC_MAG; - -	/* now that we have the eeprom settings, apply the special cases where -	 * the eeprom may be wrong or the board simply won't support wake on -	 * lan on a particular port */ -	switch (pdev->device) { -	case E1000_DEV_ID_82575GB_QUAD_COPPER: -		adapter->eeprom_wol = 0; -		break; -	case E1000_DEV_ID_82575EB_FIBER_SERDES: -	case E1000_DEV_ID_82576_FIBER: -	case E1000_DEV_ID_82576_SERDES: -		/* Wake events only supported on port A for dual fiber -		 * regardless of eeprom setting */ -		if (rd32(E1000_STATUS) & E1000_STATUS_FUNC_1) -			adapter->eeprom_wol = 0; -		break; -	case E1000_DEV_ID_82576_QUAD_COPPER: -	case E1000_DEV_ID_82576_QUAD_COPPER_ET2: -		/* if quad port adapter, disable WoL on all but port A */ -		if (global_quad_port_a != 0) -			adapter->eeprom_wol = 0; -		else -			adapter->flags |= IGB_FLAG_QUAD_PORT_A; -		/* Reset for multiple quad port adapters */ -		if (++global_quad_port_a == 4) -			global_quad_port_a = 0; -		break; -	} - -	/* initialize the wol settings based on the eeprom settings */ -	adapter->wol = adapter->eeprom_wol; -	device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); - -	/* reset the hardware with the new settings */ -	igb_reset(adapter); - -	/* let the f/w know that the h/w is now under the control of the -	 * driver. */ -	igb_get_hw_control(adapter); - -	strcpy(netdev->name, "eth%d"); -	err = register_netdev(netdev); -	if (err) -		goto err_register; - -	/* carrier off reporting is important to ethtool even BEFORE open */ -	netif_carrier_off(netdev); - -#ifdef CONFIG_IGB_DCA -	if (dca_add_requester(&pdev->dev) == 0) { -		adapter->flags |= IGB_FLAG_DCA_ENABLED; -		dev_info(&pdev->dev, "DCA enabled\n"); -		igb_setup_dca(adapter); -	} - -#endif -	dev_info(&pdev->dev, "Intel(R) Gigabit Ethernet Network Connection\n"); -	/* print bus type/speed/width info */ -	dev_info(&pdev->dev, "%s: (PCIe:%s:%s) %pM\n", -		 netdev->name, -		 ((hw->bus.speed == e1000_bus_speed_2500) ? "2.5Gb/s" : -		  (hw->bus.speed == e1000_bus_speed_5000) ? "5.0Gb/s" : -		                                            "unknown"), -		 ((hw->bus.width == e1000_bus_width_pcie_x4) ? "Width x4" : -		  (hw->bus.width == e1000_bus_width_pcie_x2) ? "Width x2" : -		  (hw->bus.width == e1000_bus_width_pcie_x1) ? "Width x1" : -		   "unknown"), -		 netdev->dev_addr); - -	igb_read_part_num(hw, &part_num); -	dev_info(&pdev->dev, "%s: PBA No: %06x-%03x\n", netdev->name, -		(part_num >> 8), (part_num & 0xff)); - -	dev_info(&pdev->dev, -		"Using %s interrupts. %d rx queue(s), %d tx queue(s)\n", -		adapter->msix_entries ? "MSI-X" : -		(adapter->flags & IGB_FLAG_HAS_MSI) ? "MSI" : "legacy", -		adapter->num_rx_queues, adapter->num_tx_queues); - -	return 0; - -err_register: -	igb_release_hw_control(adapter); -err_eeprom: -	if (!igb_check_reset_block(hw)) -		igb_reset_phy(hw); - -	if (hw->flash_address) -		iounmap(hw->flash_address); -err_sw_init: -	igb_clear_interrupt_scheme(adapter); -	iounmap(hw->hw_addr); -err_ioremap: -	free_netdev(netdev); -err_alloc_etherdev: -	pci_release_selected_regions(pdev, -	                             pci_select_bars(pdev, IORESOURCE_MEM)); -err_pci_reg: -err_dma: -	pci_disable_device(pdev); -	return err; -} - -/** - * igb_remove - Device Removal Routine - * @pdev: PCI device information struct - * - * igb_remove is called by the PCI subsystem to alert the driver - * that it should release a PCI device.  The could be caused by a - * Hot-Plug event, or because the driver is going to be removed from - * memory. - **/ -static void __devexit igb_remove(struct pci_dev *pdev) -{ -	struct net_device *netdev = pci_get_drvdata(pdev); -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; - -	/* flush_scheduled work may reschedule our watchdog task, so -	 * explicitly disable watchdog tasks from being rescheduled  */ -	set_bit(__IGB_DOWN, &adapter->state); -	del_timer_sync(&adapter->watchdog_timer); -	del_timer_sync(&adapter->phy_info_timer); - -	flush_scheduled_work(); - -#ifdef CONFIG_IGB_DCA -	if (adapter->flags & IGB_FLAG_DCA_ENABLED) { -		dev_info(&pdev->dev, "DCA disabled\n"); -		dca_remove_requester(&pdev->dev); -		adapter->flags &= ~IGB_FLAG_DCA_ENABLED; -		wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_DISABLE); -	} -#endif - -	/* Release control of h/w to f/w.  If f/w is AMT enabled, this -	 * would have already happened in close and is redundant. */ -	igb_release_hw_control(adapter); - -	unregister_netdev(netdev); - -	igb_clear_interrupt_scheme(adapter); - -#ifdef CONFIG_PCI_IOV -	/* reclaim resources allocated to VFs */ -	if (adapter->vf_data) { -		/* disable iov and allow time for transactions to clear */ -		pci_disable_sriov(pdev); -		msleep(500); - -		kfree(adapter->vf_data); -		adapter->vf_data = NULL; -		wr32(E1000_IOVCTL, E1000_IOVCTL_REUSE_VFQ); -		msleep(100); -		dev_info(&pdev->dev, "IOV Disabled\n"); -	} -#endif - -	iounmap(hw->hw_addr); -	if (hw->flash_address) -		iounmap(hw->flash_address); -	pci_release_selected_regions(pdev, -	                             pci_select_bars(pdev, IORESOURCE_MEM)); - -	free_netdev(netdev); - -	pci_disable_pcie_error_reporting(pdev); - -	pci_disable_device(pdev); -} - -/** - * igb_probe_vfs - Initialize vf data storage and add VFs to pci config space - * @adapter: board private structure to initialize - * - * This function initializes the vf specific data storage and then attempts to - * allocate the VFs.  The reason for ordering it this way is because it is much - * mor expensive time wise to disable SR-IOV than it is to allocate and free - * the memory for the VFs. - **/ -static void __devinit igb_probe_vfs(struct igb_adapter * adapter) -{ -#ifdef CONFIG_PCI_IOV -	struct pci_dev *pdev = adapter->pdev; - -	if (adapter->vfs_allocated_count) { -		adapter->vf_data = kcalloc(adapter->vfs_allocated_count, -		                           sizeof(struct vf_data_storage), -		                           GFP_KERNEL); -		/* if allocation failed then we do not support SR-IOV */ -		if (!adapter->vf_data) { -			adapter->vfs_allocated_count = 0; -			dev_err(&pdev->dev, "Unable to allocate memory for VF " -			        "Data Storage\n"); -		} -	} - -	if (pci_enable_sriov(pdev, adapter->vfs_allocated_count)) { -		kfree(adapter->vf_data); -		adapter->vf_data = NULL; -#endif /* CONFIG_PCI_IOV */ -		adapter->vfs_allocated_count = 0; -#ifdef CONFIG_PCI_IOV -	} else { -		unsigned char mac_addr[ETH_ALEN]; -		int i; -		dev_info(&pdev->dev, "%d vfs allocated\n", -		         adapter->vfs_allocated_count); -		for (i = 0; i < adapter->vfs_allocated_count; i++) { -			random_ether_addr(mac_addr); -			igb_set_vf_mac(adapter, i, mac_addr); -		} -	} -#endif /* CONFIG_PCI_IOV */ -} - - -/** - * igb_init_hw_timer - Initialize hardware timer used with IEEE 1588 timestamp - * @adapter: board private structure to initialize - * - * igb_init_hw_timer initializes the function pointer and values for the hw - * timer found in hardware. - **/ -static void igb_init_hw_timer(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; - -	switch (hw->mac.type) { -	case e1000_i350: -	case e1000_82580: -		memset(&adapter->cycles, 0, sizeof(adapter->cycles)); -		adapter->cycles.read = igb_read_clock; -		adapter->cycles.mask = CLOCKSOURCE_MASK(64); -		adapter->cycles.mult = 1; -		/* -		 * The 82580 timesync updates the system timer every 8ns by 8ns -		 * and the value cannot be shifted.  Instead we need to shift -		 * the registers to generate a 64bit timer value.  As a result -		 * SYSTIMR/L/H, TXSTMPL/H, RXSTMPL/H all have to be shifted by -		 * 24 in order to generate a larger value for synchronization. -		 */ -		adapter->cycles.shift = IGB_82580_TSYNC_SHIFT; -		/* disable system timer temporarily by setting bit 31 */ -		wr32(E1000_TSAUXC, 0x80000000); -		wrfl(); - -		/* Set registers so that rollover occurs soon to test this. */ -		wr32(E1000_SYSTIMR, 0x00000000); -		wr32(E1000_SYSTIML, 0x80000000); -		wr32(E1000_SYSTIMH, 0x000000FF); -		wrfl(); - -		/* enable system timer by clearing bit 31 */ -		wr32(E1000_TSAUXC, 0x0); -		wrfl(); - -		timecounter_init(&adapter->clock, -				 &adapter->cycles, -				 ktime_to_ns(ktime_get_real())); -		/* -		 * Synchronize our NIC clock against system wall clock. NIC -		 * time stamp reading requires ~3us per sample, each sample -		 * was pretty stable even under load => only require 10 -		 * samples for each offset comparison. -		 */ -		memset(&adapter->compare, 0, sizeof(adapter->compare)); -		adapter->compare.source = &adapter->clock; -		adapter->compare.target = ktime_get_real; -		adapter->compare.num_samples = 10; -		timecompare_update(&adapter->compare, 0); -		break; -	case e1000_82576: -		/* -		 * Initialize hardware timer: we keep it running just in case -		 * that some program needs it later on. -		 */ -		memset(&adapter->cycles, 0, sizeof(adapter->cycles)); -		adapter->cycles.read = igb_read_clock; -		adapter->cycles.mask = CLOCKSOURCE_MASK(64); -		adapter->cycles.mult = 1; -		/** -		 * Scale the NIC clock cycle by a large factor so that -		 * relatively small clock corrections can be added or -		 * substracted at each clock tick. The drawbacks of a large -		 * factor are a) that the clock register overflows more quickly -		 * (not such a big deal) and b) that the increment per tick has -		 * to fit into 24 bits.  As a result we need to use a shift of -		 * 19 so we can fit a value of 16 into the TIMINCA register. -		 */ -		adapter->cycles.shift = IGB_82576_TSYNC_SHIFT; -		wr32(E1000_TIMINCA, -		                (1 << E1000_TIMINCA_16NS_SHIFT) | -		                (16 << IGB_82576_TSYNC_SHIFT)); - -		/* Set registers so that rollover occurs soon to test this. */ -		wr32(E1000_SYSTIML, 0x00000000); -		wr32(E1000_SYSTIMH, 0xFF800000); -		wrfl(); - -		timecounter_init(&adapter->clock, -				 &adapter->cycles, -				 ktime_to_ns(ktime_get_real())); -		/* -		 * Synchronize our NIC clock against system wall clock. NIC -		 * time stamp reading requires ~3us per sample, each sample -		 * was pretty stable even under load => only require 10 -		 * samples for each offset comparison. -		 */ -		memset(&adapter->compare, 0, sizeof(adapter->compare)); -		adapter->compare.source = &adapter->clock; -		adapter->compare.target = ktime_get_real; -		adapter->compare.num_samples = 10; -		timecompare_update(&adapter->compare, 0); -		break; -	case e1000_82575: -		/* 82575 does not support timesync */ -	default: -		break; -	} - -} - -/** - * igb_sw_init - Initialize general software structures (struct igb_adapter) - * @adapter: board private structure to initialize - * - * igb_sw_init initializes the Adapter private data structure. - * Fields are initialized based on PCI device information and - * OS network device settings (MTU size). - **/ -static int __devinit igb_sw_init(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	struct net_device *netdev = adapter->netdev; -	struct pci_dev *pdev = adapter->pdev; - -	pci_read_config_word(pdev, PCI_COMMAND, &hw->bus.pci_cmd_word); - -	adapter->tx_ring_count = IGB_DEFAULT_TXD; -	adapter->rx_ring_count = IGB_DEFAULT_RXD; -	adapter->rx_itr_setting = IGB_DEFAULT_ITR; -	adapter->tx_itr_setting = IGB_DEFAULT_ITR; - -	adapter->max_frame_size = netdev->mtu + ETH_HLEN + ETH_FCS_LEN; -	adapter->min_frame_size = ETH_ZLEN + ETH_FCS_LEN; - -	spin_lock_init(&adapter->stats64_lock); -#ifdef CONFIG_PCI_IOV -	if (hw->mac.type == e1000_82576) -		adapter->vfs_allocated_count = (max_vfs > 7) ? 7 : max_vfs; - -#endif /* CONFIG_PCI_IOV */ -	adapter->rss_queues = min_t(u32, IGB_MAX_RX_QUEUES, num_online_cpus()); - -	/* -	 * if rss_queues > 4 or vfs are going to be allocated with rss_queues -	 * then we should combine the queues into a queue pair in order to -	 * conserve interrupts due to limited supply -	 */ -	if ((adapter->rss_queues > 4) || -	    ((adapter->rss_queues > 1) && (adapter->vfs_allocated_count > 6))) -		adapter->flags |= IGB_FLAG_QUEUE_PAIRS; - -	/* This call may decrease the number of queues */ -	if (igb_init_interrupt_scheme(adapter)) { -		dev_err(&pdev->dev, "Unable to allocate memory for queues\n"); -		return -ENOMEM; -	} - -	igb_init_hw_timer(adapter); -	igb_probe_vfs(adapter); - -	/* Explicitly disable IRQ since the NIC can be in any state. */ -	igb_irq_disable(adapter); - -	set_bit(__IGB_DOWN, &adapter->state); -	return 0; -} - -/** - * igb_open - Called when a network interface is made active - * @netdev: network interface device structure - * - * Returns 0 on success, negative value on failure - * - * The open entry point is called when a network interface is made - * active by the system (IFF_UP).  At this point all resources needed - * for transmit and receive operations are allocated, the interrupt - * handler is registered with the OS, the watchdog timer is started, - * and the stack is notified that the interface is ready. - **/ -static int igb_open(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	int err; -	int i; - -	/* disallow open during test */ -	if (test_bit(__IGB_TESTING, &adapter->state)) -		return -EBUSY; - -	netif_carrier_off(netdev); - -	/* allocate transmit descriptors */ -	err = igb_setup_all_tx_resources(adapter); -	if (err) -		goto err_setup_tx; - -	/* allocate receive descriptors */ -	err = igb_setup_all_rx_resources(adapter); -	if (err) -		goto err_setup_rx; - -	igb_power_up_link(adapter); - -	/* before we allocate an interrupt, we must be ready to handle it. -	 * Setting DEBUG_SHIRQ in the kernel makes it fire an interrupt -	 * as soon as we call pci_request_irq, so we have to setup our -	 * clean_rx handler before we do so.  */ -	igb_configure(adapter); - -	err = igb_request_irq(adapter); -	if (err) -		goto err_req_irq; - -	/* From here on the code is the same as igb_up() */ -	clear_bit(__IGB_DOWN, &adapter->state); - -	for (i = 0; i < adapter->num_q_vectors; i++) { -		struct igb_q_vector *q_vector = adapter->q_vector[i]; -		napi_enable(&q_vector->napi); -	} - -	/* Clear any pending interrupts. */ -	rd32(E1000_ICR); - -	igb_irq_enable(adapter); - -	/* notify VFs that reset has been completed */ -	if (adapter->vfs_allocated_count) { -		u32 reg_data = rd32(E1000_CTRL_EXT); -		reg_data |= E1000_CTRL_EXT_PFRSTD; -		wr32(E1000_CTRL_EXT, reg_data); -	} - -	netif_tx_start_all_queues(netdev); - -	/* start the watchdog. */ -	hw->mac.get_link_status = 1; -	schedule_work(&adapter->watchdog_task); - -	return 0; - -err_req_irq: -	igb_release_hw_control(adapter); -	igb_power_down_link(adapter); -	igb_free_all_rx_resources(adapter); -err_setup_rx: -	igb_free_all_tx_resources(adapter); -err_setup_tx: -	igb_reset(adapter); - -	return err; -} - -/** - * igb_close - Disables a network interface - * @netdev: network interface device structure - * - * Returns 0, this is not allowed to fail - * - * The close entry point is called when an interface is de-activated - * by the OS.  The hardware is still under the driver's control, but - * needs to be disabled.  A global MAC reset is issued to stop the - * hardware, and all transmit and receive resources are freed. - **/ -static int igb_close(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	WARN_ON(test_bit(__IGB_RESETTING, &adapter->state)); -	igb_down(adapter); - -	igb_free_irq(adapter); - -	igb_free_all_tx_resources(adapter); -	igb_free_all_rx_resources(adapter); - -	return 0; -} - -/** - * igb_setup_tx_resources - allocate Tx resources (Descriptors) - * @tx_ring: tx descriptor ring (for a specific queue) to setup - * - * Return 0 on success, negative on failure - **/ -int igb_setup_tx_resources(struct igb_ring *tx_ring) -{ -	struct device *dev = tx_ring->dev; -	int size; - -	size = sizeof(struct igb_buffer) * tx_ring->count; -	tx_ring->buffer_info = vzalloc(size); -	if (!tx_ring->buffer_info) -		goto err; - -	/* round up to nearest 4K */ -	tx_ring->size = tx_ring->count * sizeof(union e1000_adv_tx_desc); -	tx_ring->size = ALIGN(tx_ring->size, 4096); - -	tx_ring->desc = dma_alloc_coherent(dev, -					   tx_ring->size, -					   &tx_ring->dma, -					   GFP_KERNEL); - -	if (!tx_ring->desc) -		goto err; - -	tx_ring->next_to_use = 0; -	tx_ring->next_to_clean = 0; -	return 0; - -err: -	vfree(tx_ring->buffer_info); -	dev_err(dev, -		"Unable to allocate memory for the transmit descriptor ring\n"); -	return -ENOMEM; -} - -/** - * igb_setup_all_tx_resources - wrapper to allocate Tx resources - *				  (Descriptors) for all queues - * @adapter: board private structure - * - * Return 0 on success, negative on failure - **/ -static int igb_setup_all_tx_resources(struct igb_adapter *adapter) -{ -	struct pci_dev *pdev = adapter->pdev; -	int i, err = 0; - -	for (i = 0; i < adapter->num_tx_queues; i++) { -		err = igb_setup_tx_resources(adapter->tx_ring[i]); -		if (err) { -			dev_err(&pdev->dev, -				"Allocation for Tx Queue %u failed\n", i); -			for (i--; i >= 0; i--) -				igb_free_tx_resources(adapter->tx_ring[i]); -			break; -		} -	} - -	for (i = 0; i < IGB_ABS_MAX_TX_QUEUES; i++) { -		int r_idx = i % adapter->num_tx_queues; -		adapter->multi_tx_table[i] = adapter->tx_ring[r_idx]; -	} -	return err; -} - -/** - * igb_setup_tctl - configure the transmit control registers - * @adapter: Board private structure - **/ -void igb_setup_tctl(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 tctl; - -	/* disable queue 0 which is enabled by default on 82575 and 82576 */ -	wr32(E1000_TXDCTL(0), 0); - -	/* Program the Transmit Control Register */ -	tctl = rd32(E1000_TCTL); -	tctl &= ~E1000_TCTL_CT; -	tctl |= E1000_TCTL_PSP | E1000_TCTL_RTLC | -		(E1000_COLLISION_THRESHOLD << E1000_CT_SHIFT); - -	igb_config_collision_dist(hw); - -	/* Enable transmits */ -	tctl |= E1000_TCTL_EN; - -	wr32(E1000_TCTL, tctl); -} - -/** - * igb_configure_tx_ring - Configure transmit ring after Reset - * @adapter: board private structure - * @ring: tx ring to configure - * - * Configure a transmit ring after a reset. - **/ -void igb_configure_tx_ring(struct igb_adapter *adapter, -                           struct igb_ring *ring) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 txdctl; -	u64 tdba = ring->dma; -	int reg_idx = ring->reg_idx; - -	/* disable the queue */ -	txdctl = rd32(E1000_TXDCTL(reg_idx)); -	wr32(E1000_TXDCTL(reg_idx), -	                txdctl & ~E1000_TXDCTL_QUEUE_ENABLE); -	wrfl(); -	mdelay(10); - -	wr32(E1000_TDLEN(reg_idx), -	                ring->count * sizeof(union e1000_adv_tx_desc)); -	wr32(E1000_TDBAL(reg_idx), -	                tdba & 0x00000000ffffffffULL); -	wr32(E1000_TDBAH(reg_idx), tdba >> 32); - -	ring->head = hw->hw_addr + E1000_TDH(reg_idx); -	ring->tail = hw->hw_addr + E1000_TDT(reg_idx); -	writel(0, ring->head); -	writel(0, ring->tail); - -	txdctl |= IGB_TX_PTHRESH; -	txdctl |= IGB_TX_HTHRESH << 8; -	txdctl |= IGB_TX_WTHRESH << 16; - -	txdctl |= E1000_TXDCTL_QUEUE_ENABLE; -	wr32(E1000_TXDCTL(reg_idx), txdctl); -} - -/** - * igb_configure_tx - Configure transmit Unit after Reset - * @adapter: board private structure - * - * Configure the Tx unit of the MAC after a reset. - **/ -static void igb_configure_tx(struct igb_adapter *adapter) -{ -	int i; - -	for (i = 0; i < adapter->num_tx_queues; i++) -		igb_configure_tx_ring(adapter, adapter->tx_ring[i]); -} - -/** - * igb_setup_rx_resources - allocate Rx resources (Descriptors) - * @rx_ring:    rx descriptor ring (for a specific queue) to setup - * - * Returns 0 on success, negative on failure - **/ -int igb_setup_rx_resources(struct igb_ring *rx_ring) -{ -	struct device *dev = rx_ring->dev; -	int size, desc_len; - -	size = sizeof(struct igb_buffer) * rx_ring->count; -	rx_ring->buffer_info = vzalloc(size); -	if (!rx_ring->buffer_info) -		goto err; - -	desc_len = sizeof(union e1000_adv_rx_desc); - -	/* Round up to nearest 4K */ -	rx_ring->size = rx_ring->count * desc_len; -	rx_ring->size = ALIGN(rx_ring->size, 4096); - -	rx_ring->desc = dma_alloc_coherent(dev, -					   rx_ring->size, -					   &rx_ring->dma, -					   GFP_KERNEL); - -	if (!rx_ring->desc) -		goto err; - -	rx_ring->next_to_clean = 0; -	rx_ring->next_to_use = 0; - -	return 0; - -err: -	vfree(rx_ring->buffer_info); -	rx_ring->buffer_info = NULL; -	dev_err(dev, "Unable to allocate memory for the receive descriptor" -		" ring\n"); -	return -ENOMEM; -} - -/** - * igb_setup_all_rx_resources - wrapper to allocate Rx resources - *				  (Descriptors) for all queues - * @adapter: board private structure - * - * Return 0 on success, negative on failure - **/ -static int igb_setup_all_rx_resources(struct igb_adapter *adapter) -{ -	struct pci_dev *pdev = adapter->pdev; -	int i, err = 0; - -	for (i = 0; i < adapter->num_rx_queues; i++) { -		err = igb_setup_rx_resources(adapter->rx_ring[i]); -		if (err) { -			dev_err(&pdev->dev, -				"Allocation for Rx Queue %u failed\n", i); -			for (i--; i >= 0; i--) -				igb_free_rx_resources(adapter->rx_ring[i]); -			break; -		} -	} - -	return err; -} - -/** - * igb_setup_mrqc - configure the multiple receive queue control registers - * @adapter: Board private structure - **/ -static void igb_setup_mrqc(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 mrqc, rxcsum; -	u32 j, num_rx_queues, shift = 0, shift2 = 0; -	union e1000_reta { -		u32 dword; -		u8  bytes[4]; -	} reta; -	static const u8 rsshash[40] = { -		0x6d, 0x5a, 0x56, 0xda, 0x25, 0x5b, 0x0e, 0xc2, 0x41, 0x67, -		0x25, 0x3d, 0x43, 0xa3, 0x8f, 0xb0, 0xd0, 0xca, 0x2b, 0xcb, -		0xae, 0x7b, 0x30, 0xb4,	0x77, 0xcb, 0x2d, 0xa3, 0x80, 0x30, -		0xf2, 0x0c, 0x6a, 0x42, 0xb7, 0x3b, 0xbe, 0xac, 0x01, 0xfa }; - -	/* Fill out hash function seeds */ -	for (j = 0; j < 10; j++) { -		u32 rsskey = rsshash[(j * 4)]; -		rsskey |= rsshash[(j * 4) + 1] << 8; -		rsskey |= rsshash[(j * 4) + 2] << 16; -		rsskey |= rsshash[(j * 4) + 3] << 24; -		array_wr32(E1000_RSSRK(0), j, rsskey); -	} - -	num_rx_queues = adapter->rss_queues; - -	if (adapter->vfs_allocated_count) { -		/* 82575 and 82576 supports 2 RSS queues for VMDq */ -		switch (hw->mac.type) { -		case e1000_i350: -		case e1000_82580: -			num_rx_queues = 1; -			shift = 0; -			break; -		case e1000_82576: -			shift = 3; -			num_rx_queues = 2; -			break; -		case e1000_82575: -			shift = 2; -			shift2 = 6; -		default: -			break; -		} -	} else { -		if (hw->mac.type == e1000_82575) -			shift = 6; -	} - -	for (j = 0; j < (32 * 4); j++) { -		reta.bytes[j & 3] = (j % num_rx_queues) << shift; -		if (shift2) -			reta.bytes[j & 3] |= num_rx_queues << shift2; -		if ((j & 3) == 3) -			wr32(E1000_RETA(j >> 2), reta.dword); -	} - -	/* -	 * Disable raw packet checksumming so that RSS hash is placed in -	 * descriptor on writeback.  No need to enable TCP/UDP/IP checksum -	 * offloads as they are enabled by default -	 */ -	rxcsum = rd32(E1000_RXCSUM); -	rxcsum |= E1000_RXCSUM_PCSD; - -	if (adapter->hw.mac.type >= e1000_82576) -		/* Enable Receive Checksum Offload for SCTP */ -		rxcsum |= E1000_RXCSUM_CRCOFL; - -	/* Don't need to set TUOFL or IPOFL, they default to 1 */ -	wr32(E1000_RXCSUM, rxcsum); - -	/* If VMDq is enabled then we set the appropriate mode for that, else -	 * we default to RSS so that an RSS hash is calculated per packet even -	 * if we are only using one queue */ -	if (adapter->vfs_allocated_count) { -		if (hw->mac.type > e1000_82575) { -			/* Set the default pool for the PF's first queue */ -			u32 vtctl = rd32(E1000_VT_CTL); -			vtctl &= ~(E1000_VT_CTL_DEFAULT_POOL_MASK | -				   E1000_VT_CTL_DISABLE_DEF_POOL); -			vtctl |= adapter->vfs_allocated_count << -				E1000_VT_CTL_DEFAULT_POOL_SHIFT; -			wr32(E1000_VT_CTL, vtctl); -		} -		if (adapter->rss_queues > 1) -			mrqc = E1000_MRQC_ENABLE_VMDQ_RSS_2Q; -		else -			mrqc = E1000_MRQC_ENABLE_VMDQ; -	} else { -		mrqc = E1000_MRQC_ENABLE_RSS_4Q; -	} -	igb_vmm_control(adapter); - -	/* -	 * Generate RSS hash based on TCP port numbers and/or -	 * IPv4/v6 src and dst addresses since UDP cannot be -	 * hashed reliably due to IP fragmentation -	 */ -	mrqc |= E1000_MRQC_RSS_FIELD_IPV4 | -		E1000_MRQC_RSS_FIELD_IPV4_TCP | -		E1000_MRQC_RSS_FIELD_IPV6 | -		E1000_MRQC_RSS_FIELD_IPV6_TCP | -		E1000_MRQC_RSS_FIELD_IPV6_TCP_EX; - -	wr32(E1000_MRQC, mrqc); -} - -/** - * igb_setup_rctl - configure the receive control registers - * @adapter: Board private structure - **/ -void igb_setup_rctl(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 rctl; - -	rctl = rd32(E1000_RCTL); - -	rctl &= ~(3 << E1000_RCTL_MO_SHIFT); -	rctl &= ~(E1000_RCTL_LBM_TCVR | E1000_RCTL_LBM_MAC); - -	rctl |= E1000_RCTL_EN | E1000_RCTL_BAM | E1000_RCTL_RDMTS_HALF | -		(hw->mac.mc_filter_type << E1000_RCTL_MO_SHIFT); - -	/* -	 * enable stripping of CRC. It's unlikely this will break BMC -	 * redirection as it did with e1000. Newer features require -	 * that the HW strips the CRC. -	 */ -	rctl |= E1000_RCTL_SECRC; - -	/* disable store bad packets and clear size bits. */ -	rctl &= ~(E1000_RCTL_SBP | E1000_RCTL_SZ_256); - -	/* enable LPE to prevent packets larger than max_frame_size */ -	rctl |= E1000_RCTL_LPE; - -	/* disable queue 0 to prevent tail write w/o re-config */ -	wr32(E1000_RXDCTL(0), 0); - -	/* Attention!!!  For SR-IOV PF driver operations you must enable -	 * queue drop for all VF and PF queues to prevent head of line blocking -	 * if an un-trusted VF does not provide descriptors to hardware. -	 */ -	if (adapter->vfs_allocated_count) { -		/* set all queue drop enable bits */ -		wr32(E1000_QDE, ALL_QUEUES); -	} - -	wr32(E1000_RCTL, rctl); -} - -static inline int igb_set_vf_rlpml(struct igb_adapter *adapter, int size, -                                   int vfn) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 vmolr; - -	/* if it isn't the PF check to see if VFs are enabled and -	 * increase the size to support vlan tags */ -	if (vfn < adapter->vfs_allocated_count && -	    adapter->vf_data[vfn].vlans_enabled) -		size += VLAN_TAG_SIZE; - -	vmolr = rd32(E1000_VMOLR(vfn)); -	vmolr &= ~E1000_VMOLR_RLPML_MASK; -	vmolr |= size | E1000_VMOLR_LPE; -	wr32(E1000_VMOLR(vfn), vmolr); - -	return 0; -} - -/** - * igb_rlpml_set - set maximum receive packet size - * @adapter: board private structure - * - * Configure maximum receivable packet size. - **/ -static void igb_rlpml_set(struct igb_adapter *adapter) -{ -	u32 max_frame_size = adapter->max_frame_size; -	struct e1000_hw *hw = &adapter->hw; -	u16 pf_id = adapter->vfs_allocated_count; - -	if (adapter->vlgrp) -		max_frame_size += VLAN_TAG_SIZE; - -	/* if vfs are enabled we set RLPML to the largest possible request -	 * size and set the VMOLR RLPML to the size we need */ -	if (pf_id) { -		igb_set_vf_rlpml(adapter, max_frame_size, pf_id); -		max_frame_size = MAX_JUMBO_FRAME_SIZE; -	} - -	wr32(E1000_RLPML, max_frame_size); -} - -static inline void igb_set_vmolr(struct igb_adapter *adapter, -				 int vfn, bool aupe) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 vmolr; - -	/* -	 * This register exists only on 82576 and newer so if we are older then -	 * we should exit and do nothing -	 */ -	if (hw->mac.type < e1000_82576) -		return; - -	vmolr = rd32(E1000_VMOLR(vfn)); -	vmolr |= E1000_VMOLR_STRVLAN;      /* Strip vlan tags */ -	if (aupe) -		vmolr |= E1000_VMOLR_AUPE;        /* Accept untagged packets */ -	else -		vmolr &= ~(E1000_VMOLR_AUPE); /* Tagged packets ONLY */ - -	/* clear all bits that might not be set */ -	vmolr &= ~(E1000_VMOLR_BAM | E1000_VMOLR_RSSE); - -	if (adapter->rss_queues > 1 && vfn == adapter->vfs_allocated_count) -		vmolr |= E1000_VMOLR_RSSE; /* enable RSS */ -	/* -	 * for VMDq only allow the VFs and pool 0 to accept broadcast and -	 * multicast packets -	 */ -	if (vfn <= adapter->vfs_allocated_count) -		vmolr |= E1000_VMOLR_BAM;	   /* Accept broadcast */ - -	wr32(E1000_VMOLR(vfn), vmolr); -} - -/** - * igb_configure_rx_ring - Configure a receive ring after Reset - * @adapter: board private structure - * @ring: receive ring to be configured - * - * Configure the Rx unit of the MAC after a reset. - **/ -void igb_configure_rx_ring(struct igb_adapter *adapter, -                           struct igb_ring *ring) -{ -	struct e1000_hw *hw = &adapter->hw; -	u64 rdba = ring->dma; -	int reg_idx = ring->reg_idx; -	u32 srrctl, rxdctl; - -	/* disable the queue */ -	rxdctl = rd32(E1000_RXDCTL(reg_idx)); -	wr32(E1000_RXDCTL(reg_idx), -	                rxdctl & ~E1000_RXDCTL_QUEUE_ENABLE); - -	/* Set DMA base address registers */ -	wr32(E1000_RDBAL(reg_idx), -	     rdba & 0x00000000ffffffffULL); -	wr32(E1000_RDBAH(reg_idx), rdba >> 32); -	wr32(E1000_RDLEN(reg_idx), -	               ring->count * sizeof(union e1000_adv_rx_desc)); - -	/* initialize head and tail */ -	ring->head = hw->hw_addr + E1000_RDH(reg_idx); -	ring->tail = hw->hw_addr + E1000_RDT(reg_idx); -	writel(0, ring->head); -	writel(0, ring->tail); - -	/* set descriptor configuration */ -	if (ring->rx_buffer_len < IGB_RXBUFFER_1024) { -		srrctl = ALIGN(ring->rx_buffer_len, 64) << -		         E1000_SRRCTL_BSIZEHDRSIZE_SHIFT; -#if (PAGE_SIZE / 2) > IGB_RXBUFFER_16384 -		srrctl |= IGB_RXBUFFER_16384 >> -		          E1000_SRRCTL_BSIZEPKT_SHIFT; -#else -		srrctl |= (PAGE_SIZE / 2) >> -		          E1000_SRRCTL_BSIZEPKT_SHIFT; -#endif -		srrctl |= E1000_SRRCTL_DESCTYPE_HDR_SPLIT_ALWAYS; -	} else { -		srrctl = ALIGN(ring->rx_buffer_len, 1024) >> -		         E1000_SRRCTL_BSIZEPKT_SHIFT; -		srrctl |= E1000_SRRCTL_DESCTYPE_ADV_ONEBUF; -	} -	if (hw->mac.type == e1000_82580) -		srrctl |= E1000_SRRCTL_TIMESTAMP; -	/* Only set Drop Enable if we are supporting multiple queues */ -	if (adapter->vfs_allocated_count || adapter->num_rx_queues > 1) -		srrctl |= E1000_SRRCTL_DROP_EN; - -	wr32(E1000_SRRCTL(reg_idx), srrctl); - -	/* set filtering for VMDQ pools */ -	igb_set_vmolr(adapter, reg_idx & 0x7, true); - -	/* enable receive descriptor fetching */ -	rxdctl = rd32(E1000_RXDCTL(reg_idx)); -	rxdctl |= E1000_RXDCTL_QUEUE_ENABLE; -	rxdctl &= 0xFFF00000; -	rxdctl |= IGB_RX_PTHRESH; -	rxdctl |= IGB_RX_HTHRESH << 8; -	rxdctl |= IGB_RX_WTHRESH << 16; -	wr32(E1000_RXDCTL(reg_idx), rxdctl); -} - -/** - * igb_configure_rx - Configure receive Unit after Reset - * @adapter: board private structure - * - * Configure the Rx unit of the MAC after a reset. - **/ -static void igb_configure_rx(struct igb_adapter *adapter) -{ -	int i; - -	/* set UTA to appropriate mode */ -	igb_set_uta(adapter); - -	/* set the correct pool for the PF default MAC address in entry 0 */ -	igb_rar_set_qsel(adapter, adapter->hw.mac.addr, 0, -	                 adapter->vfs_allocated_count); - -	/* Setup the HW Rx Head and Tail Descriptor Pointers and -	 * the Base and Length of the Rx Descriptor Ring */ -	for (i = 0; i < adapter->num_rx_queues; i++) -		igb_configure_rx_ring(adapter, adapter->rx_ring[i]); -} - -/** - * igb_free_tx_resources - Free Tx Resources per Queue - * @tx_ring: Tx descriptor ring for a specific queue - * - * Free all transmit software resources - **/ -void igb_free_tx_resources(struct igb_ring *tx_ring) -{ -	igb_clean_tx_ring(tx_ring); - -	vfree(tx_ring->buffer_info); -	tx_ring->buffer_info = NULL; - -	/* if not set, then don't free */ -	if (!tx_ring->desc) -		return; - -	dma_free_coherent(tx_ring->dev, tx_ring->size, -			  tx_ring->desc, tx_ring->dma); - -	tx_ring->desc = NULL; -} - -/** - * igb_free_all_tx_resources - Free Tx Resources for All Queues - * @adapter: board private structure - * - * Free all transmit software resources - **/ -static void igb_free_all_tx_resources(struct igb_adapter *adapter) -{ -	int i; - -	for (i = 0; i < adapter->num_tx_queues; i++) -		igb_free_tx_resources(adapter->tx_ring[i]); -} - -void igb_unmap_and_free_tx_resource(struct igb_ring *tx_ring, -				    struct igb_buffer *buffer_info) -{ -	if (buffer_info->dma) { -		if (buffer_info->mapped_as_page) -			dma_unmap_page(tx_ring->dev, -					buffer_info->dma, -					buffer_info->length, -					DMA_TO_DEVICE); -		else -			dma_unmap_single(tx_ring->dev, -					buffer_info->dma, -					buffer_info->length, -					DMA_TO_DEVICE); -		buffer_info->dma = 0; -	} -	if (buffer_info->skb) { -		dev_kfree_skb_any(buffer_info->skb); -		buffer_info->skb = NULL; -	} -	buffer_info->time_stamp = 0; -	buffer_info->length = 0; -	buffer_info->next_to_watch = 0; -	buffer_info->mapped_as_page = false; -} - -/** - * igb_clean_tx_ring - Free Tx Buffers - * @tx_ring: ring to be cleaned - **/ -static void igb_clean_tx_ring(struct igb_ring *tx_ring) -{ -	struct igb_buffer *buffer_info; -	unsigned long size; -	unsigned int i; - -	if (!tx_ring->buffer_info) -		return; -	/* Free all the Tx ring sk_buffs */ - -	for (i = 0; i < tx_ring->count; i++) { -		buffer_info = &tx_ring->buffer_info[i]; -		igb_unmap_and_free_tx_resource(tx_ring, buffer_info); -	} - -	size = sizeof(struct igb_buffer) * tx_ring->count; -	memset(tx_ring->buffer_info, 0, size); - -	/* Zero out the descriptor ring */ -	memset(tx_ring->desc, 0, tx_ring->size); - -	tx_ring->next_to_use = 0; -	tx_ring->next_to_clean = 0; -} - -/** - * igb_clean_all_tx_rings - Free Tx Buffers for all queues - * @adapter: board private structure - **/ -static void igb_clean_all_tx_rings(struct igb_adapter *adapter) -{ -	int i; - -	for (i = 0; i < adapter->num_tx_queues; i++) -		igb_clean_tx_ring(adapter->tx_ring[i]); -} - -/** - * igb_free_rx_resources - Free Rx Resources - * @rx_ring: ring to clean the resources from - * - * Free all receive software resources - **/ -void igb_free_rx_resources(struct igb_ring *rx_ring) -{ -	igb_clean_rx_ring(rx_ring); - -	vfree(rx_ring->buffer_info); -	rx_ring->buffer_info = NULL; - -	/* if not set, then don't free */ -	if (!rx_ring->desc) -		return; - -	dma_free_coherent(rx_ring->dev, rx_ring->size, -			  rx_ring->desc, rx_ring->dma); - -	rx_ring->desc = NULL; -} - -/** - * igb_free_all_rx_resources - Free Rx Resources for All Queues - * @adapter: board private structure - * - * Free all receive software resources - **/ -static void igb_free_all_rx_resources(struct igb_adapter *adapter) -{ -	int i; - -	for (i = 0; i < adapter->num_rx_queues; i++) -		igb_free_rx_resources(adapter->rx_ring[i]); -} - -/** - * igb_clean_rx_ring - Free Rx Buffers per Queue - * @rx_ring: ring to free buffers from - **/ -static void igb_clean_rx_ring(struct igb_ring *rx_ring) -{ -	struct igb_buffer *buffer_info; -	unsigned long size; -	unsigned int i; - -	if (!rx_ring->buffer_info) -		return; - -	/* Free all the Rx ring sk_buffs */ -	for (i = 0; i < rx_ring->count; i++) { -		buffer_info = &rx_ring->buffer_info[i]; -		if (buffer_info->dma) { -			dma_unmap_single(rx_ring->dev, -			                 buffer_info->dma, -					 rx_ring->rx_buffer_len, -					 DMA_FROM_DEVICE); -			buffer_info->dma = 0; -		} - -		if (buffer_info->skb) { -			dev_kfree_skb(buffer_info->skb); -			buffer_info->skb = NULL; -		} -		if (buffer_info->page_dma) { -			dma_unmap_page(rx_ring->dev, -			               buffer_info->page_dma, -				       PAGE_SIZE / 2, -				       DMA_FROM_DEVICE); -			buffer_info->page_dma = 0; -		} -		if (buffer_info->page) { -			put_page(buffer_info->page); -			buffer_info->page = NULL; -			buffer_info->page_offset = 0; -		} -	} - -	size = sizeof(struct igb_buffer) * rx_ring->count; -	memset(rx_ring->buffer_info, 0, size); - -	/* Zero out the descriptor ring */ -	memset(rx_ring->desc, 0, rx_ring->size); - -	rx_ring->next_to_clean = 0; -	rx_ring->next_to_use = 0; -} - -/** - * igb_clean_all_rx_rings - Free Rx Buffers for all queues - * @adapter: board private structure - **/ -static void igb_clean_all_rx_rings(struct igb_adapter *adapter) -{ -	int i; - -	for (i = 0; i < adapter->num_rx_queues; i++) -		igb_clean_rx_ring(adapter->rx_ring[i]); -} - -/** - * igb_set_mac - Change the Ethernet Address of the NIC - * @netdev: network interface device structure - * @p: pointer to an address structure - * - * Returns 0 on success, negative on failure - **/ -static int igb_set_mac(struct net_device *netdev, void *p) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	struct sockaddr *addr = p; - -	if (!is_valid_ether_addr(addr->sa_data)) -		return -EADDRNOTAVAIL; - -	memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); -	memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len); - -	/* set the correct pool for the new PF MAC address in entry 0 */ -	igb_rar_set_qsel(adapter, hw->mac.addr, 0, -	                 adapter->vfs_allocated_count); - -	return 0; -} - -/** - * igb_write_mc_addr_list - write multicast addresses to MTA - * @netdev: network interface device structure - * - * Writes multicast address list to the MTA hash table. - * Returns: -ENOMEM on failure - *                0 on no addresses written - *                X on writing X addresses to MTA - **/ -static int igb_write_mc_addr_list(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	struct netdev_hw_addr *ha; -	u8  *mta_list; -	int i; - -	if (netdev_mc_empty(netdev)) { -		/* nothing to program, so clear mc list */ -		igb_update_mc_addr_list(hw, NULL, 0); -		igb_restore_vf_multicasts(adapter); -		return 0; -	} - -	mta_list = kzalloc(netdev_mc_count(netdev) * 6, GFP_ATOMIC); -	if (!mta_list) -		return -ENOMEM; - -	/* The shared function expects a packed array of only addresses. */ -	i = 0; -	netdev_for_each_mc_addr(ha, netdev) -		memcpy(mta_list + (i++ * ETH_ALEN), ha->addr, ETH_ALEN); - -	igb_update_mc_addr_list(hw, mta_list, i); -	kfree(mta_list); - -	return netdev_mc_count(netdev); -} - -/** - * igb_write_uc_addr_list - write unicast addresses to RAR table - * @netdev: network interface device structure - * - * Writes unicast address list to the RAR table. - * Returns: -ENOMEM on failure/insufficient address space - *                0 on no addresses written - *                X on writing X addresses to the RAR table - **/ -static int igb_write_uc_addr_list(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	unsigned int vfn = adapter->vfs_allocated_count; -	unsigned int rar_entries = hw->mac.rar_entry_count - (vfn + 1); -	int count = 0; - -	/* return ENOMEM indicating insufficient memory for addresses */ -	if (netdev_uc_count(netdev) > rar_entries) -		return -ENOMEM; - -	if (!netdev_uc_empty(netdev) && rar_entries) { -		struct netdev_hw_addr *ha; - -		netdev_for_each_uc_addr(ha, netdev) { -			if (!rar_entries) -				break; -			igb_rar_set_qsel(adapter, ha->addr, -			                 rar_entries--, -			                 vfn); -			count++; -		} -	} -	/* write the addresses in reverse order to avoid write combining */ -	for (; rar_entries > 0 ; rar_entries--) { -		wr32(E1000_RAH(rar_entries), 0); -		wr32(E1000_RAL(rar_entries), 0); -	} -	wrfl(); - -	return count; -} - -/** - * igb_set_rx_mode - Secondary Unicast, Multicast and Promiscuous mode set - * @netdev: network interface device structure - * - * The set_rx_mode entry point is called whenever the unicast or multicast - * address lists or the network interface flags are updated.  This routine is - * responsible for configuring the hardware for proper unicast, multicast, - * promiscuous mode, and all-multi behavior. - **/ -static void igb_set_rx_mode(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	unsigned int vfn = adapter->vfs_allocated_count; -	u32 rctl, vmolr = 0; -	int count; - -	/* Check for Promiscuous and All Multicast modes */ -	rctl = rd32(E1000_RCTL); - -	/* clear the effected bits */ -	rctl &= ~(E1000_RCTL_UPE | E1000_RCTL_MPE | E1000_RCTL_VFE); - -	if (netdev->flags & IFF_PROMISC) { -		rctl |= (E1000_RCTL_UPE | E1000_RCTL_MPE); -		vmolr |= (E1000_VMOLR_ROPE | E1000_VMOLR_MPME); -	} else { -		if (netdev->flags & IFF_ALLMULTI) { -			rctl |= E1000_RCTL_MPE; -			vmolr |= E1000_VMOLR_MPME; -		} else { -			/* -			 * Write addresses to the MTA, if the attempt fails -			 * then we should just turn on promiscous mode so -			 * that we can at least receive multicast traffic -			 */ -			count = igb_write_mc_addr_list(netdev); -			if (count < 0) { -				rctl |= E1000_RCTL_MPE; -				vmolr |= E1000_VMOLR_MPME; -			} else if (count) { -				vmolr |= E1000_VMOLR_ROMPE; -			} -		} -		/* -		 * Write addresses to available RAR registers, if there is not -		 * sufficient space to store all the addresses then enable -		 * unicast promiscous mode -		 */ -		count = igb_write_uc_addr_list(netdev); -		if (count < 0) { -			rctl |= E1000_RCTL_UPE; -			vmolr |= E1000_VMOLR_ROPE; -		} -		rctl |= E1000_RCTL_VFE; -	} -	wr32(E1000_RCTL, rctl); - -	/* -	 * In order to support SR-IOV and eventually VMDq it is necessary to set -	 * the VMOLR to enable the appropriate modes.  Without this workaround -	 * we will have issues with VLAN tag stripping not being done for frames -	 * that are only arriving because we are the default pool -	 */ -	if (hw->mac.type < e1000_82576) -		return; - -	vmolr |= rd32(E1000_VMOLR(vfn)) & -	         ~(E1000_VMOLR_ROPE | E1000_VMOLR_MPME | E1000_VMOLR_ROMPE); -	wr32(E1000_VMOLR(vfn), vmolr); -	igb_restore_vf_multicasts(adapter); -} - -/* Need to wait a few seconds after link up to get diagnostic information from - * the phy */ -static void igb_update_phy_info(unsigned long data) -{ -	struct igb_adapter *adapter = (struct igb_adapter *) data; -	igb_get_phy_info(&adapter->hw); -} - -/** - * igb_has_link - check shared code for link and determine up/down - * @adapter: pointer to driver private info - **/ -bool igb_has_link(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	bool link_active = false; -	s32 ret_val = 0; - -	/* get_link_status is set on LSC (link status) interrupt or -	 * rx sequence error interrupt.  get_link_status will stay -	 * false until the e1000_check_for_link establishes link -	 * for copper adapters ONLY -	 */ -	switch (hw->phy.media_type) { -	case e1000_media_type_copper: -		if (hw->mac.get_link_status) { -			ret_val = hw->mac.ops.check_for_link(hw); -			link_active = !hw->mac.get_link_status; -		} else { -			link_active = true; -		} -		break; -	case e1000_media_type_internal_serdes: -		ret_val = hw->mac.ops.check_for_link(hw); -		link_active = hw->mac.serdes_has_link; -		break; -	default: -	case e1000_media_type_unknown: -		break; -	} - -	return link_active; -} - -/** - * igb_watchdog - Timer Call-back - * @data: pointer to adapter cast into an unsigned long - **/ -static void igb_watchdog(unsigned long data) -{ -	struct igb_adapter *adapter = (struct igb_adapter *)data; -	/* Do the rest outside of interrupt context */ -	schedule_work(&adapter->watchdog_task); -} - -static void igb_watchdog_task(struct work_struct *work) -{ -	struct igb_adapter *adapter = container_of(work, -	                                           struct igb_adapter, -                                                   watchdog_task); -	struct e1000_hw *hw = &adapter->hw; -	struct net_device *netdev = adapter->netdev; -	u32 link; -	int i; - -	link = igb_has_link(adapter); -	if (link) { -		if (!netif_carrier_ok(netdev)) { -			u32 ctrl; -			hw->mac.ops.get_speed_and_duplex(hw, -			                                 &adapter->link_speed, -			                                 &adapter->link_duplex); - -			ctrl = rd32(E1000_CTRL); -			/* Links status message must follow this format */ -			printk(KERN_INFO "igb: %s NIC Link is Up %d Mbps %s, " -				 "Flow Control: %s\n", -			       netdev->name, -			       adapter->link_speed, -			       adapter->link_duplex == FULL_DUPLEX ? -				 "Full Duplex" : "Half Duplex", -			       ((ctrl & E1000_CTRL_TFCE) && -			        (ctrl & E1000_CTRL_RFCE)) ? "RX/TX" : -			       ((ctrl & E1000_CTRL_RFCE) ?  "RX" : -			       ((ctrl & E1000_CTRL_TFCE) ?  "TX" : "None"))); - -			/* adjust timeout factor according to speed/duplex */ -			adapter->tx_timeout_factor = 1; -			switch (adapter->link_speed) { -			case SPEED_10: -				adapter->tx_timeout_factor = 14; -				break; -			case SPEED_100: -				/* maybe add some timeout factor ? */ -				break; -			} - -			netif_carrier_on(netdev); - -			igb_ping_all_vfs(adapter); - -			/* link state has changed, schedule phy info update */ -			if (!test_bit(__IGB_DOWN, &adapter->state)) -				mod_timer(&adapter->phy_info_timer, -					  round_jiffies(jiffies + 2 * HZ)); -		} -	} else { -		if (netif_carrier_ok(netdev)) { -			adapter->link_speed = 0; -			adapter->link_duplex = 0; -			/* Links status message must follow this format */ -			printk(KERN_INFO "igb: %s NIC Link is Down\n", -			       netdev->name); -			netif_carrier_off(netdev); - -			igb_ping_all_vfs(adapter); - -			/* link state has changed, schedule phy info update */ -			if (!test_bit(__IGB_DOWN, &adapter->state)) -				mod_timer(&adapter->phy_info_timer, -					  round_jiffies(jiffies + 2 * HZ)); -		} -	} - -	spin_lock(&adapter->stats64_lock); -	igb_update_stats(adapter, &adapter->stats64); -	spin_unlock(&adapter->stats64_lock); - -	for (i = 0; i < adapter->num_tx_queues; i++) { -		struct igb_ring *tx_ring = adapter->tx_ring[i]; -		if (!netif_carrier_ok(netdev)) { -			/* We've lost link, so the controller stops DMA, -			 * but we've got queued Tx work that's never going -			 * to get done, so reset controller to flush Tx. -			 * (Do the reset outside of interrupt context). */ -			if (igb_desc_unused(tx_ring) + 1 < tx_ring->count) { -				adapter->tx_timeout_count++; -				schedule_work(&adapter->reset_task); -				/* return immediately since reset is imminent */ -				return; -			} -		} - -		/* Force detection of hung controller every watchdog period */ -		tx_ring->detect_tx_hung = true; -	} - -	/* Cause software interrupt to ensure rx ring is cleaned */ -	if (adapter->msix_entries) { -		u32 eics = 0; -		for (i = 0; i < adapter->num_q_vectors; i++) { -			struct igb_q_vector *q_vector = adapter->q_vector[i]; -			eics |= q_vector->eims_value; -		} -		wr32(E1000_EICS, eics); -	} else { -		wr32(E1000_ICS, E1000_ICS_RXDMT0); -	} - -	/* Reset the timer */ -	if (!test_bit(__IGB_DOWN, &adapter->state)) -		mod_timer(&adapter->watchdog_timer, -			  round_jiffies(jiffies + 2 * HZ)); -} - -enum latency_range { -	lowest_latency = 0, -	low_latency = 1, -	bulk_latency = 2, -	latency_invalid = 255 -}; - -/** - * igb_update_ring_itr - update the dynamic ITR value based on packet size - * - *      Stores a new ITR value based on strictly on packet size.  This - *      algorithm is less sophisticated than that used in igb_update_itr, - *      due to the difficulty of synchronizing statistics across multiple - *      receive rings.  The divisors and thresholds used by this function - *      were determined based on theoretical maximum wire speed and testing - *      data, in order to minimize response time while increasing bulk - *      throughput. - *      This functionality is controlled by the InterruptThrottleRate module - *      parameter (see igb_param.c) - *      NOTE:  This function is called only when operating in a multiqueue - *             receive environment. - * @q_vector: pointer to q_vector - **/ -static void igb_update_ring_itr(struct igb_q_vector *q_vector) -{ -	int new_val = q_vector->itr_val; -	int avg_wire_size = 0; -	struct igb_adapter *adapter = q_vector->adapter; -	struct igb_ring *ring; -	unsigned int packets; - -	/* For non-gigabit speeds, just fix the interrupt rate at 4000 -	 * ints/sec - ITR timer value of 120 ticks. -	 */ -	if (adapter->link_speed != SPEED_1000) { -		new_val = 976; -		goto set_itr_val; -	} - -	ring = q_vector->rx_ring; -	if (ring) { -		packets = ACCESS_ONCE(ring->total_packets); - -		if (packets) -			avg_wire_size = ring->total_bytes / packets; -	} - -	ring = q_vector->tx_ring; -	if (ring) { -		packets = ACCESS_ONCE(ring->total_packets); - -		if (packets) -			avg_wire_size = max_t(u32, avg_wire_size, -			                      ring->total_bytes / packets); -	} - -	/* if avg_wire_size isn't set no work was done */ -	if (!avg_wire_size) -		goto clear_counts; - -	/* Add 24 bytes to size to account for CRC, preamble, and gap */ -	avg_wire_size += 24; - -	/* Don't starve jumbo frames */ -	avg_wire_size = min(avg_wire_size, 3000); - -	/* Give a little boost to mid-size frames */ -	if ((avg_wire_size > 300) && (avg_wire_size < 1200)) -		new_val = avg_wire_size / 3; -	else -		new_val = avg_wire_size / 2; - -	/* when in itr mode 3 do not exceed 20K ints/sec */ -	if (adapter->rx_itr_setting == 3 && new_val < 196) -		new_val = 196; - -set_itr_val: -	if (new_val != q_vector->itr_val) { -		q_vector->itr_val = new_val; -		q_vector->set_itr = 1; -	} -clear_counts: -	if (q_vector->rx_ring) { -		q_vector->rx_ring->total_bytes = 0; -		q_vector->rx_ring->total_packets = 0; -	} -	if (q_vector->tx_ring) { -		q_vector->tx_ring->total_bytes = 0; -		q_vector->tx_ring->total_packets = 0; -	} -} - -/** - * igb_update_itr - update the dynamic ITR value based on statistics - *      Stores a new ITR value based on packets and byte - *      counts during the last interrupt.  The advantage of per interrupt - *      computation is faster updates and more accurate ITR for the current - *      traffic pattern.  Constants in this function were computed - *      based on theoretical maximum wire speed and thresholds were set based - *      on testing data as well as attempting to minimize response time - *      while increasing bulk throughput. - *      this functionality is controlled by the InterruptThrottleRate module - *      parameter (see igb_param.c) - *      NOTE:  These calculations are only valid when operating in a single- - *             queue environment. - * @adapter: pointer to adapter - * @itr_setting: current q_vector->itr_val - * @packets: the number of packets during this measurement interval - * @bytes: the number of bytes during this measurement interval - **/ -static unsigned int igb_update_itr(struct igb_adapter *adapter, u16 itr_setting, -				   int packets, int bytes) -{ -	unsigned int retval = itr_setting; - -	if (packets == 0) -		goto update_itr_done; - -	switch (itr_setting) { -	case lowest_latency: -		/* handle TSO and jumbo frames */ -		if (bytes/packets > 8000) -			retval = bulk_latency; -		else if ((packets < 5) && (bytes > 512)) -			retval = low_latency; -		break; -	case low_latency:  /* 50 usec aka 20000 ints/s */ -		if (bytes > 10000) { -			/* this if handles the TSO accounting */ -			if (bytes/packets > 8000) { -				retval = bulk_latency; -			} else if ((packets < 10) || ((bytes/packets) > 1200)) { -				retval = bulk_latency; -			} else if ((packets > 35)) { -				retval = lowest_latency; -			} -		} else if (bytes/packets > 2000) { -			retval = bulk_latency; -		} else if (packets <= 2 && bytes < 512) { -			retval = lowest_latency; -		} -		break; -	case bulk_latency: /* 250 usec aka 4000 ints/s */ -		if (bytes > 25000) { -			if (packets > 35) -				retval = low_latency; -		} else if (bytes < 1500) { -			retval = low_latency; -		} -		break; -	} - -update_itr_done: -	return retval; -} - -static void igb_set_itr(struct igb_adapter *adapter) -{ -	struct igb_q_vector *q_vector = adapter->q_vector[0]; -	u16 current_itr; -	u32 new_itr = q_vector->itr_val; - -	/* for non-gigabit speeds, just fix the interrupt rate at 4000 */ -	if (adapter->link_speed != SPEED_1000) { -		current_itr = 0; -		new_itr = 4000; -		goto set_itr_now; -	} - -	adapter->rx_itr = igb_update_itr(adapter, -				    adapter->rx_itr, -				    q_vector->rx_ring->total_packets, -				    q_vector->rx_ring->total_bytes); - -	adapter->tx_itr = igb_update_itr(adapter, -				    adapter->tx_itr, -				    q_vector->tx_ring->total_packets, -				    q_vector->tx_ring->total_bytes); -	current_itr = max(adapter->rx_itr, adapter->tx_itr); - -	/* conservative mode (itr 3) eliminates the lowest_latency setting */ -	if (adapter->rx_itr_setting == 3 && current_itr == lowest_latency) -		current_itr = low_latency; - -	switch (current_itr) { -	/* counts and packets in update_itr are dependent on these numbers */ -	case lowest_latency: -		new_itr = 56;  /* aka 70,000 ints/sec */ -		break; -	case low_latency: -		new_itr = 196; /* aka 20,000 ints/sec */ -		break; -	case bulk_latency: -		new_itr = 980; /* aka 4,000 ints/sec */ -		break; -	default: -		break; -	} - -set_itr_now: -	q_vector->rx_ring->total_bytes = 0; -	q_vector->rx_ring->total_packets = 0; -	q_vector->tx_ring->total_bytes = 0; -	q_vector->tx_ring->total_packets = 0; - -	if (new_itr != q_vector->itr_val) { -		/* this attempts to bias the interrupt rate towards Bulk -		 * by adding intermediate steps when interrupt rate is -		 * increasing */ -		new_itr = new_itr > q_vector->itr_val ? -		             max((new_itr * q_vector->itr_val) / -		                 (new_itr + (q_vector->itr_val >> 2)), -		                 new_itr) : -			     new_itr; -		/* Don't write the value here; it resets the adapter's -		 * internal timer, and causes us to delay far longer than -		 * we should between interrupts.  Instead, we write the ITR -		 * value at the beginning of the next interrupt so the timing -		 * ends up being correct. -		 */ -		q_vector->itr_val = new_itr; -		q_vector->set_itr = 1; -	} -} - -#define IGB_TX_FLAGS_CSUM		0x00000001 -#define IGB_TX_FLAGS_VLAN		0x00000002 -#define IGB_TX_FLAGS_TSO		0x00000004 -#define IGB_TX_FLAGS_IPV4		0x00000008 -#define IGB_TX_FLAGS_TSTAMP		0x00000010 -#define IGB_TX_FLAGS_VLAN_MASK		0xffff0000 -#define IGB_TX_FLAGS_VLAN_SHIFT		        16 - -static inline int igb_tso_adv(struct igb_ring *tx_ring, -			      struct sk_buff *skb, u32 tx_flags, u8 *hdr_len) -{ -	struct e1000_adv_tx_context_desc *context_desc; -	unsigned int i; -	int err; -	struct igb_buffer *buffer_info; -	u32 info = 0, tu_cmd = 0; -	u32 mss_l4len_idx; -	u8 l4len; - -	if (skb_header_cloned(skb)) { -		err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC); -		if (err) -			return err; -	} - -	l4len = tcp_hdrlen(skb); -	*hdr_len += l4len; - -	if (skb->protocol == htons(ETH_P_IP)) { -		struct iphdr *iph = ip_hdr(skb); -		iph->tot_len = 0; -		iph->check = 0; -		tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, -							 iph->daddr, 0, -							 IPPROTO_TCP, -							 0); -	} else if (skb_is_gso_v6(skb)) { -		ipv6_hdr(skb)->payload_len = 0; -		tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, -						       &ipv6_hdr(skb)->daddr, -						       0, IPPROTO_TCP, 0); -	} - -	i = tx_ring->next_to_use; - -	buffer_info = &tx_ring->buffer_info[i]; -	context_desc = E1000_TX_CTXTDESC_ADV(*tx_ring, i); -	/* VLAN MACLEN IPLEN */ -	if (tx_flags & IGB_TX_FLAGS_VLAN) -		info |= (tx_flags & IGB_TX_FLAGS_VLAN_MASK); -	info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT); -	*hdr_len += skb_network_offset(skb); -	info |= skb_network_header_len(skb); -	*hdr_len += skb_network_header_len(skb); -	context_desc->vlan_macip_lens = cpu_to_le32(info); - -	/* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */ -	tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT); - -	if (skb->protocol == htons(ETH_P_IP)) -		tu_cmd |= E1000_ADVTXD_TUCMD_IPV4; -	tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP; - -	context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd); - -	/* MSS L4LEN IDX */ -	mss_l4len_idx = (skb_shinfo(skb)->gso_size << E1000_ADVTXD_MSS_SHIFT); -	mss_l4len_idx |= (l4len << E1000_ADVTXD_L4LEN_SHIFT); - -	/* For 82575, context index must be unique per ring. */ -	if (tx_ring->flags & IGB_RING_FLAG_TX_CTX_IDX) -		mss_l4len_idx |= tx_ring->reg_idx << 4; - -	context_desc->mss_l4len_idx = cpu_to_le32(mss_l4len_idx); -	context_desc->seqnum_seed = 0; - -	buffer_info->time_stamp = jiffies; -	buffer_info->next_to_watch = i; -	buffer_info->dma = 0; -	i++; -	if (i == tx_ring->count) -		i = 0; - -	tx_ring->next_to_use = i; - -	return true; -} - -static inline bool igb_tx_csum_adv(struct igb_ring *tx_ring, -				   struct sk_buff *skb, u32 tx_flags) -{ -	struct e1000_adv_tx_context_desc *context_desc; -	struct device *dev = tx_ring->dev; -	struct igb_buffer *buffer_info; -	u32 info = 0, tu_cmd = 0; -	unsigned int i; - -	if ((skb->ip_summed == CHECKSUM_PARTIAL) || -	    (tx_flags & IGB_TX_FLAGS_VLAN)) { -		i = tx_ring->next_to_use; -		buffer_info = &tx_ring->buffer_info[i]; -		context_desc = E1000_TX_CTXTDESC_ADV(*tx_ring, i); - -		if (tx_flags & IGB_TX_FLAGS_VLAN) -			info |= (tx_flags & IGB_TX_FLAGS_VLAN_MASK); - -		info |= (skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT); -		if (skb->ip_summed == CHECKSUM_PARTIAL) -			info |= skb_network_header_len(skb); - -		context_desc->vlan_macip_lens = cpu_to_le32(info); - -		tu_cmd |= (E1000_TXD_CMD_DEXT | E1000_ADVTXD_DTYP_CTXT); - -		if (skb->ip_summed == CHECKSUM_PARTIAL) { -			__be16 protocol; - -			if (skb->protocol == cpu_to_be16(ETH_P_8021Q)) { -				const struct vlan_ethhdr *vhdr = -				          (const struct vlan_ethhdr*)skb->data; - -				protocol = vhdr->h_vlan_encapsulated_proto; -			} else { -				protocol = skb->protocol; -			} - -			switch (protocol) { -			case cpu_to_be16(ETH_P_IP): -				tu_cmd |= E1000_ADVTXD_TUCMD_IPV4; -				if (ip_hdr(skb)->protocol == IPPROTO_TCP) -					tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP; -				else if (ip_hdr(skb)->protocol == IPPROTO_SCTP) -					tu_cmd |= E1000_ADVTXD_TUCMD_L4T_SCTP; -				break; -			case cpu_to_be16(ETH_P_IPV6): -				/* XXX what about other V6 headers?? */ -				if (ipv6_hdr(skb)->nexthdr == IPPROTO_TCP) -					tu_cmd |= E1000_ADVTXD_TUCMD_L4T_TCP; -				else if (ipv6_hdr(skb)->nexthdr == IPPROTO_SCTP) -					tu_cmd |= E1000_ADVTXD_TUCMD_L4T_SCTP; -				break; -			default: -				if (unlikely(net_ratelimit())) -					dev_warn(dev, -					    "partial checksum but proto=%x!\n", -					    skb->protocol); -				break; -			} -		} - -		context_desc->type_tucmd_mlhl = cpu_to_le32(tu_cmd); -		context_desc->seqnum_seed = 0; -		if (tx_ring->flags & IGB_RING_FLAG_TX_CTX_IDX) -			context_desc->mss_l4len_idx = -				cpu_to_le32(tx_ring->reg_idx << 4); - -		buffer_info->time_stamp = jiffies; -		buffer_info->next_to_watch = i; -		buffer_info->dma = 0; - -		i++; -		if (i == tx_ring->count) -			i = 0; -		tx_ring->next_to_use = i; - -		return true; -	} -	return false; -} - -#define IGB_MAX_TXD_PWR	16 -#define IGB_MAX_DATA_PER_TXD	(1<<IGB_MAX_TXD_PWR) - -static inline int igb_tx_map_adv(struct igb_ring *tx_ring, struct sk_buff *skb, -				 unsigned int first) -{ -	struct igb_buffer *buffer_info; -	struct device *dev = tx_ring->dev; -	unsigned int hlen = skb_headlen(skb); -	unsigned int count = 0, i; -	unsigned int f; -	u16 gso_segs = skb_shinfo(skb)->gso_segs ?: 1; - -	i = tx_ring->next_to_use; - -	buffer_info = &tx_ring->buffer_info[i]; -	BUG_ON(hlen >= IGB_MAX_DATA_PER_TXD); -	buffer_info->length = hlen; -	/* set time_stamp *before* dma to help avoid a possible race */ -	buffer_info->time_stamp = jiffies; -	buffer_info->next_to_watch = i; -	buffer_info->dma = dma_map_single(dev, skb->data, hlen, -					  DMA_TO_DEVICE); -	if (dma_mapping_error(dev, buffer_info->dma)) -		goto dma_error; - -	for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) { -		struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[f]; -		unsigned int len = frag->size; - -		count++; -		i++; -		if (i == tx_ring->count) -			i = 0; - -		buffer_info = &tx_ring->buffer_info[i]; -		BUG_ON(len >= IGB_MAX_DATA_PER_TXD); -		buffer_info->length = len; -		buffer_info->time_stamp = jiffies; -		buffer_info->next_to_watch = i; -		buffer_info->mapped_as_page = true; -		buffer_info->dma = dma_map_page(dev, -						frag->page, -						frag->page_offset, -						len, -						DMA_TO_DEVICE); -		if (dma_mapping_error(dev, buffer_info->dma)) -			goto dma_error; - -	} - -	tx_ring->buffer_info[i].skb = skb; -	tx_ring->buffer_info[i].tx_flags = skb_shinfo(skb)->tx_flags; -	/* multiply data chunks by size of headers */ -	tx_ring->buffer_info[i].bytecount = ((gso_segs - 1) * hlen) + skb->len; -	tx_ring->buffer_info[i].gso_segs = gso_segs; -	tx_ring->buffer_info[first].next_to_watch = i; - -	return ++count; - -dma_error: -	dev_err(dev, "TX DMA map failed\n"); - -	/* clear timestamp and dma mappings for failed buffer_info mapping */ -	buffer_info->dma = 0; -	buffer_info->time_stamp = 0; -	buffer_info->length = 0; -	buffer_info->next_to_watch = 0; -	buffer_info->mapped_as_page = false; - -	/* clear timestamp and dma mappings for remaining portion of packet */ -	while (count--) { -		if (i == 0) -			i = tx_ring->count; -		i--; -		buffer_info = &tx_ring->buffer_info[i]; -		igb_unmap_and_free_tx_resource(tx_ring, buffer_info); -	} - -	return 0; -} - -static inline void igb_tx_queue_adv(struct igb_ring *tx_ring, -				    u32 tx_flags, int count, u32 paylen, -				    u8 hdr_len) -{ -	union e1000_adv_tx_desc *tx_desc; -	struct igb_buffer *buffer_info; -	u32 olinfo_status = 0, cmd_type_len; -	unsigned int i = tx_ring->next_to_use; - -	cmd_type_len = (E1000_ADVTXD_DTYP_DATA | E1000_ADVTXD_DCMD_IFCS | -			E1000_ADVTXD_DCMD_DEXT); - -	if (tx_flags & IGB_TX_FLAGS_VLAN) -		cmd_type_len |= E1000_ADVTXD_DCMD_VLE; - -	if (tx_flags & IGB_TX_FLAGS_TSTAMP) -		cmd_type_len |= E1000_ADVTXD_MAC_TSTAMP; - -	if (tx_flags & IGB_TX_FLAGS_TSO) { -		cmd_type_len |= E1000_ADVTXD_DCMD_TSE; - -		/* insert tcp checksum */ -		olinfo_status |= E1000_TXD_POPTS_TXSM << 8; - -		/* insert ip checksum */ -		if (tx_flags & IGB_TX_FLAGS_IPV4) -			olinfo_status |= E1000_TXD_POPTS_IXSM << 8; - -	} else if (tx_flags & IGB_TX_FLAGS_CSUM) { -		olinfo_status |= E1000_TXD_POPTS_TXSM << 8; -	} - -	if ((tx_ring->flags & IGB_RING_FLAG_TX_CTX_IDX) && -	    (tx_flags & (IGB_TX_FLAGS_CSUM | -	                 IGB_TX_FLAGS_TSO | -			 IGB_TX_FLAGS_VLAN))) -		olinfo_status |= tx_ring->reg_idx << 4; - -	olinfo_status |= ((paylen - hdr_len) << E1000_ADVTXD_PAYLEN_SHIFT); - -	do { -		buffer_info = &tx_ring->buffer_info[i]; -		tx_desc = E1000_TX_DESC_ADV(*tx_ring, i); -		tx_desc->read.buffer_addr = cpu_to_le64(buffer_info->dma); -		tx_desc->read.cmd_type_len = -			cpu_to_le32(cmd_type_len | buffer_info->length); -		tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status); -		count--; -		i++; -		if (i == tx_ring->count) -			i = 0; -	} while (count > 0); - -	tx_desc->read.cmd_type_len |= cpu_to_le32(IGB_ADVTXD_DCMD); -	/* Force memory writes to complete before letting h/w -	 * know there are new descriptors to fetch.  (Only -	 * applicable for weak-ordered memory model archs, -	 * such as IA-64). */ -	wmb(); - -	tx_ring->next_to_use = i; -	writel(i, tx_ring->tail); -	/* we need this if more than one processor can write to our tail -	 * at a time, it syncronizes IO on IA64/Altix systems */ -	mmiowb(); -} - -static int __igb_maybe_stop_tx(struct igb_ring *tx_ring, int size) -{ -	struct net_device *netdev = tx_ring->netdev; - -	netif_stop_subqueue(netdev, tx_ring->queue_index); - -	/* Herbert's original patch had: -	 *  smp_mb__after_netif_stop_queue(); -	 * but since that doesn't exist yet, just open code it. */ -	smp_mb(); - -	/* We need to check again in a case another CPU has just -	 * made room available. */ -	if (igb_desc_unused(tx_ring) < size) -		return -EBUSY; - -	/* A reprieve! */ -	netif_wake_subqueue(netdev, tx_ring->queue_index); - -	u64_stats_update_begin(&tx_ring->tx_syncp2); -	tx_ring->tx_stats.restart_queue2++; -	u64_stats_update_end(&tx_ring->tx_syncp2); - -	return 0; -} - -static inline int igb_maybe_stop_tx(struct igb_ring *tx_ring, int size) -{ -	if (igb_desc_unused(tx_ring) >= size) -		return 0; -	return __igb_maybe_stop_tx(tx_ring, size); -} - -netdev_tx_t igb_xmit_frame_ring_adv(struct sk_buff *skb, -				    struct igb_ring *tx_ring) -{ -	int tso = 0, count; -	u32 tx_flags = 0; -	u16 first; -	u8 hdr_len = 0; - -	/* need: 1 descriptor per page, -	 *       + 2 desc gap to keep tail from touching head, -	 *       + 1 desc for skb->data, -	 *       + 1 desc for context descriptor, -	 * otherwise try next time */ -	if (igb_maybe_stop_tx(tx_ring, skb_shinfo(skb)->nr_frags + 4)) { -		/* this is a hard error */ -		return NETDEV_TX_BUSY; -	} - -	if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { -		skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; -		tx_flags |= IGB_TX_FLAGS_TSTAMP; -	} - -	if (vlan_tx_tag_present(skb)) { -		tx_flags |= IGB_TX_FLAGS_VLAN; -		tx_flags |= (vlan_tx_tag_get(skb) << IGB_TX_FLAGS_VLAN_SHIFT); -	} - -	if (skb->protocol == htons(ETH_P_IP)) -		tx_flags |= IGB_TX_FLAGS_IPV4; - -	first = tx_ring->next_to_use; -	if (skb_is_gso(skb)) { -		tso = igb_tso_adv(tx_ring, skb, tx_flags, &hdr_len); - -		if (tso < 0) { -			dev_kfree_skb_any(skb); -			return NETDEV_TX_OK; -		} -	} - -	if (tso) -		tx_flags |= IGB_TX_FLAGS_TSO; -	else if (igb_tx_csum_adv(tx_ring, skb, tx_flags) && -	         (skb->ip_summed == CHECKSUM_PARTIAL)) -		tx_flags |= IGB_TX_FLAGS_CSUM; - -	/* -	 * count reflects descriptors mapped, if 0 or less then mapping error -	 * has occured and we need to rewind the descriptor queue -	 */ -	count = igb_tx_map_adv(tx_ring, skb, first); -	if (!count) { -		dev_kfree_skb_any(skb); -		tx_ring->buffer_info[first].time_stamp = 0; -		tx_ring->next_to_use = first; -		return NETDEV_TX_OK; -	} - -	igb_tx_queue_adv(tx_ring, tx_flags, count, skb->len, hdr_len); - -	/* Make sure there is space in the ring for the next send. */ -	igb_maybe_stop_tx(tx_ring, MAX_SKB_FRAGS + 4); - -	return NETDEV_TX_OK; -} - -static netdev_tx_t igb_xmit_frame_adv(struct sk_buff *skb, -				      struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct igb_ring *tx_ring; -	int r_idx = 0; - -	if (test_bit(__IGB_DOWN, &adapter->state)) { -		dev_kfree_skb_any(skb); -		return NETDEV_TX_OK; -	} - -	if (skb->len <= 0) { -		dev_kfree_skb_any(skb); -		return NETDEV_TX_OK; -	} - -	r_idx = skb->queue_mapping & (IGB_ABS_MAX_TX_QUEUES - 1); -	tx_ring = adapter->multi_tx_table[r_idx]; - -	/* This goes back to the question of how to logically map a tx queue -	 * to a flow.  Right now, performance is impacted slightly negatively -	 * if using multiple tx queues.  If the stack breaks away from a -	 * single qdisc implementation, we can look at this again. */ -	return igb_xmit_frame_ring_adv(skb, tx_ring); -} - -/** - * igb_tx_timeout - Respond to a Tx Hang - * @netdev: network interface device structure - **/ -static void igb_tx_timeout(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; - -	/* Do the reset outside of interrupt context */ -	adapter->tx_timeout_count++; - -	if (hw->mac.type == e1000_82580) -		hw->dev_spec._82575.global_device_reset = true; - -	schedule_work(&adapter->reset_task); -	wr32(E1000_EICS, -	     (adapter->eims_enable_mask & ~adapter->eims_other)); -} - -static void igb_reset_task(struct work_struct *work) -{ -	struct igb_adapter *adapter; -	adapter = container_of(work, struct igb_adapter, reset_task); - -	igb_dump(adapter); -	netdev_err(adapter->netdev, "Reset adapter\n"); -	igb_reinit_locked(adapter); -} - -/** - * igb_get_stats64 - Get System Network Statistics - * @netdev: network interface device structure - * @stats: rtnl_link_stats64 pointer - * - **/ -static struct rtnl_link_stats64 *igb_get_stats64(struct net_device *netdev, -						 struct rtnl_link_stats64 *stats) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); - -	spin_lock(&adapter->stats64_lock); -	igb_update_stats(adapter, &adapter->stats64); -	memcpy(stats, &adapter->stats64, sizeof(*stats)); -	spin_unlock(&adapter->stats64_lock); - -	return stats; -} - -/** - * igb_change_mtu - Change the Maximum Transfer Unit - * @netdev: network interface device structure - * @new_mtu: new value for maximum frame size - * - * Returns 0 on success, negative on failure - **/ -static int igb_change_mtu(struct net_device *netdev, int new_mtu) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct pci_dev *pdev = adapter->pdev; -	int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN; -	u32 rx_buffer_len, i; - -	if ((new_mtu < 68) || (max_frame > MAX_JUMBO_FRAME_SIZE)) { -		dev_err(&pdev->dev, "Invalid MTU setting\n"); -		return -EINVAL; -	} - -	if (max_frame > MAX_STD_JUMBO_FRAME_SIZE) { -		dev_err(&pdev->dev, "MTU > 9216 not supported.\n"); -		return -EINVAL; -	} - -	while (test_and_set_bit(__IGB_RESETTING, &adapter->state)) -		msleep(1); - -	/* igb_down has a dependency on max_frame_size */ -	adapter->max_frame_size = max_frame; - -	/* NOTE: netdev_alloc_skb reserves 16 bytes, and typically NET_IP_ALIGN -	 * means we reserve 2 more, this pushes us to allocate from the next -	 * larger slab size. -	 * i.e. RXBUFFER_2048 --> size-4096 slab -	 */ - -	if (adapter->hw.mac.type == e1000_82580) -		max_frame += IGB_TS_HDR_LEN; - -	if (max_frame <= IGB_RXBUFFER_1024) -		rx_buffer_len = IGB_RXBUFFER_1024; -	else if (max_frame <= MAXIMUM_ETHERNET_VLAN_SIZE) -		rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE; -	else -		rx_buffer_len = IGB_RXBUFFER_128; - -	if ((max_frame == ETH_FRAME_LEN + ETH_FCS_LEN + IGB_TS_HDR_LEN) || -	     (max_frame == MAXIMUM_ETHERNET_VLAN_SIZE + IGB_TS_HDR_LEN)) -		rx_buffer_len = MAXIMUM_ETHERNET_VLAN_SIZE + IGB_TS_HDR_LEN; - -	if ((adapter->hw.mac.type == e1000_82580) && -	    (rx_buffer_len == IGB_RXBUFFER_128)) -		rx_buffer_len += IGB_RXBUFFER_64; - -	if (netif_running(netdev)) -		igb_down(adapter); - -	dev_info(&pdev->dev, "changing MTU from %d to %d\n", -		 netdev->mtu, new_mtu); -	netdev->mtu = new_mtu; - -	for (i = 0; i < adapter->num_rx_queues; i++) -		adapter->rx_ring[i]->rx_buffer_len = rx_buffer_len; - -	if (netif_running(netdev)) -		igb_up(adapter); -	else -		igb_reset(adapter); - -	clear_bit(__IGB_RESETTING, &adapter->state); - -	return 0; -} - -/** - * igb_update_stats - Update the board statistics counters - * @adapter: board private structure - **/ - -void igb_update_stats(struct igb_adapter *adapter, -		      struct rtnl_link_stats64 *net_stats) -{ -	struct e1000_hw *hw = &adapter->hw; -	struct pci_dev *pdev = adapter->pdev; -	u32 reg, mpc; -	u16 phy_tmp; -	int i; -	u64 bytes, packets; -	unsigned int start; -	u64 _bytes, _packets; - -#define PHY_IDLE_ERROR_COUNT_MASK 0x00FF - -	/* -	 * Prevent stats update while adapter is being reset, or if the pci -	 * connection is down. -	 */ -	if (adapter->link_speed == 0) -		return; -	if (pci_channel_offline(pdev)) -		return; - -	bytes = 0; -	packets = 0; -	for (i = 0; i < adapter->num_rx_queues; i++) { -		u32 rqdpc_tmp = rd32(E1000_RQDPC(i)) & 0x0FFF; -		struct igb_ring *ring = adapter->rx_ring[i]; - -		ring->rx_stats.drops += rqdpc_tmp; -		net_stats->rx_fifo_errors += rqdpc_tmp; - -		do { -			start = u64_stats_fetch_begin_bh(&ring->rx_syncp); -			_bytes = ring->rx_stats.bytes; -			_packets = ring->rx_stats.packets; -		} while (u64_stats_fetch_retry_bh(&ring->rx_syncp, start)); -		bytes += _bytes; -		packets += _packets; -	} - -	net_stats->rx_bytes = bytes; -	net_stats->rx_packets = packets; - -	bytes = 0; -	packets = 0; -	for (i = 0; i < adapter->num_tx_queues; i++) { -		struct igb_ring *ring = adapter->tx_ring[i]; -		do { -			start = u64_stats_fetch_begin_bh(&ring->tx_syncp); -			_bytes = ring->tx_stats.bytes; -			_packets = ring->tx_stats.packets; -		} while (u64_stats_fetch_retry_bh(&ring->tx_syncp, start)); -		bytes += _bytes; -		packets += _packets; -	} -	net_stats->tx_bytes = bytes; -	net_stats->tx_packets = packets; - -	/* read stats registers */ -	adapter->stats.crcerrs += rd32(E1000_CRCERRS); -	adapter->stats.gprc += rd32(E1000_GPRC); -	adapter->stats.gorc += rd32(E1000_GORCL); -	rd32(E1000_GORCH); /* clear GORCL */ -	adapter->stats.bprc += rd32(E1000_BPRC); -	adapter->stats.mprc += rd32(E1000_MPRC); -	adapter->stats.roc += rd32(E1000_ROC); - -	adapter->stats.prc64 += rd32(E1000_PRC64); -	adapter->stats.prc127 += rd32(E1000_PRC127); -	adapter->stats.prc255 += rd32(E1000_PRC255); -	adapter->stats.prc511 += rd32(E1000_PRC511); -	adapter->stats.prc1023 += rd32(E1000_PRC1023); -	adapter->stats.prc1522 += rd32(E1000_PRC1522); -	adapter->stats.symerrs += rd32(E1000_SYMERRS); -	adapter->stats.sec += rd32(E1000_SEC); - -	mpc = rd32(E1000_MPC); -	adapter->stats.mpc += mpc; -	net_stats->rx_fifo_errors += mpc; -	adapter->stats.scc += rd32(E1000_SCC); -	adapter->stats.ecol += rd32(E1000_ECOL); -	adapter->stats.mcc += rd32(E1000_MCC); -	adapter->stats.latecol += rd32(E1000_LATECOL); -	adapter->stats.dc += rd32(E1000_DC); -	adapter->stats.rlec += rd32(E1000_RLEC); -	adapter->stats.xonrxc += rd32(E1000_XONRXC); -	adapter->stats.xontxc += rd32(E1000_XONTXC); -	adapter->stats.xoffrxc += rd32(E1000_XOFFRXC); -	adapter->stats.xofftxc += rd32(E1000_XOFFTXC); -	adapter->stats.fcruc += rd32(E1000_FCRUC); -	adapter->stats.gptc += rd32(E1000_GPTC); -	adapter->stats.gotc += rd32(E1000_GOTCL); -	rd32(E1000_GOTCH); /* clear GOTCL */ -	adapter->stats.rnbc += rd32(E1000_RNBC); -	adapter->stats.ruc += rd32(E1000_RUC); -	adapter->stats.rfc += rd32(E1000_RFC); -	adapter->stats.rjc += rd32(E1000_RJC); -	adapter->stats.tor += rd32(E1000_TORH); -	adapter->stats.tot += rd32(E1000_TOTH); -	adapter->stats.tpr += rd32(E1000_TPR); - -	adapter->stats.ptc64 += rd32(E1000_PTC64); -	adapter->stats.ptc127 += rd32(E1000_PTC127); -	adapter->stats.ptc255 += rd32(E1000_PTC255); -	adapter->stats.ptc511 += rd32(E1000_PTC511); -	adapter->stats.ptc1023 += rd32(E1000_PTC1023); -	adapter->stats.ptc1522 += rd32(E1000_PTC1522); - -	adapter->stats.mptc += rd32(E1000_MPTC); -	adapter->stats.bptc += rd32(E1000_BPTC); - -	adapter->stats.tpt += rd32(E1000_TPT); -	adapter->stats.colc += rd32(E1000_COLC); - -	adapter->stats.algnerrc += rd32(E1000_ALGNERRC); -	/* read internal phy specific stats */ -	reg = rd32(E1000_CTRL_EXT); -	if (!(reg & E1000_CTRL_EXT_LINK_MODE_MASK)) { -		adapter->stats.rxerrc += rd32(E1000_RXERRC); -		adapter->stats.tncrs += rd32(E1000_TNCRS); -	} - -	adapter->stats.tsctc += rd32(E1000_TSCTC); -	adapter->stats.tsctfc += rd32(E1000_TSCTFC); - -	adapter->stats.iac += rd32(E1000_IAC); -	adapter->stats.icrxoc += rd32(E1000_ICRXOC); -	adapter->stats.icrxptc += rd32(E1000_ICRXPTC); -	adapter->stats.icrxatc += rd32(E1000_ICRXATC); -	adapter->stats.ictxptc += rd32(E1000_ICTXPTC); -	adapter->stats.ictxatc += rd32(E1000_ICTXATC); -	adapter->stats.ictxqec += rd32(E1000_ICTXQEC); -	adapter->stats.ictxqmtc += rd32(E1000_ICTXQMTC); -	adapter->stats.icrxdmtc += rd32(E1000_ICRXDMTC); - -	/* Fill out the OS statistics structure */ -	net_stats->multicast = adapter->stats.mprc; -	net_stats->collisions = adapter->stats.colc; - -	/* Rx Errors */ - -	/* RLEC on some newer hardware can be incorrect so build -	 * our own version based on RUC and ROC */ -	net_stats->rx_errors = adapter->stats.rxerrc + -		adapter->stats.crcerrs + adapter->stats.algnerrc + -		adapter->stats.ruc + adapter->stats.roc + -		adapter->stats.cexterr; -	net_stats->rx_length_errors = adapter->stats.ruc + -				      adapter->stats.roc; -	net_stats->rx_crc_errors = adapter->stats.crcerrs; -	net_stats->rx_frame_errors = adapter->stats.algnerrc; -	net_stats->rx_missed_errors = adapter->stats.mpc; - -	/* Tx Errors */ -	net_stats->tx_errors = adapter->stats.ecol + -			       adapter->stats.latecol; -	net_stats->tx_aborted_errors = adapter->stats.ecol; -	net_stats->tx_window_errors = adapter->stats.latecol; -	net_stats->tx_carrier_errors = adapter->stats.tncrs; - -	/* Tx Dropped needs to be maintained elsewhere */ - -	/* Phy Stats */ -	if (hw->phy.media_type == e1000_media_type_copper) { -		if ((adapter->link_speed == SPEED_1000) && -		   (!igb_read_phy_reg(hw, PHY_1000T_STATUS, &phy_tmp))) { -			phy_tmp &= PHY_IDLE_ERROR_COUNT_MASK; -			adapter->phy_stats.idle_errors += phy_tmp; -		} -	} - -	/* Management Stats */ -	adapter->stats.mgptc += rd32(E1000_MGTPTC); -	adapter->stats.mgprc += rd32(E1000_MGTPRC); -	adapter->stats.mgpdc += rd32(E1000_MGTPDC); -} - -static irqreturn_t igb_msix_other(int irq, void *data) -{ -	struct igb_adapter *adapter = data; -	struct e1000_hw *hw = &adapter->hw; -	u32 icr = rd32(E1000_ICR); -	/* reading ICR causes bit 31 of EICR to be cleared */ - -	if (icr & E1000_ICR_DRSTA) -		schedule_work(&adapter->reset_task); - -	if (icr & E1000_ICR_DOUTSYNC) { -		/* HW is reporting DMA is out of sync */ -		adapter->stats.doosync++; -	} - -	/* Check for a mailbox event */ -	if (icr & E1000_ICR_VMMB) -		igb_msg_task(adapter); - -	if (icr & E1000_ICR_LSC) { -		hw->mac.get_link_status = 1; -		/* guard against interrupt when we're going down */ -		if (!test_bit(__IGB_DOWN, &adapter->state)) -			mod_timer(&adapter->watchdog_timer, jiffies + 1); -	} - -	if (adapter->vfs_allocated_count) -		wr32(E1000_IMS, E1000_IMS_LSC | -				E1000_IMS_VMMB | -				E1000_IMS_DOUTSYNC); -	else -		wr32(E1000_IMS, E1000_IMS_LSC | E1000_IMS_DOUTSYNC); -	wr32(E1000_EIMS, adapter->eims_other); - -	return IRQ_HANDLED; -} - -static void igb_write_itr(struct igb_q_vector *q_vector) -{ -	struct igb_adapter *adapter = q_vector->adapter; -	u32 itr_val = q_vector->itr_val & 0x7FFC; - -	if (!q_vector->set_itr) -		return; - -	if (!itr_val) -		itr_val = 0x4; - -	if (adapter->hw.mac.type == e1000_82575) -		itr_val |= itr_val << 16; -	else -		itr_val |= 0x8000000; - -	writel(itr_val, q_vector->itr_register); -	q_vector->set_itr = 0; -} - -static irqreturn_t igb_msix_ring(int irq, void *data) -{ -	struct igb_q_vector *q_vector = data; - -	/* Write the ITR value calculated from the previous interrupt. */ -	igb_write_itr(q_vector); - -	napi_schedule(&q_vector->napi); - -	return IRQ_HANDLED; -} - -#ifdef CONFIG_IGB_DCA -static void igb_update_dca(struct igb_q_vector *q_vector) -{ -	struct igb_adapter *adapter = q_vector->adapter; -	struct e1000_hw *hw = &adapter->hw; -	int cpu = get_cpu(); - -	if (q_vector->cpu == cpu) -		goto out_no_update; - -	if (q_vector->tx_ring) { -		int q = q_vector->tx_ring->reg_idx; -		u32 dca_txctrl = rd32(E1000_DCA_TXCTRL(q)); -		if (hw->mac.type == e1000_82575) { -			dca_txctrl &= ~E1000_DCA_TXCTRL_CPUID_MASK; -			dca_txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu); -		} else { -			dca_txctrl &= ~E1000_DCA_TXCTRL_CPUID_MASK_82576; -			dca_txctrl |= dca3_get_tag(&adapter->pdev->dev, cpu) << -			              E1000_DCA_TXCTRL_CPUID_SHIFT; -		} -		dca_txctrl |= E1000_DCA_TXCTRL_DESC_DCA_EN; -		wr32(E1000_DCA_TXCTRL(q), dca_txctrl); -	} -	if (q_vector->rx_ring) { -		int q = q_vector->rx_ring->reg_idx; -		u32 dca_rxctrl = rd32(E1000_DCA_RXCTRL(q)); -		if (hw->mac.type == e1000_82575) { -			dca_rxctrl &= ~E1000_DCA_RXCTRL_CPUID_MASK; -			dca_rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu); -		} else { -			dca_rxctrl &= ~E1000_DCA_RXCTRL_CPUID_MASK_82576; -			dca_rxctrl |= dca3_get_tag(&adapter->pdev->dev, cpu) << -			              E1000_DCA_RXCTRL_CPUID_SHIFT; -		} -		dca_rxctrl |= E1000_DCA_RXCTRL_DESC_DCA_EN; -		dca_rxctrl |= E1000_DCA_RXCTRL_HEAD_DCA_EN; -		dca_rxctrl |= E1000_DCA_RXCTRL_DATA_DCA_EN; -		wr32(E1000_DCA_RXCTRL(q), dca_rxctrl); -	} -	q_vector->cpu = cpu; -out_no_update: -	put_cpu(); -} - -static void igb_setup_dca(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	int i; - -	if (!(adapter->flags & IGB_FLAG_DCA_ENABLED)) -		return; - -	/* Always use CB2 mode, difference is masked in the CB driver. */ -	wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_CB2); - -	for (i = 0; i < adapter->num_q_vectors; i++) { -		adapter->q_vector[i]->cpu = -1; -		igb_update_dca(adapter->q_vector[i]); -	} -} - -static int __igb_notify_dca(struct device *dev, void *data) -{ -	struct net_device *netdev = dev_get_drvdata(dev); -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct pci_dev *pdev = adapter->pdev; -	struct e1000_hw *hw = &adapter->hw; -	unsigned long event = *(unsigned long *)data; - -	switch (event) { -	case DCA_PROVIDER_ADD: -		/* if already enabled, don't do it again */ -		if (adapter->flags & IGB_FLAG_DCA_ENABLED) -			break; -		if (dca_add_requester(dev) == 0) { -			adapter->flags |= IGB_FLAG_DCA_ENABLED; -			dev_info(&pdev->dev, "DCA enabled\n"); -			igb_setup_dca(adapter); -			break; -		} -		/* Fall Through since DCA is disabled. */ -	case DCA_PROVIDER_REMOVE: -		if (adapter->flags & IGB_FLAG_DCA_ENABLED) { -			/* without this a class_device is left -			 * hanging around in the sysfs model */ -			dca_remove_requester(dev); -			dev_info(&pdev->dev, "DCA disabled\n"); -			adapter->flags &= ~IGB_FLAG_DCA_ENABLED; -			wr32(E1000_DCA_CTRL, E1000_DCA_CTRL_DCA_MODE_DISABLE); -		} -		break; -	} - -	return 0; -} - -static int igb_notify_dca(struct notifier_block *nb, unsigned long event, -                          void *p) -{ -	int ret_val; - -	ret_val = driver_for_each_device(&igb_driver.driver, NULL, &event, -	                                 __igb_notify_dca); - -	return ret_val ? NOTIFY_BAD : NOTIFY_DONE; -} -#endif /* CONFIG_IGB_DCA */ - -static void igb_ping_all_vfs(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 ping; -	int i; - -	for (i = 0 ; i < adapter->vfs_allocated_count; i++) { -		ping = E1000_PF_CONTROL_MSG; -		if (adapter->vf_data[i].flags & IGB_VF_FLAG_CTS) -			ping |= E1000_VT_MSGTYPE_CTS; -		igb_write_mbx(hw, &ping, 1, i); -	} -} - -static int igb_set_vf_promisc(struct igb_adapter *adapter, u32 *msgbuf, u32 vf) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 vmolr = rd32(E1000_VMOLR(vf)); -	struct vf_data_storage *vf_data = &adapter->vf_data[vf]; - -	vf_data->flags &= ~(IGB_VF_FLAG_UNI_PROMISC | -	                    IGB_VF_FLAG_MULTI_PROMISC); -	vmolr &= ~(E1000_VMOLR_ROPE | E1000_VMOLR_ROMPE | E1000_VMOLR_MPME); - -	if (*msgbuf & E1000_VF_SET_PROMISC_MULTICAST) { -		vmolr |= E1000_VMOLR_MPME; -		vf_data->flags |= IGB_VF_FLAG_MULTI_PROMISC; -		*msgbuf &= ~E1000_VF_SET_PROMISC_MULTICAST; -	} else { -		/* -		 * if we have hashes and we are clearing a multicast promisc -		 * flag we need to write the hashes to the MTA as this step -		 * was previously skipped -		 */ -		if (vf_data->num_vf_mc_hashes > 30) { -			vmolr |= E1000_VMOLR_MPME; -		} else if (vf_data->num_vf_mc_hashes) { -			int j; -			vmolr |= E1000_VMOLR_ROMPE; -			for (j = 0; j < vf_data->num_vf_mc_hashes; j++) -				igb_mta_set(hw, vf_data->vf_mc_hashes[j]); -		} -	} - -	wr32(E1000_VMOLR(vf), vmolr); - -	/* there are flags left unprocessed, likely not supported */ -	if (*msgbuf & E1000_VT_MSGINFO_MASK) -		return -EINVAL; - -	return 0; - -} - -static int igb_set_vf_multicasts(struct igb_adapter *adapter, -				  u32 *msgbuf, u32 vf) -{ -	int n = (msgbuf[0] & E1000_VT_MSGINFO_MASK) >> E1000_VT_MSGINFO_SHIFT; -	u16 *hash_list = (u16 *)&msgbuf[1]; -	struct vf_data_storage *vf_data = &adapter->vf_data[vf]; -	int i; - -	/* salt away the number of multicast addresses assigned -	 * to this VF for later use to restore when the PF multi cast -	 * list changes -	 */ -	vf_data->num_vf_mc_hashes = n; - -	/* only up to 30 hash values supported */ -	if (n > 30) -		n = 30; - -	/* store the hashes for later use */ -	for (i = 0; i < n; i++) -		vf_data->vf_mc_hashes[i] = hash_list[i]; - -	/* Flush and reset the mta with the new values */ -	igb_set_rx_mode(adapter->netdev); - -	return 0; -} - -static void igb_restore_vf_multicasts(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	struct vf_data_storage *vf_data; -	int i, j; - -	for (i = 0; i < adapter->vfs_allocated_count; i++) { -		u32 vmolr = rd32(E1000_VMOLR(i)); -		vmolr &= ~(E1000_VMOLR_ROMPE | E1000_VMOLR_MPME); - -		vf_data = &adapter->vf_data[i]; - -		if ((vf_data->num_vf_mc_hashes > 30) || -		    (vf_data->flags & IGB_VF_FLAG_MULTI_PROMISC)) { -			vmolr |= E1000_VMOLR_MPME; -		} else if (vf_data->num_vf_mc_hashes) { -			vmolr |= E1000_VMOLR_ROMPE; -			for (j = 0; j < vf_data->num_vf_mc_hashes; j++) -				igb_mta_set(hw, vf_data->vf_mc_hashes[j]); -		} -		wr32(E1000_VMOLR(i), vmolr); -	} -} - -static void igb_clear_vf_vfta(struct igb_adapter *adapter, u32 vf) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 pool_mask, reg, vid; -	int i; - -	pool_mask = 1 << (E1000_VLVF_POOLSEL_SHIFT + vf); - -	/* Find the vlan filter for this id */ -	for (i = 0; i < E1000_VLVF_ARRAY_SIZE; i++) { -		reg = rd32(E1000_VLVF(i)); - -		/* remove the vf from the pool */ -		reg &= ~pool_mask; - -		/* if pool is empty then remove entry from vfta */ -		if (!(reg & E1000_VLVF_POOLSEL_MASK) && -		    (reg & E1000_VLVF_VLANID_ENABLE)) { -			reg = 0; -			vid = reg & E1000_VLVF_VLANID_MASK; -			igb_vfta_set(hw, vid, false); -		} - -		wr32(E1000_VLVF(i), reg); -	} - -	adapter->vf_data[vf].vlans_enabled = 0; -} - -static s32 igb_vlvf_set(struct igb_adapter *adapter, u32 vid, bool add, u32 vf) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 reg, i; - -	/* The vlvf table only exists on 82576 hardware and newer */ -	if (hw->mac.type < e1000_82576) -		return -1; - -	/* we only need to do this if VMDq is enabled */ -	if (!adapter->vfs_allocated_count) -		return -1; - -	/* Find the vlan filter for this id */ -	for (i = 0; i < E1000_VLVF_ARRAY_SIZE; i++) { -		reg = rd32(E1000_VLVF(i)); -		if ((reg & E1000_VLVF_VLANID_ENABLE) && -		    vid == (reg & E1000_VLVF_VLANID_MASK)) -			break; -	} - -	if (add) { -		if (i == E1000_VLVF_ARRAY_SIZE) { -			/* Did not find a matching VLAN ID entry that was -			 * enabled.  Search for a free filter entry, i.e. -			 * one without the enable bit set -			 */ -			for (i = 0; i < E1000_VLVF_ARRAY_SIZE; i++) { -				reg = rd32(E1000_VLVF(i)); -				if (!(reg & E1000_VLVF_VLANID_ENABLE)) -					break; -			} -		} -		if (i < E1000_VLVF_ARRAY_SIZE) { -			/* Found an enabled/available entry */ -			reg |= 1 << (E1000_VLVF_POOLSEL_SHIFT + vf); - -			/* if !enabled we need to set this up in vfta */ -			if (!(reg & E1000_VLVF_VLANID_ENABLE)) { -				/* add VID to filter table */ -				igb_vfta_set(hw, vid, true); -				reg |= E1000_VLVF_VLANID_ENABLE; -			} -			reg &= ~E1000_VLVF_VLANID_MASK; -			reg |= vid; -			wr32(E1000_VLVF(i), reg); - -			/* do not modify RLPML for PF devices */ -			if (vf >= adapter->vfs_allocated_count) -				return 0; - -			if (!adapter->vf_data[vf].vlans_enabled) { -				u32 size; -				reg = rd32(E1000_VMOLR(vf)); -				size = reg & E1000_VMOLR_RLPML_MASK; -				size += 4; -				reg &= ~E1000_VMOLR_RLPML_MASK; -				reg |= size; -				wr32(E1000_VMOLR(vf), reg); -			} - -			adapter->vf_data[vf].vlans_enabled++; -			return 0; -		} -	} else { -		if (i < E1000_VLVF_ARRAY_SIZE) { -			/* remove vf from the pool */ -			reg &= ~(1 << (E1000_VLVF_POOLSEL_SHIFT + vf)); -			/* if pool is empty then remove entry from vfta */ -			if (!(reg & E1000_VLVF_POOLSEL_MASK)) { -				reg = 0; -				igb_vfta_set(hw, vid, false); -			} -			wr32(E1000_VLVF(i), reg); - -			/* do not modify RLPML for PF devices */ -			if (vf >= adapter->vfs_allocated_count) -				return 0; - -			adapter->vf_data[vf].vlans_enabled--; -			if (!adapter->vf_data[vf].vlans_enabled) { -				u32 size; -				reg = rd32(E1000_VMOLR(vf)); -				size = reg & E1000_VMOLR_RLPML_MASK; -				size -= 4; -				reg &= ~E1000_VMOLR_RLPML_MASK; -				reg |= size; -				wr32(E1000_VMOLR(vf), reg); -			} -		} -	} -	return 0; -} - -static void igb_set_vmvir(struct igb_adapter *adapter, u32 vid, u32 vf) -{ -	struct e1000_hw *hw = &adapter->hw; - -	if (vid) -		wr32(E1000_VMVIR(vf), (vid | E1000_VMVIR_VLANA_DEFAULT)); -	else -		wr32(E1000_VMVIR(vf), 0); -} - -static int igb_ndo_set_vf_vlan(struct net_device *netdev, -			       int vf, u16 vlan, u8 qos) -{ -	int err = 0; -	struct igb_adapter *adapter = netdev_priv(netdev); - -	if ((vf >= adapter->vfs_allocated_count) || (vlan > 4095) || (qos > 7)) -		return -EINVAL; -	if (vlan || qos) { -		err = igb_vlvf_set(adapter, vlan, !!vlan, vf); -		if (err) -			goto out; -		igb_set_vmvir(adapter, vlan | (qos << VLAN_PRIO_SHIFT), vf); -		igb_set_vmolr(adapter, vf, !vlan); -		adapter->vf_data[vf].pf_vlan = vlan; -		adapter->vf_data[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(__IGB_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"); -		} -	} else { -		igb_vlvf_set(adapter, adapter->vf_data[vf].pf_vlan, -				   false, vf); -		igb_set_vmvir(adapter, vlan, vf); -		igb_set_vmolr(adapter, vf, true); -		adapter->vf_data[vf].pf_vlan = 0; -		adapter->vf_data[vf].pf_qos = 0; -       } -out: -       return err; -} - -static int igb_set_vf_vlan(struct igb_adapter *adapter, u32 *msgbuf, u32 vf) -{ -	int add = (msgbuf[0] & E1000_VT_MSGINFO_MASK) >> E1000_VT_MSGINFO_SHIFT; -	int vid = (msgbuf[1] & E1000_VLVF_VLANID_MASK); - -	return igb_vlvf_set(adapter, vid, add, vf); -} - -static inline void igb_vf_reset(struct igb_adapter *adapter, u32 vf) -{ -	/* clear flags */ -	adapter->vf_data[vf].flags &= ~(IGB_VF_FLAG_PF_SET_MAC); -	adapter->vf_data[vf].last_nack = jiffies; - -	/* reset offloads to defaults */ -	igb_set_vmolr(adapter, vf, true); - -	/* reset vlans for device */ -	igb_clear_vf_vfta(adapter, vf); -	if (adapter->vf_data[vf].pf_vlan) -		igb_ndo_set_vf_vlan(adapter->netdev, vf, -				    adapter->vf_data[vf].pf_vlan, -				    adapter->vf_data[vf].pf_qos); -	else -		igb_clear_vf_vfta(adapter, vf); - -	/* reset multicast table array for vf */ -	adapter->vf_data[vf].num_vf_mc_hashes = 0; - -	/* Flush and reset the mta with the new values */ -	igb_set_rx_mode(adapter->netdev); -} - -static void igb_vf_reset_event(struct igb_adapter *adapter, u32 vf) -{ -	unsigned char *vf_mac = adapter->vf_data[vf].vf_mac_addresses; - -	/* generate a new mac address as we were hotplug removed/added */ -	if (!(adapter->vf_data[vf].flags & IGB_VF_FLAG_PF_SET_MAC)) -		random_ether_addr(vf_mac); - -	/* process remaining reset events */ -	igb_vf_reset(adapter, vf); -} - -static void igb_vf_reset_msg(struct igb_adapter *adapter, u32 vf) -{ -	struct e1000_hw *hw = &adapter->hw; -	unsigned char *vf_mac = adapter->vf_data[vf].vf_mac_addresses; -	int rar_entry = hw->mac.rar_entry_count - (vf + 1); -	u32 reg, msgbuf[3]; -	u8 *addr = (u8 *)(&msgbuf[1]); - -	/* process all the same items cleared in a function level reset */ -	igb_vf_reset(adapter, vf); - -	/* set vf mac address */ -	igb_rar_set_qsel(adapter, vf_mac, rar_entry, vf); - -	/* enable transmit and receive for vf */ -	reg = rd32(E1000_VFTE); -	wr32(E1000_VFTE, reg | (1 << vf)); -	reg = rd32(E1000_VFRE); -	wr32(E1000_VFRE, reg | (1 << vf)); - -	adapter->vf_data[vf].flags = IGB_VF_FLAG_CTS; - -	/* reply to reset with ack and vf mac address */ -	msgbuf[0] = E1000_VF_RESET | E1000_VT_MSGTYPE_ACK; -	memcpy(addr, vf_mac, 6); -	igb_write_mbx(hw, msgbuf, 3, vf); -} - -static int igb_set_vf_mac_addr(struct igb_adapter *adapter, u32 *msg, int vf) -{ -	/* -	 * The VF MAC Address is stored in a packed array of bytes -	 * starting at the second 32 bit word of the msg array -	 */ -	unsigned char *addr = (char *)&msg[1]; -	int err = -1; - -	if (is_valid_ether_addr(addr)) -		err = igb_set_vf_mac(adapter, vf, addr); - -	return err; -} - -static void igb_rcv_ack_from_vf(struct igb_adapter *adapter, u32 vf) -{ -	struct e1000_hw *hw = &adapter->hw; -	struct vf_data_storage *vf_data = &adapter->vf_data[vf]; -	u32 msg = E1000_VT_MSGTYPE_NACK; - -	/* if device isn't clear to send it shouldn't be reading either */ -	if (!(vf_data->flags & IGB_VF_FLAG_CTS) && -	    time_after(jiffies, vf_data->last_nack + (2 * HZ))) { -		igb_write_mbx(hw, &msg, 1, vf); -		vf_data->last_nack = jiffies; -	} -} - -static void igb_rcv_msg_from_vf(struct igb_adapter *adapter, u32 vf) -{ -	struct pci_dev *pdev = adapter->pdev; -	u32 msgbuf[E1000_VFMAILBOX_SIZE]; -	struct e1000_hw *hw = &adapter->hw; -	struct vf_data_storage *vf_data = &adapter->vf_data[vf]; -	s32 retval; - -	retval = igb_read_mbx(hw, msgbuf, E1000_VFMAILBOX_SIZE, vf); - -	if (retval) { -		/* if receive failed revoke VF CTS stats and restart init */ -		dev_err(&pdev->dev, "Error receiving message from VF\n"); -		vf_data->flags &= ~IGB_VF_FLAG_CTS; -		if (!time_after(jiffies, vf_data->last_nack + (2 * HZ))) -			return; -		goto out; -	} - -	/* this is a message we already processed, do nothing */ -	if (msgbuf[0] & (E1000_VT_MSGTYPE_ACK | E1000_VT_MSGTYPE_NACK)) -		return; - -	/* -	 * until the vf completes a reset it should not be -	 * allowed to start any configuration. -	 */ - -	if (msgbuf[0] == E1000_VF_RESET) { -		igb_vf_reset_msg(adapter, vf); -		return; -	} - -	if (!(vf_data->flags & IGB_VF_FLAG_CTS)) { -		if (!time_after(jiffies, vf_data->last_nack + (2 * HZ))) -			return; -		retval = -1; -		goto out; -	} - -	switch ((msgbuf[0] & 0xFFFF)) { -	case E1000_VF_SET_MAC_ADDR: -		retval = igb_set_vf_mac_addr(adapter, msgbuf, vf); -		break; -	case E1000_VF_SET_PROMISC: -		retval = igb_set_vf_promisc(adapter, msgbuf, vf); -		break; -	case E1000_VF_SET_MULTICAST: -		retval = igb_set_vf_multicasts(adapter, msgbuf, vf); -		break; -	case E1000_VF_SET_LPE: -		retval = igb_set_vf_rlpml(adapter, msgbuf[1], vf); -		break; -	case E1000_VF_SET_VLAN: -		if (adapter->vf_data[vf].pf_vlan) -			retval = -1; -		else -			retval = igb_set_vf_vlan(adapter, msgbuf, vf); -		break; -	default: -		dev_err(&pdev->dev, "Unhandled Msg %08x\n", msgbuf[0]); -		retval = -1; -		break; -	} - -	msgbuf[0] |= E1000_VT_MSGTYPE_CTS; -out: -	/* notify the VF of the results of what it sent us */ -	if (retval) -		msgbuf[0] |= E1000_VT_MSGTYPE_NACK; -	else -		msgbuf[0] |= E1000_VT_MSGTYPE_ACK; - -	igb_write_mbx(hw, msgbuf, 1, vf); -} - -static void igb_msg_task(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 vf; - -	for (vf = 0; vf < adapter->vfs_allocated_count; vf++) { -		/* process any reset requests */ -		if (!igb_check_for_rst(hw, vf)) -			igb_vf_reset_event(adapter, vf); - -		/* process any messages pending */ -		if (!igb_check_for_msg(hw, vf)) -			igb_rcv_msg_from_vf(adapter, vf); - -		/* process any acks */ -		if (!igb_check_for_ack(hw, vf)) -			igb_rcv_ack_from_vf(adapter, vf); -	} -} - -/** - *  igb_set_uta - Set unicast filter table address - *  @adapter: board private structure - * - *  The unicast table address is a register array of 32-bit registers. - *  The table is meant to be used in a way similar to how the MTA is used - *  however due to certain limitations in the hardware it is necessary to - *  set all the hash bits to 1 and use the VMOLR ROPE bit as a promiscous - *  enable bit to allow vlan tag stripping when promiscous mode is enabled - **/ -static void igb_set_uta(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	int i; - -	/* The UTA table only exists on 82576 hardware and newer */ -	if (hw->mac.type < e1000_82576) -		return; - -	/* we only need to do this if VMDq is enabled */ -	if (!adapter->vfs_allocated_count) -		return; - -	for (i = 0; i < hw->mac.uta_reg_count; i++) -		array_wr32(E1000_UTA, i, ~0); -} - -/** - * igb_intr_msi - Interrupt Handler - * @irq: interrupt number - * @data: pointer to a network interface device structure - **/ -static irqreturn_t igb_intr_msi(int irq, void *data) -{ -	struct igb_adapter *adapter = data; -	struct igb_q_vector *q_vector = adapter->q_vector[0]; -	struct e1000_hw *hw = &adapter->hw; -	/* read ICR disables interrupts using IAM */ -	u32 icr = rd32(E1000_ICR); - -	igb_write_itr(q_vector); - -	if (icr & E1000_ICR_DRSTA) -		schedule_work(&adapter->reset_task); - -	if (icr & E1000_ICR_DOUTSYNC) { -		/* HW is reporting DMA is out of sync */ -		adapter->stats.doosync++; -	} - -	if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) { -		hw->mac.get_link_status = 1; -		if (!test_bit(__IGB_DOWN, &adapter->state)) -			mod_timer(&adapter->watchdog_timer, jiffies + 1); -	} - -	napi_schedule(&q_vector->napi); - -	return IRQ_HANDLED; -} - -/** - * igb_intr - Legacy Interrupt Handler - * @irq: interrupt number - * @data: pointer to a network interface device structure - **/ -static irqreturn_t igb_intr(int irq, void *data) -{ -	struct igb_adapter *adapter = data; -	struct igb_q_vector *q_vector = adapter->q_vector[0]; -	struct e1000_hw *hw = &adapter->hw; -	/* Interrupt Auto-Mask...upon reading ICR, interrupts are masked.  No -	 * need for the IMC write */ -	u32 icr = rd32(E1000_ICR); -	if (!icr) -		return IRQ_NONE;  /* Not our interrupt */ - -	igb_write_itr(q_vector); - -	/* IMS will not auto-mask if INT_ASSERTED is not set, and if it is -	 * not set, then the adapter didn't send an interrupt */ -	if (!(icr & E1000_ICR_INT_ASSERTED)) -		return IRQ_NONE; - -	if (icr & E1000_ICR_DRSTA) -		schedule_work(&adapter->reset_task); - -	if (icr & E1000_ICR_DOUTSYNC) { -		/* HW is reporting DMA is out of sync */ -		adapter->stats.doosync++; -	} - -	if (icr & (E1000_ICR_RXSEQ | E1000_ICR_LSC)) { -		hw->mac.get_link_status = 1; -		/* guard against interrupt when we're going down */ -		if (!test_bit(__IGB_DOWN, &adapter->state)) -			mod_timer(&adapter->watchdog_timer, jiffies + 1); -	} - -	napi_schedule(&q_vector->napi); - -	return IRQ_HANDLED; -} - -static inline void igb_ring_irq_enable(struct igb_q_vector *q_vector) -{ -	struct igb_adapter *adapter = q_vector->adapter; -	struct e1000_hw *hw = &adapter->hw; - -	if ((q_vector->rx_ring && (adapter->rx_itr_setting & 3)) || -	    (!q_vector->rx_ring && (adapter->tx_itr_setting & 3))) { -		if (!adapter->msix_entries) -			igb_set_itr(adapter); -		else -			igb_update_ring_itr(q_vector); -	} - -	if (!test_bit(__IGB_DOWN, &adapter->state)) { -		if (adapter->msix_entries) -			wr32(E1000_EIMS, q_vector->eims_value); -		else -			igb_irq_enable(adapter); -	} -} - -/** - * igb_poll - NAPI Rx polling callback - * @napi: napi polling structure - * @budget: count of how many packets we should handle - **/ -static int igb_poll(struct napi_struct *napi, int budget) -{ -	struct igb_q_vector *q_vector = container_of(napi, -	                                             struct igb_q_vector, -	                                             napi); -	int tx_clean_complete = 1, work_done = 0; - -#ifdef CONFIG_IGB_DCA -	if (q_vector->adapter->flags & IGB_FLAG_DCA_ENABLED) -		igb_update_dca(q_vector); -#endif -	if (q_vector->tx_ring) -		tx_clean_complete = igb_clean_tx_irq(q_vector); - -	if (q_vector->rx_ring) -		igb_clean_rx_irq_adv(q_vector, &work_done, budget); - -	if (!tx_clean_complete) -		work_done = budget; - -	/* If not enough Rx work done, exit the polling mode */ -	if (work_done < budget) { -		napi_complete(napi); -		igb_ring_irq_enable(q_vector); -	} - -	return work_done; -} - -/** - * igb_systim_to_hwtstamp - convert system time value to hw timestamp - * @adapter: board private structure - * @shhwtstamps: timestamp structure to update - * @regval: unsigned 64bit system time value. - * - * We need to convert the system time value stored in the RX/TXSTMP registers - * into a hwtstamp which can be used by the upper level timestamping functions - */ -static void igb_systim_to_hwtstamp(struct igb_adapter *adapter, -                                   struct skb_shared_hwtstamps *shhwtstamps, -                                   u64 regval) -{ -	u64 ns; - -	/* -	 * The 82580 starts with 1ns at bit 0 in RX/TXSTMPL, shift this up to -	 * 24 to match clock shift we setup earlier. -	 */ -	if (adapter->hw.mac.type == e1000_82580) -		regval <<= IGB_82580_TSYNC_SHIFT; - -	ns = timecounter_cyc2time(&adapter->clock, regval); -	timecompare_update(&adapter->compare, ns); -	memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps)); -	shhwtstamps->hwtstamp = ns_to_ktime(ns); -	shhwtstamps->syststamp = timecompare_transform(&adapter->compare, ns); -} - -/** - * igb_tx_hwtstamp - utility function which checks for TX time stamp - * @q_vector: pointer to q_vector containing needed info - * @buffer: pointer to igb_buffer structure - * - * If we were asked to do hardware stamping and such a time stamp is - * available, then it must have been for this skb here because we only - * allow only one such packet into the queue. - */ -static void igb_tx_hwtstamp(struct igb_q_vector *q_vector, struct igb_buffer *buffer_info) -{ -	struct igb_adapter *adapter = q_vector->adapter; -	struct e1000_hw *hw = &adapter->hw; -	struct skb_shared_hwtstamps shhwtstamps; -	u64 regval; - -	/* if skb does not support hw timestamp or TX stamp not valid exit */ -	if (likely(!(buffer_info->tx_flags & SKBTX_HW_TSTAMP)) || -	    !(rd32(E1000_TSYNCTXCTL) & E1000_TSYNCTXCTL_VALID)) -		return; - -	regval = rd32(E1000_TXSTMPL); -	regval |= (u64)rd32(E1000_TXSTMPH) << 32; - -	igb_systim_to_hwtstamp(adapter, &shhwtstamps, regval); -	skb_tstamp_tx(buffer_info->skb, &shhwtstamps); -} - -/** - * igb_clean_tx_irq - Reclaim resources after transmit completes - * @q_vector: pointer to q_vector containing needed info - * returns true if ring is completely cleaned - **/ -static bool igb_clean_tx_irq(struct igb_q_vector *q_vector) -{ -	struct igb_adapter *adapter = q_vector->adapter; -	struct igb_ring *tx_ring = q_vector->tx_ring; -	struct net_device *netdev = tx_ring->netdev; -	struct e1000_hw *hw = &adapter->hw; -	struct igb_buffer *buffer_info; -	union e1000_adv_tx_desc *tx_desc, *eop_desc; -	unsigned int total_bytes = 0, total_packets = 0; -	unsigned int i, eop, count = 0; -	bool cleaned = false; - -	i = tx_ring->next_to_clean; -	eop = tx_ring->buffer_info[i].next_to_watch; -	eop_desc = E1000_TX_DESC_ADV(*tx_ring, eop); - -	while ((eop_desc->wb.status & cpu_to_le32(E1000_TXD_STAT_DD)) && -	       (count < tx_ring->count)) { -		rmb();	/* read buffer_info after eop_desc status */ -		for (cleaned = false; !cleaned; count++) { -			tx_desc = E1000_TX_DESC_ADV(*tx_ring, i); -			buffer_info = &tx_ring->buffer_info[i]; -			cleaned = (i == eop); - -			if (buffer_info->skb) { -				total_bytes += buffer_info->bytecount; -				/* gso_segs is currently only valid for tcp */ -				total_packets += buffer_info->gso_segs; -				igb_tx_hwtstamp(q_vector, buffer_info); -			} - -			igb_unmap_and_free_tx_resource(tx_ring, buffer_info); -			tx_desc->wb.status = 0; - -			i++; -			if (i == tx_ring->count) -				i = 0; -		} -		eop = tx_ring->buffer_info[i].next_to_watch; -		eop_desc = E1000_TX_DESC_ADV(*tx_ring, eop); -	} - -	tx_ring->next_to_clean = i; - -	if (unlikely(count && -		     netif_carrier_ok(netdev) && -		     igb_desc_unused(tx_ring) >= IGB_TX_QUEUE_WAKE)) { -		/* Make sure that anybody stopping the queue after this -		 * sees the new next_to_clean. -		 */ -		smp_mb(); -		if (__netif_subqueue_stopped(netdev, tx_ring->queue_index) && -		    !(test_bit(__IGB_DOWN, &adapter->state))) { -			netif_wake_subqueue(netdev, tx_ring->queue_index); - -			u64_stats_update_begin(&tx_ring->tx_syncp); -			tx_ring->tx_stats.restart_queue++; -			u64_stats_update_end(&tx_ring->tx_syncp); -		} -	} - -	if (tx_ring->detect_tx_hung) { -		/* Detect a transmit hang in hardware, this serializes the -		 * check with the clearing of time_stamp and movement of i */ -		tx_ring->detect_tx_hung = false; -		if (tx_ring->buffer_info[i].time_stamp && -		    time_after(jiffies, tx_ring->buffer_info[i].time_stamp + -			       (adapter->tx_timeout_factor * HZ)) && -		    !(rd32(E1000_STATUS) & E1000_STATUS_TXOFF)) { - -			/* detected Tx unit hang */ -			dev_err(tx_ring->dev, -				"Detected Tx Unit Hang\n" -				"  Tx Queue             <%d>\n" -				"  TDH                  <%x>\n" -				"  TDT                  <%x>\n" -				"  next_to_use          <%x>\n" -				"  next_to_clean        <%x>\n" -				"buffer_info[next_to_clean]\n" -				"  time_stamp           <%lx>\n" -				"  next_to_watch        <%x>\n" -				"  jiffies              <%lx>\n" -				"  desc.status          <%x>\n", -				tx_ring->queue_index, -				readl(tx_ring->head), -				readl(tx_ring->tail), -				tx_ring->next_to_use, -				tx_ring->next_to_clean, -				tx_ring->buffer_info[eop].time_stamp, -				eop, -				jiffies, -				eop_desc->wb.status); -			netif_stop_subqueue(netdev, tx_ring->queue_index); -		} -	} -	tx_ring->total_bytes += total_bytes; -	tx_ring->total_packets += total_packets; -	u64_stats_update_begin(&tx_ring->tx_syncp); -	tx_ring->tx_stats.bytes += total_bytes; -	tx_ring->tx_stats.packets += total_packets; -	u64_stats_update_end(&tx_ring->tx_syncp); -	return count < tx_ring->count; -} - -/** - * igb_receive_skb - helper function to handle rx indications - * @q_vector: structure containing interrupt and ring information - * @skb: packet to send up - * @vlan_tag: vlan tag for packet - **/ -static void igb_receive_skb(struct igb_q_vector *q_vector, -                            struct sk_buff *skb, -                            u16 vlan_tag) -{ -	struct igb_adapter *adapter = q_vector->adapter; - -	if (vlan_tag && adapter->vlgrp) -		vlan_gro_receive(&q_vector->napi, adapter->vlgrp, -		                 vlan_tag, skb); -	else -		napi_gro_receive(&q_vector->napi, skb); -} - -static inline void igb_rx_checksum_adv(struct igb_ring *ring, -				       u32 status_err, struct sk_buff *skb) -{ -	skb_checksum_none_assert(skb); - -	/* Ignore Checksum bit is set or checksum is disabled through ethtool */ -	if (!(ring->flags & IGB_RING_FLAG_RX_CSUM) || -	     (status_err & E1000_RXD_STAT_IXSM)) -		return; - -	/* TCP/UDP checksum error bit is set */ -	if (status_err & -	    (E1000_RXDEXT_STATERR_TCPE | E1000_RXDEXT_STATERR_IPE)) { -		/* -		 * work around errata with sctp packets where the TCPE aka -		 * L4E bit is set incorrectly on 64 byte (60 byte w/o crc) -		 * packets, (aka let the stack check the crc32c) -		 */ -		if ((skb->len == 60) && -		    (ring->flags & IGB_RING_FLAG_RX_SCTP_CSUM)) { -			u64_stats_update_begin(&ring->rx_syncp); -			ring->rx_stats.csum_err++; -			u64_stats_update_end(&ring->rx_syncp); -		} -		/* let the stack verify checksum errors */ -		return; -	} -	/* It must be a TCP or UDP packet with a valid checksum */ -	if (status_err & (E1000_RXD_STAT_TCPCS | E1000_RXD_STAT_UDPCS)) -		skb->ip_summed = CHECKSUM_UNNECESSARY; - -	dev_dbg(ring->dev, "cksum success: bits %08X\n", status_err); -} - -static void igb_rx_hwtstamp(struct igb_q_vector *q_vector, u32 staterr, -                                   struct sk_buff *skb) -{ -	struct igb_adapter *adapter = q_vector->adapter; -	struct e1000_hw *hw = &adapter->hw; -	u64 regval; - -	/* -	 * If this bit is set, then the RX registers contain the time stamp. No -	 * other packet will be time stamped until we read these registers, so -	 * read the registers to make them available again. Because only one -	 * packet can be time stamped at a time, we know that the register -	 * values must belong to this one here and therefore we don't need to -	 * compare any of the additional attributes stored for it. -	 * -	 * If nothing went wrong, then it should have a shared tx_flags that we -	 * can turn into a skb_shared_hwtstamps. -	 */ -	if (staterr & E1000_RXDADV_STAT_TSIP) { -		u32 *stamp = (u32 *)skb->data; -		regval = le32_to_cpu(*(stamp + 2)); -		regval |= (u64)le32_to_cpu(*(stamp + 3)) << 32; -		skb_pull(skb, IGB_TS_HDR_LEN); -	} else { -		if(!(rd32(E1000_TSYNCRXCTL) & E1000_TSYNCRXCTL_VALID)) -			return; - -		regval = rd32(E1000_RXSTMPL); -		regval |= (u64)rd32(E1000_RXSTMPH) << 32; -	} - -	igb_systim_to_hwtstamp(adapter, skb_hwtstamps(skb), regval); -} -static inline u16 igb_get_hlen(struct igb_ring *rx_ring, -                               union e1000_adv_rx_desc *rx_desc) -{ -	/* HW will not DMA in data larger than the given buffer, even if it -	 * parses the (NFS, of course) header to be larger.  In that case, it -	 * fills the header buffer and spills the rest into the page. -	 */ -	u16 hlen = (le16_to_cpu(rx_desc->wb.lower.lo_dword.hdr_info) & -	           E1000_RXDADV_HDRBUFLEN_MASK) >> E1000_RXDADV_HDRBUFLEN_SHIFT; -	if (hlen > rx_ring->rx_buffer_len) -		hlen = rx_ring->rx_buffer_len; -	return hlen; -} - -static bool igb_clean_rx_irq_adv(struct igb_q_vector *q_vector, -                                 int *work_done, int budget) -{ -	struct igb_ring *rx_ring = q_vector->rx_ring; -	struct net_device *netdev = rx_ring->netdev; -	struct device *dev = rx_ring->dev; -	union e1000_adv_rx_desc *rx_desc , *next_rxd; -	struct igb_buffer *buffer_info , *next_buffer; -	struct sk_buff *skb; -	bool cleaned = false; -	int cleaned_count = 0; -	int current_node = numa_node_id(); -	unsigned int total_bytes = 0, total_packets = 0; -	unsigned int i; -	u32 staterr; -	u16 length; -	u16 vlan_tag; - -	i = rx_ring->next_to_clean; -	buffer_info = &rx_ring->buffer_info[i]; -	rx_desc = E1000_RX_DESC_ADV(*rx_ring, i); -	staterr = le32_to_cpu(rx_desc->wb.upper.status_error); - -	while (staterr & E1000_RXD_STAT_DD) { -		if (*work_done >= budget) -			break; -		(*work_done)++; -		rmb(); /* read descriptor and rx_buffer_info after status DD */ - -		skb = buffer_info->skb; -		prefetch(skb->data - NET_IP_ALIGN); -		buffer_info->skb = NULL; - -		i++; -		if (i == rx_ring->count) -			i = 0; - -		next_rxd = E1000_RX_DESC_ADV(*rx_ring, i); -		prefetch(next_rxd); -		next_buffer = &rx_ring->buffer_info[i]; - -		length = le16_to_cpu(rx_desc->wb.upper.length); -		cleaned = true; -		cleaned_count++; - -		if (buffer_info->dma) { -			dma_unmap_single(dev, buffer_info->dma, -					 rx_ring->rx_buffer_len, -					 DMA_FROM_DEVICE); -			buffer_info->dma = 0; -			if (rx_ring->rx_buffer_len >= IGB_RXBUFFER_1024) { -				skb_put(skb, length); -				goto send_up; -			} -			skb_put(skb, igb_get_hlen(rx_ring, rx_desc)); -		} - -		if (length) { -			dma_unmap_page(dev, buffer_info->page_dma, -				       PAGE_SIZE / 2, DMA_FROM_DEVICE); -			buffer_info->page_dma = 0; - -			skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, -						buffer_info->page, -						buffer_info->page_offset, -						length); - -			if ((page_count(buffer_info->page) != 1) || -			    (page_to_nid(buffer_info->page) != current_node)) -				buffer_info->page = NULL; -			else -				get_page(buffer_info->page); - -			skb->len += length; -			skb->data_len += length; -			skb->truesize += length; -		} - -		if (!(staterr & E1000_RXD_STAT_EOP)) { -			buffer_info->skb = next_buffer->skb; -			buffer_info->dma = next_buffer->dma; -			next_buffer->skb = skb; -			next_buffer->dma = 0; -			goto next_desc; -		} -send_up: -		if (staterr & E1000_RXDEXT_ERR_FRAME_ERR_MASK) { -			dev_kfree_skb_irq(skb); -			goto next_desc; -		} - -		if (staterr & (E1000_RXDADV_STAT_TSIP | E1000_RXDADV_STAT_TS)) -			igb_rx_hwtstamp(q_vector, staterr, skb); -		total_bytes += skb->len; -		total_packets++; - -		igb_rx_checksum_adv(rx_ring, staterr, skb); - -		skb->protocol = eth_type_trans(skb, netdev); -		skb_record_rx_queue(skb, rx_ring->queue_index); - -		vlan_tag = ((staterr & E1000_RXD_STAT_VP) ? -		            le16_to_cpu(rx_desc->wb.upper.vlan) : 0); - -		igb_receive_skb(q_vector, skb, vlan_tag); - -next_desc: -		rx_desc->wb.upper.status_error = 0; - -		/* return some buffers to hardware, one at a time is too slow */ -		if (cleaned_count >= IGB_RX_BUFFER_WRITE) { -			igb_alloc_rx_buffers_adv(rx_ring, cleaned_count); -			cleaned_count = 0; -		} - -		/* use prefetched values */ -		rx_desc = next_rxd; -		buffer_info = next_buffer; -		staterr = le32_to_cpu(rx_desc->wb.upper.status_error); -	} - -	rx_ring->next_to_clean = i; -	cleaned_count = igb_desc_unused(rx_ring); - -	if (cleaned_count) -		igb_alloc_rx_buffers_adv(rx_ring, cleaned_count); - -	rx_ring->total_packets += total_packets; -	rx_ring->total_bytes += total_bytes; -	u64_stats_update_begin(&rx_ring->rx_syncp); -	rx_ring->rx_stats.packets += total_packets; -	rx_ring->rx_stats.bytes += total_bytes; -	u64_stats_update_end(&rx_ring->rx_syncp); -	return cleaned; -} - -/** - * igb_alloc_rx_buffers_adv - Replace used receive buffers; packet split - * @adapter: address of board private structure - **/ -void igb_alloc_rx_buffers_adv(struct igb_ring *rx_ring, int cleaned_count) -{ -	struct net_device *netdev = rx_ring->netdev; -	union e1000_adv_rx_desc *rx_desc; -	struct igb_buffer *buffer_info; -	struct sk_buff *skb; -	unsigned int i; -	int bufsz; - -	i = rx_ring->next_to_use; -	buffer_info = &rx_ring->buffer_info[i]; - -	bufsz = rx_ring->rx_buffer_len; - -	while (cleaned_count--) { -		rx_desc = E1000_RX_DESC_ADV(*rx_ring, i); - -		if ((bufsz < IGB_RXBUFFER_1024) && !buffer_info->page_dma) { -			if (!buffer_info->page) { -				buffer_info->page = netdev_alloc_page(netdev); -				if (unlikely(!buffer_info->page)) { -					u64_stats_update_begin(&rx_ring->rx_syncp); -					rx_ring->rx_stats.alloc_failed++; -					u64_stats_update_end(&rx_ring->rx_syncp); -					goto no_buffers; -				} -				buffer_info->page_offset = 0; -			} else { -				buffer_info->page_offset ^= PAGE_SIZE / 2; -			} -			buffer_info->page_dma = -				dma_map_page(rx_ring->dev, buffer_info->page, -					     buffer_info->page_offset, -					     PAGE_SIZE / 2, -					     DMA_FROM_DEVICE); -			if (dma_mapping_error(rx_ring->dev, -					      buffer_info->page_dma)) { -				buffer_info->page_dma = 0; -				u64_stats_update_begin(&rx_ring->rx_syncp); -				rx_ring->rx_stats.alloc_failed++; -				u64_stats_update_end(&rx_ring->rx_syncp); -				goto no_buffers; -			} -		} - -		skb = buffer_info->skb; -		if (!skb) { -			skb = netdev_alloc_skb_ip_align(netdev, bufsz); -			if (unlikely(!skb)) { -				u64_stats_update_begin(&rx_ring->rx_syncp); -				rx_ring->rx_stats.alloc_failed++; -				u64_stats_update_end(&rx_ring->rx_syncp); -				goto no_buffers; -			} - -			buffer_info->skb = skb; -		} -		if (!buffer_info->dma) { -			buffer_info->dma = dma_map_single(rx_ring->dev, -			                                  skb->data, -							  bufsz, -							  DMA_FROM_DEVICE); -			if (dma_mapping_error(rx_ring->dev, -					      buffer_info->dma)) { -				buffer_info->dma = 0; -				u64_stats_update_begin(&rx_ring->rx_syncp); -				rx_ring->rx_stats.alloc_failed++; -				u64_stats_update_end(&rx_ring->rx_syncp); -				goto no_buffers; -			} -		} -		/* Refresh the desc even if buffer_addrs didn't change because -		 * each write-back erases this info. */ -		if (bufsz < IGB_RXBUFFER_1024) { -			rx_desc->read.pkt_addr = -			     cpu_to_le64(buffer_info->page_dma); -			rx_desc->read.hdr_addr = cpu_to_le64(buffer_info->dma); -		} else { -			rx_desc->read.pkt_addr = cpu_to_le64(buffer_info->dma); -			rx_desc->read.hdr_addr = 0; -		} - -		i++; -		if (i == rx_ring->count) -			i = 0; -		buffer_info = &rx_ring->buffer_info[i]; -	} - -no_buffers: -	if (rx_ring->next_to_use != i) { -		rx_ring->next_to_use = i; -		if (i == 0) -			i = (rx_ring->count - 1); -		else -			i--; - -		/* Force memory writes to complete before letting h/w -		 * know there are new descriptors to fetch.  (Only -		 * applicable for weak-ordered memory model archs, -		 * such as IA-64). */ -		wmb(); -		writel(i, rx_ring->tail); -	} -} - -/** - * igb_mii_ioctl - - * @netdev: - * @ifreq: - * @cmd: - **/ -static int igb_mii_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct mii_ioctl_data *data = if_mii(ifr); - -	if (adapter->hw.phy.media_type != e1000_media_type_copper) -		return -EOPNOTSUPP; - -	switch (cmd) { -	case SIOCGMIIPHY: -		data->phy_id = adapter->hw.phy.addr; -		break; -	case SIOCGMIIREG: -		if (igb_read_phy_reg(&adapter->hw, data->reg_num & 0x1F, -		                     &data->val_out)) -			return -EIO; -		break; -	case SIOCSMIIREG: -	default: -		return -EOPNOTSUPP; -	} -	return 0; -} - -/** - * igb_hwtstamp_ioctl - control hardware time stamping - * @netdev: - * @ifreq: - * @cmd: - * - * Outgoing time stamping can be enabled and disabled. Play nice and - * disable it when requested, although it shouldn't case any overhead - * when no packet needs it. At most one packet in the queue may be - * marked for time stamping, otherwise it would be impossible to tell - * for sure to which packet the hardware time stamp belongs. - * - * Incoming time stamping has to be configured via the hardware - * filters. Not all combinations are supported, in particular event - * type has to be specified. Matching the kind of event packet is - * not supported, with the exception of "all V2 events regardless of - * level 2 or 4". - * - **/ -static int igb_hwtstamp_ioctl(struct net_device *netdev, -			      struct ifreq *ifr, int cmd) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	struct hwtstamp_config config; -	u32 tsync_tx_ctl = E1000_TSYNCTXCTL_ENABLED; -	u32 tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED; -	u32 tsync_rx_cfg = 0; -	bool is_l4 = false; -	bool is_l2 = false; -	u32 regval; - -	if (copy_from_user(&config, ifr->ifr_data, sizeof(config))) -		return -EFAULT; - -	/* reserved for future extensions */ -	if (config.flags) -		return -EINVAL; - -	switch (config.tx_type) { -	case HWTSTAMP_TX_OFF: -		tsync_tx_ctl = 0; -	case HWTSTAMP_TX_ON: -		break; -	default: -		return -ERANGE; -	} - -	switch (config.rx_filter) { -	case HWTSTAMP_FILTER_NONE: -		tsync_rx_ctl = 0; -		break; -	case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: -	case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: -	case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: -	case HWTSTAMP_FILTER_ALL: -		/* -		 * register TSYNCRXCFG must be set, therefore it is not -		 * possible to time stamp both Sync and Delay_Req messages -		 * => fall back to time stamping all packets -		 */ -		tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL; -		config.rx_filter = HWTSTAMP_FILTER_ALL; -		break; -	case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: -		tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1; -		tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V1_SYNC_MESSAGE; -		is_l4 = true; -		break; -	case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: -		tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L4_V1; -		tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V1_DELAY_REQ_MESSAGE; -		is_l4 = true; -		break; -	case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: -	case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: -		tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2; -		tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V2_SYNC_MESSAGE; -		is_l2 = true; -		is_l4 = true; -		config.rx_filter = HWTSTAMP_FILTER_SOME; -		break; -	case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: -	case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: -		tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_L2_L4_V2; -		tsync_rx_cfg = E1000_TSYNCRXCFG_PTP_V2_DELAY_REQ_MESSAGE; -		is_l2 = true; -		is_l4 = true; -		config.rx_filter = HWTSTAMP_FILTER_SOME; -		break; -	case HWTSTAMP_FILTER_PTP_V2_EVENT: -	case HWTSTAMP_FILTER_PTP_V2_SYNC: -	case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: -		tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_EVENT_V2; -		config.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; -		is_l2 = true; -		break; -	default: -		return -ERANGE; -	} - -	if (hw->mac.type == e1000_82575) { -		if (tsync_rx_ctl | tsync_tx_ctl) -			return -EINVAL; -		return 0; -	} - -	/* -	 * Per-packet timestamping only works if all packets are -	 * timestamped, so enable timestamping in all packets as -	 * long as one rx filter was configured. -	 */ -	if ((hw->mac.type == e1000_82580) && tsync_rx_ctl) { -		tsync_rx_ctl = E1000_TSYNCRXCTL_ENABLED; -		tsync_rx_ctl |= E1000_TSYNCRXCTL_TYPE_ALL; -	} - -	/* enable/disable TX */ -	regval = rd32(E1000_TSYNCTXCTL); -	regval &= ~E1000_TSYNCTXCTL_ENABLED; -	regval |= tsync_tx_ctl; -	wr32(E1000_TSYNCTXCTL, regval); - -	/* enable/disable RX */ -	regval = rd32(E1000_TSYNCRXCTL); -	regval &= ~(E1000_TSYNCRXCTL_ENABLED | E1000_TSYNCRXCTL_TYPE_MASK); -	regval |= tsync_rx_ctl; -	wr32(E1000_TSYNCRXCTL, regval); - -	/* define which PTP packets are time stamped */ -	wr32(E1000_TSYNCRXCFG, tsync_rx_cfg); - -	/* define ethertype filter for timestamped packets */ -	if (is_l2) -		wr32(E1000_ETQF(3), -		                (E1000_ETQF_FILTER_ENABLE | /* enable filter */ -		                 E1000_ETQF_1588 | /* enable timestamping */ -		                 ETH_P_1588));     /* 1588 eth protocol type */ -	else -		wr32(E1000_ETQF(3), 0); - -#define PTP_PORT 319 -	/* L4 Queue Filter[3]: filter by destination port and protocol */ -	if (is_l4) { -		u32 ftqf = (IPPROTO_UDP /* UDP */ -			| E1000_FTQF_VF_BP /* VF not compared */ -			| E1000_FTQF_1588_TIME_STAMP /* Enable Timestamping */ -			| E1000_FTQF_MASK); /* mask all inputs */ -		ftqf &= ~E1000_FTQF_MASK_PROTO_BP; /* enable protocol check */ - -		wr32(E1000_IMIR(3), htons(PTP_PORT)); -		wr32(E1000_IMIREXT(3), -		     (E1000_IMIREXT_SIZE_BP | E1000_IMIREXT_CTRL_BP)); -		if (hw->mac.type == e1000_82576) { -			/* enable source port check */ -			wr32(E1000_SPQF(3), htons(PTP_PORT)); -			ftqf &= ~E1000_FTQF_MASK_SOURCE_PORT_BP; -		} -		wr32(E1000_FTQF(3), ftqf); -	} else { -		wr32(E1000_FTQF(3), E1000_FTQF_MASK); -	} -	wrfl(); - -	adapter->hwtstamp_config = config; - -	/* clear TX/RX time stamp registers, just to be sure */ -	regval = rd32(E1000_TXSTMPH); -	regval = rd32(E1000_RXSTMPH); - -	return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ? -		-EFAULT : 0; -} - -/** - * igb_ioctl - - * @netdev: - * @ifreq: - * @cmd: - **/ -static int igb_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) -{ -	switch (cmd) { -	case SIOCGMIIPHY: -	case SIOCGMIIREG: -	case SIOCSMIIREG: -		return igb_mii_ioctl(netdev, ifr, cmd); -	case SIOCSHWTSTAMP: -		return igb_hwtstamp_ioctl(netdev, ifr, cmd); -	default: -		return -EOPNOTSUPP; -	} -} - -s32 igb_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value) -{ -	struct igb_adapter *adapter = hw->back; -	u16 cap_offset; - -	cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP); -	if (!cap_offset) -		return -E1000_ERR_CONFIG; - -	pci_read_config_word(adapter->pdev, cap_offset + reg, value); - -	return 0; -} - -s32 igb_write_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value) -{ -	struct igb_adapter *adapter = hw->back; -	u16 cap_offset; - -	cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP); -	if (!cap_offset) -		return -E1000_ERR_CONFIG; - -	pci_write_config_word(adapter->pdev, cap_offset + reg, *value); - -	return 0; -} - -static void igb_vlan_rx_register(struct net_device *netdev, -				 struct vlan_group *grp) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	u32 ctrl, rctl; - -	igb_irq_disable(adapter); -	adapter->vlgrp = grp; - -	if (grp) { -		/* enable VLAN tag insert/strip */ -		ctrl = rd32(E1000_CTRL); -		ctrl |= E1000_CTRL_VME; -		wr32(E1000_CTRL, ctrl); - -		/* Disable CFI check */ -		rctl = rd32(E1000_RCTL); -		rctl &= ~E1000_RCTL_CFIEN; -		wr32(E1000_RCTL, rctl); -	} else { -		/* disable VLAN tag insert/strip */ -		ctrl = rd32(E1000_CTRL); -		ctrl &= ~E1000_CTRL_VME; -		wr32(E1000_CTRL, ctrl); -	} - -	igb_rlpml_set(adapter); - -	if (!test_bit(__IGB_DOWN, &adapter->state)) -		igb_irq_enable(adapter); -} - -static void igb_vlan_rx_add_vid(struct net_device *netdev, u16 vid) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	int pf_id = adapter->vfs_allocated_count; - -	/* attempt to add filter to vlvf array */ -	igb_vlvf_set(adapter, vid, true, pf_id); - -	/* add the filter since PF can receive vlans w/o entry in vlvf */ -	igb_vfta_set(hw, vid, true); -} - -static void igb_vlan_rx_kill_vid(struct net_device *netdev, u16 vid) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	int pf_id = adapter->vfs_allocated_count; -	s32 err; - -	igb_irq_disable(adapter); -	vlan_group_set_device(adapter->vlgrp, vid, NULL); - -	if (!test_bit(__IGB_DOWN, &adapter->state)) -		igb_irq_enable(adapter); - -	/* remove vlan from VLVF table array */ -	err = igb_vlvf_set(adapter, vid, false, pf_id); - -	/* if vid was not present in VLVF just remove it from table */ -	if (err) -		igb_vfta_set(hw, vid, false); -} - -static void igb_restore_vlan(struct igb_adapter *adapter) -{ -	igb_vlan_rx_register(adapter->netdev, adapter->vlgrp); - -	if (adapter->vlgrp) { -		u16 vid; -		for (vid = 0; vid < VLAN_N_VID; vid++) { -			if (!vlan_group_get_device(adapter->vlgrp, vid)) -				continue; -			igb_vlan_rx_add_vid(adapter->netdev, vid); -		} -	} -} - -int igb_set_spd_dplx(struct igb_adapter *adapter, u16 spddplx) -{ -	struct pci_dev *pdev = adapter->pdev; -	struct e1000_mac_info *mac = &adapter->hw.mac; - -	mac->autoneg = 0; - -	/* Fiber NIC's only allow 1000 Gbps Full duplex */ -	if ((adapter->hw.phy.media_type == e1000_media_type_internal_serdes) && -		spddplx != (SPEED_1000 + DUPLEX_FULL)) { -		dev_err(&pdev->dev, "Unsupported Speed/Duplex configuration\n"); -		return -EINVAL; -	} - -	switch (spddplx) { -	case SPEED_10 + DUPLEX_HALF: -		mac->forced_speed_duplex = ADVERTISE_10_HALF; -		break; -	case SPEED_10 + DUPLEX_FULL: -		mac->forced_speed_duplex = ADVERTISE_10_FULL; -		break; -	case SPEED_100 + DUPLEX_HALF: -		mac->forced_speed_duplex = ADVERTISE_100_HALF; -		break; -	case SPEED_100 + DUPLEX_FULL: -		mac->forced_speed_duplex = ADVERTISE_100_FULL; -		break; -	case SPEED_1000 + DUPLEX_FULL: -		mac->autoneg = 1; -		adapter->hw.phy.autoneg_advertised = ADVERTISE_1000_FULL; -		break; -	case SPEED_1000 + DUPLEX_HALF: /* not supported */ -	default: -		dev_err(&pdev->dev, "Unsupported Speed/Duplex configuration\n"); -		return -EINVAL; -	} -	return 0; -} - -static int __igb_shutdown(struct pci_dev *pdev, bool *enable_wake) -{ -	struct net_device *netdev = pci_get_drvdata(pdev); -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	u32 ctrl, rctl, status; -	u32 wufc = adapter->wol; -#ifdef CONFIG_PM -	int retval = 0; -#endif - -	netif_device_detach(netdev); - -	if (netif_running(netdev)) -		igb_close(netdev); - -	igb_clear_interrupt_scheme(adapter); - -#ifdef CONFIG_PM -	retval = pci_save_state(pdev); -	if (retval) -		return retval; -#endif - -	status = rd32(E1000_STATUS); -	if (status & E1000_STATUS_LU) -		wufc &= ~E1000_WUFC_LNKC; - -	if (wufc) { -		igb_setup_rctl(adapter); -		igb_set_rx_mode(netdev); - -		/* turn on all-multi mode if wake on multicast is enabled */ -		if (wufc & E1000_WUFC_MC) { -			rctl = rd32(E1000_RCTL); -			rctl |= E1000_RCTL_MPE; -			wr32(E1000_RCTL, rctl); -		} - -		ctrl = rd32(E1000_CTRL); -		/* advertise wake from D3Cold */ -		#define E1000_CTRL_ADVD3WUC 0x00100000 -		/* phy power management enable */ -		#define E1000_CTRL_EN_PHY_PWR_MGMT 0x00200000 -		ctrl |= E1000_CTRL_ADVD3WUC; -		wr32(E1000_CTRL, ctrl); - -		/* Allow time for pending master requests to run */ -		igb_disable_pcie_master(hw); - -		wr32(E1000_WUC, E1000_WUC_PME_EN); -		wr32(E1000_WUFC, wufc); -	} else { -		wr32(E1000_WUC, 0); -		wr32(E1000_WUFC, 0); -	} - -	*enable_wake = wufc || adapter->en_mng_pt; -	if (!*enable_wake) -		igb_power_down_link(adapter); -	else -		igb_power_up_link(adapter); - -	/* Release control of h/w to f/w.  If f/w is AMT enabled, this -	 * would have already happened in close and is redundant. */ -	igb_release_hw_control(adapter); - -	pci_disable_device(pdev); - -	return 0; -} - -#ifdef CONFIG_PM -static int igb_suspend(struct pci_dev *pdev, pm_message_t state) -{ -	int retval; -	bool wake; - -	retval = __igb_shutdown(pdev, &wake); -	if (retval) -		return retval; - -	if (wake) { -		pci_prepare_to_sleep(pdev); -	} else { -		pci_wake_from_d3(pdev, false); -		pci_set_power_state(pdev, PCI_D3hot); -	} - -	return 0; -} - -static int igb_resume(struct pci_dev *pdev) -{ -	struct net_device *netdev = pci_get_drvdata(pdev); -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	u32 err; - -	pci_set_power_state(pdev, PCI_D0); -	pci_restore_state(pdev); -	pci_save_state(pdev); - -	err = pci_enable_device_mem(pdev); -	if (err) { -		dev_err(&pdev->dev, -			"igb: Cannot enable PCI device from suspend\n"); -		return err; -	} -	pci_set_master(pdev); - -	pci_enable_wake(pdev, PCI_D3hot, 0); -	pci_enable_wake(pdev, PCI_D3cold, 0); - -	if (igb_init_interrupt_scheme(adapter)) { -		dev_err(&pdev->dev, "Unable to allocate memory for queues\n"); -		return -ENOMEM; -	} - -	igb_reset(adapter); - -	/* let the f/w know that the h/w is now under the control of the -	 * driver. */ -	igb_get_hw_control(adapter); - -	wr32(E1000_WUS, ~0); - -	if (netif_running(netdev)) { -		err = igb_open(netdev); -		if (err) -			return err; -	} - -	netif_device_attach(netdev); - -	return 0; -} -#endif - -static void igb_shutdown(struct pci_dev *pdev) -{ -	bool wake; - -	__igb_shutdown(pdev, &wake); - -	if (system_state == SYSTEM_POWER_OFF) { -		pci_wake_from_d3(pdev, wake); -		pci_set_power_state(pdev, PCI_D3hot); -	} -} - -#ifdef CONFIG_NET_POLL_CONTROLLER -/* - * Polling 'interrupt' - used by things like netconsole to send skbs - * without having to re-enable interrupts. It's not called while - * the interrupt routine is executing. - */ -static void igb_netpoll(struct net_device *netdev) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	int i; - -	if (!adapter->msix_entries) { -		struct igb_q_vector *q_vector = adapter->q_vector[0]; -		igb_irq_disable(adapter); -		napi_schedule(&q_vector->napi); -		return; -	} - -	for (i = 0; i < adapter->num_q_vectors; i++) { -		struct igb_q_vector *q_vector = adapter->q_vector[i]; -		wr32(E1000_EIMC, q_vector->eims_value); -		napi_schedule(&q_vector->napi); -	} -} -#endif /* CONFIG_NET_POLL_CONTROLLER */ - -/** - * igb_io_error_detected - called when PCI error is detected - * @pdev: Pointer to PCI device - * @state: The current pci connection state - * - * This function is called after a PCI bus error affecting - * this device has been detected. - */ -static pci_ers_result_t igb_io_error_detected(struct pci_dev *pdev, -					      pci_channel_state_t state) -{ -	struct net_device *netdev = pci_get_drvdata(pdev); -	struct igb_adapter *adapter = netdev_priv(netdev); - -	netif_device_detach(netdev); - -	if (state == pci_channel_io_perm_failure) -		return PCI_ERS_RESULT_DISCONNECT; - -	if (netif_running(netdev)) -		igb_down(adapter); -	pci_disable_device(pdev); - -	/* Request a slot slot reset. */ -	return PCI_ERS_RESULT_NEED_RESET; -} - -/** - * igb_io_slot_reset - called after the pci bus has been reset. - * @pdev: Pointer to PCI device - * - * Restart the card from scratch, as if from a cold-boot. Implementation - * resembles the first-half of the igb_resume routine. - */ -static pci_ers_result_t igb_io_slot_reset(struct pci_dev *pdev) -{ -	struct net_device *netdev = pci_get_drvdata(pdev); -	struct igb_adapter *adapter = netdev_priv(netdev); -	struct e1000_hw *hw = &adapter->hw; -	pci_ers_result_t result; -	int err; - -	if (pci_enable_device_mem(pdev)) { -		dev_err(&pdev->dev, -			"Cannot re-enable PCI device after reset.\n"); -		result = PCI_ERS_RESULT_DISCONNECT; -	} else { -		pci_set_master(pdev); -		pci_restore_state(pdev); -		pci_save_state(pdev); - -		pci_enable_wake(pdev, PCI_D3hot, 0); -		pci_enable_wake(pdev, PCI_D3cold, 0); - -		igb_reset(adapter); -		wr32(E1000_WUS, ~0); -		result = PCI_ERS_RESULT_RECOVERED; -	} - -	err = pci_cleanup_aer_uncorrect_error_status(pdev); -	if (err) { -		dev_err(&pdev->dev, "pci_cleanup_aer_uncorrect_error_status " -		        "failed 0x%0x\n", err); -		/* non-fatal, continue */ -	} - -	return result; -} - -/** - * igb_io_resume - called when traffic can start flowing again. - * @pdev: Pointer to PCI device - * - * This callback is called when the error recovery driver tells us that - * its OK to resume normal operation. Implementation resembles the - * second-half of the igb_resume routine. - */ -static void igb_io_resume(struct pci_dev *pdev) -{ -	struct net_device *netdev = pci_get_drvdata(pdev); -	struct igb_adapter *adapter = netdev_priv(netdev); - -	if (netif_running(netdev)) { -		if (igb_up(adapter)) { -			dev_err(&pdev->dev, "igb_up failed after reset\n"); -			return; -		} -	} - -	netif_device_attach(netdev); - -	/* let the f/w know that the h/w is now under the control of the -	 * driver. */ -	igb_get_hw_control(adapter); -} - -static void igb_rar_set_qsel(struct igb_adapter *adapter, u8 *addr, u32 index, -                             u8 qsel) -{ -	u32 rar_low, rar_high; -	struct e1000_hw *hw = &adapter->hw; - -	/* HW expects these in little endian so we reverse the byte order -	 * from network order (big endian) to little endian -	 */ -	rar_low = ((u32) addr[0] | ((u32) addr[1] << 8) | -	          ((u32) addr[2] << 16) | ((u32) addr[3] << 24)); -	rar_high = ((u32) addr[4] | ((u32) addr[5] << 8)); - -	/* Indicate to hardware the Address is Valid. */ -	rar_high |= E1000_RAH_AV; - -	if (hw->mac.type == e1000_82575) -		rar_high |= E1000_RAH_POOL_1 * qsel; -	else -		rar_high |= E1000_RAH_POOL_1 << qsel; - -	wr32(E1000_RAL(index), rar_low); -	wrfl(); -	wr32(E1000_RAH(index), rar_high); -	wrfl(); -} - -static int igb_set_vf_mac(struct igb_adapter *adapter, -                          int vf, unsigned char *mac_addr) -{ -	struct e1000_hw *hw = &adapter->hw; -	/* VF MAC addresses start at end of receive addresses and moves -	 * torwards the first, as a result a collision should not be possible */ -	int rar_entry = hw->mac.rar_entry_count - (vf + 1); - -	memcpy(adapter->vf_data[vf].vf_mac_addresses, mac_addr, ETH_ALEN); - -	igb_rar_set_qsel(adapter, mac_addr, rar_entry, vf); - -	return 0; -} - -static int igb_ndo_set_vf_mac(struct net_device *netdev, int vf, u8 *mac) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	if (!is_valid_ether_addr(mac) || (vf >= adapter->vfs_allocated_count)) -		return -EINVAL; -	adapter->vf_data[vf].flags |= IGB_VF_FLAG_PF_SET_MAC; -	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(__IGB_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 igb_set_vf_mac(adapter, vf, mac); -} - -static int igb_ndo_set_vf_bw(struct net_device *netdev, int vf, int tx_rate) -{ -	return -EOPNOTSUPP; -} - -static int igb_ndo_get_vf_config(struct net_device *netdev, -				 int vf, struct ifla_vf_info *ivi) -{ -	struct igb_adapter *adapter = netdev_priv(netdev); -	if (vf >= adapter->vfs_allocated_count) -		return -EINVAL; -	ivi->vf = vf; -	memcpy(&ivi->mac, adapter->vf_data[vf].vf_mac_addresses, ETH_ALEN); -	ivi->tx_rate = 0; -	ivi->vlan = adapter->vf_data[vf].pf_vlan; -	ivi->qos = adapter->vf_data[vf].pf_qos; -	return 0; -} - -static void igb_vmm_control(struct igb_adapter *adapter) -{ -	struct e1000_hw *hw = &adapter->hw; -	u32 reg; - -	switch (hw->mac.type) { -	case e1000_82575: -	default: -		/* replication is not supported for 82575 */ -		return; -	case e1000_82576: -		/* notify HW that the MAC is adding vlan tags */ -		reg = rd32(E1000_DTXCTL); -		reg |= E1000_DTXCTL_VLAN_ADDED; -		wr32(E1000_DTXCTL, reg); -	case e1000_82580: -		/* enable replication vlan tag stripping */ -		reg = rd32(E1000_RPLOLR); -		reg |= E1000_RPLOLR_STRVLAN; -		wr32(E1000_RPLOLR, reg); -	case e1000_i350: -		/* none of the above registers are supported by i350 */ -		break; -	} - -	if (adapter->vfs_allocated_count) { -		igb_vmdq_set_loopback_pf(hw, true); -		igb_vmdq_set_replication_pf(hw, true); -	} else { -		igb_vmdq_set_loopback_pf(hw, false); -		igb_vmdq_set_replication_pf(hw, false); -	} -} - -/* igb_main.c */  | 
