diff options
author | Bruce Allan <bruce.w.allan@intel.com> | 2010-01-12 21:05:18 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-13 23:31:57 -0500 |
commit | f4d2dd4cd4d001f5dc20fc76c780c0c20c000c23 (patch) | |
tree | c056667e1787a0f9c63d42f7a61924cf98a52eb5 /drivers/net/e1000e/lib.c | |
parent | 608f8a0d014db6cd18d4f535934d4b5d556e3013 (diff) |
e1000e: provide MAC-family-specific function to set LAN ID
Provide MAC-specific function pointer to determine the LAN ID (PCI func).
The LAN ID is used internally by the driver to determine which h/w lock
to use to protect accessing the PHY on ESB2 as well as help to determine
the alternate MAC address on some parts.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/e1000e/lib.c')
-rw-r--r-- | drivers/net/e1000e/lib.c | 48 |
1 files changed, 37 insertions, 11 deletions
diff --git a/drivers/net/e1000e/lib.c b/drivers/net/e1000e/lib.c index 547542428edc..5f6b17148d34 100644 --- a/drivers/net/e1000e/lib.c +++ b/drivers/net/e1000e/lib.c | |||
@@ -51,10 +51,10 @@ enum e1000_mng_mode { | |||
51 | **/ | 51 | **/ |
52 | s32 e1000e_get_bus_info_pcie(struct e1000_hw *hw) | 52 | s32 e1000e_get_bus_info_pcie(struct e1000_hw *hw) |
53 | { | 53 | { |
54 | struct e1000_mac_info *mac = &hw->mac; | ||
54 | struct e1000_bus_info *bus = &hw->bus; | 55 | struct e1000_bus_info *bus = &hw->bus; |
55 | struct e1000_adapter *adapter = hw->adapter; | 56 | struct e1000_adapter *adapter = hw->adapter; |
56 | u32 status; | 57 | u16 pcie_link_status, cap_offset; |
57 | u16 pcie_link_status, pci_header_type, cap_offset; | ||
58 | 58 | ||
59 | cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP); | 59 | cap_offset = pci_find_capability(adapter->pdev, PCI_CAP_ID_EXP); |
60 | if (!cap_offset) { | 60 | if (!cap_offset) { |
@@ -68,20 +68,46 @@ s32 e1000e_get_bus_info_pcie(struct e1000_hw *hw) | |||
68 | PCIE_LINK_WIDTH_SHIFT); | 68 | PCIE_LINK_WIDTH_SHIFT); |
69 | } | 69 | } |
70 | 70 | ||
71 | pci_read_config_word(adapter->pdev, PCI_HEADER_TYPE_REGISTER, | 71 | mac->ops.set_lan_id(hw); |
72 | &pci_header_type); | ||
73 | if (pci_header_type & PCI_HEADER_TYPE_MULTIFUNC) { | ||
74 | status = er32(STATUS); | ||
75 | bus->func = (status & E1000_STATUS_FUNC_MASK) | ||
76 | >> E1000_STATUS_FUNC_SHIFT; | ||
77 | } else { | ||
78 | bus->func = 0; | ||
79 | } | ||
80 | 72 | ||
81 | return 0; | 73 | return 0; |
82 | } | 74 | } |
83 | 75 | ||
84 | /** | 76 | /** |
77 | * e1000_set_lan_id_multi_port_pcie - Set LAN id for PCIe multiple port devices | ||
78 | * | ||
79 | * @hw: pointer to the HW structure | ||
80 | * | ||
81 | * Determines the LAN function id by reading memory-mapped registers | ||
82 | * and swaps the port value if requested. | ||
83 | **/ | ||
84 | void e1000_set_lan_id_multi_port_pcie(struct e1000_hw *hw) | ||
85 | { | ||
86 | struct e1000_bus_info *bus = &hw->bus; | ||
87 | u32 reg; | ||
88 | |||
89 | /* | ||
90 | * The status register reports the correct function number | ||
91 | * for the device regardless of function swap state. | ||
92 | */ | ||
93 | reg = er32(STATUS); | ||
94 | bus->func = (reg & E1000_STATUS_FUNC_MASK) >> E1000_STATUS_FUNC_SHIFT; | ||
95 | } | ||
96 | |||
97 | /** | ||
98 | * e1000_set_lan_id_single_port - Set LAN id for a single port device | ||
99 | * @hw: pointer to the HW structure | ||
100 | * | ||
101 | * Sets the LAN function id to zero for a single port device. | ||
102 | **/ | ||
103 | void e1000_set_lan_id_single_port(struct e1000_hw *hw) | ||
104 | { | ||
105 | struct e1000_bus_info *bus = &hw->bus; | ||
106 | |||
107 | bus->func = 0; | ||
108 | } | ||
109 | |||
110 | /** | ||
85 | * e1000_clear_vfta_generic - Clear VLAN filter table | 111 | * e1000_clear_vfta_generic - Clear VLAN filter table |
86 | * @hw: pointer to the HW structure | 112 | * @hw: pointer to the HW structure |
87 | * | 113 | * |