Lines Matching refs:nic_minor
307 void (*ns_to_nic_time)(s64 ns, u32 *nic_major, u32 *nic_minor);
308 ktime_t (*nic_to_kernel_time)(u32 nic_major, u32 nic_minor,
458 static void efx_ptp_ns_to_s27(s64 ns, u32 *nic_major, u32 *nic_minor) in efx_ptp_ns_to_s27() argument
474 *nic_minor = min; in efx_ptp_ns_to_s27()
477 static inline ktime_t efx_ptp_s27_to_ktime(u32 nic_major, u32 nic_minor) in efx_ptp_s27_to_ktime() argument
479 u32 ns = (u32)(((u64)nic_minor * NSEC_PER_SEC + in efx_ptp_s27_to_ktime()
484 static ktime_t efx_ptp_s27_to_ktime_correction(u32 nic_major, u32 nic_minor, in efx_ptp_s27_to_ktime_correction() argument
488 nic_minor += correction; in efx_ptp_s27_to_ktime_correction()
489 if ((s32)nic_minor < 0) { in efx_ptp_s27_to_ktime_correction()
490 nic_minor += S27_MINOR_MAX; in efx_ptp_s27_to_ktime_correction()
492 } else if (nic_minor >= S27_MINOR_MAX) { in efx_ptp_s27_to_ktime_correction()
493 nic_minor -= S27_MINOR_MAX; in efx_ptp_s27_to_ktime_correction()
497 return efx_ptp_s27_to_ktime(nic_major, nic_minor); in efx_ptp_s27_to_ktime_correction()
501 static void efx_ptp_ns_to_s_qns(s64 ns, u32 *nic_major, u32 *nic_minor) in efx_ptp_ns_to_s_qns() argument
506 *nic_minor = ts.tv_nsec * 4; in efx_ptp_ns_to_s_qns()
509 static ktime_t efx_ptp_s_qns_to_ktime_correction(u32 nic_major, u32 nic_minor, in efx_ptp_s_qns_to_ktime_correction() argument
514 nic_minor = DIV_ROUND_CLOSEST(nic_minor, 4); in efx_ptp_s_qns_to_ktime_correction()
517 kt = ktime_set(nic_major, nic_minor); in efx_ptp_s_qns_to_ktime_correction()
553 u32 nic_major, u32 nic_minor, in efx_ptp_mac_nic_to_ktime_correction() argument
596 kt = ptp->nic_to_kernel_time(nic_major, nic_minor, in efx_ptp_mac_nic_to_ktime_correction()
2125 u32 nic_major, nic_minor; in efx_phc_adjtime() local
2132 efx->ptp_data->ns_to_nic_time(delta, &nic_major, &nic_minor); in efx_phc_adjtime()
2138 MCDI_SET_DWORD(inbuf, PTP_IN_ADJUST_MINOR, nic_minor); in efx_phc_adjtime()