Searched refs:get_ticks (Results 1 - 25 of 49) sorted by relevance

12

/u-boot/arch/arm/mach-bcmstb/include/mach/
H A Dtimer.h11 uint64_t get_ticks(void);
/u-boot/arch/powerpc/lib/
H A Dticks.S14 * unsigned long long get_ticks(void);
18 .globl get_ticks
19 get_ticks: label
38 bl get_ticks /* Get start time */
47 1: bl get_ticks /* Get current time */
/u-boot/arch/arm/cpu/armv7/ls102xa/
H A Dtimer.c85 unsigned long long get_ticks(void) function
99 return tick_to_time(get_ticks()) - base;
108 start = get_ticks(); /* get current timestamp */
111 while ((get_ticks() - start) < tmo)
/u-boot/arch/arm/cpu/armv7/vf610/
H A Dtimer.c52 unsigned long long get_ticks(void) function
66 return tick_to_time(get_ticks()) - base;
75 start = get_ticks(); /* get current timestamp */
77 while ((get_ticks() - start) < tmo)
/u-boot/lib/
H A Dtime.c85 uint64_t notrace get_ticks(void) function
115 uint64_t __weak notrace get_ticks(void) function
146 return tick_to_time(get_ticks()) - base;
160 return tick_to_time_us(get_ticks()) - base;
170 return tick_to_time(get_ticks() * 1000);
185 tmp = get_ticks() + usec_to_tick(usec); /* get current timestamp */
187 while (get_ticks() < tmp+1) /* loop till event */
/u-boot/arch/arm/mach-imx/
H A Dsyscounter.c87 unsigned long long get_ticks(void) function
101 return tick_to_time(get_ticks()) - base;
109 return tick_to_time(get_ticks());
118 tmp = get_ticks() + tmo; /* get current timestamp */
120 while (get_ticks() < tmp) /* loop till event */
/u-boot/arch/arm/cpu/armv7/
H A Darch_timer.c40 unsigned long long get_ticks(void) function
58 return lldiv(get_ticks(), gd->arch.timer_rate_hz / 1000000);
/u-boot/arch/arm/cpu/armv8/
H A Dgeneric_timer.c92 uint64_t notrace get_ticks(void) function
114 u64 val = get_ticks() * 1000000;
/u-boot/arch/arm/mach-davinci/
H A Dtimer.c59 unsigned long long get_ticks(void) function
75 timer_diff = get_ticks() - gd->arch.timer_reset_value;
87 endtime += get_ticks();
89 while (get_ticks() < endtime)
/u-boot/boot/
H A Dbootretry.c45 if (retry_time >= 0 && get_ticks() > endtime)
/u-boot/arch/arm/cpu/arm926ejs/mxs/
H A Dtimer.c84 unsigned long long get_ticks(void) function
119 return tick_to_time(get_ticks()) - base;
/u-boot/arch/arm/cpu/armv7m/
H A Dsystick-timer.c97 unsigned long long t = get_ticks() * 1000;
102 unsigned long long get_ticks(void) function
/u-boot/arch/m68k/lib/
H A Dtime.c117 unsigned long long get_ticks(void) function
125 uint64_t __weak get_ticks(void) function
/u-boot/include/
H A Dcli.h197 #define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
/u-boot/drivers/spi/
H A Dath79_spi.c101 tick = get_ticks() + priv->rrw_delay;
102 while (get_ticks() < tick)
111 tick = get_ticks() + priv->rrw_delay;
112 while (get_ticks() < tick)
/u-boot/arch/arm/mach-lpc32xx/
H A Dtimer.c79 unsigned long long get_ticks(void) function
/u-boot/arch/arm/mach-omap2/
H A Dtimer.c96 unsigned long long get_ticks(void) function
/u-boot/drivers/timer/
H A Dtsc_timer.c353 return (get_ticks() * 1000) / get_tbclk();
363 return get_ticks() / get_tbclk_mhz();
373 u64 now = get_ticks();
378 while ((int64_t)(stop - get_ticks()) > 0)
H A Dmpc83xx_timer.c189 ulong end = get_ticks() + ticks;
191 while (end > get_ticks())
/u-boot/arch/sh/lib/
H A Dtime_sh2.c49 unsigned long long get_ticks(void) function
/u-boot/arch/xtensa/lib/
H A Dtime.c98 unsigned long long get_ticks(void) function
/u-boot/arch/arm/cpu/armv7/s5p-common/
H A Dtimer.c123 unsigned long long get_ticks(void) function
/u-boot/board/broadcom/bcmstb/
H A Dbcmstb.c96 uint64_t get_ticks(void) function
/u-boot/board/armltd/integrator/
H A Dtimer.c148 unsigned long long get_ticks(void) function
/u-boot/drivers/i2c/
H A Dfsl_i2c.c239 timeval = get_ticks();
241 if ((get_ticks() - timeval) > timeout)
255 timeval = get_ticks();
257 if ((get_ticks() - timeval) > timeout)
284 timeval = get_ticks();
286 if ((get_ticks() - timeval) < timeout)
299 unsigned long long timeval = get_ticks();
303 if ((get_ticks() - timeval) > timeout)
313 unsigned long long timeval = get_ticks();
341 } while ((get_ticks()
[all...]

Completed in 119 milliseconds

12