Lines Matching refs:phy_data
523 u16 phy_data; in e1000_phy_force_speed_duplex_80003es2lan() local
529 ret_val = e1e_rphy(hw, M88E1000_PHY_SPEC_CTRL, &phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
533 phy_data &= ~GG82563_PSCR_CROSSOVER_MODE_AUTO; in e1000_phy_force_speed_duplex_80003es2lan()
534 ret_val = e1e_wphy(hw, GG82563_PHY_SPEC_CTRL, phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
538 e_dbg("GG82563 PSCR: %X\n", phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
540 ret_val = e1e_rphy(hw, MII_BMCR, &phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
544 e1000e_phy_force_speed_duplex_setup(hw, &phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
547 phy_data |= BMCR_RESET; in e1000_phy_force_speed_duplex_80003es2lan()
549 ret_val = e1e_wphy(hw, MII_BMCR, phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
579 ret_val = e1e_rphy(hw, GG82563_PHY_MAC_SPEC_CTRL, &phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
586 phy_data &= ~GG82563_MSCR_TX_CLK_MASK; in e1000_phy_force_speed_duplex_80003es2lan()
588 phy_data |= GG82563_MSCR_TX_CLK_10MBPS_2_5; in e1000_phy_force_speed_duplex_80003es2lan()
590 phy_data |= GG82563_MSCR_TX_CLK_100MBPS_25; in e1000_phy_force_speed_duplex_80003es2lan()
595 phy_data |= GG82563_MSCR_ASSERT_CRS_ON_TX; in e1000_phy_force_speed_duplex_80003es2lan()
596 ret_val = e1e_wphy(hw, GG82563_PHY_MAC_SPEC_CTRL, phy_data); in e1000_phy_force_speed_duplex_80003es2lan()
612 u16 phy_data, index; in e1000_get_cable_length_80003es2lan() local
614 ret_val = e1e_rphy(hw, GG82563_PHY_DSP_DISTANCE, &phy_data); in e1000_get_cable_length_80003es2lan()
618 index = phy_data & GG82563_DSPD_CABLE_LENGTH; in e1000_get_cable_length_80003es2lan()