Lines Matching refs:high
10 u32 high; in tsnep_get_system_time() local
13 high = ioread32(adapter->addr + ECM_SYSTEM_TIME_HIGH); in tsnep_get_system_time()
16 high_before = high; in tsnep_get_system_time()
17 high = ioread32(adapter->addr + ECM_SYSTEM_TIME_HIGH); in tsnep_get_system_time()
18 } while (high != high_before); in tsnep_get_system_time()
19 *time = (((u64)high) << 32) | ((u64)low); in tsnep_get_system_time()
137 u32 high; in tsnep_ptp_gettimex64() local
141 high = ioread32(adapter->addr + ECM_SYSTEM_TIME_HIGH); in tsnep_ptp_gettimex64()
146 high_before = high; in tsnep_ptp_gettimex64()
147 high = ioread32(adapter->addr + ECM_SYSTEM_TIME_HIGH); in tsnep_ptp_gettimex64()
148 } while (high != high_before); in tsnep_ptp_gettimex64()
149 system_time = (((u64)high) << 32) | ((u64)low); in tsnep_ptp_gettimex64()
186 u32 high; in tsnep_ptp_getcyclesx64() local
190 high = ioread32(adapter->addr + ECM_COUNTER_HIGH); in tsnep_ptp_getcyclesx64()
195 high_before = high; in tsnep_ptp_getcyclesx64()
196 high = ioread32(adapter->addr + ECM_COUNTER_HIGH); in tsnep_ptp_getcyclesx64()
197 } while (high != high_before); in tsnep_ptp_getcyclesx64()
198 counter = (((u64)high) << 32) | ((u64)low); in tsnep_ptp_getcyclesx64()