1 /*******************************************************************************
3 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2008 Intel Corporation.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *******************************************************************************/
30 * 82542 Gigabit Ethernet Controller
33 #include "e1000_api.h"
35 static s32
e1000_init_phy_params_82542(struct e1000_hw
*hw
);
36 static s32
e1000_init_nvm_params_82542(struct e1000_hw
*hw
);
37 static s32
e1000_init_mac_params_82542(struct e1000_hw
*hw
);
38 static s32
e1000_get_bus_info_82542(struct e1000_hw
*hw
);
39 static s32
e1000_reset_hw_82542(struct e1000_hw
*hw
);
40 static s32
e1000_init_hw_82542(struct e1000_hw
*hw
);
41 static s32
e1000_setup_link_82542(struct e1000_hw
*hw
);
42 static s32
e1000_led_on_82542(struct e1000_hw
*hw
);
43 static s32
e1000_led_off_82542(struct e1000_hw
*hw
);
44 static void e1000_rar_set_82542(struct e1000_hw
*hw
, u8
*addr
, u32 index
);
45 static void e1000_clear_hw_cntrs_82542(struct e1000_hw
*hw
);
48 * e1000_init_phy_params_82542 - Init PHY func ptrs.
49 * @hw: pointer to the HW structure
51 static s32
e1000_init_phy_params_82542(struct e1000_hw
*hw
)
53 struct e1000_phy_info
*phy
= &hw
->phy
;
54 s32 ret_val
= E1000_SUCCESS
;
56 DEBUGFUNC("e1000_init_phy_params_82542");
58 phy
->type
= e1000_phy_none
;
64 * e1000_init_nvm_params_82542 - Init NVM func ptrs.
65 * @hw: pointer to the HW structure
67 static s32
e1000_init_nvm_params_82542(struct e1000_hw
*hw
)
69 struct e1000_nvm_info
*nvm
= &hw
->nvm
;
71 DEBUGFUNC("e1000_init_nvm_params_82542");
73 nvm
->address_bits
= 6;
76 nvm
->type
= e1000_nvm_eeprom_microwire
;
79 /* Function Pointers */
80 nvm
->ops
.read
= e1000_read_nvm_microwire
;
81 nvm
->ops
.release
= e1000_stop_nvm
;
82 nvm
->ops
.write
= e1000_write_nvm_microwire
;
83 nvm
->ops
.update
= e1000_update_nvm_checksum_generic
;
84 nvm
->ops
.validate
= e1000_validate_nvm_checksum_generic
;
90 * e1000_init_mac_params_82542 - Init MAC func ptrs.
91 * @hw: pointer to the HW structure
93 static s32
e1000_init_mac_params_82542(struct e1000_hw
*hw
)
95 struct e1000_mac_info
*mac
= &hw
->mac
;
97 DEBUGFUNC("e1000_init_mac_params_82542");
100 hw
->phy
.media_type
= e1000_media_type_fiber
;
102 /* Set mta register count */
103 mac
->mta_reg_count
= 128;
104 /* Set rar entry count */
105 mac
->rar_entry_count
= E1000_RAR_ENTRIES
;
107 /* Function pointers */
109 /* bus type/speed/width */
110 mac
->ops
.get_bus_info
= e1000_get_bus_info_82542
;
112 mac
->ops
.set_lan_id
= e1000_set_lan_id_multi_port_pci
;
114 mac
->ops
.reset_hw
= e1000_reset_hw_82542
;
115 /* hw initialization */
116 mac
->ops
.init_hw
= e1000_init_hw_82542
;
118 mac
->ops
.setup_link
= e1000_setup_link_82542
;
119 /* phy/fiber/serdes setup */
120 mac
->ops
.setup_physical_interface
= e1000_setup_fiber_serdes_link_generic
;
122 mac
->ops
.check_for_link
= e1000_check_for_fiber_link_generic
;
123 /* multicast address update */
124 mac
->ops
.update_mc_addr_list
= e1000_update_mc_addr_list_generic
;
126 mac
->ops
.write_vfta
= e1000_write_vfta_generic
;
128 mac
->ops
.clear_vfta
= e1000_clear_vfta_generic
;
130 mac
->ops
.mta_set
= e1000_mta_set_generic
;
132 mac
->ops
.rar_set
= e1000_rar_set_82542
;
133 /* turn on/off LED */
134 mac
->ops
.led_on
= e1000_led_on_82542
;
135 mac
->ops
.led_off
= e1000_led_off_82542
;
136 /* clear hardware counters */
137 mac
->ops
.clear_hw_cntrs
= e1000_clear_hw_cntrs_82542
;
139 mac
->ops
.get_link_up_info
= e1000_get_speed_and_duplex_fiber_serdes_generic
;
141 return E1000_SUCCESS
;
145 * e1000_init_function_pointers_82542 - Init func ptrs.
146 * @hw: pointer to the HW structure
148 * Called to initialize all function pointers and parameters.
150 void e1000_init_function_pointers_82542(struct e1000_hw
*hw
)
152 DEBUGFUNC("e1000_init_function_pointers_82542");
154 hw
->mac
.ops
.init_params
= e1000_init_mac_params_82542
;
155 hw
->nvm
.ops
.init_params
= e1000_init_nvm_params_82542
;
156 hw
->phy
.ops
.init_params
= e1000_init_phy_params_82542
;
160 * e1000_get_bus_info_82542 - Obtain bus information for adapter
161 * @hw: pointer to the HW structure
163 * This will obtain information about the HW bus for which the
164 * adapter is attached and stores it in the hw structure.
166 static s32
e1000_get_bus_info_82542(struct e1000_hw
*hw
)
168 DEBUGFUNC("e1000_get_bus_info_82542");
170 hw
->bus
.type
= e1000_bus_type_pci
;
171 hw
->bus
.speed
= e1000_bus_speed_unknown
;
172 hw
->bus
.width
= e1000_bus_width_unknown
;
174 return E1000_SUCCESS
;
178 * e1000_reset_hw_82542 - Reset hardware
179 * @hw: pointer to the HW structure
181 * This resets the hardware into a known state.
183 static s32
e1000_reset_hw_82542(struct e1000_hw
*hw
)
185 struct e1000_bus_info
*bus
= &hw
->bus
;
186 s32 ret_val
= E1000_SUCCESS
;
189 DEBUGFUNC("e1000_reset_hw_82542");
191 if (hw
->revision_id
== E1000_REVISION_2
) {
192 DEBUGOUT("Disabling MWI on 82542 rev 2\n");
193 e1000_pci_clear_mwi(hw
);
196 DEBUGOUT("Masking off all interrupts\n");
197 E1000_WRITE_REG(hw
, E1000_IMC
, 0xffffffff);
199 E1000_WRITE_REG(hw
, E1000_RCTL
, 0);
200 E1000_WRITE_REG(hw
, E1000_TCTL
, E1000_TCTL_PSP
);
201 E1000_WRITE_FLUSH(hw
);
204 * Delay to allow any outstanding PCI transactions to complete before
205 * resetting the device
209 ctrl
= E1000_READ_REG(hw
, E1000_CTRL
);
211 DEBUGOUT("Issuing a global reset to 82542/82543 MAC\n");
212 E1000_WRITE_REG(hw
, E1000_CTRL
, ctrl
| E1000_CTRL_RST
);
214 hw
->nvm
.ops
.reload(hw
);
217 E1000_WRITE_REG(hw
, E1000_IMC
, 0xffffffff);
218 E1000_READ_REG(hw
, E1000_ICR
);
220 if (hw
->revision_id
== E1000_REVISION_2
) {
221 if (bus
->pci_cmd_word
& CMD_MEM_WRT_INVALIDATE
)
222 e1000_pci_set_mwi(hw
);
229 * e1000_init_hw_82542 - Initialize hardware
230 * @hw: pointer to the HW structure
232 * This inits the hardware readying it for operation.
234 static s32
e1000_init_hw_82542(struct e1000_hw
*hw
)
236 struct e1000_mac_info
*mac
= &hw
->mac
;
237 struct e1000_dev_spec_82542
*dev_spec
= &hw
->dev_spec
._82542
;
238 s32 ret_val
= E1000_SUCCESS
;
242 DEBUGFUNC("e1000_init_hw_82542");
244 /* Disabling VLAN filtering */
245 E1000_WRITE_REG(hw
, E1000_VET
, 0);
246 mac
->ops
.clear_vfta(hw
);
248 /* For 82542 (rev 2.0), disable MWI and put the receiver into reset */
249 if (hw
->revision_id
== E1000_REVISION_2
) {
250 DEBUGOUT("Disabling MWI on 82542 rev 2.0\n");
251 e1000_pci_clear_mwi(hw
);
252 E1000_WRITE_REG(hw
, E1000_RCTL
, E1000_RCTL_RST
);
253 E1000_WRITE_FLUSH(hw
);
257 /* Setup the receive address. */
258 e1000_init_rx_addrs_generic(hw
, mac
->rar_entry_count
);
260 /* For 82542 (rev 2.0), take the receiver out of reset and enable MWI */
261 if (hw
->revision_id
== E1000_REVISION_2
) {
262 E1000_WRITE_REG(hw
, E1000_RCTL
, 0);
263 E1000_WRITE_FLUSH(hw
);
265 if (hw
->bus
.pci_cmd_word
& CMD_MEM_WRT_INVALIDATE
)
266 e1000_pci_set_mwi(hw
);
269 /* Zero out the Multicast HASH table */
270 DEBUGOUT("Zeroing the MTA\n");
271 for (i
= 0; i
< mac
->mta_reg_count
; i
++)
272 E1000_WRITE_REG_ARRAY(hw
, E1000_MTA
, i
, 0);
275 * Set the PCI priority bit correctly in the CTRL register. This
276 * determines if the adapter gives priority to receives, or if it
277 * gives equal priority to transmits and receives.
279 if (dev_spec
->dma_fairness
) {
280 ctrl
= E1000_READ_REG(hw
, E1000_CTRL
);
281 E1000_WRITE_REG(hw
, E1000_CTRL
, ctrl
| E1000_CTRL_PRIOR
);
284 /* Setup link and flow control */
285 ret_val
= e1000_setup_link_82542(hw
);
288 * Clear all of the statistics registers (clear on read). It is
289 * important that we do this after we have tried to establish link
290 * because the symbol error count will increment wildly if there
293 e1000_clear_hw_cntrs_82542(hw
);
299 * e1000_setup_link_82542 - Setup flow control and link settings
300 * @hw: pointer to the HW structure
302 * Determines which flow control settings to use, then configures flow
303 * control. Calls the appropriate media-specific link configuration
304 * function. Assuming the adapter has a valid link partner, a valid link
305 * should be established. Assumes the hardware has previously been reset
306 * and the transmitter and receiver are not enabled.
308 static s32
e1000_setup_link_82542(struct e1000_hw
*hw
)
310 struct e1000_mac_info
*mac
= &hw
->mac
;
311 s32 ret_val
= E1000_SUCCESS
;
313 DEBUGFUNC("e1000_setup_link_82542");
315 ret_val
= e1000_set_default_fc_generic(hw
);
319 hw
->fc
.requested_mode
&= ~e1000_fc_tx_pause
;
321 if (mac
->report_tx_early
== 1)
322 hw
->fc
.requested_mode
&= ~e1000_fc_rx_pause
;
325 * Save off the requested flow control mode for use later. Depending
326 * on the link partner's capabilities, we may or may not use this mode.
328 hw
->fc
.current_mode
= hw
->fc
.requested_mode
;
330 DEBUGOUT1("After fix-ups FlowControl is now = %x\n",
331 hw
->fc
.current_mode
);
333 /* Call the necessary subroutine to configure the link. */
334 ret_val
= mac
->ops
.setup_physical_interface(hw
);
339 * Initialize the flow control address, type, and PAUSE timer
340 * registers to their default values. This is done even if flow
341 * control is disabled, because it does not hurt anything to
342 * initialize these registers.
344 DEBUGOUT("Initializing Flow Control address, type and timer regs\n");
346 E1000_WRITE_REG(hw
, E1000_FCAL
, FLOW_CONTROL_ADDRESS_LOW
);
347 E1000_WRITE_REG(hw
, E1000_FCAH
, FLOW_CONTROL_ADDRESS_HIGH
);
348 E1000_WRITE_REG(hw
, E1000_FCT
, FLOW_CONTROL_TYPE
);
350 E1000_WRITE_REG(hw
, E1000_FCTTV
, hw
->fc
.pause_time
);
352 ret_val
= e1000_set_fc_watermarks_generic(hw
);
359 * e1000_led_on_82542 - Turn on SW controllable LED
360 * @hw: pointer to the HW structure
362 * Turns the SW defined LED on.
364 static s32
e1000_led_on_82542(struct e1000_hw
*hw
)
366 u32 ctrl
= E1000_READ_REG(hw
, E1000_CTRL
);
368 DEBUGFUNC("e1000_led_on_82542");
370 ctrl
|= E1000_CTRL_SWDPIN0
;
371 ctrl
|= E1000_CTRL_SWDPIO0
;
372 E1000_WRITE_REG(hw
, E1000_CTRL
, ctrl
);
374 return E1000_SUCCESS
;
378 * e1000_led_off_82542 - Turn off SW controllable LED
379 * @hw: pointer to the HW structure
381 * Turns the SW defined LED off.
383 static s32
e1000_led_off_82542(struct e1000_hw
*hw
)
385 u32 ctrl
= E1000_READ_REG(hw
, E1000_CTRL
);
387 DEBUGFUNC("e1000_led_off_82542");
389 ctrl
&= ~E1000_CTRL_SWDPIN0
;
390 ctrl
|= E1000_CTRL_SWDPIO0
;
391 E1000_WRITE_REG(hw
, E1000_CTRL
, ctrl
);
393 return E1000_SUCCESS
;
397 * e1000_rar_set_82542 - Set receive address register
398 * @hw: pointer to the HW structure
399 * @addr: pointer to the receive address
400 * @index: receive address array register
402 * Sets the receive address array register at index to the address passed
405 static void e1000_rar_set_82542(struct e1000_hw
*hw
, u8
*addr
, u32 index
)
407 u32 rar_low
, rar_high
;
409 DEBUGFUNC("e1000_rar_set_82542");
412 * HW expects these in little endian so we reverse the byte order
413 * from network order (big endian) to little endian
415 rar_low
= ((u32
) addr
[0] |
416 ((u32
) addr
[1] << 8) |
417 ((u32
) addr
[2] << 16) | ((u32
) addr
[3] << 24));
419 rar_high
= ((u32
) addr
[4] | ((u32
) addr
[5] << 8));
421 /* If MAC address zero, no need to set the AV bit */
422 if (rar_low
|| rar_high
)
423 rar_high
|= E1000_RAH_AV
;
425 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, (index
<< 1), rar_low
);
426 E1000_WRITE_REG_ARRAY(hw
, E1000_RA
, ((index
<< 1) + 1), rar_high
);
430 * e1000_translate_register_82542 - Translate the proper register offset
431 * @reg: e1000 register to be read
433 * Registers in 82542 are located in different offsets than other adapters
434 * even though they function in the same manner. This function takes in
435 * the name of the register to read and returns the correct offset for
438 u32
e1000_translate_register_82542(u32 reg
)
441 * Some of the 82542 registers are located at different
442 * offsets than they are in newer adapters.
443 * Despite the difference in location, the registers
444 * function in the same manner.
527 * e1000_clear_hw_cntrs_82542 - Clear device specific hardware counters
528 * @hw: pointer to the HW structure
530 * Clears the hardware counters by reading the counter registers.
532 static void e1000_clear_hw_cntrs_82542(struct e1000_hw
*hw
)
534 DEBUGFUNC("e1000_clear_hw_cntrs_82542");
536 e1000_clear_hw_cntrs_base_generic(hw
);
538 E1000_READ_REG(hw
, E1000_PRC64
);
539 E1000_READ_REG(hw
, E1000_PRC127
);
540 E1000_READ_REG(hw
, E1000_PRC255
);
541 E1000_READ_REG(hw
, E1000_PRC511
);
542 E1000_READ_REG(hw
, E1000_PRC1023
);
543 E1000_READ_REG(hw
, E1000_PRC1522
);
544 E1000_READ_REG(hw
, E1000_PTC64
);
545 E1000_READ_REG(hw
, E1000_PTC127
);
546 E1000_READ_REG(hw
, E1000_PTC255
);
547 E1000_READ_REG(hw
, E1000_PTC511
);
548 E1000_READ_REG(hw
, E1000_PTC1023
);
549 E1000_READ_REG(hw
, E1000_PTC1522
);