Lines Matching refs:incval

1739 static int ice_ptp_prep_phy_incval_eth56g(struct ice_hw *hw, u64 incval)  in ice_ptp_prep_phy_incval_eth56g()  argument
1747 incval); in ice_ptp_prep_phy_incval_eth56g()
2488 u64 incval; in ice_start_phy_timer_eth56g() local
2514 incval = (u64)hi << 32 | lo; in ice_start_phy_timer_eth56g()
2516 err = ice_write_40b_ptp_reg_eth56g(hw, port, PHY_REG_TIMETUS_L, incval); in ice_start_phy_timer_eth56g()
3446 ice_ptp_prep_phy_incval_e82x(struct ice_hw *hw, u64 incval) in ice_ptp_prep_phy_incval_e82x() argument
3453 incval); in ice_ptp_prep_phy_incval_e82x()
4597 u64 incval; in ice_start_phy_timer_e82x() local
4619 incval = (u64)hi << 32 | lo; in ice_start_phy_timer_e82x()
4621 err = ice_write_40b_phy_reg_e82x(hw, port, P_REG_TIMETUS_L, incval); in ice_start_phy_timer_e82x()
5093 static int ice_ptp_prep_phy_incval_e810(struct ice_hw *hw, u64 incval) in ice_ptp_prep_phy_incval_e810() argument
5100 low = lower_32_bits(incval); in ice_ptp_prep_phy_incval_e810()
5101 high = upper_32_bits(incval); in ice_ptp_prep_phy_incval_e810()
5599 int ice_ptp_write_incval(struct ice_hw *hw, u64 incval) in ice_ptp_write_incval() argument
5607 wr32(hw, GLTSYN_SHADJ_L(tmr_idx), lower_32_bits(incval)); in ice_ptp_write_incval()
5608 wr32(hw, GLTSYN_SHADJ_H(tmr_idx), upper_32_bits(incval)); in ice_ptp_write_incval()
5612 err = ice_ptp_prep_phy_incval_eth56g(hw, incval); in ice_ptp_write_incval()
5615 err = ice_ptp_prep_phy_incval_e810(hw, incval); in ice_ptp_write_incval()
5618 err = ice_ptp_prep_phy_incval_e82x(hw, incval); in ice_ptp_write_incval()
5637 int ice_ptp_write_incval_locked(struct ice_hw *hw, u64 incval) in ice_ptp_write_incval_locked() argument
5644 err = ice_ptp_write_incval(hw, incval); in ice_ptp_write_incval_locked()