aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2008-06-17 12:04:24 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-06-17 23:59:38 -0400
commite1a74b375ca084add9164ae30ca0fdb9fe691ec9 (patch)
tree12cda1cf44db595d5ba3f59c1e37624648e279c2
parent84aee4889ee843f4cde1c3fb1acfd116733660ef (diff)
sky2: phy setup changes
Change the setup of the PHY registers on some chip ids. These changes make the latest sky2 driver follow the vendor driver. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r--drivers/net/sky2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c
index 7f1cfc48e1b..af7ea887118 100644
--- a/drivers/net/sky2.c
+++ b/drivers/net/sky2.c
@@ -658,8 +658,7 @@ static void sky2_phy_init(struct sky2_hw *hw, unsigned port)
658 ledover |= PHY_M_LED_MO_RX(MO_LED_OFF); 658 ledover |= PHY_M_LED_MO_RX(MO_LED_OFF);
659 } 659 }
660 660
661 if (hw->chip_id == CHIP_ID_YUKON_EC_U && 661 if (hw->chip_id == CHIP_ID_YUKON_EC_U) {
662 hw->chip_rev == CHIP_REV_YU_EC_U_A1) {
663 /* apply fixes in PHY AFE */ 662 /* apply fixes in PHY AFE */
664 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 255); 663 gm_phy_write(hw, port, PHY_MARV_EXT_ADR, 255);
665 664
@@ -678,7 +677,8 @@ static void sky2_phy_init(struct sky2_hw *hw, unsigned port)
678 /* apply workaround for integrated resistors calibration */ 677 /* apply workaround for integrated resistors calibration */
679 gm_phy_write(hw, port, PHY_MARV_PAGE_ADDR, 17); 678 gm_phy_write(hw, port, PHY_MARV_PAGE_ADDR, 17);
680 gm_phy_write(hw, port, PHY_MARV_PAGE_DATA, 0x3f60); 679 gm_phy_write(hw, port, PHY_MARV_PAGE_DATA, 0x3f60);
681 } else if (hw->chip_id != CHIP_ID_YUKON_EX) { 680 } else if (hw->chip_id != CHIP_ID_YUKON_EX &&
681 hw->chip_id < CHIP_ID_YUKON_SUPR) {
682 /* no effect on Yukon-XL */ 682 /* no effect on Yukon-XL */
683 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl); 683 gm_phy_write(hw, port, PHY_MARV_LED_CTRL, ledctrl);
684 684