HomeSort by relevance Sort by last modified time
    Searched refs:get_ticks (Results 1 - 25 of 47) sorted by null

1 2

  /external/u-boot/arch/powerpc/lib/
ticks.S 15 * unsigned long long get_ticks(void);
19 .globl get_ticks
20 get_ticks: label
39 bl get_ticks /* Get start time */
46 1: bl get_ticks /* Get current time */
  /external/u-boot/arch/arm/cpu/armv7/ls102xa/
timer.c 81 unsigned long long get_ticks(void) function
95 return tick_to_time(get_ticks());
109 start = get_ticks(); /* get current timestamp */
112 while ((get_ticks() - start) < tmo)
  /external/u-boot/arch/arm/cpu/armv7/vf610/
timer.c 48 unsigned long long get_ticks(void) function
62 return tick_to_time(get_ticks());
76 start = get_ticks(); /* get current timestamp */
78 while ((get_ticks() - start) < tmo)
  /external/u-boot/arch/arm/mach-imx/
syscounter.c 80 unsigned long long get_ticks(void) function
94 return tick_to_time(get_ticks());
108 tmp = get_ticks() + tmo; /* get current timestamp */
110 while (get_ticks() < tmp) /* loop till event */
  /external/u-boot/lib/
time.c 77 uint64_t notrace get_ticks(void) function
103 uint64_t __weak notrace get_ticks(void) function
134 return tick_to_time(get_ticks()) - base;
139 return tick_to_time(get_ticks() * 1000);
154 tmp = get_ticks() + usec_to_tick(usec); /* get current timestamp */
156 while (get_ticks() < tmp+1) /* loop till event */
  /external/u-boot/arch/arm/cpu/armv7/
arch_timer.c 37 unsigned long long get_ticks(void) function
52 return lldiv(get_ticks(), gd->arch.timer_rate_hz / 1000000);
  /external/u-boot/arch/arm/cpu/armv8/
generic_timer.c 88 uint64_t get_ticks(void) function
110 u64 val = get_ticks() * 1000000;
  /external/u-boot/arch/arm/mach-davinci/
timer.c 55 unsigned long long get_ticks(void) function
71 timer_diff = get_ticks() - gd->arch.timer_reset_value;
83 endtime += get_ticks();
85 while (get_ticks() < endtime)
  /external/u-boot/include/
cli.h 154 #define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
  /external/u-boot/arch/arm/cpu/arm926ejs/mx27/
timer.c 110 unsigned long long get_ticks(void) function
132 * get_ticks() returns a long long (64 bit), it wraps in
134 * 5 * 10^9 days... and get_ticks() * CONFIG_SYS_HZ wraps in
137 return tick_to_time(get_ticks());
152 tmp = get_ticks() + tmo; /* get current timestamp */
154 while (get_ticks() < tmp) /* loop till event */
  /external/u-boot/arch/arm/cpu/sa1100/
timer.c 57 unsigned long long get_ticks(void) function
  /external/u-boot/common/
bootretry.c 47 if (retry_time >= 0 && get_ticks() > endtime)
  /external/u-boot/arch/arm/cpu/arm920t/ep93xx/
timer.c 57 unsigned long long get_ticks(void) function
71 return get_ticks();
  /external/u-boot/arch/arm/cpu/arm920t/imx/
timer.c 69 unsigned long long get_ticks(void) function
  /external/u-boot/arch/arm/cpu/arm926ejs/mxs/
timer.c 80 unsigned long long get_ticks(void) function
115 return tick_to_time(get_ticks());
  /external/u-boot/arch/arm/cpu/armv7m/
systick-timer.c 93 unsigned long long t = get_ticks() * 1000;
98 unsigned long long get_ticks(void) function
  /external/u-boot/arch/arm/cpu/arm926ejs/lpc32xx/
timer.c 73 unsigned long long get_ticks(void) function
  /external/u-boot/arch/arm/cpu/armv7/s5p-common/
timer.c 122 unsigned long long get_ticks(void) function
  /external/u-boot/arch/arm/mach-omap2/
timer.c 90 unsigned long long get_ticks(void) function
  /external/u-boot/arch/arm/mach-rmobile/
timer.c 76 unsigned long long get_ticks(void) function
  /external/u-boot/arch/microblaze/cpu/
timer.c 102 unsigned long long get_ticks(void) function
  /external/u-boot/arch/sh/lib/
time_sh2.c 46 unsigned long long get_ticks(void) function
  /external/u-boot/arch/xtensa/lib/
time.c 95 unsigned long long get_ticks(void) function
  /external/u-boot/board/armltd/integrator/
timer.c 151 unsigned long long get_ticks(void) function
  /external/u-boot/drivers/spi/
ath79_spi.c 99 tick = get_ticks() + priv->rrw_delay;
100 while (get_ticks() < tick)
109 tick = get_ticks() + priv->rrw_delay;
110 while (get_ticks() < tick)

Completed in 782 milliseconds

1 2