1 /*******************************************************************************
3 Intel 10 Gigabit PCI Express 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 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *******************************************************************************/
28 #include <linux/pci.h>
29 #include <linux/delay.h>
30 #include <linux/sched.h>
32 #include "ixgbe_common.h"
33 #include "ixgbe_phy.h"
35 static bool ixgbe_validate_phy_addr(struct ixgbe_hw *hw, u32 phy_addr);
36 static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id);
37 static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw);
40 * ixgbe_identify_phy_generic - Get physical layer module
41 * @hw: pointer to hardware structure
43 * Determines the physical layer module found on the current adapter.
45 s32 ixgbe_identify_phy_generic(struct ixgbe_hw *hw)
47 s32 status = IXGBE_ERR_PHY_ADDR_INVALID;
50 if (hw->phy.type == ixgbe_phy_unknown) {
51 for (phy_addr = 0; phy_addr < IXGBE_MAX_PHY_ADDR; phy_addr++) {
52 if (ixgbe_validate_phy_addr(hw, phy_addr)) {
53 hw->phy.addr = phy_addr;
56 ixgbe_get_phy_type_from_id(hw->phy.id);
69 * ixgbe_validate_phy_addr - Determines phy address is valid
70 * @hw: pointer to hardware structure
73 static bool ixgbe_validate_phy_addr(struct ixgbe_hw *hw, u32 phy_addr)
78 hw->phy.addr = phy_addr;
79 hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_ID_HIGH,
80 IXGBE_MDIO_PMA_PMD_DEV_TYPE, &phy_id);
82 if (phy_id != 0xFFFF && phy_id != 0x0)
89 * ixgbe_get_phy_id - Get the phy type
90 * @hw: pointer to hardware structure
93 static s32 ixgbe_get_phy_id(struct ixgbe_hw *hw)
99 status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_ID_HIGH,
100 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
104 hw->phy.id = (u32)(phy_id_high << 16);
105 status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_PHY_ID_LOW,
106 IXGBE_MDIO_PMA_PMD_DEV_TYPE,
108 hw->phy.id |= (u32)(phy_id_low & IXGBE_PHY_REVISION_MASK);
109 hw->phy.revision = (u32)(phy_id_low & ~IXGBE_PHY_REVISION_MASK);
115 * ixgbe_get_phy_type_from_id - Get the phy type
116 * @hw: pointer to hardware structure
119 static enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id)
121 enum ixgbe_phy_type phy_type;
125 phy_type = ixgbe_phy_qt;
128 phy_type = ixgbe_phy_unknown;
136 * ixgbe_reset_phy_generic - Performs a PHY reset
137 * @hw: pointer to hardware structure
139 s32 ixgbe_reset_phy_generic(struct ixgbe_hw *hw)
142 * Perform soft PHY reset to the PHY_XS.
143 * This will cause a soft reset to the PHY
145 return hw->phy.ops.write_reg(hw, IXGBE_MDIO_PHY_XS_CONTROL,
146 IXGBE_MDIO_PHY_XS_DEV_TYPE,
147 IXGBE_MDIO_PHY_XS_RESET);
151 * ixgbe_read_phy_reg_generic - Reads a value from a specified PHY register
152 * @hw: pointer to hardware structure
153 * @reg_addr: 32 bit address of PHY register to read
154 * @phy_data: Pointer to read data from PHY register
156 s32 ixgbe_read_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
157 u32 device_type, u16 *phy_data)
165 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
166 gssr = IXGBE_GSSR_PHY1_SM;
168 gssr = IXGBE_GSSR_PHY0_SM;
170 if (ixgbe_acquire_swfw_sync(hw, gssr) != 0)
171 status = IXGBE_ERR_SWFW_SYNC;
174 /* Setup and write the address cycle command */
175 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
176 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
177 (hw->phy.addr << IXGBE_MSCA_PHY_ADDR_SHIFT) |
178 (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND));
180 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
183 * Check every 10 usec to see if the address cycle completed.
184 * The MDI Command bit will clear when the operation is
187 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
190 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
192 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
196 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
197 hw_dbg(hw, "PHY address command did not complete.\n");
198 status = IXGBE_ERR_PHY;
203 * Address cycle complete, setup and write the read
206 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
207 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
208 (hw->phy.addr << IXGBE_MSCA_PHY_ADDR_SHIFT) |
209 (IXGBE_MSCA_READ | IXGBE_MSCA_MDI_COMMAND));
211 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
214 * Check every 10 usec to see if the address cycle
215 * completed. The MDI Command bit will clear when the
216 * operation is complete
218 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
221 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
223 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
227 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
228 hw_dbg(hw, "PHY read command didn't complete\n");
229 status = IXGBE_ERR_PHY;
232 * Read operation is complete. Get the data
235 data = IXGBE_READ_REG(hw, IXGBE_MSRWD);
236 data >>= IXGBE_MSRWD_READ_DATA_SHIFT;
237 *phy_data = (u16)(data);
241 ixgbe_release_swfw_sync(hw, gssr);
248 * ixgbe_write_phy_reg_generic - Writes a value to specified PHY register
249 * @hw: pointer to hardware structure
250 * @reg_addr: 32 bit PHY register to write
251 * @device_type: 5 bit device type
252 * @phy_data: Data to write to the PHY register
254 s32 ixgbe_write_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
255 u32 device_type, u16 phy_data)
262 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
263 gssr = IXGBE_GSSR_PHY1_SM;
265 gssr = IXGBE_GSSR_PHY0_SM;
267 if (ixgbe_acquire_swfw_sync(hw, gssr) != 0)
268 status = IXGBE_ERR_SWFW_SYNC;
271 /* Put the data in the MDI single read and write data register*/
272 IXGBE_WRITE_REG(hw, IXGBE_MSRWD, (u32)phy_data);
274 /* Setup and write the address cycle command */
275 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
276 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
277 (hw->phy.addr << IXGBE_MSCA_PHY_ADDR_SHIFT) |
278 (IXGBE_MSCA_ADDR_CYCLE | IXGBE_MSCA_MDI_COMMAND));
280 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
283 * Check every 10 usec to see if the address cycle completed.
284 * The MDI Command bit will clear when the operation is
287 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
290 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
292 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
296 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
297 hw_dbg(hw, "PHY address cmd didn't complete\n");
298 status = IXGBE_ERR_PHY;
303 * Address cycle complete, setup and write the write
306 command = ((reg_addr << IXGBE_MSCA_NP_ADDR_SHIFT) |
307 (device_type << IXGBE_MSCA_DEV_TYPE_SHIFT) |
308 (hw->phy.addr << IXGBE_MSCA_PHY_ADDR_SHIFT) |
309 (IXGBE_MSCA_WRITE | IXGBE_MSCA_MDI_COMMAND));
311 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
314 * Check every 10 usec to see if the address cycle
315 * completed. The MDI Command bit will clear when the
316 * operation is complete
318 for (i = 0; i < IXGBE_MDIO_COMMAND_TIMEOUT; i++) {
321 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
323 if ((command & IXGBE_MSCA_MDI_COMMAND) == 0)
327 if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) {
328 hw_dbg(hw, "PHY address cmd didn't complete\n");
329 status = IXGBE_ERR_PHY;
333 ixgbe_release_swfw_sync(hw, gssr);
340 * ixgbe_setup_phy_link_generic - Set and restart autoneg
341 * @hw: pointer to hardware structure
343 * Restart autonegotiation and PHY and waits for completion.
345 s32 ixgbe_setup_phy_link_generic(struct ixgbe_hw *hw)
347 s32 status = IXGBE_NOT_IMPLEMENTED;
349 u32 max_time_out = 10;
350 u16 autoneg_reg = IXGBE_MII_AUTONEG_REG;
353 * Set advertisement settings in PHY based on autoneg_advertised
354 * settings. If autoneg_advertised = 0, then advertise default values
355 * tnx devices cannot be "forced" to a autoneg 10G and fail. But can
358 hw->phy.ops.read_reg(hw, IXGBE_MII_SPEED_SELECTION_REG,
359 IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &autoneg_reg);
361 if (hw->phy.autoneg_advertised == IXGBE_LINK_SPEED_1GB_FULL)
362 autoneg_reg &= 0xEFFF; /* 0 in bit 12 is 1G operation */
364 autoneg_reg |= 0x1000; /* 1 in bit 12 is 10G/1G operation */
366 hw->phy.ops.write_reg(hw, IXGBE_MII_SPEED_SELECTION_REG,
367 IXGBE_MDIO_AUTO_NEG_DEV_TYPE, autoneg_reg);
369 /* Restart PHY autonegotiation and wait for completion */
370 hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_CONTROL,
371 IXGBE_MDIO_AUTO_NEG_DEV_TYPE, &autoneg_reg);
373 autoneg_reg |= IXGBE_MII_RESTART;
375 hw->phy.ops.write_reg(hw, IXGBE_MDIO_AUTO_NEG_CONTROL,
376 IXGBE_MDIO_AUTO_NEG_DEV_TYPE, autoneg_reg);
378 /* Wait for autonegotiation to finish */
379 for (time_out = 0; time_out < max_time_out; time_out++) {
381 /* Restart PHY autonegotiation and wait for completion */
382 status = hw->phy.ops.read_reg(hw, IXGBE_MDIO_AUTO_NEG_STATUS,
383 IXGBE_MDIO_AUTO_NEG_DEV_TYPE,
386 autoneg_reg &= IXGBE_MII_AUTONEG_COMPLETE;
387 if (autoneg_reg == IXGBE_MII_AUTONEG_COMPLETE) {
393 if (time_out == max_time_out)
394 status = IXGBE_ERR_LINK_SETUP;
400 * ixgbe_setup_phy_link_speed_generic - Sets the auto advertised capabilities
401 * @hw: pointer to hardware structure
402 * @speed: new link speed
403 * @autoneg: true if autonegotiation enabled
405 s32 ixgbe_setup_phy_link_speed_generic(struct ixgbe_hw *hw,
406 ixgbe_link_speed speed,
408 bool autoneg_wait_to_complete)
412 * Clear autoneg_advertised and set new values based on input link
415 hw->phy.autoneg_advertised = 0;
417 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
418 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_10GB_FULL;
420 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
421 hw->phy.autoneg_advertised |= IXGBE_LINK_SPEED_1GB_FULL;
423 /* Setup link based on the new speed settings */
424 hw->phy.ops.setup_link(hw);