Lines Matching refs:incval
1168 ice_ptp_prep_phy_incval_e822(struct ice_hw *hw, u64 incval) in ice_ptp_prep_phy_incval_e822() argument
1175 incval); in ice_ptp_prep_phy_incval_e822()
2383 u64 incval; in ice_start_phy_timer_e822() local
2405 incval = (u64)hi << 32 | lo; in ice_start_phy_timer_e822()
2407 err = ice_write_40b_phy_reg_e822(hw, port, P_REG_TIMETUS_L, incval); in ice_start_phy_timer_e822()
2837 static int ice_ptp_prep_phy_incval_e810(struct ice_hw *hw, u64 incval) in ice_ptp_prep_phy_incval_e810() argument
2844 low = lower_32_bits(incval); in ice_ptp_prep_phy_incval_e810()
2845 high = upper_32_bits(incval); in ice_ptp_prep_phy_incval_e810()
3239 int ice_ptp_write_incval(struct ice_hw *hw, u64 incval) in ice_ptp_write_incval() argument
3247 wr32(hw, GLTSYN_SHADJ_L(tmr_idx), lower_32_bits(incval)); in ice_ptp_write_incval()
3248 wr32(hw, GLTSYN_SHADJ_H(tmr_idx), upper_32_bits(incval)); in ice_ptp_write_incval()
3251 err = ice_ptp_prep_phy_incval_e810(hw, incval); in ice_ptp_write_incval()
3253 err = ice_ptp_prep_phy_incval_e822(hw, incval); in ice_ptp_write_incval()
3267 int ice_ptp_write_incval_locked(struct ice_hw *hw, u64 incval) in ice_ptp_write_incval_locked() argument
3274 err = ice_ptp_write_incval(hw, incval); in ice_ptp_write_incval_locked()