mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Resync with Intel versions of both the em and igb
drivers. These add new hardware support, most importantly the pch (i5 chipset) in the em driver. Also, both drivers now have the simplified (and I hope improved) watchdog code. The igb driver uses the new RX cleanup that I first implemented in ixgbe. em - version 6.9.24 igb - version 1.8.4
This commit is contained in:
parent
f59310a164
commit
4edd8523d4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200243
@ -1,6 +1,6 @@
|
||||
$FreeBSD$
|
||||
|
||||
Copyright (c) 2001-2008, Intel Corporation
|
||||
Copyright (c) 2001-2009, Intel Corporation
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
@ -171,7 +171,7 @@ static s32 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw)
|
||||
break;
|
||||
}
|
||||
|
||||
nvm->type = e1000_nvm_eeprom_spi;
|
||||
nvm->type = e1000_nvm_eeprom_spi;
|
||||
|
||||
size = (u16)((eecd & E1000_EECD_SIZE_EX_MASK) >>
|
||||
E1000_EECD_SIZE_EX_SHIFT);
|
||||
@ -206,17 +206,22 @@ static s32 e1000_init_nvm_params_80003es2lan(struct e1000_hw *hw)
|
||||
static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
|
||||
{
|
||||
struct e1000_mac_info *mac = &hw->mac;
|
||||
s32 ret_val = E1000_SUCCESS;
|
||||
|
||||
DEBUGFUNC("e1000_init_mac_params_80003es2lan");
|
||||
|
||||
/* Set media type */
|
||||
/* Set media type and media-dependent function pointers */
|
||||
switch (hw->device_id) {
|
||||
case E1000_DEV_ID_80003ES2LAN_SERDES_DPT:
|
||||
hw->phy.media_type = e1000_media_type_internal_serdes;
|
||||
mac->ops.check_for_link = e1000_check_for_serdes_link_generic;
|
||||
mac->ops.setup_physical_interface =
|
||||
e1000_setup_fiber_serdes_link_generic;
|
||||
break;
|
||||
default:
|
||||
hw->phy.media_type = e1000_media_type_copper;
|
||||
mac->ops.check_for_link = e1000_check_for_copper_link_generic;
|
||||
mac->ops.setup_physical_interface =
|
||||
e1000_setup_copper_link_80003es2lan;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -230,6 +235,8 @@ static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
|
||||
mac->arc_subsystem_valid =
|
||||
(E1000_READ_REG(hw, E1000_FWSM) & E1000_FWSM_MODE_MASK)
|
||||
? TRUE : FALSE;
|
||||
/* Adaptive IFS not supported */
|
||||
mac->adaptive_ifs = FALSE;
|
||||
|
||||
/* Function pointers */
|
||||
|
||||
@ -241,27 +248,6 @@ static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
|
||||
mac->ops.init_hw = e1000_init_hw_80003es2lan;
|
||||
/* link setup */
|
||||
mac->ops.setup_link = e1000_setup_link_generic;
|
||||
/* physical interface link setup */
|
||||
mac->ops.setup_physical_interface =
|
||||
(hw->phy.media_type == e1000_media_type_copper)
|
||||
? e1000_setup_copper_link_80003es2lan
|
||||
: e1000_setup_fiber_serdes_link_generic;
|
||||
/* check for link */
|
||||
switch (hw->phy.media_type) {
|
||||
case e1000_media_type_copper:
|
||||
mac->ops.check_for_link = e1000_check_for_copper_link_generic;
|
||||
break;
|
||||
case e1000_media_type_fiber:
|
||||
mac->ops.check_for_link = e1000_check_for_fiber_link_generic;
|
||||
break;
|
||||
case e1000_media_type_internal_serdes:
|
||||
mac->ops.check_for_link = e1000_check_for_serdes_link_generic;
|
||||
break;
|
||||
default:
|
||||
ret_val = -E1000_ERR_CONFIG;
|
||||
goto out;
|
||||
break;
|
||||
}
|
||||
/* check management mode */
|
||||
mac->ops.check_mng_mode = e1000_check_mng_mode_generic;
|
||||
/* multicast address update */
|
||||
@ -290,8 +276,10 @@ static s32 e1000_init_mac_params_80003es2lan(struct e1000_hw *hw)
|
||||
/* link info */
|
||||
mac->ops.get_link_up_info = e1000_get_link_up_info_80003es2lan;
|
||||
|
||||
out:
|
||||
return ret_val;
|
||||
/* set lan id for port to determine which phy lock to use */
|
||||
hw->mac.ops.set_lan_id(hw);
|
||||
|
||||
return E1000_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -307,7 +295,6 @@ void e1000_init_function_pointers_80003es2lan(struct e1000_hw *hw)
|
||||
hw->mac.ops.init_params = e1000_init_mac_params_80003es2lan;
|
||||
hw->nvm.ops.init_params = e1000_init_nvm_params_80003es2lan;
|
||||
hw->phy.ops.init_params = e1000_init_phy_params_80003es2lan;
|
||||
e1000_get_bus_info_pcie_generic(hw);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -342,7 +329,6 @@ static void e1000_release_phy_80003es2lan(struct e1000_hw *hw)
|
||||
e1000_release_swfw_sync_80003es2lan(hw, mask);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* e1000_acquire_mac_csr_80003es2lan - Acquire rights to access Kumeran register
|
||||
* @hw: pointer to the HW structure
|
||||
@ -532,28 +518,36 @@ static s32 e1000_read_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
|
||||
goto out;
|
||||
}
|
||||
|
||||
/*
|
||||
* The "ready" bit in the MDIC register may be incorrectly set
|
||||
* before the device has completed the "Page Select" MDI
|
||||
* transaction. So we wait 200us after each MDI command...
|
||||
*/
|
||||
usec_delay(200);
|
||||
if (hw->dev_spec._80003es2lan.mdic_wa_enable == TRUE) {
|
||||
/*
|
||||
* The "ready" bit in the MDIC register may be incorrectly set
|
||||
* before the device has completed the "Page Select" MDI
|
||||
* transaction. So we wait 200us after each MDI command...
|
||||
*/
|
||||
usec_delay(200);
|
||||
|
||||
/* ...and verify the command was successful. */
|
||||
ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
|
||||
/* ...and verify the command was successful. */
|
||||
ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
|
||||
|
||||
if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
|
||||
ret_val = -E1000_ERR_PHY;
|
||||
e1000_release_phy_80003es2lan(hw);
|
||||
goto out;
|
||||
if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
|
||||
ret_val = -E1000_ERR_PHY;
|
||||
e1000_release_phy_80003es2lan(hw);
|
||||
goto out;
|
||||
}
|
||||
|
||||
usec_delay(200);
|
||||
|
||||
ret_val = e1000_read_phy_reg_mdic(hw,
|
||||
MAX_PHY_REG_ADDRESS & offset,
|
||||
data);
|
||||
|
||||
usec_delay(200);
|
||||
} else {
|
||||
ret_val = e1000_read_phy_reg_mdic(hw,
|
||||
MAX_PHY_REG_ADDRESS & offset,
|
||||
data);
|
||||
}
|
||||
|
||||
usec_delay(200);
|
||||
|
||||
ret_val = e1000_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
|
||||
data);
|
||||
|
||||
usec_delay(200);
|
||||
e1000_release_phy_80003es2lan(hw);
|
||||
|
||||
out:
|
||||
@ -599,29 +593,36 @@ static s32 e1000_write_phy_reg_gg82563_80003es2lan(struct e1000_hw *hw,
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (hw->dev_spec._80003es2lan.mdic_wa_enable == TRUE) {
|
||||
/*
|
||||
* The "ready" bit in the MDIC register may be incorrectly set
|
||||
* before the device has completed the "Page Select" MDI
|
||||
* transaction. So we wait 200us after each MDI command...
|
||||
*/
|
||||
usec_delay(200);
|
||||
|
||||
/*
|
||||
* The "ready" bit in the MDIC register may be incorrectly set
|
||||
* before the device has completed the "Page Select" MDI
|
||||
* transaction. So we wait 200us after each MDI command...
|
||||
*/
|
||||
usec_delay(200);
|
||||
/* ...and verify the command was successful. */
|
||||
ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
|
||||
|
||||
/* ...and verify the command was successful. */
|
||||
ret_val = e1000_read_phy_reg_mdic(hw, page_select, &temp);
|
||||
if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
|
||||
ret_val = -E1000_ERR_PHY;
|
||||
e1000_release_phy_80003es2lan(hw);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (((u16)offset >> GG82563_PAGE_SHIFT) != temp) {
|
||||
ret_val = -E1000_ERR_PHY;
|
||||
e1000_release_phy_80003es2lan(hw);
|
||||
goto out;
|
||||
usec_delay(200);
|
||||
|
||||
ret_val = e1000_write_phy_reg_mdic(hw,
|
||||
MAX_PHY_REG_ADDRESS & offset,
|
||||
data);
|
||||
|
||||
usec_delay(200);
|
||||
} else {
|
||||
ret_val = e1000_write_phy_reg_mdic(hw,
|
||||
MAX_PHY_REG_ADDRESS & offset,
|
||||
data);
|
||||
}
|
||||
|
||||
usec_delay(200);
|
||||
|
||||
ret_val = e1000_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
|
||||
data);
|
||||
|
||||
usec_delay(200);
|
||||
e1000_release_phy_80003es2lan(hw);
|
||||
|
||||
out:
|
||||
@ -802,13 +803,13 @@ static s32 e1000_get_cable_length_80003es2lan(struct e1000_hw *hw)
|
||||
|
||||
index = phy_data & GG82563_DSPD_CABLE_LENGTH;
|
||||
|
||||
if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE + 5) {
|
||||
ret_val = E1000_ERR_PHY;
|
||||
if (index >= GG82563_CABLE_LENGTH_TABLE_SIZE - 5) {
|
||||
ret_val = -E1000_ERR_PHY;
|
||||
goto out;
|
||||
}
|
||||
|
||||
phy->min_cable_length = e1000_gg82563_cable_length_table[index];
|
||||
phy->max_cable_length = e1000_gg82563_cable_length_table[index+5];
|
||||
phy->max_cable_length = e1000_gg82563_cable_length_table[index + 5];
|
||||
|
||||
phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
|
||||
|
||||
@ -916,10 +917,9 @@ static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
|
||||
|
||||
/* Initialize identification LED */
|
||||
ret_val = mac->ops.id_led_init(hw);
|
||||
if (ret_val) {
|
||||
if (ret_val)
|
||||
DEBUGOUT("Error initializing identification LED\n");
|
||||
/* This is not fatal and we should not stop init due to this */
|
||||
}
|
||||
|
||||
/* Disabling VLAN filtering */
|
||||
DEBUGOUT("Initializing the IEEE VLAN\n");
|
||||
@ -969,6 +969,19 @@ static s32 e1000_init_hw_80003es2lan(struct e1000_hw *hw)
|
||||
reg_data &= ~0x00100000;
|
||||
E1000_WRITE_REG_ARRAY(hw, E1000_FFLT, 0x0001, reg_data);
|
||||
|
||||
/* default to TRUE to enable the MDIC W/A */
|
||||
hw->dev_spec._80003es2lan.mdic_wa_enable = TRUE;
|
||||
|
||||
ret_val = e1000_read_kmrn_reg_80003es2lan(hw,
|
||||
E1000_KMRNCTRLSTA_OFFSET >>
|
||||
E1000_KMRNCTRLSTA_OFFSET_SHIFT,
|
||||
&i);
|
||||
if (!ret_val) {
|
||||
if ((i & E1000_KMRNCTRLSTA_OPMODE_MASK) ==
|
||||
E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO)
|
||||
hw->dev_spec._80003es2lan.mdic_wa_enable = FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* Clear all of the statistics registers (clear on read). It is
|
||||
* important that we do this after we have tried to establish link
|
||||
@ -1303,7 +1316,6 @@ static s32 e1000_cfg_kmrn_10_100_80003es2lan(struct e1000_hw *hw, u16 duplex)
|
||||
tipg |= DEFAULT_TIPG_IPGT_10_100_80003ES2LAN;
|
||||
E1000_WRITE_REG(hw, E1000_TIPG, tipg);
|
||||
|
||||
|
||||
do {
|
||||
ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
|
||||
®_data);
|
||||
@ -1357,7 +1369,6 @@ static s32 e1000_cfg_kmrn_1000_80003es2lan(struct e1000_hw *hw)
|
||||
tipg |= DEFAULT_TIPG_IPGT_1000_80003ES2LAN;
|
||||
E1000_WRITE_REG(hw, E1000_TIPG, tipg);
|
||||
|
||||
|
||||
do {
|
||||
ret_val = hw->phy.ops.read_reg(hw, GG82563_PHY_KMRN_MODE_CTRL,
|
||||
®_data);
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*******************************************************************************
|
||||
/******************************************************************************
|
||||
|
||||
Copyright (c) 2001-2008, Intel Corporation
|
||||
Copyright (c) 2001-2009, Intel Corporation
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
@ -29,9 +29,8 @@
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
*******************************************************************************/
|
||||
/* $FreeBSD$ */
|
||||
|
||||
******************************************************************************/
|
||||
/*$FreeBSD$*/
|
||||
|
||||
#ifndef _E1000_80003ES2LAN_H_
|
||||
#define _E1000_80003ES2LAN_H_
|
||||
@ -49,6 +48,9 @@
|
||||
#define E1000_KMRNCTRLSTA_HD_CTRL_1000_DEFAULT 0x0000
|
||||
#define E1000_KMRNCTRLSTA_OPMODE_E_IDLE 0x2000
|
||||
|
||||
#define E1000_KMRNCTRLSTA_OPMODE_MASK 0x000C
|
||||
#define E1000_KMRNCTRLSTA_OPMODE_INBAND_MDIO 0x0004
|
||||
|
||||
#define E1000_TCTL_EXT_GCEX_MASK 0x000FFC00 /* Gigabit Carry Extend Padding */
|
||||
#define DEFAULT_TCTL_EXT_GCEX_80003ES2LAN 0x00010000
|
||||
|
||||
|
@ -59,6 +59,7 @@ static s32 e1000_set_d3_lplu_state_82541(struct e1000_hw *hw,
|
||||
static s32 e1000_setup_led_82541(struct e1000_hw *hw);
|
||||
static s32 e1000_cleanup_led_82541(struct e1000_hw *hw);
|
||||
static void e1000_clear_hw_cntrs_82541(struct e1000_hw *hw);
|
||||
static s32 e1000_read_mac_addr_82541(struct e1000_hw *hw);
|
||||
static s32 e1000_config_dsp_after_link_change_82541(struct e1000_hw *hw,
|
||||
bool link_up);
|
||||
static s32 e1000_phy_init_script_82541(struct e1000_hw *hw);
|
||||
@ -261,6 +262,8 @@ static s32 e1000_init_mac_params_82541(struct e1000_hw *hw)
|
||||
mac->ops.clear_vfta = e1000_clear_vfta_generic;
|
||||
/* setting MTA */
|
||||
mac->ops.mta_set = e1000_mta_set_generic;
|
||||
/* read mac address */
|
||||
mac->ops.read_mac_addr = e1000_read_mac_addr_82541;
|
||||
/* ID LED init */
|
||||
mac->ops.id_led_init = e1000_id_led_init_generic;
|
||||
/* setup LED */
|
||||
@ -1292,3 +1295,35 @@ static void e1000_clear_hw_cntrs_82541(struct e1000_hw *hw)
|
||||
E1000_READ_REG(hw, E1000_MGTPDC);
|
||||
E1000_READ_REG(hw, E1000_MGTPTC);
|
||||
}
|
||||
|
||||
/**
|
||||
* e1000_read_mac_addr_82541 - Read device MAC address
|
||||
* @hw: pointer to the HW structure
|
||||
*
|
||||
* Reads the device MAC address from the EEPROM and stores the value.
|
||||
**/
|
||||
static s32 e1000_read_mac_addr_82541(struct e1000_hw *hw)
|
||||
{
|
||||
s32 ret_val = E1000_SUCCESS;
|
||||
u16 offset, nvm_data, i;
|
||||
|
||||
DEBUGFUNC("e1000_read_mac_addr");
|
||||
|
||||
for (i = 0; i < ETH_ADDR_LEN; i += 2) {
|
||||
offset = i >> 1;
|
||||
ret_val = hw->nvm.ops.read(hw, offset, 1, &nvm_data);
|
||||
if (ret_val) {
|
||||
DEBUGOUT("NVM Read Error\n");
|
||||
goto out;
|
||||
}
|
||||
hw->mac.perm_addr[i] = (u8)(nvm_data & 0xFF);
|
||||
hw->mac.perm_addr[i+1] = (u8)(nvm_data >> 8);
|
||||
}
|
||||
|
||||
for (i = 0; i < ETH_ADDR_LEN; i++)
|
||||
hw->mac.addr[i] = hw->mac.perm_addr[i];
|
||||
|
||||
out:
|
||||
return ret_val;
|
||||
}
|
||||
|
||||
|
@ -46,7 +46,6 @@
|
||||
* 82573E Gigabit Ethernet Controller (Copper)
|
||||
* 82573L Gigabit Ethernet Controller
|
||||
* 82574L Gigabit Network Connection
|
||||
* 82574L Gigabit Network Connection
|
||||
* 82583V Gigabit Network Connection
|
||||
*/
|
||||
|
||||
@ -106,7 +105,6 @@ static s32 e1000_init_phy_params_82571(struct e1000_hw *hw)
|
||||
phy->reset_delay_us = 100;
|
||||
|
||||
phy->ops.acquire = e1000_get_hw_semaphore_82571;
|
||||
phy->ops.check_polarity = e1000_check_polarity_igp;
|
||||
phy->ops.check_reset_block = e1000_check_reset_block_generic;
|
||||
phy->ops.release = e1000_put_hw_semaphore_82571;
|
||||
phy->ops.reset = e1000_phy_hw_reset_generic;
|
||||
@ -121,6 +119,7 @@ static s32 e1000_init_phy_params_82571(struct e1000_hw *hw)
|
||||
phy->type = e1000_phy_igp_2;
|
||||
phy->ops.get_cfg_done = e1000_get_cfg_done_82571;
|
||||
phy->ops.get_info = e1000_get_phy_info_igp;
|
||||
phy->ops.check_polarity = e1000_check_polarity_igp;
|
||||
phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_igp;
|
||||
phy->ops.get_cable_length = e1000_get_cable_length_igp_2;
|
||||
phy->ops.read_reg = e1000_read_phy_reg_igp;
|
||||
@ -132,6 +131,7 @@ static s32 e1000_init_phy_params_82571(struct e1000_hw *hw)
|
||||
/* Verify PHY ID */
|
||||
if (phy->id != IGP01E1000_I_PHY_ID) {
|
||||
ret_val = -E1000_ERR_PHY;
|
||||
DEBUGOUT1("PHY ID unknown: type = 0x%08x\n", phy->id);
|
||||
goto out;
|
||||
}
|
||||
break;
|
||||
@ -139,6 +139,7 @@ static s32 e1000_init_phy_params_82571(struct e1000_hw *hw)
|
||||
phy->type = e1000_phy_m88;
|
||||
phy->ops.get_cfg_done = e1000_get_cfg_done_generic;
|
||||
phy->ops.get_info = e1000_get_phy_info_m88;
|
||||
phy->ops.check_polarity = e1000_check_polarity_m88;
|
||||
phy->ops.commit = e1000_phy_sw_reset_generic;
|
||||
phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_m88;
|
||||
phy->ops.get_cable_length = e1000_get_cable_length_m88;
|
||||
@ -155,11 +156,12 @@ static s32 e1000_init_phy_params_82571(struct e1000_hw *hw)
|
||||
goto out;
|
||||
}
|
||||
break;
|
||||
case e1000_82583:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
phy->type = e1000_phy_bm;
|
||||
phy->ops.get_cfg_done = e1000_get_cfg_done_generic;
|
||||
phy->ops.get_info = e1000_get_phy_info_m88;
|
||||
phy->ops.check_polarity = e1000_check_polarity_m88;
|
||||
phy->ops.commit = e1000_phy_sw_reset_generic;
|
||||
phy->ops.force_speed_duplex = e1000_phy_force_speed_duplex_m88;
|
||||
phy->ops.get_cable_length = e1000_get_cable_length_m88;
|
||||
@ -266,28 +268,42 @@ static s32 e1000_init_nvm_params_82571(struct e1000_hw *hw)
|
||||
static s32 e1000_init_mac_params_82571(struct e1000_hw *hw)
|
||||
{
|
||||
struct e1000_mac_info *mac = &hw->mac;
|
||||
s32 ret_val = E1000_SUCCESS;
|
||||
u32 swsm = 0;
|
||||
u32 swsm2 = 0;
|
||||
bool force_clear_smbi = FALSE;
|
||||
|
||||
DEBUGFUNC("e1000_init_mac_params_82571");
|
||||
|
||||
/* Set media type */
|
||||
/* Set media type and media-dependent function pointers */
|
||||
switch (hw->device_id) {
|
||||
case E1000_DEV_ID_82571EB_FIBER:
|
||||
case E1000_DEV_ID_82572EI_FIBER:
|
||||
case E1000_DEV_ID_82571EB_QUAD_FIBER:
|
||||
hw->phy.media_type = e1000_media_type_fiber;
|
||||
mac->ops.setup_physical_interface =
|
||||
e1000_setup_fiber_serdes_link_82571;
|
||||
mac->ops.check_for_link = e1000_check_for_fiber_link_generic;
|
||||
mac->ops.get_link_up_info =
|
||||
e1000_get_speed_and_duplex_fiber_serdes_generic;
|
||||
break;
|
||||
case E1000_DEV_ID_82571EB_SERDES:
|
||||
case E1000_DEV_ID_82571EB_SERDES_DUAL:
|
||||
case E1000_DEV_ID_82571EB_SERDES_QUAD:
|
||||
case E1000_DEV_ID_82572EI_SERDES:
|
||||
hw->phy.media_type = e1000_media_type_internal_serdes;
|
||||
mac->ops.setup_physical_interface =
|
||||
e1000_setup_fiber_serdes_link_82571;
|
||||
mac->ops.check_for_link = e1000_check_for_serdes_link_82571;
|
||||
mac->ops.get_link_up_info =
|
||||
e1000_get_speed_and_duplex_fiber_serdes_generic;
|
||||
break;
|
||||
default:
|
||||
hw->phy.media_type = e1000_media_type_copper;
|
||||
mac->ops.setup_physical_interface =
|
||||
e1000_setup_copper_link_82571;
|
||||
mac->ops.check_for_link = e1000_check_for_copper_link_generic;
|
||||
mac->ops.get_link_up_info =
|
||||
e1000_get_speed_and_duplex_copper_generic;
|
||||
break;
|
||||
}
|
||||
|
||||
@ -301,58 +317,19 @@ static s32 e1000_init_mac_params_82571(struct e1000_hw *hw)
|
||||
mac->arc_subsystem_valid =
|
||||
(E1000_READ_REG(hw, E1000_FWSM) & E1000_FWSM_MODE_MASK)
|
||||
? TRUE : FALSE;
|
||||
/* Adaptive IFS supported */
|
||||
mac->adaptive_ifs = TRUE;
|
||||
|
||||
/* Function pointers */
|
||||
|
||||
/* bus type/speed/width */
|
||||
mac->ops.get_bus_info = e1000_get_bus_info_pcie_generic;
|
||||
/* function id */
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
mac->ops.set_lan_id = e1000_set_lan_id_single_port;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
/* reset */
|
||||
mac->ops.reset_hw = e1000_reset_hw_82571;
|
||||
/* hw initialization */
|
||||
mac->ops.init_hw = e1000_init_hw_82571;
|
||||
/* link setup */
|
||||
mac->ops.setup_link = e1000_setup_link_82571;
|
||||
/* physical interface link setup */
|
||||
mac->ops.setup_physical_interface =
|
||||
(hw->phy.media_type == e1000_media_type_copper)
|
||||
? e1000_setup_copper_link_82571
|
||||
: e1000_setup_fiber_serdes_link_82571;
|
||||
/* check for link */
|
||||
switch (hw->phy.media_type) {
|
||||
case e1000_media_type_copper:
|
||||
mac->ops.check_for_link = e1000_check_for_copper_link_generic;
|
||||
break;
|
||||
case e1000_media_type_fiber:
|
||||
mac->ops.check_for_link = e1000_check_for_fiber_link_generic;
|
||||
break;
|
||||
case e1000_media_type_internal_serdes:
|
||||
mac->ops.check_for_link = e1000_check_for_serdes_link_82571;
|
||||
break;
|
||||
default:
|
||||
ret_val = -E1000_ERR_CONFIG;
|
||||
goto out;
|
||||
break;
|
||||
}
|
||||
/* check management mode */
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
mac->ops.check_mng_mode = e1000_check_mng_mode_82574;
|
||||
break;
|
||||
default:
|
||||
mac->ops.check_mng_mode = e1000_check_mng_mode_generic;
|
||||
break;
|
||||
}
|
||||
/* multicast address update */
|
||||
mac->ops.update_mc_addr_list = e1000_update_mc_addr_list_generic;
|
||||
/* writing VFTA */
|
||||
@ -371,24 +348,29 @@ static s32 e1000_init_mac_params_82571(struct e1000_hw *hw)
|
||||
mac->ops.setup_led = e1000_setup_led_generic;
|
||||
/* cleanup LED */
|
||||
mac->ops.cleanup_led = e1000_cleanup_led_generic;
|
||||
/* turn on/off LED */
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
mac->ops.led_on = e1000_led_on_82574;
|
||||
break;
|
||||
default:
|
||||
mac->ops.led_on = e1000_led_on_generic;
|
||||
break;
|
||||
}
|
||||
/* turn off LED */
|
||||
mac->ops.led_off = e1000_led_off_generic;
|
||||
/* clear hardware counters */
|
||||
mac->ops.clear_hw_cntrs = e1000_clear_hw_cntrs_82571;
|
||||
/* link info */
|
||||
mac->ops.get_link_up_info =
|
||||
(hw->phy.media_type == e1000_media_type_copper)
|
||||
? e1000_get_speed_and_duplex_copper_generic
|
||||
: e1000_get_speed_and_duplex_fiber_serdes_generic;
|
||||
|
||||
/* MAC-specific function pointers */
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
mac->ops.set_lan_id = e1000_set_lan_id_single_port;
|
||||
mac->ops.check_mng_mode = e1000_check_mng_mode_generic;
|
||||
mac->ops.led_on = e1000_led_on_generic;
|
||||
break;
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
mac->ops.set_lan_id = e1000_set_lan_id_single_port;
|
||||
mac->ops.check_mng_mode = e1000_check_mng_mode_82574;
|
||||
mac->ops.led_on = e1000_led_on_82574;
|
||||
break;
|
||||
default:
|
||||
mac->ops.check_mng_mode = e1000_check_mng_mode_generic;
|
||||
mac->ops.led_on = e1000_led_on_generic;
|
||||
break;
|
||||
}
|
||||
|
||||
/*
|
||||
* Ensure that the inter-port SWSM.SMBI lock bit is clear before
|
||||
@ -434,8 +416,7 @@ static s32 e1000_init_mac_params_82571(struct e1000_hw *hw)
|
||||
*/
|
||||
hw->dev_spec._82571.smb_counter = 0;
|
||||
|
||||
out:
|
||||
return ret_val;
|
||||
return E1000_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -501,7 +482,6 @@ static s32 e1000_get_phy_id_82571(struct e1000_hw *hw)
|
||||
ret_val = -E1000_ERR_PHY;
|
||||
break;
|
||||
}
|
||||
|
||||
out:
|
||||
return ret_val;
|
||||
}
|
||||
@ -512,7 +492,7 @@ static s32 e1000_get_phy_id_82571(struct e1000_hw *hw)
|
||||
*
|
||||
* Acquire the HW semaphore to access the PHY or NVM
|
||||
**/
|
||||
s32 e1000_get_hw_semaphore_82571(struct e1000_hw *hw)
|
||||
static s32 e1000_get_hw_semaphore_82571(struct e1000_hw *hw)
|
||||
{
|
||||
u32 swsm;
|
||||
s32 ret_val = E1000_SUCCESS;
|
||||
@ -577,7 +557,7 @@ s32 e1000_get_hw_semaphore_82571(struct e1000_hw *hw)
|
||||
*
|
||||
* Release hardware semaphore used to access the PHY or NVM
|
||||
**/
|
||||
void e1000_put_hw_semaphore_82571(struct e1000_hw *hw)
|
||||
static void e1000_put_hw_semaphore_82571(struct e1000_hw *hw)
|
||||
{
|
||||
u32 swsm;
|
||||
|
||||
@ -610,9 +590,9 @@ static s32 e1000_acquire_nvm_82571(struct e1000_hw *hw)
|
||||
goto out;
|
||||
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
break;
|
||||
default:
|
||||
ret_val = e1000_acquire_nvm_generic(hw);
|
||||
@ -831,7 +811,8 @@ static s32 e1000_get_cfg_done_82571(struct e1000_hw *hw)
|
||||
DEBUGFUNC("e1000_get_cfg_done_82571");
|
||||
|
||||
while (timeout) {
|
||||
if (E1000_READ_REG(hw, E1000_EEMNGCTL) & E1000_NVM_CFG_DONE_PORT_0)
|
||||
if (E1000_READ_REG(hw, E1000_EEMNGCTL) &
|
||||
E1000_NVM_CFG_DONE_PORT_0)
|
||||
break;
|
||||
msec_delay(1);
|
||||
timeout--;
|
||||
@ -966,9 +947,9 @@ static s32 e1000_reset_hw_82571(struct e1000_hw *hw)
|
||||
* Ownership defaults to firmware after a reset.
|
||||
*/
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
extcnf_ctrl = E1000_READ_REG(hw, E1000_EXTCNF_CTRL);
|
||||
extcnf_ctrl |= E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP;
|
||||
|
||||
@ -1014,9 +995,9 @@ static s32 e1000_reset_hw_82571(struct e1000_hw *hw)
|
||||
*/
|
||||
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
msec_delay(25);
|
||||
break;
|
||||
default:
|
||||
@ -1061,10 +1042,9 @@ static s32 e1000_init_hw_82571(struct e1000_hw *hw)
|
||||
|
||||
/* Initialize identification LED */
|
||||
ret_val = mac->ops.id_led_init(hw);
|
||||
if (ret_val) {
|
||||
if (ret_val)
|
||||
DEBUGOUT("Error initializing identification LED\n");
|
||||
/* This is not fatal and we should not stop init due to this */
|
||||
}
|
||||
|
||||
/* Disabling VLAN filtering */
|
||||
DEBUGOUT("Initializing the IEEE VLAN\n");
|
||||
@ -1097,9 +1077,9 @@ static s32 e1000_init_hw_82571(struct e1000_hw *hw)
|
||||
|
||||
/* ...for both queues. */
|
||||
switch (mac->type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
e1000_enable_tx_pkt_filtering_generic(hw);
|
||||
reg_data = E1000_READ_REG(hw, E1000_GCR);
|
||||
reg_data |= E1000_GCR_L1_ACT_WITHOUT_L0S_RX;
|
||||
@ -1108,8 +1088,8 @@ static s32 e1000_init_hw_82571(struct e1000_hw *hw)
|
||||
default:
|
||||
reg_data = E1000_READ_REG(hw, E1000_TXDCTL(1));
|
||||
reg_data = (reg_data & ~E1000_TXDCTL_WTHRESH) |
|
||||
E1000_TXDCTL_FULL_TX_DESC_WB |
|
||||
E1000_TXDCTL_COUNT_DESC;
|
||||
E1000_TXDCTL_FULL_TX_DESC_WB |
|
||||
E1000_TXDCTL_COUNT_DESC;
|
||||
E1000_WRITE_REG(hw, E1000_TXDCTL(1), reg_data);
|
||||
break;
|
||||
}
|
||||
@ -1178,11 +1158,10 @@ static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
|
||||
}
|
||||
|
||||
/* Device Control */
|
||||
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
reg = E1000_READ_REG(hw, E1000_CTRL);
|
||||
reg &= ~(1 << 29);
|
||||
E1000_WRITE_REG(hw, E1000_CTRL, reg);
|
||||
@ -1193,9 +1172,9 @@ static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
|
||||
|
||||
/* Extended Device Control */
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
reg = E1000_READ_REG(hw, E1000_CTRL_EXT);
|
||||
reg &= ~(1 << 23);
|
||||
reg |= (1 << 22);
|
||||
@ -1205,7 +1184,6 @@ static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
if (hw->mac.type == e1000_82571) {
|
||||
reg = E1000_READ_REG(hw, E1000_PBA_ECC);
|
||||
reg |= E1000_PBA_ECC_CORR_EN;
|
||||
@ -1216,7 +1194,6 @@ static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
|
||||
* Workaround for hardware errata.
|
||||
* Ensure that DMA Dynamic Clock gating is disabled on 82571 and 82572
|
||||
*/
|
||||
|
||||
if ((hw->mac.type == e1000_82571) ||
|
||||
(hw->mac.type == e1000_82572)) {
|
||||
reg = E1000_READ_REG(hw, E1000_CTRL_EXT);
|
||||
@ -1225,13 +1202,13 @@ static void e1000_initialize_hw_bits_82571(struct e1000_hw *hw)
|
||||
}
|
||||
|
||||
/* PCI-Ex Control Registers */
|
||||
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
reg = E1000_READ_REG(hw, E1000_GCR);
|
||||
reg |= (1 << 22);
|
||||
E1000_WRITE_REG(hw, E1000_GCR, reg);
|
||||
|
||||
/*
|
||||
* Workaround for hardware errata.
|
||||
* apply workaround for hardware errata documented in errata
|
||||
@ -1267,39 +1244,36 @@ static void e1000_clear_vfta_82571(struct e1000_hw *hw)
|
||||
DEBUGFUNC("e1000_clear_vfta_82571");
|
||||
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
if (hw->mng_cookie.vlan_id != 0) {
|
||||
/*
|
||||
*The VFTA is a 4096b bit-field, each identifying
|
||||
*a single VLAN ID. The following operations
|
||||
*determine which 32b entry (i.e. offset) into the
|
||||
*array we want to set the VLAN ID (i.e. bit) of
|
||||
*the manageability unit.
|
||||
*/
|
||||
* The VFTA is a 4096b bit-field, each identifying
|
||||
* a single VLAN ID. The following operations
|
||||
* determine which 32b entry (i.e. offset) into the
|
||||
* array we want to set the VLAN ID (i.e. bit) of
|
||||
* the manageability unit.
|
||||
*/
|
||||
vfta_offset = (hw->mng_cookie.vlan_id >>
|
||||
E1000_VFTA_ENTRY_SHIFT) & E1000_VFTA_ENTRY_MASK;
|
||||
vfta_bit_in_reg = 1 << (hw->mng_cookie.vlan_id &
|
||||
E1000_VFTA_ENTRY_BIT_SHIFT_MASK);
|
||||
}
|
||||
|
||||
for (offset = 0; offset < E1000_VLAN_FILTER_TBL_SIZE; offset++) {
|
||||
/*
|
||||
*If the offset we want to clear is the same offset of
|
||||
*the manageability VLAN ID, then clear all bits except
|
||||
*that of the manageability unit
|
||||
*/
|
||||
vfta_value = (offset == vfta_offset) ?
|
||||
vfta_bit_in_reg : 0;
|
||||
E1000_WRITE_REG_ARRAY(hw, E1000_VFTA, offset,
|
||||
vfta_value);
|
||||
E1000_WRITE_FLUSH(hw);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
for (offset = 0; offset < E1000_VLAN_FILTER_TBL_SIZE; offset++) {
|
||||
/*
|
||||
* If the offset we want to clear is the same offset of the
|
||||
* manageability VLAN ID, then clear all bits except that of
|
||||
* the manageability unit.
|
||||
*/
|
||||
vfta_value = (offset == vfta_offset) ? vfta_bit_in_reg : 0;
|
||||
E1000_WRITE_REG_ARRAY(hw, E1000_VFTA, offset, vfta_value);
|
||||
E1000_WRITE_FLUSH(hw);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1369,9 +1343,9 @@ static s32 e1000_setup_link_82571(struct e1000_hw *hw)
|
||||
* set it to full.
|
||||
*/
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
if (hw->fc.requested_mode == e1000_fc_default)
|
||||
hw->fc.requested_mode = e1000_fc_full;
|
||||
break;
|
||||
@ -1460,7 +1434,7 @@ static s32 e1000_setup_fiber_serdes_link_82571(struct e1000_hw *hw)
|
||||
* Reports the link state as up or down.
|
||||
*
|
||||
* If autonegotiation is supported by the link partner, the link state is
|
||||
* determined by the result of autongotiation. This is the most likely case.
|
||||
* determined by the result of autonegotiation. This is the most likely case.
|
||||
* If autonegotiation is not supported by the link partner, and the link
|
||||
* has a valid signal, force the link up.
|
||||
*
|
||||
@ -1472,7 +1446,7 @@ static s32 e1000_setup_fiber_serdes_link_82571(struct e1000_hw *hw)
|
||||
* 4) forced_up (the link has been forced up, it did not autonegotiate)
|
||||
*
|
||||
**/
|
||||
s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
|
||||
static s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
|
||||
{
|
||||
struct e1000_mac_info *mac = &hw->mac;
|
||||
u32 rxcw;
|
||||
@ -1524,9 +1498,10 @@ s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
|
||||
|
||||
case e1000_serdes_link_autoneg_progress:
|
||||
if (rxcw & E1000_RXCW_C) {
|
||||
/* We received /C/ ordered sets, meaning the
|
||||
/*
|
||||
* We received /C/ ordered sets, meaning the
|
||||
* link partner has autonegotiated, and we can
|
||||
* trust the Link Up (LU) status bit
|
||||
* trust the Link Up (LU) status bit.
|
||||
*/
|
||||
if (status & E1000_STATUS_LU) {
|
||||
mac->serdes_link_state =
|
||||
@ -1534,13 +1509,14 @@ s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
|
||||
DEBUGOUT("AN_PROG -> AN_UP\n");
|
||||
mac->serdes_has_link = TRUE;
|
||||
} else {
|
||||
/* Autoneg completed, but failed */
|
||||
/* Autoneg completed, but failed. */
|
||||
mac->serdes_link_state =
|
||||
e1000_serdes_link_down;
|
||||
DEBUGOUT("AN_PROG -> DOWN\n");
|
||||
}
|
||||
} else {
|
||||
/* The link partner did not autoneg.
|
||||
/*
|
||||
* The link partner did not autoneg.
|
||||
* Force link up and full duplex, and change
|
||||
* state to forced.
|
||||
*/
|
||||
@ -1565,9 +1541,11 @@ s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
|
||||
|
||||
case e1000_serdes_link_down:
|
||||
default:
|
||||
/* The link was down but the receiver has now gained
|
||||
/*
|
||||
* The link was down but the receiver has now gained
|
||||
* valid sync, so lets see if we can bring the link
|
||||
* up. */
|
||||
* up.
|
||||
*/
|
||||
E1000_WRITE_REG(hw, E1000_TXCW, mac->txcw);
|
||||
E1000_WRITE_REG(hw, E1000_CTRL,
|
||||
(ctrl & ~E1000_CTRL_SLU));
|
||||
@ -1583,9 +1561,9 @@ s32 e1000_check_for_serdes_link_82571(struct e1000_hw *hw)
|
||||
DEBUGOUT("ANYSTATE -> DOWN\n");
|
||||
} else {
|
||||
/*
|
||||
* We have sync, and can tolerate one
|
||||
* invalid (IV) codeword before declaring
|
||||
* link down, so reread to look again
|
||||
* We have sync, and can tolerate one invalid (IV)
|
||||
* codeword before declaring link down, so reread
|
||||
* to look again.
|
||||
*/
|
||||
usec_delay(10);
|
||||
rxcw = E1000_READ_REG(hw, E1000_RXCW);
|
||||
@ -1621,15 +1599,15 @@ static s32 e1000_valid_led_default_82571(struct e1000_hw *hw, u16 *data)
|
||||
}
|
||||
|
||||
switch (hw->mac.type) {
|
||||
case e1000_82573:
|
||||
case e1000_82574:
|
||||
case e1000_82583:
|
||||
case e1000_82573:
|
||||
if(*data == ID_LED_RESERVED_F746)
|
||||
if (*data == ID_LED_RESERVED_F746)
|
||||
*data = ID_LED_DEFAULT_82573;
|
||||
break;
|
||||
default:
|
||||
if (*data == ID_LED_RESERVED_0000 ||
|
||||
*data == ID_LED_RESERVED_FFFF)
|
||||
*data == ID_LED_RESERVED_FFFF)
|
||||
*data = ID_LED_DEFAULT;
|
||||
break;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -51,10 +51,14 @@
|
||||
*/
|
||||
#define E1000_RAR_ENTRIES_82575 16
|
||||
#define E1000_RAR_ENTRIES_82576 24
|
||||
#define E1000_RAR_ENTRIES_82580 24
|
||||
#define E1000_SW_SYNCH_MB 0x00000100
|
||||
#define E1000_STAT_DEV_RST_SET 0x00100000
|
||||
#define E1000_CTRL_DEV_RST 0x20000000
|
||||
|
||||
#ifdef E1000_BIT_FIELDS
|
||||
struct e1000_adv_data_desc {
|
||||
u64 buffer_addr; /* Address of the descriptor's data buffer */
|
||||
__le64 buffer_addr; /* Address of the descriptor's data buffer */
|
||||
union {
|
||||
u32 data;
|
||||
struct {
|
||||
@ -128,6 +132,7 @@ struct e1000_adv_context_desc {
|
||||
#define E1000_SRRCTL_DESCTYPE_HDR_REPLICATION 0x06000000
|
||||
#define E1000_SRRCTL_DESCTYPE_HDR_REPLICATION_LARGE_PKT 0x08000000
|
||||
#define E1000_SRRCTL_DESCTYPE_MASK 0x0E000000
|
||||
#define E1000_SRRCTL_TIMESTAMP 0x40000000
|
||||
#define E1000_SRRCTL_DROP_EN 0x80000000
|
||||
|
||||
#define E1000_SRRCTL_BSIZEPKT_MASK 0x0000007F
|
||||
@ -142,6 +147,7 @@ struct e1000_adv_context_desc {
|
||||
#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_MRQC_ENABLE_RSS_8Q 0x00000002
|
||||
|
||||
#define E1000_VMRCTL_MIRROR_PORT_SHIFT 8
|
||||
#define E1000_VMRCTL_MIRROR_DSTPORT_MASK (7 << E1000_VMRCTL_MIRROR_PORT_SHIFT)
|
||||
@ -185,31 +191,31 @@ struct e1000_adv_context_desc {
|
||||
/* Receive Descriptor - Advanced */
|
||||
union e1000_adv_rx_desc {
|
||||
struct {
|
||||
u64 pkt_addr; /* Packet buffer address */
|
||||
u64 hdr_addr; /* Header buffer address */
|
||||
__le64 pkt_addr; /* Packet buffer address */
|
||||
__le64 hdr_addr; /* Header buffer address */
|
||||
} read;
|
||||
struct {
|
||||
struct {
|
||||
union {
|
||||
u32 data;
|
||||
__le32 data;
|
||||
struct {
|
||||
u16 pkt_info; /* RSS type, Packet type */
|
||||
u16 hdr_info; /* Split Header,
|
||||
* header buffer length */
|
||||
__le16 pkt_info; /*RSS type, Pkt type*/
|
||||
__le16 hdr_info; /* Split Header,
|
||||
* header buffer len*/
|
||||
} hs_rss;
|
||||
} lo_dword;
|
||||
union {
|
||||
u32 rss; /* RSS Hash */
|
||||
__le32 rss; /* RSS Hash */
|
||||
struct {
|
||||
u16 ip_id; /* IP id */
|
||||
u16 csum; /* Packet Checksum */
|
||||
__le16 ip_id; /* IP id */
|
||||
__le16 csum; /* Packet Checksum */
|
||||
} csum_ip;
|
||||
} hi_dword;
|
||||
} lower;
|
||||
struct {
|
||||
u32 status_error; /* ext status/error */
|
||||
u16 length; /* Packet length */
|
||||
u16 vlan; /* VLAN tag */
|
||||
__le32 status_error; /* ext status/error */
|
||||
__le16 length; /* Packet length */
|
||||
__le16 vlan; /* VLAN tag */
|
||||
} upper;
|
||||
} wb; /* writeback */
|
||||
};
|
||||
@ -220,6 +226,8 @@ union e1000_adv_rx_desc {
|
||||
#define E1000_RXDADV_HDRBUFLEN_SHIFT 5
|
||||
#define E1000_RXDADV_SPLITHEADER_EN 0x00001000
|
||||
#define E1000_RXDADV_SPH 0x8000
|
||||
#define E1000_RXDADV_STAT_TS 0x10000 /* Pkt was time stamped */
|
||||
#define E1000_RXDADV_STAT_TSIP 0x08000 /* timestamp in packet */
|
||||
#define E1000_RXDADV_ERR_HBO 0x00800000
|
||||
|
||||
/* RSS Hash results */
|
||||
@ -269,14 +277,14 @@ union e1000_adv_rx_desc {
|
||||
/* Transmit Descriptor - Advanced */
|
||||
union e1000_adv_tx_desc {
|
||||
struct {
|
||||
u64 buffer_addr; /* Address of descriptor's data buf */
|
||||
u32 cmd_type_len;
|
||||
u32 olinfo_status;
|
||||
__le64 buffer_addr; /* Address of descriptor's data buf */
|
||||
__le32 cmd_type_len;
|
||||
__le32 olinfo_status;
|
||||
} read;
|
||||
struct {
|
||||
u64 rsvd; /* Reserved */
|
||||
u32 nxtseq_seed;
|
||||
u32 status;
|
||||
__le64 rsvd; /* Reserved */
|
||||
__le32 nxtseq_seed;
|
||||
__le32 status;
|
||||
} wb;
|
||||
};
|
||||
|
||||
@ -303,10 +311,10 @@ union e1000_adv_tx_desc {
|
||||
|
||||
/* Context descriptors */
|
||||
struct e1000_adv_tx_context_desc {
|
||||
u32 vlan_macip_lens;
|
||||
u32 seqnum_seed;
|
||||
u32 type_tucmd_mlhl;
|
||||
u32 mss_l4len_idx;
|
||||
__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 */
|
||||
@ -378,6 +386,14 @@ struct e1000_adv_tx_context_desc {
|
||||
*/
|
||||
#define E1000_ETQF_FILTER_EAPOL 0
|
||||
|
||||
#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_ADDR_BP 0x20000000
|
||||
#define E1000_FTQF_MASK_DEST_ADDR_BP 0x40000000
|
||||
#define E1000_FTQF_MASK_SOURCE_PORT_BP 0x80000000
|
||||
|
||||
#define E1000_NVM_APME_82575 0x0400
|
||||
#define MAX_NUM_VFS 8
|
||||
|
||||
@ -416,6 +432,9 @@ struct e1000_adv_tx_context_desc {
|
||||
#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_VF_INIT_TIMEOUT 200 /* Number of retries to clear RSTI */
|
||||
|
||||
#define E1000_IOVCTL 0x05BBC
|
||||
@ -424,8 +443,18 @@ struct e1000_adv_tx_context_desc {
|
||||
#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 e1000_vmdq_set_loopback_pf(struct e1000_hw *hw, bool enable);
|
||||
void e1000_vmdq_set_replication_pf(struct e1000_hw *hw, bool enable);
|
||||
u16 e1000_rxpbs_adjust_82580(u32 data);
|
||||
s32 e1000_erfuse_check_82580(struct e1000_hw *);
|
||||
#endif /* _E1000_82575_H_ */
|
||||
|
@ -232,6 +232,7 @@ s32 e1000_set_mac_type(struct e1000_hw *hw)
|
||||
case E1000_DEV_ID_ICH8_IGP_M_AMT:
|
||||
case E1000_DEV_ID_ICH8_IGP_AMT:
|
||||
case E1000_DEV_ID_ICH8_IGP_C:
|
||||
case E1000_DEV_ID_ICH8_82567V_3:
|
||||
mac->type = e1000_ich8lan;
|
||||
break;
|
||||
case E1000_DEV_ID_ICH9_IFE:
|
||||
@ -269,9 +270,21 @@ s32 e1000_set_mac_type(struct e1000_hw *hw)
|
||||
case E1000_DEV_ID_82576_SERDES:
|
||||
case E1000_DEV_ID_82576_QUAD_COPPER:
|
||||
case E1000_DEV_ID_82576_NS:
|
||||
case E1000_DEV_ID_82576_NS_SERDES:
|
||||
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:
|
||||
mac->type = e1000_82580;
|
||||
break;
|
||||
case E1000_DEV_ID_82580_ER:
|
||||
case E1000_DEV_ID_82580_ER_DUAL:
|
||||
mac->type = e1000_82580er;
|
||||
break;
|
||||
default:
|
||||
/* Should never have loaded on this device */
|
||||
ret_val = -E1000_ERR_MAC_INIT;
|
||||
@ -362,6 +375,8 @@ s32 e1000_setup_init_funcs(struct e1000_hw *hw, bool init_device)
|
||||
break;
|
||||
case e1000_82575:
|
||||
case e1000_82576:
|
||||
case e1000_82580:
|
||||
case e1000_82580er:
|
||||
e1000_init_function_pointers_82575(hw);
|
||||
break;
|
||||
default:
|
||||
|
@ -146,12 +146,12 @@
|
||||
#define E1000_CTRL_EXT_SDP5_DATA 0x00000020 /* Value of SW Definable Pin 5 */
|
||||
#define E1000_CTRL_EXT_PHY_INT E1000_CTRL_EXT_SDP5_DATA
|
||||
#define E1000_CTRL_EXT_SDP6_DATA 0x00000040 /* Value of SW Definable Pin 6 */
|
||||
#define E1000_CTRL_EXT_SDP7_DATA 0x00000080 /* Value of SW Definable Pin 7 */
|
||||
#define E1000_CTRL_EXT_SDP3_DATA 0x00000080 /* Value of SW Definable Pin 3 */
|
||||
/* SDP 4/5 (bits 8,9) are reserved in >= 82575 */
|
||||
#define E1000_CTRL_EXT_SDP4_DIR 0x00000100 /* Direction of SDP4 0=in 1=out */
|
||||
#define E1000_CTRL_EXT_SDP5_DIR 0x00000200 /* Direction of SDP5 0=in 1=out */
|
||||
#define E1000_CTRL_EXT_SDP6_DIR 0x00000400 /* Direction of SDP6 0=in 1=out */
|
||||
#define E1000_CTRL_EXT_SDP7_DIR 0x00000800 /* Direction of SDP7 0=in 1=out */
|
||||
#define E1000_CTRL_EXT_SDP3_DIR 0x00000800 /* Direction of SDP3 0=in 1=out */
|
||||
#define E1000_CTRL_EXT_ASDCHK 0x00001000 /* Initiate an ASD sequence */
|
||||
#define E1000_CTRL_EXT_EE_RST 0x00002000 /* Reinitialize from EEPROM */
|
||||
#define E1000_CTRL_EXT_IPS 0x00004000 /* Invert Power State */
|
||||
@ -161,6 +161,8 @@
|
||||
#define E1000_CTRL_EXT_RO_DIS 0x00020000 /* Relaxed Ordering disable */
|
||||
#define E1000_CTRL_EXT_DMA_DYN_CLK_EN 0x00080000 /* DMA Dynamic Clock Gating */
|
||||
#define E1000_CTRL_EXT_LINK_MODE_MASK 0x00C00000
|
||||
#define E1000_CTRL_EXT_LINK_MODE_82580_MASK 0x01C00000 /*82580 bit 24:22*/
|
||||
#define E1000_CTRL_EXT_LINK_MODE_1000BASE_KX 0x00400000
|
||||
#define E1000_CTRL_EXT_LINK_MODE_GMII 0x00000000
|
||||
#define E1000_CTRL_EXT_LINK_MODE_TBI 0x00C00000
|
||||
#define E1000_CTRL_EXT_LINK_MODE_KMRN 0x00000000
|
||||
@ -386,6 +388,8 @@
|
||||
#define E1000_SWFW_PHY0_SM 0x02
|
||||
#define E1000_SWFW_PHY1_SM 0x04
|
||||
#define E1000_SWFW_CSR_SM 0x08
|
||||
#define E1000_SWFW_PHY2_SM 0x20
|
||||
#define E1000_SWFW_PHY3_SM 0x40
|
||||
|
||||
/* FACTPS Definitions */
|
||||
#define E1000_FACTPS_LFS 0x40000000 /* LAN Function Select */
|
||||
@ -697,6 +701,7 @@
|
||||
/* Extended Configuration Control and Size */
|
||||
#define E1000_EXTCNF_CTRL_MDIO_SW_OWNERSHIP 0x00000020
|
||||
#define E1000_EXTCNF_CTRL_LCD_WRITE_ENABLE 0x00000001
|
||||
#define E1000_EXTCNF_CTRL_OEM_WRITE_ENABLE 0x00000008
|
||||
#define E1000_EXTCNF_CTRL_SWFLAG 0x00000020
|
||||
#define E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_MASK 0x00FF0000
|
||||
#define E1000_EXTCNF_SIZE_EXT_PCIE_LENGTH_SHIFT 16
|
||||
@ -769,6 +774,7 @@
|
||||
#define E1000_ICR_ACK 0x00020000 /* Receive Ack frame */
|
||||
#define E1000_ICR_MNG 0x00040000 /* Manageability event */
|
||||
#define E1000_ICR_DOCK 0x00080000 /* Dock/Undock */
|
||||
#define E1000_ICR_DRSTA 0x40000000 /* Device Reset Asserted */
|
||||
#define E1000_ICR_INT_ASSERTED 0x80000000 /* If this bit asserted, the driver
|
||||
* should claim the interrupt */
|
||||
#define E1000_ICR_RXD_FIFO_PAR0 0x00100000 /* Q0 Rx desc FIFO parity error */
|
||||
@ -789,6 +795,7 @@
|
||||
#define E1000_ICR_TXQ0 0x00400000 /* Tx Queue 0 Interrupt */
|
||||
#define E1000_ICR_TXQ1 0x00800000 /* Tx Queue 1 Interrupt */
|
||||
#define E1000_ICR_OTHER 0x01000000 /* Other Interrupts */
|
||||
#define E1000_ICR_FER 0x00400000 /* Fatal Error */
|
||||
|
||||
/* PBA ECC Register */
|
||||
#define E1000_PBA_ECC_COUNTER_MASK 0xFFF00000 /* ECC counter mask */
|
||||
@ -860,6 +867,7 @@
|
||||
#define E1000_IMS_ACK E1000_ICR_ACK /* Receive Ack frame */
|
||||
#define E1000_IMS_MNG E1000_ICR_MNG /* Manageability event */
|
||||
#define E1000_IMS_DOCK E1000_ICR_DOCK /* Dock/Undock */
|
||||
#define E1000_IMS_DRSTA E1000_ICR_DRSTA /* Device Reset Asserted */
|
||||
#define E1000_IMS_RXD_FIFO_PAR0 E1000_ICR_RXD_FIFO_PAR0 /* Q0 Rx desc FIFO
|
||||
* parity error */
|
||||
#define E1000_IMS_TXD_FIFO_PAR0 E1000_ICR_TXD_FIFO_PAR0 /* Q0 Tx desc FIFO
|
||||
@ -881,6 +889,7 @@
|
||||
#define E1000_IMS_TXQ0 E1000_ICR_TXQ0 /* Tx Queue 0 Interrupt */
|
||||
#define E1000_IMS_TXQ1 E1000_ICR_TXQ1 /* Tx Queue 1 Interrupt */
|
||||
#define E1000_IMS_OTHER E1000_ICR_OTHER /* Other Interrupts */
|
||||
#define E1000_IMS_FER E1000_ICR_FER /* Fatal Error */
|
||||
|
||||
/* Extended Interrupt Mask Set */
|
||||
#define E1000_EIMS_RX_QUEUE0 E1000_EICR_RX_QUEUE0 /* Rx Queue 0 Interrupt */
|
||||
@ -913,6 +922,7 @@
|
||||
#define E1000_ICS_ACK E1000_ICR_ACK /* Receive Ack frame */
|
||||
#define E1000_ICS_MNG E1000_ICR_MNG /* Manageability event */
|
||||
#define E1000_ICS_DOCK E1000_ICR_DOCK /* Dock/Undock */
|
||||
#define E1000_ICS_DRSTA E1000_ICR_DRSTA /* Device Reset Aserted */
|
||||
#define E1000_ICS_RXD_FIFO_PAR0 E1000_ICR_RXD_FIFO_PAR0 /* Q0 Rx desc FIFO
|
||||
* parity error */
|
||||
#define E1000_ICS_TXD_FIFO_PAR0 E1000_ICR_TXD_FIFO_PAR0 /* Q0 Tx desc FIFO
|
||||
@ -994,6 +1004,7 @@
|
||||
#define E1000_ERR_SWFW_SYNC 13
|
||||
#define E1000_NOT_IMPLEMENTED 14
|
||||
#define E1000_ERR_MBX 15
|
||||
#define E1000_ERFUSE_FAILURE 16
|
||||
|
||||
/* Loop limit on how long we wait for auto-negotiation to complete */
|
||||
#define FIBER_LINK_UP_LIMIT 50
|
||||
@ -1036,6 +1047,56 @@
|
||||
#define E1000_RXCW_SYNCH 0x40000000 /* Receive config synch */
|
||||
#define E1000_RXCW_ANC 0x80000000 /* Auto-neg complete */
|
||||
|
||||
#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
|
||||
/* TUPLE Filtering Configuration */
|
||||
#define E1000_TTQF_DISABLE_MASK 0xF0008000 /* TTQF Disable Mask */
|
||||
#define E1000_TTQF_QUEUE_ENABLE 0x100 /* TTQF Queue Enable Bit */
|
||||
#define E1000_TTQF_PROTOCOL_MASK 0xFF /* TTQF Protocol Mask */
|
||||
/* TTQF TCP Bit, shift with E1000_TTQF_PROTOCOL SHIFT */
|
||||
#define E1000_TTQF_PROTOCOL_TCP 0x0
|
||||
/* TTQF UDP Bit, shift with E1000_TTQF_PROTOCOL_SHIFT */
|
||||
#define E1000_TTQF_PROTOCOL_UDP 0x1
|
||||
/* TTQF SCTP Bit, shift with E1000_TTQF_PROTOCOL_SHIFT */
|
||||
#define E1000_TTQF_PROTOCOL_SCTP 0x2
|
||||
#define E1000_TTQF_PROTOCOL_SHIFT 5 /* TTQF Protocol Shift */
|
||||
#define E1000_TTQF_QUEUE_SHIFT 16 /* TTQF Queue Shfit */
|
||||
#define E1000_TTQF_RX_QUEUE_MASK 0x70000 /* TTQF Queue Mask */
|
||||
#define E1000_TTQF_MASK_ENABLE 0x10000000 /* TTQF Mask Enable Bit */
|
||||
#define E1000_IMIR_CLEAR_MASK 0xF001FFFF /* IMIR Reg Clear Mask */
|
||||
#define E1000_IMIR_PORT_BYPASS 0x20000 /* IMIR Port Bypass Bit */
|
||||
#define E1000_IMIR_PRIORITY_SHIFT 29 /* IMIR Priority Shift */
|
||||
#define E1000_IMIREXT_CLEAR_MASK 0x7FFFF /* IMIREXT Reg Clear Mask */
|
||||
|
||||
/* PCI Express Control */
|
||||
#define E1000_GCR_RXD_NO_SNOOP 0x00000001
|
||||
@ -1227,6 +1288,10 @@
|
||||
|
||||
#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 0x0f of the NVM */
|
||||
#define NVM_WORD0F_PAUSE_MASK 0x3000
|
||||
@ -1346,6 +1411,7 @@
|
||||
#define BME1000_E_PHY_ID_R2 0x01410CB1
|
||||
#define I82577_E_PHY_ID 0x01540050
|
||||
#define I82578_E_PHY_ID 0x004DD040
|
||||
#define I82580_I_PHY_ID 0x015403A0
|
||||
#define IGP04E1000_E_PHY_ID 0x02A80391
|
||||
#define M88_VENDOR 0x0141
|
||||
|
||||
@ -1575,5 +1641,34 @@
|
||||
#define E1000_LSECRXCTRL_RSV_MASK 0xFFFFFF33
|
||||
|
||||
|
||||
/* DMA Coalescing register fields */
|
||||
#define E1000_DMACR_DMACWT_MASK 0x00003FFF /* DMA Coalescing
|
||||
* Watchdog Timer */
|
||||
#define E1000_DMACR_DMACTHR_MASK 0x00FF0000 /* DMA Coalescing Receive
|
||||
* Threshold */
|
||||
#define E1000_DMACR_DMACTHR_SHIFT 16
|
||||
#define E1000_DMACR_DMAC_LX_MASK 0x30000000 /* Lx when no PCIe
|
||||
* transactions */
|
||||
#define E1000_DMACR_DMAC_LX_SHIFT 28
|
||||
#define E1000_DMACR_DMAC_EN 0x80000000 /* Enable DMA Coalescing */
|
||||
|
||||
#define E1000_DMCTXTH_DMCTTHR_MASK 0x00000FFF /* DMA Coalescing Transmit
|
||||
* Threshold */
|
||||
|
||||
#define E1000_DMCTLX_TTLX_MASK 0x00000FFF /* Time to LX request */
|
||||
|
||||
#define E1000_DMCRTRH_UTRESH_MASK 0x0007FFFF /* Receive Traffic Rate
|
||||
* Threshold */
|
||||
#define E1000_DMCRTRH_LRPRCW 0x80000000 /* Rcv packet rate in
|
||||
* current window */
|
||||
|
||||
#define E1000_DMCCNT_CCOUNT_MASK 0x01FFFFFF /* DMA Coal Rcv Traffic
|
||||
* Current Cnt */
|
||||
|
||||
#define E1000_FCRTC_RTH_COAL_MASK 0x0003FFF0 /* Flow ctrl Rcv Threshold
|
||||
* High val */
|
||||
#define E1000_FCRTC_RTH_COAL_SHIFT 4
|
||||
#define E1000_PCIEMISC_LX_DECISION 0x00000080 /* Lx power decision based
|
||||
on DMA coal */
|
||||
|
||||
#endif /* _E1000_DEFINES_H_ */
|
||||
|
@ -100,6 +100,7 @@ struct e1000_hw;
|
||||
#define E1000_DEV_ID_80003ES2LAN_SERDES_DPT 0x1098
|
||||
#define E1000_DEV_ID_80003ES2LAN_COPPER_SPT 0x10BA
|
||||
#define E1000_DEV_ID_80003ES2LAN_SERDES_SPT 0x10BB
|
||||
#define E1000_DEV_ID_ICH8_82567V_3 0x1501
|
||||
#define E1000_DEV_ID_ICH8_IGP_M_AMT 0x1049
|
||||
#define E1000_DEV_ID_ICH8_IGP_AMT 0x104A
|
||||
#define E1000_DEV_ID_ICH8_IGP_C 0x104B
|
||||
@ -130,11 +131,19 @@ struct e1000_hw;
|
||||
#define E1000_DEV_ID_82576_SERDES 0x10E7
|
||||
#define E1000_DEV_ID_82576_QUAD_COPPER 0x10E8
|
||||
#define E1000_DEV_ID_82576_NS 0x150A
|
||||
#define E1000_DEV_ID_82576_SERDES_QUAD 0x150D
|
||||
#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_82575GB_QUAD_COPPER_PM 0x10E2
|
||||
#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_82580_ER 0x151D
|
||||
#define E1000_DEV_ID_82580_ER_DUAL 0x151E
|
||||
#define E1000_REVISION_0 0
|
||||
#define E1000_REVISION_1 1
|
||||
#define E1000_REVISION_2 2
|
||||
@ -143,9 +152,13 @@ struct e1000_hw;
|
||||
|
||||
#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,
|
||||
@ -173,6 +186,8 @@ enum e1000_mac_type {
|
||||
e1000_pchlan,
|
||||
e1000_82575,
|
||||
e1000_82576,
|
||||
e1000_82580,
|
||||
e1000_82580er,
|
||||
e1000_num_macs /* List is 1-based, so subtract 1 for TRUE count. */
|
||||
};
|
||||
|
||||
@ -213,6 +228,7 @@ enum e1000_phy_type {
|
||||
e1000_phy_bm,
|
||||
e1000_phy_82578,
|
||||
e1000_phy_82577,
|
||||
e1000_phy_82580,
|
||||
e1000_phy_vf,
|
||||
};
|
||||
|
||||
@ -615,11 +631,13 @@ struct e1000_phy_operations {
|
||||
s32 (*get_cable_length)(struct e1000_hw *);
|
||||
s32 (*get_info)(struct e1000_hw *);
|
||||
s32 (*read_reg)(struct e1000_hw *, u32, u16 *);
|
||||
s32 (*read_reg_locked)(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);
|
||||
s32 (*write_reg_locked)(struct e1000_hw *, u32, u16);
|
||||
void (*power_up)(struct e1000_hw *);
|
||||
void (*power_down)(struct e1000_hw *);
|
||||
};
|
||||
@ -657,6 +675,7 @@ struct e1000_mac_info {
|
||||
u16 ifs_ratio;
|
||||
u16 ifs_step_size;
|
||||
u16 mta_reg_count;
|
||||
u16 uta_reg_count;
|
||||
|
||||
/* Maximum size of the MTA register table in all supported adapters */
|
||||
#define MAX_MTA_REG 128
|
||||
@ -768,6 +787,10 @@ struct e1000_dev_spec_82571 {
|
||||
u32 smb_counter;
|
||||
};
|
||||
|
||||
struct e1000_dev_spec_80003es2lan {
|
||||
bool mdic_wa_enable;
|
||||
};
|
||||
|
||||
struct e1000_shadow_ram {
|
||||
u16 value;
|
||||
bool modified;
|
||||
@ -778,6 +801,9 @@ struct e1000_shadow_ram {
|
||||
struct e1000_dev_spec_ich8lan {
|
||||
bool kmrn_lock_loss_workaround_enabled;
|
||||
struct e1000_shadow_ram shadow_ram[E1000_SHADOW_RAM_WORDS];
|
||||
E1000_MUTEX nvm_mutex;
|
||||
E1000_MUTEX swflag_mutex;
|
||||
bool nvm_k1_enabled;
|
||||
};
|
||||
|
||||
struct e1000_dev_spec_82575 {
|
||||
@ -810,6 +836,7 @@ struct e1000_hw {
|
||||
struct e1000_dev_spec_82542 _82542;
|
||||
struct e1000_dev_spec_82543 _82543;
|
||||
struct e1000_dev_spec_82571 _82571;
|
||||
struct e1000_dev_spec_80003es2lan _80003es2lan;
|
||||
struct e1000_dev_spec_ich8lan ich8lan;
|
||||
struct e1000_dev_spec_82575 _82575;
|
||||
struct e1000_dev_spec_vf vf;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -140,6 +140,31 @@
|
||||
#define HV_TNCRS_UPPER PHY_REG(778, 29) /* Transmit with no CRS */
|
||||
#define HV_TNCRS_LOWER PHY_REG(778, 30)
|
||||
|
||||
#define E1000_FCRTV_PCH 0x05F40 /* PCH Flow Control Refresh Timer Value */
|
||||
|
||||
#define E1000_NVM_K1_CONFIG 0x1B /* NVM K1 Config Word */
|
||||
#define E1000_NVM_K1_ENABLE 0x1 /* NVM Enable K1 bit */
|
||||
|
||||
/* SMBus Address Phy Register */
|
||||
#define HV_SMB_ADDR PHY_REG(768, 26)
|
||||
#define HV_SMB_ADDR_PEC_EN 0x0200
|
||||
#define HV_SMB_ADDR_VALID 0x0080
|
||||
|
||||
/* Strapping Option Register - RO */
|
||||
#define E1000_STRAP 0x0000C
|
||||
#define E1000_STRAP_SMBUS_ADDRESS_MASK 0x00FE0000
|
||||
#define E1000_STRAP_SMBUS_ADDRESS_SHIFT 17
|
||||
|
||||
/* OEM Bits Phy Register */
|
||||
#define HV_OEM_BITS PHY_REG(768, 25)
|
||||
#define HV_OEM_BITS_LPLU 0x0004 /* Low Power Link Up */
|
||||
#define HV_OEM_BITS_GBE_DIS 0x0040 /* Gigabit Disable */
|
||||
#define HV_OEM_BITS_RESTART_AN 0x0400 /* Restart Auto-negotiation */
|
||||
|
||||
#define LCD_CFG_PHY_ADDR_BIT 0x0020 /* Phy address bit from LCD Config word */
|
||||
|
||||
#define SW_FLAG_TIMEOUT 1000 /* SW Semaphore flag timeout in milliseconds */
|
||||
|
||||
/*
|
||||
* Additional interrupts need to be handled for ICH family:
|
||||
* DSW = The FW changed the status of the DISSW bit in FWSM
|
||||
@ -169,6 +194,7 @@ void e1000_set_kmrn_lock_loss_workaround_ich8lan(struct e1000_hw *hw,
|
||||
void e1000_igp3_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw);
|
||||
void e1000_gig_downshift_workaround_ich8lan(struct e1000_hw *hw);
|
||||
void e1000_disable_gig_wol_ich8lan(struct e1000_hw *hw);
|
||||
s32 e1000_configure_k1_ich8lan(struct e1000_hw *hw, bool k1_enable);
|
||||
s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_config);
|
||||
s32 e1000_hv_phy_powerdown_workaround_ich8lan(struct e1000_hw *hw);
|
||||
|
||||
#endif
|
||||
|
@ -230,7 +230,6 @@ s32 e1000_get_bus_info_pcie_generic(struct e1000_hw *hw)
|
||||
{
|
||||
struct e1000_mac_info *mac = &hw->mac;
|
||||
struct e1000_bus_info *bus = &hw->bus;
|
||||
|
||||
s32 ret_val;
|
||||
u16 pcie_link_status;
|
||||
|
||||
@ -408,6 +407,11 @@ s32 e1000_check_alt_mac_addr_generic(struct e1000_hw *hw)
|
||||
|
||||
if (hw->bus.func == E1000_FUNC_1)
|
||||
nvm_alt_mac_addr_offset += E1000_ALT_MAC_ADDRESS_OFFSET_LAN1;
|
||||
if (hw->bus.func == E1000_FUNC_2)
|
||||
nvm_alt_mac_addr_offset += E1000_ALT_MAC_ADDRESS_OFFSET_LAN2;
|
||||
|
||||
if (hw->bus.func == E1000_FUNC_3)
|
||||
nvm_alt_mac_addr_offset += E1000_ALT_MAC_ADDRESS_OFFSET_LAN3;
|
||||
for (i = 0; i < ETH_ADDR_LEN; i += 2) {
|
||||
offset = nvm_alt_mac_addr_offset + (i >> 1);
|
||||
ret_val = hw->nvm.ops.read(hw, offset, 1, &nvm_data);
|
||||
@ -750,12 +754,6 @@ s32 e1000_check_for_copper_link_generic(struct e1000_hw *hw)
|
||||
|
||||
mac->get_link_status = FALSE;
|
||||
|
||||
if (hw->phy.type == e1000_phy_82578) {
|
||||
ret_val = e1000_link_stall_workaround_hv(hw);
|
||||
if (ret_val)
|
||||
goto out;
|
||||
}
|
||||
|
||||
/*
|
||||
* Check if there was DownShift, must be checked
|
||||
* immediately after link-up
|
||||
@ -994,9 +992,8 @@ s32 e1000_setup_link_generic(struct e1000_hw *hw)
|
||||
* In the case of the phy reset being blocked, we already have a link.
|
||||
* We do not need to set it up again.
|
||||
*/
|
||||
if (hw->phy.ops.check_reset_block)
|
||||
if (hw->phy.ops.check_reset_block(hw))
|
||||
goto out;
|
||||
if (e1000_check_reset_block(hw))
|
||||
goto out;
|
||||
|
||||
/*
|
||||
* If requested flow control is set to default, set flow control
|
||||
@ -1512,7 +1509,7 @@ s32 e1000_config_fc_after_link_up_generic(struct e1000_hw *hw)
|
||||
/*
|
||||
* 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
|
||||
* 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.
|
||||
*/
|
||||
@ -2033,7 +2030,7 @@ void e1000_set_pcie_no_snoop_generic(struct e1000_hw *hw, u32 no_snoop)
|
||||
* e1000_disable_pcie_master_generic - Disables PCI-express master access
|
||||
* @hw: pointer to the HW structure
|
||||
*
|
||||
* Returns 0 (E1000_SUCCESS) if successful, else returns -10
|
||||
* Returns E1000_SUCCESS if successful, else returns -10
|
||||
* (-E1000_ERR_MASTER_REQUESTS_PENDING) if master disable bit has not caused
|
||||
* the master requests to be disabled.
|
||||
*
|
||||
@ -2151,7 +2148,7 @@ void e1000_update_adaptive_generic(struct e1000_hw *hw)
|
||||
* Verify that when not using auto-negotiation that MDI/MDIx is correctly
|
||||
* set, which is forced to MDI mode only.
|
||||
**/
|
||||
s32 e1000_validate_mdi_setting_generic(struct e1000_hw *hw)
|
||||
static s32 e1000_validate_mdi_setting_generic(struct e1000_hw *hw)
|
||||
{
|
||||
s32 ret_val = E1000_SUCCESS;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/******************************************************************************
|
||||
|
||||
Copyright (c) 2001-2008, Intel Corporation
|
||||
Copyright (c) 2001-2009, Intel Corporation
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
@ -123,7 +123,7 @@ bool e1000_check_mng_mode_generic(struct e1000_hw *hw)
|
||||
}
|
||||
|
||||
/**
|
||||
* e1000_enable_tx_pkt_filtering_generic - Enable packet filtering on TX
|
||||
* e1000_enable_tx_pkt_filtering_generic - Enable packet filtering on Tx
|
||||
* @hw: pointer to the HW structure
|
||||
*
|
||||
* Enables packet filtering on transmit packets if manageability is enabled
|
||||
@ -159,11 +159,9 @@ bool e1000_enable_tx_pkt_filtering_generic(struct e1000_hw *hw)
|
||||
/* Read in the header. Length and offset are in dwords. */
|
||||
len = E1000_MNG_DHCP_COOKIE_LENGTH >> 2;
|
||||
offset = E1000_MNG_DHCP_COOKIE_OFFSET >> 2;
|
||||
for (i = 0; i < len; i++) {
|
||||
*(buffer + i) = E1000_READ_REG_ARRAY_DWORD(hw,
|
||||
E1000_HOST_IF,
|
||||
for (i = 0; i < len; i++)
|
||||
*(buffer + i) = E1000_READ_REG_ARRAY_DWORD(hw, E1000_HOST_IF,
|
||||
offset + i);
|
||||
}
|
||||
hdr_csum = hdr->checksum;
|
||||
hdr->checksum = 0;
|
||||
csum = e1000_calculate_checksum((u8 *)hdr,
|
||||
|
@ -1,6 +1,6 @@
|
||||
/******************************************************************************
|
||||
|
||||
Copyright (c) 2001-2008, Intel Corporation
|
||||
Copyright (c) 2001-2009, Intel Corporation
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
@ -39,6 +39,8 @@
|
||||
#include <sys/types.h>
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/lock.h>
|
||||
#include <sys/mutex.h>
|
||||
#include <sys/mbuf.h>
|
||||
#include <sys/protosw.h>
|
||||
#include <sys/socket.h>
|
||||
@ -57,10 +59,8 @@
|
||||
|
||||
#define ASSERT(x) if(!(x)) panic("EM: x")
|
||||
|
||||
/* The happy-fun DELAY macro is defined in /usr/src/sys/i386/include/clock.h */
|
||||
#define usec_delay(x) DELAY(x)
|
||||
#define msec_delay(x) DELAY(1000*(x))
|
||||
/* TODO: Should we be paranoid about delaying in interrupt context? */
|
||||
#define msec_delay_irq(x) DELAY(1000*(x))
|
||||
|
||||
#define MSGOUT(S, A, B) printf(S "\n", A, B)
|
||||
@ -73,16 +73,22 @@
|
||||
|
||||
#define STATIC static
|
||||
#define FALSE 0
|
||||
#define false FALSE /* shared code stupidity */
|
||||
#define false FALSE
|
||||
#define TRUE 1
|
||||
#define true TRUE
|
||||
#define CMD_MEM_WRT_INVALIDATE 0x0010 /* BIT_4 */
|
||||
#define PCI_COMMAND_REGISTER PCIR_COMMAND
|
||||
|
||||
/*
|
||||
** These typedefs are necessary due to the new
|
||||
** shared code, they are native to Linux.
|
||||
*/
|
||||
/* Mutex used in the shared code */
|
||||
#define E1000_MUTEX struct mtx
|
||||
#define E1000_MUTEX_INIT(mutex) mtx_init((mutex), #mutex, \
|
||||
MTX_NETWORK_LOCK, \
|
||||
MTX_DEF | MTX_SPIN)
|
||||
#define E1000_MUTEX_DESTROY(mutex) mtx_destroy(mutex)
|
||||
#define E1000_MUTEX_LOCK(mutex) mtx_lock(mutex)
|
||||
#define E1000_MUTEX_TRYLOCK(mutex) mtx_trylock(mutex)
|
||||
#define E1000_MUTEX_UNLOCK(mutex) mtx_unlock(mutex)
|
||||
|
||||
typedef uint64_t u64;
|
||||
typedef uint32_t u32;
|
||||
typedef uint16_t u16;
|
||||
@ -97,6 +103,28 @@ typedef boolean_t bool;
|
||||
#define __le32 u32
|
||||
#define __le64 u64
|
||||
|
||||
#if __FreeBSD_version < 800000 /* Now in HEAD */
|
||||
#if defined(__i386__) || defined(__amd64__)
|
||||
#define mb() __asm volatile("mfence" ::: "memory")
|
||||
#define wmb() __asm volatile("sfence" ::: "memory")
|
||||
#define rmb() __asm volatile("lfence" ::: "memory")
|
||||
#else
|
||||
#define mb()
|
||||
#define rmb()
|
||||
#define wmb()
|
||||
#endif
|
||||
#endif /*__FreeBSD_version < 800000 */
|
||||
|
||||
#if defined(__i386__) || defined(__amd64__)
|
||||
static __inline
|
||||
void prefetch(void *x)
|
||||
{
|
||||
__asm volatile("prefetcht0 %0" :: "m" (*(unsigned long *)x));
|
||||
}
|
||||
#else
|
||||
#define prefetch(x)
|
||||
#endif
|
||||
|
||||
struct e1000_osdep
|
||||
{
|
||||
bus_space_tag_t mem_bus_space_tag;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -45,6 +45,7 @@ s32 e1000_check_polarity_m88(struct e1000_hw *hw);
|
||||
s32 e1000_check_polarity_igp(struct e1000_hw *hw);
|
||||
s32 e1000_check_polarity_ife(struct e1000_hw *hw);
|
||||
s32 e1000_check_reset_block_generic(struct e1000_hw *hw);
|
||||
s32 e1000_phy_setup_autoneg(struct e1000_hw *hw);
|
||||
s32 e1000_copper_link_autoneg(struct e1000_hw *hw);
|
||||
s32 e1000_copper_link_setup_igp(struct e1000_hw *hw);
|
||||
s32 e1000_copper_link_setup_m88(struct e1000_hw *hw);
|
||||
@ -57,19 +58,23 @@ s32 e1000_get_cfg_done_generic(struct e1000_hw *hw);
|
||||
s32 e1000_get_phy_id(struct e1000_hw *hw);
|
||||
s32 e1000_get_phy_info_igp(struct e1000_hw *hw);
|
||||
s32 e1000_get_phy_info_m88(struct e1000_hw *hw);
|
||||
s32 e1000_get_phy_info_ife(struct e1000_hw *hw);
|
||||
s32 e1000_phy_sw_reset_generic(struct e1000_hw *hw);
|
||||
void e1000_phy_force_speed_duplex_setup(struct e1000_hw *hw, u16 *phy_ctrl);
|
||||
s32 e1000_phy_hw_reset_generic(struct e1000_hw *hw);
|
||||
s32 e1000_phy_reset_dsp_generic(struct e1000_hw *hw);
|
||||
s32 e1000_phy_setup_autoneg(struct e1000_hw *hw);
|
||||
s32 e1000_read_kmrn_reg_generic(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_read_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_read_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_read_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_set_d3_lplu_state_generic(struct e1000_hw *hw, bool active);
|
||||
s32 e1000_setup_copper_link_generic(struct e1000_hw *hw);
|
||||
s32 e1000_wait_autoneg_generic(struct e1000_hw *hw);
|
||||
s32 e1000_write_kmrn_reg_generic(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_write_kmrn_reg_locked(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_write_phy_reg_igp_locked(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_write_phy_reg_m88(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_phy_reset_dsp(struct e1000_hw *hw);
|
||||
s32 e1000_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
|
||||
@ -85,8 +90,12 @@ void e1000_power_up_phy_copper(struct e1000_hw *hw);
|
||||
void e1000_power_down_phy_copper(struct e1000_hw *hw);
|
||||
s32 e1000_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_read_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_write_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_read_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 *data);
|
||||
s32 e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_write_phy_reg_hv_locked(struct e1000_hw *hw, u32 offset, u16 data);
|
||||
s32 e1000_set_mdio_slow_mode_hv(struct e1000_hw *hw, bool slow);
|
||||
s32 e1000_link_stall_workaround_hv(struct e1000_hw *hw);
|
||||
s32 e1000_copper_link_setup_82577(struct e1000_hw *hw);
|
||||
@ -140,7 +149,6 @@ s32 e1000_get_cable_length_82577(struct e1000_hw *hw);
|
||||
#define I82577_CFG_ASSERT_CRS_ON_TX (1 << 15)
|
||||
#define I82577_CFG_ENABLE_DOWNSHIFT (3 << 10) /* auto downshift 100/10 */
|
||||
#define I82577_CTRL_REG 23
|
||||
#define I82577_CTRL_DOWNSHIFT_MASK (7 << 10)
|
||||
|
||||
/* 82577 specific PHY registers */
|
||||
#define I82577_PHY_CTRL_2 18
|
||||
@ -175,6 +183,13 @@ s32 e1000_get_cable_length_82577(struct e1000_hw *hw);
|
||||
#define BM_CS_STATUS_SPEED_MASK 0xC000
|
||||
#define BM_CS_STATUS_SPEED_1000 0x8000
|
||||
|
||||
/* 82577 Mobile Phy Status Register */
|
||||
#define HV_M_STATUS 26
|
||||
#define HV_M_STATUS_AUTONEG_COMPLETE 0x1000
|
||||
#define HV_M_STATUS_SPEED_MASK 0x0300
|
||||
#define HV_M_STATUS_SPEED_1000 0x0200
|
||||
#define HV_M_STATUS_LINK_UP 0x0040
|
||||
|
||||
#define IGP01E1000_PHY_PCS_INIT_REG 0x00B4
|
||||
#define IGP01E1000_PHY_POLARITY_MASK 0x0078
|
||||
|
||||
@ -220,6 +235,8 @@ s32 e1000_get_cable_length_82577(struct e1000_hw *hw);
|
||||
#define E1000_KMRNCTRLSTA_TIMEOUTS 0x4 /* Kumeran Timeouts */
|
||||
#define E1000_KMRNCTRLSTA_INBAND_PARAM 0x9 /* Kumeran InBand Parameters */
|
||||
#define E1000_KMRNCTRLSTA_DIAG_NELPBK 0x1000 /* Nearend Loopback mode */
|
||||
#define E1000_KMRNCTRLSTA_K1_CONFIG 0x7
|
||||
#define E1000_KMRNCTRLSTA_K1_ENABLE 0x0002
|
||||
|
||||
#define IFE_PHY_EXTENDED_STATUS_CONTROL 0x10
|
||||
#define IFE_PHY_SPECIAL_CONTROL 0x11 /* 100BaseTx PHY Special Control */
|
||||
|
@ -43,6 +43,12 @@
|
||||
#define E1000_CTRL_EXT 0x00018 /* Extended Device Control - RW */
|
||||
#define E1000_FLA 0x0001C /* Flash Access - RW */
|
||||
#define E1000_MDIC 0x00020 /* MDI Control - RW */
|
||||
#define E1000_MDICNFG 0x00E04 /* MDI Config - RW */
|
||||
#define E1000_REGISTER_SET_SIZE 0x20000 /* CSR Size */
|
||||
#define E1000_EEPROM_INIT_CTRL_WORD_2 0x0F /* EEPROM Init Ctrl Word 2 */
|
||||
#define E1000_BARCTRL 0x5BBC /* BAR ctrl reg */
|
||||
#define E1000_BARCTRL_FLSIZE 0x0700 /* BAR ctrl Flsize */
|
||||
#define E1000_BARCTRL_CSRSIZE 0x2000 /* BAR ctrl CSR size */
|
||||
#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 */
|
||||
@ -121,11 +127,7 @@
|
||||
#define E1000_RDPUCTL 0x025DC /* DMA Rx Descriptor uC Control - RW */
|
||||
#define E1000_PBDIAG 0x02458 /* Packet Buffer Diagnostic - RW */
|
||||
#define E1000_RXPBS 0x02404 /* Rx Packet Buffer Size - RW */
|
||||
#define E1000_RXCTL(_n) (0x0C014 + (0x40 * (_n)))
|
||||
#define E1000_RQDPC(_n) (0x0C030 + (0x40 * (_n)))
|
||||
#define E1000_TXCTL(_n) (0x0E014 + (0x40 * (_n)))
|
||||
#define E1000_RXCTL(_n) (0x0C014 + (0x40 * (_n)))
|
||||
#define E1000_RQDPC(_n) (0x0C030 + (0x40 * (_n)))
|
||||
#define E1000_IRPBS 0x02404 /* Same as RXPBS, renamed for newer adapters - RW */
|
||||
#define E1000_RDTR 0x02820 /* Rx Delay Timer - RW */
|
||||
#define E1000_RADV 0x0282C /* Rx Interrupt Absolute Delay Timer - RW */
|
||||
/*
|
||||
@ -146,10 +148,15 @@
|
||||
(0x0C00C + ((_n) * 0x40)))
|
||||
#define E1000_RDH(_n) ((_n) < 4 ? (0x02810 + ((_n) * 0x100)) : \
|
||||
(0x0C010 + ((_n) * 0x40)))
|
||||
#define E1000_RXCTL(_n) ((_n) < 4 ? (0x02814 + ((_n) * 0x100)) : \
|
||||
(0x0C014 + ((_n) * 0x40)))
|
||||
#define E1000_DCA_RXCTRL(_n) E1000_RXCTL(_n)
|
||||
#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_RQDPC(_n) ((_n) < 4 ? (0x02830 + ((_n) * 0x100)) : \
|
||||
(0x0C030 + ((_n) * 0x40)))
|
||||
#define E1000_TDBAL(_n) ((_n) < 4 ? (0x03800 + ((_n) * 0x100)) : \
|
||||
(0x0E000 + ((_n) * 0x40)))
|
||||
#define E1000_TDBAH(_n) ((_n) < 4 ? (0x03804 + ((_n) * 0x100)) : \
|
||||
@ -158,17 +165,18 @@
|
||||
(0x0E008 + ((_n) * 0x40)))
|
||||
#define E1000_TDH(_n) ((_n) < 4 ? (0x03810 + ((_n) * 0x100)) : \
|
||||
(0x0E010 + ((_n) * 0x40)))
|
||||
#define E1000_TXCTL(_n) ((_n) < 4 ? (0x03814 + ((_n) * 0x100)) : \
|
||||
(0x0E014 + ((_n) * 0x40)))
|
||||
#define E1000_DCA_TXCTRL(_n) E1000_TXCTL(_n)
|
||||
#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_TARC(_n) (0x03840 + (_n << 8))
|
||||
#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_TARC(_n) (0x03840 + ((_n) * 0x100))
|
||||
#define E1000_RSRPD 0x02C00 /* Rx Small Packet Detect - RW */
|
||||
#define E1000_RAID 0x02C08 /* Receive Ack Interrupt Delay - RW */
|
||||
#define E1000_TXDMAC 0x03000 /* Tx DMA Control - RW */
|
||||
@ -187,6 +195,7 @@
|
||||
#define E1000_PBSLAC 0x03100 /* Packet Buffer Slave Access Control */
|
||||
#define E1000_PBSLAD(_n) (0x03110 + (0x4 * (_n))) /* Packet Buffer DWORD (_n) */
|
||||
#define E1000_TXPBS 0x03404 /* Tx Packet Buffer Size - RW */
|
||||
#define E1000_ITPBS 0x03404 /* Same as TXPBS, renamed for newer adpaters - RW */
|
||||
#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 */
|
||||
@ -271,6 +280,7 @@
|
||||
#define E1000_ICTXQMTC 0x0411C /* Interrupt Cause Tx Queue Min Thresh Count */
|
||||
#define E1000_ICRXDMTC 0x04120 /* Interrupt Cause Rx Desc Min Thresh Count */
|
||||
#define E1000_ICRXOC 0x04124 /* Interrupt Cause Receiver Overrun Count */
|
||||
#define E1000_CRC_OFFSET 0x05F50 /* CRC Offset register */
|
||||
|
||||
#define E1000_LSECTXUT 0x04300 /* LinkSec Tx Untagged Packet Count - OutPktsUntagged */
|
||||
#define E1000_LSECTXPKTE 0x04304 /* LinkSec Encrypted Tx Packets Count - OutPktsEncrypted */
|
||||
@ -392,6 +402,7 @@
|
||||
#define E1000_SWSM2 0x05B58 /* Driver-only SW semaphore (not used by BOOT agents) */
|
||||
#define E1000_DCA_ID 0x05B70 /* DCA Requester ID Information - RO */
|
||||
#define E1000_DCA_CTRL 0x05B74 /* DCA Control - RW */
|
||||
#define E1000_UFUSE 0x05B78 /* UFUSE - RO */
|
||||
#define E1000_FFLT_DBG 0x05F04 /* Debug Register */
|
||||
#define E1000_HICR 0x08F00 /* Host Interface Control */
|
||||
|
||||
@ -437,6 +448,7 @@
|
||||
#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)))
|
||||
/* Time Sync */
|
||||
#define E1000_TSYNCRXCTL 0x0B620 /* Rx Time Sync Control register - RW */
|
||||
#define E1000_TSYNCTXCTL 0x0B614 /* Tx Time Sync Control register - RW */
|
||||
@ -450,6 +462,8 @@
|
||||
#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 */
|
||||
#define E1000_RXMTRL 0x0B634 /* Time sync Rx EtherType and Msg Type - RW */
|
||||
#define E1000_RXUDP 0x0B638 /* Time Sync Rx UDP Port - RW */
|
||||
|
||||
@ -493,4 +507,16 @@
|
||||
#define E1000_RTTBCNACH 0x0B214 /* Tx BCN Control High */
|
||||
#define E1000_RTTBCNACL 0x0B210 /* Tx BCN Control Low */
|
||||
|
||||
/* DMA Coalescing registers */
|
||||
#define E1000_DMACR 0x02508 /* Control Register */
|
||||
#define E1000_DMCTXTH 0x03550 /* Transmit Threshold */
|
||||
#define E1000_DMCTLX 0x02514 /* Time to Lx Request */
|
||||
#define E1000_DMCRTRH 0x05DD0 /* Receive Packet Rate Threshold */
|
||||
#define E1000_DMCCNT 0x05DD4 /* Current RX Count */
|
||||
#define E1000_FCRTC 0x02170 /* Flow Control Rx high watermark */
|
||||
#define E1000_PCIEMISC 0x05BB8 /* PCIE misc config register */
|
||||
|
||||
/* PCIe Parity Status Register */
|
||||
#define E1000_PCIEERRSTS 0x05BA8
|
||||
#define E1000_ERFUSE 0x00000400
|
||||
#endif
|
||||
|
@ -94,7 +94,7 @@ int em_display_debug_stats = 0;
|
||||
/*********************************************************************
|
||||
* Driver version:
|
||||
*********************************************************************/
|
||||
char em_driver_version[] = "6.9.14";
|
||||
char em_driver_version[] = "6.9.24";
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
@ -194,7 +194,7 @@ static em_vendor_info_t em_vendor_info_array[] =
|
||||
{ 0x8086, E1000_DEV_ID_ICH8_IFE_GT, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_ICH8_IFE_G, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_ICH8_IGP_M, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
|
||||
{ 0x8086, E1000_DEV_ID_ICH8_82567V_3, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_ICH9_IGP_M_AMT, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_ICH9_IGP_AMT, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_ICH9_IGP_C, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
@ -211,6 +211,10 @@ static em_vendor_info_t em_vendor_info_array[] =
|
||||
{ 0x8086, E1000_DEV_ID_ICH10_R_BM_V, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_ICH10_D_BM_LM, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_ICH10_D_BM_LF, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_PCH_M_HV_LM, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_PCH_M_HV_LC, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_PCH_D_HV_DM, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
{ 0x8086, E1000_DEV_ID_PCH_D_HV_DC, PCI_ANY_ID, PCI_ANY_ID, 0},
|
||||
/* required last entry */
|
||||
{ 0, 0, 0, 0, 0}
|
||||
};
|
||||
@ -240,7 +244,6 @@ static int em_mq_start_locked(struct ifnet *, struct mbuf *);
|
||||
static void em_qflush(struct ifnet *);
|
||||
#endif
|
||||
static int em_ioctl(struct ifnet *, u_long, caddr_t);
|
||||
static void em_watchdog(struct adapter *);
|
||||
static void em_init(void *);
|
||||
static void em_init_locked(struct adapter *);
|
||||
static void em_stop(void *);
|
||||
@ -315,7 +318,9 @@ static void em_init_manageability(struct adapter *);
|
||||
static void em_release_manageability(struct adapter *);
|
||||
static void em_get_hw_control(struct adapter *);
|
||||
static void em_release_hw_control(struct adapter *);
|
||||
static void em_get_wakeup(device_t);
|
||||
static void em_enable_wakeup(device_t);
|
||||
static int em_enable_phy_wakeup(struct adapter *);
|
||||
|
||||
#ifdef EM_LEGACY_IRQ
|
||||
static void em_intr(void *);
|
||||
@ -490,7 +495,6 @@ em_attach(device_t dev)
|
||||
struct adapter *adapter;
|
||||
int tsize, rsize;
|
||||
int error = 0;
|
||||
u16 eeprom_data, device_id;
|
||||
|
||||
INIT_DEBUGOUT("em_attach: begin");
|
||||
|
||||
@ -531,6 +535,7 @@ em_attach(device_t dev)
|
||||
** identified
|
||||
*/
|
||||
if ((adapter->hw.mac.type == e1000_ich8lan) ||
|
||||
(adapter->hw.mac.type == e1000_pchlan) ||
|
||||
(adapter->hw.mac.type == e1000_ich9lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich10lan)) {
|
||||
int rid = EM_BAR_TYPE_FLASH;
|
||||
@ -728,6 +733,11 @@ em_attach(device_t dev)
|
||||
if (error)
|
||||
goto err_rx_struct;
|
||||
|
||||
/*
|
||||
* Get Wake-on-Lan and Management info for later use
|
||||
*/
|
||||
em_get_wakeup(dev);
|
||||
|
||||
/* Setup OS specific network interface */
|
||||
em_setup_interface(dev, adapter);
|
||||
|
||||
@ -742,69 +752,6 @@ em_attach(device_t dev)
|
||||
device_printf(dev,
|
||||
"PHY reset is blocked due to SOL/IDER session.\n");
|
||||
|
||||
/* Determine if we have to control management hardware */
|
||||
adapter->has_manage = e1000_enable_mng_pass_thru(&adapter->hw);
|
||||
|
||||
/*
|
||||
* Setup Wake-on-Lan
|
||||
*/
|
||||
switch (adapter->hw.mac.type) {
|
||||
|
||||
case e1000_82542:
|
||||
case e1000_82543:
|
||||
break;
|
||||
case e1000_82546:
|
||||
case e1000_82546_rev_3:
|
||||
case e1000_82571:
|
||||
case e1000_80003es2lan:
|
||||
if (adapter->hw.bus.func == 1)
|
||||
e1000_read_nvm(&adapter->hw,
|
||||
NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
|
||||
else
|
||||
e1000_read_nvm(&adapter->hw,
|
||||
NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
|
||||
eeprom_data &= EM_EEPROM_APME;
|
||||
break;
|
||||
default:
|
||||
/* APME bit in EEPROM is mapped to WUC.APME */
|
||||
eeprom_data = E1000_READ_REG(&adapter->hw, E1000_WUC) &
|
||||
E1000_WUC_APME;
|
||||
break;
|
||||
}
|
||||
if (eeprom_data)
|
||||
adapter->wol = E1000_WUFC_MAG;
|
||||
/*
|
||||
* We have the eeprom settings, now apply the special cases
|
||||
* where the eeprom may be wrong or the board won't support
|
||||
* wake on lan on a particular port
|
||||
*/
|
||||
device_id = pci_get_device(dev);
|
||||
switch (device_id) {
|
||||
case E1000_DEV_ID_82546GB_PCIE:
|
||||
adapter->wol = 0;
|
||||
break;
|
||||
case E1000_DEV_ID_82546EB_FIBER:
|
||||
case E1000_DEV_ID_82546GB_FIBER:
|
||||
case E1000_DEV_ID_82571EB_FIBER:
|
||||
/* Wake events only supported on port A for dual fiber
|
||||
* regardless of eeprom setting */
|
||||
if (E1000_READ_REG(&adapter->hw, E1000_STATUS) &
|
||||
E1000_STATUS_FUNC_1)
|
||||
adapter->wol = 0;
|
||||
break;
|
||||
case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
|
||||
case E1000_DEV_ID_82571EB_QUAD_COPPER:
|
||||
case E1000_DEV_ID_82571EB_QUAD_FIBER:
|
||||
case E1000_DEV_ID_82571EB_QUAD_COPPER_LP:
|
||||
/* if quad port adapter, disable WoL on all but port A */
|
||||
if (global_quad_port_a != 0)
|
||||
adapter->wol = 0;
|
||||
/* Reset for multiple quad port adapters */
|
||||
if (++global_quad_port_a == 4)
|
||||
global_quad_port_a = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Do we need workaround for 82544 PCI-X adapter? */
|
||||
if (adapter->hw.bus.type == e1000_bus_type_pcix &&
|
||||
adapter->hw.mac.type == e1000_82544)
|
||||
@ -820,6 +767,10 @@ em_attach(device_t dev)
|
||||
em_unregister_vlan, adapter, EVENTHANDLER_PRI_FIRST);
|
||||
#endif
|
||||
|
||||
/* Non-AMT based hardware can now take control from firmware */
|
||||
if (adapter->has_manage && !adapter->has_amt)
|
||||
em_get_hw_control(adapter);
|
||||
|
||||
/* Tell the stack that the interface is not active */
|
||||
adapter->ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
|
||||
|
||||
@ -886,20 +837,6 @@ em_detach(device_t dev)
|
||||
|
||||
em_release_manageability(adapter);
|
||||
|
||||
if (((adapter->hw.mac.type == e1000_82573) ||
|
||||
(adapter->hw.mac.type == e1000_82583) ||
|
||||
(adapter->hw.mac.type == e1000_ich8lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich10lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich9lan)) &&
|
||||
e1000_check_mng_mode(&adapter->hw))
|
||||
em_release_hw_control(adapter);
|
||||
|
||||
if (adapter->wol) {
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_WUC, E1000_WUC_PME_EN);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_WUFC, adapter->wol);
|
||||
em_enable_wakeup(dev);
|
||||
}
|
||||
|
||||
EM_TX_UNLOCK(adapter);
|
||||
EM_CORE_UNLOCK(adapter);
|
||||
|
||||
@ -934,6 +871,7 @@ em_detach(device_t dev)
|
||||
adapter->rx_desc_base = NULL;
|
||||
}
|
||||
|
||||
em_release_hw_control(adapter);
|
||||
EM_TX_LOCK_DESTROY(adapter);
|
||||
EM_RX_LOCK_DESTROY(adapter);
|
||||
EM_CORE_LOCK_DESTROY(adapter);
|
||||
@ -963,25 +901,9 @@ em_suspend(device_t dev)
|
||||
|
||||
EM_CORE_LOCK(adapter);
|
||||
|
||||
EM_TX_LOCK(adapter);
|
||||
em_stop(adapter);
|
||||
EM_TX_UNLOCK(adapter);
|
||||
|
||||
em_release_manageability(adapter);
|
||||
|
||||
if (((adapter->hw.mac.type == e1000_82573) ||
|
||||
(adapter->hw.mac.type == e1000_82583) ||
|
||||
(adapter->hw.mac.type == e1000_ich8lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich10lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich9lan)) &&
|
||||
e1000_check_mng_mode(&adapter->hw))
|
||||
em_release_hw_control(adapter);
|
||||
|
||||
if (adapter->wol) {
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_WUC, E1000_WUC_PME_EN);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_WUFC, adapter->wol);
|
||||
em_enable_wakeup(dev);
|
||||
}
|
||||
em_release_hw_control(adapter);
|
||||
em_enable_wakeup(dev);
|
||||
|
||||
EM_CORE_UNLOCK(adapter);
|
||||
|
||||
@ -1035,7 +957,7 @@ em_mq_start_locked(struct ifnet *ifp, struct mbuf *m)
|
||||
} else if (drbr_empty(ifp, adapter->br) &&
|
||||
(adapter->num_tx_desc_avail > EM_TX_OP_THRESHOLD)) {
|
||||
if ((error = em_xmit(adapter, &m)) != 0) {
|
||||
if (m != NULL)
|
||||
if (m)
|
||||
error = drbr_enqueue(ifp, adapter->br, m);
|
||||
return (error);
|
||||
} else {
|
||||
@ -1049,7 +971,7 @@ em_mq_start_locked(struct ifnet *ifp, struct mbuf *m)
|
||||
** listener and set the watchdog on.
|
||||
*/
|
||||
ETHER_BPF_MTAP(ifp, m);
|
||||
adapter->watchdog_timer = EM_TX_TIMEOUT;
|
||||
adapter->watchdog_check = TRUE;
|
||||
}
|
||||
} else if ((error = drbr_enqueue(ifp, adapter->br, m)) != 0)
|
||||
return (error);
|
||||
@ -1072,7 +994,7 @@ em_mq_start_locked(struct ifnet *ifp, struct mbuf *m)
|
||||
drbr_stats_update(ifp, next->m_pkthdr.len, next->m_flags);
|
||||
ETHER_BPF_MTAP(ifp, next);
|
||||
/* Set the watchdog */
|
||||
adapter->watchdog_timer = EM_TX_TIMEOUT;
|
||||
adapter->watchdog_check = TRUE;
|
||||
}
|
||||
|
||||
if (adapter->num_tx_desc_avail <= EM_TX_OP_THRESHOLD)
|
||||
@ -1151,7 +1073,7 @@ em_start_locked(struct ifnet *ifp)
|
||||
ETHER_BPF_MTAP(ifp, m_head);
|
||||
|
||||
/* Set timeout in case hardware has problems transmitting. */
|
||||
adapter->watchdog_timer = EM_TX_TIMEOUT;
|
||||
adapter->watchdog_check = TRUE;
|
||||
}
|
||||
if (adapter->num_tx_desc_avail <= EM_TX_OP_THRESHOLD)
|
||||
ifp->if_drv_flags |= IFF_DRV_OACTIVE;
|
||||
@ -1209,8 +1131,7 @@ em_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
em_init_locked(adapter);
|
||||
EM_CORE_UNLOCK(adapter);
|
||||
}
|
||||
if (!(ifp->if_flags & IFF_NOARP))
|
||||
arp_ifinit(ifp, ifa);
|
||||
arp_ifinit(ifp, ifa);
|
||||
} else
|
||||
#endif
|
||||
error = ether_ioctl(ifp, command, data);
|
||||
@ -1244,6 +1165,9 @@ em_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
case e1000_80003es2lan: /* Limit Jumbo Frame size */
|
||||
max_frame_size = 9234;
|
||||
break;
|
||||
case e1000_pchlan:
|
||||
max_frame_size = 4096;
|
||||
break;
|
||||
/* Adapters that do not support jumbo frames */
|
||||
case e1000_82542:
|
||||
case e1000_82583:
|
||||
@ -1359,11 +1283,17 @@ em_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
reinit = 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (mask & IFCAP_VLAN_HWTAGGING) {
|
||||
ifp->if_capenable ^= IFCAP_VLAN_HWTAGGING;
|
||||
reinit = 1;
|
||||
}
|
||||
if ((mask & IFCAP_WOL) &&
|
||||
(ifp->if_capabilities & IFCAP_WOL) != 0) {
|
||||
if (mask & IFCAP_WOL_MCAST)
|
||||
ifp->if_capenable ^= IFCAP_WOL_MCAST;
|
||||
if (mask & IFCAP_WOL_MAGIC)
|
||||
ifp->if_capenable ^= IFCAP_WOL_MAGIC;
|
||||
}
|
||||
if (reinit && (ifp->if_drv_flags & IFF_DRV_RUNNING))
|
||||
em_init(adapter);
|
||||
#if __FreeBSD_version >= 700000
|
||||
@ -1380,53 +1310,6 @@ em_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
||||
return (error);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* Watchdog timer:
|
||||
*
|
||||
* This routine is called from the local timer every second.
|
||||
* As long as transmit descriptors are being cleaned the value
|
||||
* is non-zero and we do nothing. Reaching 0 indicates a tx hang
|
||||
* and we then reset the device.
|
||||
*
|
||||
**********************************************************************/
|
||||
|
||||
static void
|
||||
em_watchdog(struct adapter *adapter)
|
||||
{
|
||||
|
||||
EM_CORE_LOCK_ASSERT(adapter);
|
||||
|
||||
/*
|
||||
** The timer is set to 5 every time start queues a packet.
|
||||
** Then txeof keeps resetting it as long as it cleans at
|
||||
** least one descriptor.
|
||||
** Finally, anytime all descriptors are clean the timer is
|
||||
** set to 0.
|
||||
*/
|
||||
EM_TX_LOCK(adapter);
|
||||
if ((adapter->watchdog_timer == 0) || (--adapter->watchdog_timer)) {
|
||||
EM_TX_UNLOCK(adapter);
|
||||
return;
|
||||
}
|
||||
|
||||
/* If we are in this routine because of pause frames, then
|
||||
* don't reset the hardware.
|
||||
*/
|
||||
if (E1000_READ_REG(&adapter->hw, E1000_STATUS) &
|
||||
E1000_STATUS_TXOFF) {
|
||||
adapter->watchdog_timer = EM_TX_TIMEOUT;
|
||||
EM_TX_UNLOCK(adapter);
|
||||
return;
|
||||
}
|
||||
|
||||
if (e1000_check_for_link(&adapter->hw) == 0)
|
||||
device_printf(adapter->dev, "watchdog timeout -- resetting\n");
|
||||
adapter->ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
|
||||
adapter->watchdog_events++;
|
||||
EM_TX_UNLOCK(adapter);
|
||||
|
||||
em_init_locked(adapter);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* Init entry point
|
||||
@ -1492,6 +1375,9 @@ em_init_locked(struct adapter *adapter)
|
||||
break;
|
||||
case e1000_ich9lan:
|
||||
case e1000_ich10lan:
|
||||
case e1000_pchlan:
|
||||
pba = E1000_PBA_10K;
|
||||
break;
|
||||
case e1000_ich8lan:
|
||||
pba = E1000_PBA_8K;
|
||||
break;
|
||||
@ -1614,6 +1500,10 @@ em_init_locked(struct adapter *adapter)
|
||||
#endif /* DEVICE_POLLING */
|
||||
em_enable_intr(adapter);
|
||||
|
||||
/* AMT based hardware can now take control from firmware */
|
||||
if (adapter->has_manage && adapter->has_amt)
|
||||
em_get_hw_control(adapter);
|
||||
|
||||
/* Don't reset the phy next time init gets called */
|
||||
adapter->hw.phy.reset_disable = TRUE;
|
||||
}
|
||||
@ -1667,7 +1557,7 @@ em_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
|
||||
if (!drbr_empty(ifp, adapter->br))
|
||||
em_mq_start_locked(ifp, NULL);
|
||||
#else
|
||||
if (!IFQ_DRV_IS_EMPTY(&ifp->snd))
|
||||
if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
|
||||
em_start_locked(ifp);
|
||||
#endif
|
||||
EM_TX_UNLOCK(adapter);
|
||||
@ -1769,7 +1659,7 @@ em_handle_rxtx(void *context, int pending)
|
||||
if (!drbr_empty(ifp, adapter->br))
|
||||
em_mq_start_locked(ifp, NULL);
|
||||
#else
|
||||
if (!IFQ_DRV_IS_EMPTY(&ifp->snd))
|
||||
if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
|
||||
em_start_locked(ifp);
|
||||
#endif
|
||||
EM_TX_UNLOCK(adapter);
|
||||
@ -1933,7 +1823,7 @@ em_handle_tx(void *context, int pending)
|
||||
if (!drbr_empty(ifp, adapter->br))
|
||||
em_mq_start_locked(ifp, NULL);
|
||||
#else
|
||||
if (!IFQ_DRV_IS_EMPTY(&ifp->snd))
|
||||
if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
|
||||
em_start_locked(ifp);
|
||||
#endif
|
||||
EM_TX_UNLOCK(adapter);
|
||||
@ -2541,7 +2431,11 @@ em_set_multi(struct adapter *adapter)
|
||||
if (mta == NULL)
|
||||
panic("em_set_multi memory failure\n");
|
||||
|
||||
#if __FreeBSD_version < 800000
|
||||
IF_ADDR_LOCK(ifp);
|
||||
#else
|
||||
if_maddr_rlock(ifp);
|
||||
#endif
|
||||
TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
|
||||
if (ifma->ifma_addr->sa_family != AF_LINK)
|
||||
continue;
|
||||
@ -2553,8 +2447,11 @@ em_set_multi(struct adapter *adapter)
|
||||
&mta[mcnt * ETH_ADDR_LEN], ETH_ADDR_LEN);
|
||||
mcnt++;
|
||||
}
|
||||
#if __FreeBSD_version < 800000
|
||||
IF_ADDR_UNLOCK(ifp);
|
||||
#else
|
||||
if_maddr_runlock(ifp);
|
||||
|
||||
#endif
|
||||
if (mcnt >= MAX_NUM_MULTICAST_ADDRESSES) {
|
||||
reg_rctl = E1000_READ_REG(&adapter->hw, E1000_RCTL);
|
||||
reg_rctl |= E1000_RCTL_MPE;
|
||||
@ -2605,13 +2502,21 @@ em_local_timer(void *arg)
|
||||
em_smartspeed(adapter);
|
||||
|
||||
/*
|
||||
* Each second we check the watchdog to
|
||||
* protect against hardware hangs.
|
||||
* We check the watchdog: the time since
|
||||
* the last TX descriptor was cleaned.
|
||||
* This implies a functional TX engine.
|
||||
*/
|
||||
em_watchdog(adapter);
|
||||
if ((adapter->watchdog_check == TRUE) &&
|
||||
(ticks - adapter->watchdog_time > EM_WATCHDOG))
|
||||
goto hung;
|
||||
|
||||
callout_reset(&adapter->timer, hz, em_local_timer, adapter);
|
||||
|
||||
return;
|
||||
hung:
|
||||
device_printf(adapter->dev, "Watchdog timeout -- resetting\n");
|
||||
adapter->ifp->if_drv_flags &= ~IFF_DRV_RUNNING;
|
||||
adapter->watchdog_events++;
|
||||
em_init_locked(adapter);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -2677,7 +2582,7 @@ em_update_link_status(struct adapter *adapter)
|
||||
device_printf(dev, "Link is Down\n");
|
||||
adapter->link_active = 0;
|
||||
/* Link down, disable watchdog */
|
||||
adapter->watchdog_timer = FALSE;
|
||||
adapter->watchdog_check = FALSE;
|
||||
if_link_state_change(ifp, LINK_STATE_DOWN);
|
||||
}
|
||||
}
|
||||
@ -3093,15 +2998,6 @@ em_hardware_init(struct adapter *adapter)
|
||||
/* Issue a global reset */
|
||||
e1000_reset_hw(&adapter->hw);
|
||||
|
||||
/* Get control from any management/hw control */
|
||||
if (((adapter->hw.mac.type == e1000_82573) ||
|
||||
(adapter->hw.mac.type == e1000_82583) ||
|
||||
(adapter->hw.mac.type == e1000_ich8lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich10lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich9lan)) &&
|
||||
e1000_check_mng_mode(&adapter->hw))
|
||||
em_get_hw_control(adapter);
|
||||
|
||||
/* When hardware is reset, fifo_head is also reset */
|
||||
adapter->tx_fifo_head = 0;
|
||||
|
||||
@ -3151,6 +3047,9 @@ em_hardware_init(struct adapter *adapter)
|
||||
else
|
||||
adapter->hw.fc.requested_mode = e1000_fc_none;
|
||||
|
||||
/* Override - workaround for PCHLAN issue */
|
||||
if (adapter->hw.mac.type == e1000_pchlan)
|
||||
adapter->hw.fc.requested_mode = e1000_fc_rx_pause;
|
||||
|
||||
if (e1000_init_hw(&adapter->hw) < 0) {
|
||||
device_printf(dev, "Hardware Initialization Failed\n");
|
||||
@ -3233,6 +3132,12 @@ em_setup_interface(device_t dev, struct adapter *adapter)
|
||||
ifp->if_capabilities |= IFCAP_POLLING;
|
||||
#endif
|
||||
|
||||
/* Enable All WOL methods by default */
|
||||
if (adapter->wol) {
|
||||
ifp->if_capabilities |= IFCAP_WOL;
|
||||
ifp->if_capenable |= IFCAP_WOL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Specify the media types supported by this adapter and register
|
||||
* callbacks to update media and link information
|
||||
@ -3299,7 +3204,7 @@ em_smartspeed(struct adapter *adapter)
|
||||
PHY_1000T_CTRL, phy_tmp);
|
||||
adapter->smartspeed++;
|
||||
if(adapter->hw.mac.autoneg &&
|
||||
!e1000_phy_setup_autoneg(&adapter->hw) &&
|
||||
!e1000_copper_link_autoneg(&adapter->hw) &&
|
||||
!e1000_read_phy_reg(&adapter->hw,
|
||||
PHY_CONTROL, &phy_tmp)) {
|
||||
phy_tmp |= (MII_CR_AUTO_NEG_EN |
|
||||
@ -3316,7 +3221,7 @@ em_smartspeed(struct adapter *adapter)
|
||||
phy_tmp |= CR_1000T_MS_ENABLE;
|
||||
e1000_write_phy_reg(&adapter->hw, PHY_1000T_CTRL, phy_tmp);
|
||||
if(adapter->hw.mac.autoneg &&
|
||||
!e1000_phy_setup_autoneg(&adapter->hw) &&
|
||||
!e1000_copper_link_autoneg(&adapter->hw) &&
|
||||
!e1000_read_phy_reg(&adapter->hw, PHY_CONTROL, &phy_tmp)) {
|
||||
phy_tmp |= (MII_CR_AUTO_NEG_EN |
|
||||
MII_CR_RESTART_AUTO_NEG);
|
||||
@ -3975,7 +3880,6 @@ static void
|
||||
em_txeof(struct adapter *adapter)
|
||||
{
|
||||
int first, last, done, num_avail;
|
||||
u32 cleaned = 0;
|
||||
struct em_buffer *tx_buffer;
|
||||
struct e1000_tx_desc *tx_desc, *eop_desc;
|
||||
struct ifnet *ifp = adapter->ifp;
|
||||
@ -4011,7 +3915,7 @@ em_txeof(struct adapter *adapter)
|
||||
tx_desc->upper.data = 0;
|
||||
tx_desc->lower.data = 0;
|
||||
tx_desc->buffer_addr = 0;
|
||||
++num_avail; ++cleaned;
|
||||
++num_avail;
|
||||
|
||||
if (tx_buffer->m_head) {
|
||||
ifp->if_opackets++;
|
||||
@ -4025,6 +3929,7 @@ em_txeof(struct adapter *adapter)
|
||||
tx_buffer->m_head = NULL;
|
||||
}
|
||||
tx_buffer->next_eop = -1;
|
||||
adapter->watchdog_time = ticks;
|
||||
|
||||
if (++first == adapter->num_tx_desc)
|
||||
first = 0;
|
||||
@ -4050,20 +3955,17 @@ em_txeof(struct adapter *adapter)
|
||||
/*
|
||||
* If we have enough room, clear IFF_DRV_OACTIVE to
|
||||
* tell the stack that it is OK to send packets.
|
||||
* If there are no pending descriptors, clear the timeout.
|
||||
* If there are no pending descriptors, clear the watchdog.
|
||||
*/
|
||||
if (num_avail > EM_TX_CLEANUP_THRESHOLD) {
|
||||
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
|
||||
if (num_avail == adapter->num_tx_desc) {
|
||||
adapter->watchdog_timer = 0;
|
||||
adapter->watchdog_check = FALSE;
|
||||
adapter->num_tx_desc_avail = num_avail;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/* If any descriptors cleaned, reset the watchdog */
|
||||
if (cleaned)
|
||||
adapter->watchdog_timer = EM_TX_TIMEOUT;
|
||||
adapter->num_tx_desc_avail = num_avail;
|
||||
return;
|
||||
}
|
||||
@ -4071,7 +3973,7 @@ em_txeof(struct adapter *adapter)
|
||||
/*********************************************************************
|
||||
*
|
||||
* When Link is lost sometimes there is work still in the TX ring
|
||||
* which will result in a watchdog, rather than allow that do an
|
||||
* which may result in a watchdog, rather than allow that we do an
|
||||
* attempted cleanup and then reinit here. Note that this has been
|
||||
* seens mostly with fiber adapters.
|
||||
*
|
||||
@ -4079,14 +3981,12 @@ em_txeof(struct adapter *adapter)
|
||||
static void
|
||||
em_tx_purge(struct adapter *adapter)
|
||||
{
|
||||
if ((!adapter->link_active) && (adapter->watchdog_timer)) {
|
||||
if ((!adapter->link_active) && (adapter->watchdog_check)) {
|
||||
EM_TX_LOCK(adapter);
|
||||
em_txeof(adapter);
|
||||
EM_TX_UNLOCK(adapter);
|
||||
if (adapter->watchdog_timer) { /* Still not clean? */
|
||||
adapter->watchdog_timer = 0;
|
||||
if (adapter->watchdog_check) /* Still outstanding? */
|
||||
em_init_locked(adapter);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -4877,72 +4777,54 @@ em_release_manageability(struct adapter *adapter)
|
||||
}
|
||||
|
||||
/*
|
||||
* em_get_hw_control sets {CTRL_EXT|FWSM}:DRV_LOAD bit.
|
||||
* For ASF and Pass Through versions of f/w this means that
|
||||
* the driver is loaded. For AMT version (only with 82573)
|
||||
* of the f/w this means that the network i/f is open.
|
||||
*
|
||||
* em_get_hw_control sets the {CTRL_EXT|FWSM}:DRV_LOAD bit.
|
||||
* For ASF and Pass Through versions of f/w this means
|
||||
* that the driver is loaded. For AMT version type f/w
|
||||
* this means that the network i/f is open.
|
||||
*/
|
||||
static void
|
||||
em_get_hw_control(struct adapter *adapter)
|
||||
{
|
||||
u32 ctrl_ext, swsm;
|
||||
|
||||
/* Let firmware know the driver has taken over */
|
||||
switch (adapter->hw.mac.type) {
|
||||
case e1000_82573:
|
||||
if (adapter->hw.mac.type == e1000_82573) {
|
||||
swsm = E1000_READ_REG(&adapter->hw, E1000_SWSM);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_SWSM,
|
||||
swsm | E1000_SWSM_DRV_LOAD);
|
||||
break;
|
||||
case e1000_82571:
|
||||
case e1000_82572:
|
||||
case e1000_80003es2lan:
|
||||
case e1000_ich8lan:
|
||||
case e1000_ich9lan:
|
||||
case e1000_ich10lan:
|
||||
ctrl_ext = E1000_READ_REG(&adapter->hw, E1000_CTRL_EXT);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_CTRL_EXT,
|
||||
ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
return;
|
||||
}
|
||||
/* else */
|
||||
ctrl_ext = E1000_READ_REG(&adapter->hw, E1000_CTRL_EXT);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_CTRL_EXT,
|
||||
ctrl_ext | E1000_CTRL_EXT_DRV_LOAD);
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
* em_release_hw_control resets {CTRL_EXT|FWSM}:DRV_LOAD bit.
|
||||
* For ASF and Pass Through versions of f/w this means that the
|
||||
* driver is no longer loaded. For AMT version (only with 82573) i
|
||||
* of the f/w this means that the network i/f is closed.
|
||||
*
|
||||
* For ASF and Pass Through versions of f/w this means that
|
||||
* the driver is no longer loaded. For AMT versions of the
|
||||
* f/w this means that the network i/f is closed.
|
||||
*/
|
||||
static void
|
||||
em_release_hw_control(struct adapter *adapter)
|
||||
{
|
||||
u32 ctrl_ext, swsm;
|
||||
|
||||
/* Let firmware taken over control of h/w */
|
||||
switch (adapter->hw.mac.type) {
|
||||
case e1000_82573:
|
||||
if (!adapter->has_manage)
|
||||
return;
|
||||
|
||||
if (adapter->hw.mac.type == e1000_82573) {
|
||||
swsm = E1000_READ_REG(&adapter->hw, E1000_SWSM);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_SWSM,
|
||||
swsm & ~E1000_SWSM_DRV_LOAD);
|
||||
break;
|
||||
case e1000_82571:
|
||||
case e1000_82572:
|
||||
case e1000_80003es2lan:
|
||||
case e1000_ich8lan:
|
||||
case e1000_ich9lan:
|
||||
case e1000_ich10lan:
|
||||
ctrl_ext = E1000_READ_REG(&adapter->hw, E1000_CTRL_EXT);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_CTRL_EXT,
|
||||
ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
return;
|
||||
}
|
||||
/* else */
|
||||
ctrl_ext = E1000_READ_REG(&adapter->hw, E1000_CTRL_EXT);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_CTRL_EXT,
|
||||
ctrl_ext & ~E1000_CTRL_EXT_DRV_LOAD);
|
||||
return;
|
||||
}
|
||||
|
||||
static int
|
||||
@ -4957,30 +4839,252 @@ em_is_valid_ether_addr(u8 *addr)
|
||||
return (TRUE);
|
||||
}
|
||||
|
||||
/*
|
||||
** Parse the interface capabilities with regard
|
||||
** to both system management and wake-on-lan for
|
||||
** later use.
|
||||
*/
|
||||
static void
|
||||
em_get_wakeup(device_t dev)
|
||||
{
|
||||
struct adapter *adapter = device_get_softc(dev);
|
||||
u16 eeprom_data = 0, device_id, apme_mask;
|
||||
|
||||
adapter->has_manage = e1000_enable_mng_pass_thru(&adapter->hw);
|
||||
apme_mask = EM_EEPROM_APME;
|
||||
|
||||
switch (adapter->hw.mac.type) {
|
||||
case e1000_82542:
|
||||
case e1000_82543:
|
||||
break;
|
||||
case e1000_82544:
|
||||
e1000_read_nvm(&adapter->hw,
|
||||
NVM_INIT_CONTROL2_REG, 1, &eeprom_data);
|
||||
apme_mask = EM_82544_APME;
|
||||
break;
|
||||
case e1000_82573:
|
||||
case e1000_82583:
|
||||
adapter->has_amt = TRUE;
|
||||
/* Falls thru */
|
||||
case e1000_82546:
|
||||
case e1000_82546_rev_3:
|
||||
case e1000_82571:
|
||||
case e1000_82572:
|
||||
case e1000_80003es2lan:
|
||||
if (adapter->hw.bus.func == 1) {
|
||||
e1000_read_nvm(&adapter->hw,
|
||||
NVM_INIT_CONTROL3_PORT_B, 1, &eeprom_data);
|
||||
break;
|
||||
} else
|
||||
e1000_read_nvm(&adapter->hw,
|
||||
NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
|
||||
break;
|
||||
case e1000_ich8lan:
|
||||
case e1000_ich9lan:
|
||||
case e1000_ich10lan:
|
||||
case e1000_pchlan:
|
||||
apme_mask = E1000_WUC_APME;
|
||||
adapter->has_amt = TRUE;
|
||||
eeprom_data = E1000_READ_REG(&adapter->hw, E1000_WUC);
|
||||
break;
|
||||
default:
|
||||
e1000_read_nvm(&adapter->hw,
|
||||
NVM_INIT_CONTROL3_PORT_A, 1, &eeprom_data);
|
||||
break;
|
||||
}
|
||||
if (eeprom_data & apme_mask)
|
||||
adapter->wol = (E1000_WUFC_MAG | E1000_WUFC_MC);
|
||||
/*
|
||||
* We have the eeprom settings, now apply the special cases
|
||||
* where the eeprom may be wrong or the board won't support
|
||||
* wake on lan on a particular port
|
||||
*/
|
||||
device_id = pci_get_device(dev);
|
||||
switch (device_id) {
|
||||
case E1000_DEV_ID_82546GB_PCIE:
|
||||
adapter->wol = 0;
|
||||
break;
|
||||
case E1000_DEV_ID_82546EB_FIBER:
|
||||
case E1000_DEV_ID_82546GB_FIBER:
|
||||
case E1000_DEV_ID_82571EB_FIBER:
|
||||
/* Wake events only supported on port A for dual fiber
|
||||
* regardless of eeprom setting */
|
||||
if (E1000_READ_REG(&adapter->hw, E1000_STATUS) &
|
||||
E1000_STATUS_FUNC_1)
|
||||
adapter->wol = 0;
|
||||
break;
|
||||
case E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3:
|
||||
case E1000_DEV_ID_82571EB_QUAD_COPPER:
|
||||
case E1000_DEV_ID_82571EB_QUAD_FIBER:
|
||||
case E1000_DEV_ID_82571EB_QUAD_COPPER_LP:
|
||||
/* if quad port adapter, disable WoL on all but port A */
|
||||
if (global_quad_port_a != 0)
|
||||
adapter->wol = 0;
|
||||
/* Reset for multiple quad port adapters */
|
||||
if (++global_quad_port_a == 4)
|
||||
global_quad_port_a = 0;
|
||||
break;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Enable PCI Wake On Lan capability
|
||||
*/
|
||||
void
|
||||
em_enable_wakeup(device_t dev)
|
||||
{
|
||||
u16 cap, status;
|
||||
u8 id;
|
||||
struct adapter *adapter = device_get_softc(dev);
|
||||
struct ifnet *ifp = adapter->ifp;
|
||||
u32 pmc, ctrl, ctrl_ext, rctl;
|
||||
u16 status;
|
||||
|
||||
/* First find the capabilities pointer*/
|
||||
cap = pci_read_config(dev, PCIR_CAP_PTR, 2);
|
||||
/* Read the PM Capabilities */
|
||||
id = pci_read_config(dev, cap, 1);
|
||||
if (id != PCIY_PMG) /* Something wrong */
|
||||
if ((pci_find_extcap(dev, PCIY_PMG, &pmc) != 0))
|
||||
return;
|
||||
/* OK, we have the power capabilities, so
|
||||
now get the status register */
|
||||
cap += PCIR_POWER_STATUS;
|
||||
status = pci_read_config(dev, cap, 2);
|
||||
status |= PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE;
|
||||
pci_write_config(dev, cap, status, 2);
|
||||
|
||||
/* Advertise the wakeup capability */
|
||||
ctrl = E1000_READ_REG(&adapter->hw, E1000_CTRL);
|
||||
ctrl |= (E1000_CTRL_SWDPIN2 | E1000_CTRL_SWDPIN3);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_CTRL, ctrl);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_WUC, E1000_WUC_PME_EN);
|
||||
|
||||
/* ICH workaround code */
|
||||
if ((adapter->hw.mac.type == e1000_ich8lan) ||
|
||||
(adapter->hw.mac.type == e1000_pchlan) ||
|
||||
(adapter->hw.mac.type == e1000_ich9lan) ||
|
||||
(adapter->hw.mac.type == e1000_ich10lan)) {
|
||||
e1000_disable_gig_wol_ich8lan(&adapter->hw);
|
||||
e1000_hv_phy_powerdown_workaround_ich8lan(&adapter->hw);
|
||||
}
|
||||
|
||||
/* Keep the laser running on Fiber adapters */
|
||||
if (adapter->hw.phy.media_type == e1000_media_type_fiber ||
|
||||
adapter->hw.phy.media_type == e1000_media_type_internal_serdes) {
|
||||
ctrl_ext = E1000_READ_REG(&adapter->hw, E1000_CTRL_EXT);
|
||||
ctrl_ext |= E1000_CTRL_EXT_SDP3_DATA;
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_CTRL_EXT, ctrl_ext);
|
||||
}
|
||||
|
||||
/*
|
||||
** Determine type of Wakeup: note that wol
|
||||
** is set with all bits on by default.
|
||||
*/
|
||||
if ((ifp->if_capenable & IFCAP_WOL_MAGIC) == 0)
|
||||
adapter->wol &= ~E1000_WUFC_MAG;
|
||||
|
||||
if ((ifp->if_capenable & IFCAP_WOL_MCAST) == 0)
|
||||
adapter->wol &= ~E1000_WUFC_MC;
|
||||
else {
|
||||
rctl = E1000_READ_REG(&adapter->hw, E1000_RCTL);
|
||||
rctl |= E1000_RCTL_MPE;
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_RCTL, rctl);
|
||||
}
|
||||
|
||||
if (adapter->hw.mac.type == e1000_pchlan) {
|
||||
if (em_enable_phy_wakeup(adapter))
|
||||
return;
|
||||
} else {
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_WUC, E1000_WUC_PME_EN);
|
||||
E1000_WRITE_REG(&adapter->hw, E1000_WUFC, adapter->wol);
|
||||
}
|
||||
|
||||
if (adapter->hw.phy.type == e1000_phy_igp_3)
|
||||
e1000_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw);
|
||||
|
||||
/* Request PME */
|
||||
status = pci_read_config(dev, pmc + PCIR_POWER_STATUS, 2);
|
||||
status &= ~(PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE);
|
||||
if (ifp->if_capenable & IFCAP_WOL)
|
||||
status |= PCIM_PSTAT_PME | PCIM_PSTAT_PMEENABLE;
|
||||
pci_write_config(dev, pmc + PCIR_POWER_STATUS, status, 2);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
** WOL in the newer chipset interfaces (pchlan)
|
||||
** require thing to be copied into the phy
|
||||
*/
|
||||
static int
|
||||
em_enable_phy_wakeup(struct adapter *adapter)
|
||||
{
|
||||
struct e1000_hw *hw = &adapter->hw;
|
||||
u32 mreg, ret = 0;
|
||||
u16 preg;
|
||||
|
||||
/* copy MAC RARs to PHY RARs */
|
||||
for (int i = 0; i < adapter->hw.mac.rar_entry_count; i++) {
|
||||
mreg = E1000_READ_REG(hw, E1000_RAL(i));
|
||||
e1000_write_phy_reg(hw, BM_RAR_L(i), (u16)(mreg & 0xFFFF));
|
||||
e1000_write_phy_reg(hw, BM_RAR_M(i),
|
||||
(u16)((mreg >> 16) & 0xFFFF));
|
||||
mreg = E1000_READ_REG(hw, E1000_RAH(i));
|
||||
e1000_write_phy_reg(hw, BM_RAR_H(i), (u16)(mreg & 0xFFFF));
|
||||
e1000_write_phy_reg(hw, BM_RAR_CTRL(i),
|
||||
(u16)((mreg >> 16) & 0xFFFF));
|
||||
}
|
||||
|
||||
/* copy MAC MTA to PHY MTA */
|
||||
for (int i = 0; i < adapter->hw.mac.mta_reg_count; i++) {
|
||||
mreg = E1000_READ_REG_ARRAY(hw, E1000_MTA, i);
|
||||
e1000_write_phy_reg(hw, BM_MTA(i), (u16)(mreg & 0xFFFF));
|
||||
e1000_write_phy_reg(hw, BM_MTA(i) + 1,
|
||||
(u16)((mreg >> 16) & 0xFFFF));
|
||||
}
|
||||
|
||||
/* configure PHY Rx Control register */
|
||||
e1000_read_phy_reg(&adapter->hw, BM_RCTL, &preg);
|
||||
mreg = E1000_READ_REG(hw, E1000_RCTL);
|
||||
if (mreg & E1000_RCTL_UPE)
|
||||
preg |= BM_RCTL_UPE;
|
||||
if (mreg & E1000_RCTL_MPE)
|
||||
preg |= BM_RCTL_MPE;
|
||||
preg &= ~(BM_RCTL_MO_MASK);
|
||||
if (mreg & E1000_RCTL_MO_3)
|
||||
preg |= (((mreg & E1000_RCTL_MO_3) >> E1000_RCTL_MO_SHIFT)
|
||||
<< BM_RCTL_MO_SHIFT);
|
||||
if (mreg & E1000_RCTL_BAM)
|
||||
preg |= BM_RCTL_BAM;
|
||||
if (mreg & E1000_RCTL_PMCF)
|
||||
preg |= BM_RCTL_PMCF;
|
||||
mreg = E1000_READ_REG(hw, E1000_CTRL);
|
||||
if (mreg & E1000_CTRL_RFCE)
|
||||
preg |= BM_RCTL_RFCE;
|
||||
e1000_write_phy_reg(&adapter->hw, BM_RCTL, preg);
|
||||
|
||||
/* enable PHY wakeup in MAC register */
|
||||
E1000_WRITE_REG(hw, E1000_WUC,
|
||||
E1000_WUC_PHY_WAKE | E1000_WUC_PME_EN);
|
||||
E1000_WRITE_REG(hw, E1000_WUFC, adapter->wol);
|
||||
|
||||
/* configure and enable PHY wakeup in PHY registers */
|
||||
e1000_write_phy_reg(&adapter->hw, BM_WUFC, adapter->wol);
|
||||
e1000_write_phy_reg(&adapter->hw, BM_WUC, E1000_WUC_PME_EN);
|
||||
|
||||
/* activate PHY wakeup */
|
||||
ret = hw->phy.ops.acquire(hw);
|
||||
if (ret) {
|
||||
printf("Could not acquire PHY\n");
|
||||
return ret;
|
||||
}
|
||||
e1000_write_phy_reg_mdic(hw, IGP01E1000_PHY_PAGE_SELECT,
|
||||
(BM_WUC_ENABLE_PAGE << IGP_PAGE_SHIFT));
|
||||
ret = e1000_read_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, &preg);
|
||||
if (ret) {
|
||||
printf("Could not read PHY page 769\n");
|
||||
goto out;
|
||||
}
|
||||
preg |= BM_WUC_ENABLE_BIT | BM_WUC_HOST_WU_BIT;
|
||||
ret = e1000_write_phy_reg_mdic(hw, BM_WUC_ENABLE_REG, preg);
|
||||
if (ret)
|
||||
printf("Could not set PHY Host Wakeup bit\n");
|
||||
out:
|
||||
hw->phy.ops.release(hw);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
* 82544 Coexistence issue workaround.
|
||||
|
@ -135,9 +135,9 @@
|
||||
#define EM_RADV 64
|
||||
|
||||
/*
|
||||
* This parameter controls the duration of transmit watchdog timer.
|
||||
* This parameter controls the max duration of transmit watchdog.
|
||||
*/
|
||||
#define EM_TX_TIMEOUT 5
|
||||
#define EM_WATCHDOG (5 * hz)
|
||||
|
||||
/*
|
||||
* This parameter controls when the driver calls the routine to reclaim
|
||||
@ -189,6 +189,7 @@
|
||||
#define ETHER_ALIGN 2
|
||||
#define EM_FC_PAUSE_TIME 0x0680
|
||||
#define EM_EEPROM_APME 0x400;
|
||||
#define EM_82544_APME 0x0004;
|
||||
|
||||
/* Code compatilbility between 6 and 7 */
|
||||
#ifndef ETHER_BPF_MTAP
|
||||
@ -308,7 +309,8 @@ struct adapter {
|
||||
struct ifmedia media;
|
||||
struct callout timer;
|
||||
struct callout tx_fifo_timer;
|
||||
int watchdog_timer;
|
||||
bool watchdog_check;
|
||||
int watchdog_time;
|
||||
int msi;
|
||||
int if_flags;
|
||||
int max_frame_size;
|
||||
@ -332,8 +334,9 @@ struct adapter {
|
||||
#endif
|
||||
|
||||
/* Management and WOL features */
|
||||
int wol;
|
||||
int has_manage;
|
||||
u32 wol;
|
||||
bool has_manage;
|
||||
bool has_amt;
|
||||
|
||||
/* Info about the board itself */
|
||||
uint8_t link_active;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -48,7 +48,7 @@
|
||||
* (num_tx_desc * sizeof(struct e1000_tx_desc)) % 128 == 0
|
||||
*/
|
||||
#define IGB_MIN_TXD 80
|
||||
#define IGB_DEFAULT_TXD 256
|
||||
#define IGB_DEFAULT_TXD 1024
|
||||
#define IGB_MAX_TXD 4096
|
||||
|
||||
/*
|
||||
@ -63,7 +63,7 @@
|
||||
* (num_tx_desc * sizeof(struct e1000_tx_desc)) % 128 == 0
|
||||
*/
|
||||
#define IGB_MIN_RXD 80
|
||||
#define IGB_DEFAULT_RXD 256
|
||||
#define IGB_DEFAULT_RXD 1024
|
||||
#define IGB_MAX_RXD 4096
|
||||
|
||||
/*
|
||||
@ -128,7 +128,7 @@
|
||||
/*
|
||||
* This parameter controls the duration of transmit watchdog timer.
|
||||
*/
|
||||
#define IGB_TX_TIMEOUT 5 /* set to 5 seconds */
|
||||
#define IGB_WATCHDOG (10 * hz)
|
||||
|
||||
/*
|
||||
* This parameter controls when the driver calls the routine to reclaim
|
||||
@ -225,6 +225,7 @@
|
||||
#define IGB_TSO_SIZE (65535 + sizeof(struct ether_vlan_header))
|
||||
#define IGB_TSO_SEG_SIZE 4096 /* Max dma segment size */
|
||||
#define IGB_HDR_BUF 128
|
||||
#define IGB_PKTTYPE_MASK 0x0000FFF0
|
||||
#define ETH_ZLEN 60
|
||||
#define ETH_ADDR_LEN 6
|
||||
|
||||
@ -235,11 +236,6 @@
|
||||
#define CSUM_OFFLOAD (CSUM_IP|CSUM_TCP|CSUM_UDP)
|
||||
#endif
|
||||
|
||||
/* Header split codes for get_buf */
|
||||
#define IGB_CLEAN_HEADER 1
|
||||
#define IGB_CLEAN_PAYLOAD 2
|
||||
#define IGB_CLEAN_BOTH 3
|
||||
|
||||
/*
|
||||
* Interrupt Moderation parameters
|
||||
*/
|
||||
@ -280,6 +276,7 @@ struct tx_ring {
|
||||
struct igb_dma_alloc txdma; /* bus_dma glue for tx desc */
|
||||
struct e1000_tx_desc *tx_base;
|
||||
struct task tx_task; /* cleanup tasklet */
|
||||
struct taskqueue *tq;
|
||||
u32 next_avail_desc;
|
||||
u32 next_to_clean;
|
||||
volatile u16 tx_avail;
|
||||
@ -291,7 +288,8 @@ struct tx_ring {
|
||||
struct resource *res;
|
||||
void *tag;
|
||||
|
||||
u32 watchdog_timer;
|
||||
bool watchdog_check;
|
||||
int watchdog_time;
|
||||
u64 no_desc_avail;
|
||||
u64 tx_irq;
|
||||
u64 tx_packets;
|
||||
@ -311,13 +309,14 @@ struct rx_ring {
|
||||
bool lro_enabled;
|
||||
bool hdr_split;
|
||||
struct task rx_task; /* cleanup tasklet */
|
||||
struct taskqueue *tq;
|
||||
struct mtx rx_mtx;
|
||||
char mtx_name[16];
|
||||
u32 last_cleaned;
|
||||
u32 next_to_check;
|
||||
struct igb_rx_buffer *rx_buffers;
|
||||
struct igb_rx_buf *rx_buffers;
|
||||
bus_dma_tag_t rxtag; /* dma tag for tx */
|
||||
bus_dmamap_t rx_spare_map;
|
||||
bus_dmamap_t spare_map;
|
||||
/*
|
||||
* First/last mbuf pointers, for
|
||||
* collecting multisegment RX packets.
|
||||
@ -364,7 +363,6 @@ struct adapter {
|
||||
int min_frame_size;
|
||||
struct mtx core_mtx;
|
||||
int igb_insert_vlan_header;
|
||||
struct task link_task;
|
||||
struct task rxtx_task;
|
||||
struct taskqueue *tq; /* private task queue */
|
||||
u16 num_queues;
|
||||
@ -445,7 +443,7 @@ struct igb_tx_buffer {
|
||||
bus_dmamap_t map; /* bus_dma map for packet */
|
||||
};
|
||||
|
||||
struct igb_rx_buffer {
|
||||
struct igb_rx_buf {
|
||||
struct mbuf *m_head;
|
||||
struct mbuf *m_pack;
|
||||
bus_dmamap_t map; /* bus_dma map for packet */
|
||||
@ -454,12 +452,12 @@ struct igb_rx_buffer {
|
||||
#define IGB_CORE_LOCK_INIT(_sc, _name) \
|
||||
mtx_init(&(_sc)->core_mtx, _name, "IGB Core Lock", MTX_DEF)
|
||||
#define IGB_CORE_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->core_mtx)
|
||||
#define IGB_TX_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->tx_mtx)
|
||||
#define IGB_RX_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->rx_mtx)
|
||||
#define IGB_TX_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->tx_mtx)
|
||||
#define IGB_RX_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->rx_mtx)
|
||||
#define IGB_CORE_LOCK(_sc) mtx_lock(&(_sc)->core_mtx)
|
||||
#define IGB_TX_LOCK(_sc) mtx_lock(&(_sc)->tx_mtx)
|
||||
#define IGB_TX_TRYLOCK(_sc) mtx_trylock(&(_sc)->tx_mtx)
|
||||
#define IGB_RX_LOCK(_sc) mtx_lock(&(_sc)->rx_mtx)
|
||||
#define IGB_TX_LOCK(_sc) mtx_lock(&(_sc)->tx_mtx)
|
||||
#define IGB_TX_TRYLOCK(_sc) mtx_trylock(&(_sc)->tx_mtx)
|
||||
#define IGB_RX_LOCK(_sc) mtx_lock(&(_sc)->rx_mtx)
|
||||
#define IGB_CORE_UNLOCK(_sc) mtx_unlock(&(_sc)->core_mtx)
|
||||
#define IGB_TX_UNLOCK(_sc) mtx_unlock(&(_sc)->tx_mtx)
|
||||
#define IGB_RX_UNLOCK(_sc) mtx_unlock(&(_sc)->rx_mtx)
|
||||
|
Loading…
Reference in New Issue
Block a user