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

1 2 3 4 5 6 7 8

  /external/u-boot/test/
time_ut.c 16 base = get_timer(0);
17 start = get_timer(0);
20 next = get_timer(0);
32 * Check that get_timer(base) matches our elapsed time, allowing that
35 diff = get_timer(base);
37 printf("%s: expected get_timer(base) to match elapsed time: diff=%lu, expected=%d\n",
85 start = get_timer(0);
87 while (get_timer(start) < 1000)
106 start = get_timer(0);
109 delta = get_timer(start)
    [all...]
  /external/u-boot/arch/arm/cpu/sa1100/
timer.c 15 ulong get_timer (ulong base) function
59 return get_timer(0);
  /external/u-boot/arch/arm/mach-at91/
phy.c 24 unsigned long start = get_timer(0);
48 if (get_timer(start) >= timeout) {
clock.c 77 start_time = get_timer(0);
80 tmp_time = get_timer(0);
95 start_time = get_timer(0);
98 tmp_time = get_timer(0);
  /external/u-boot/lib/dhry/
cmd_dhry.c 20 start = get_timer(0);
22 duration = get_timer(start);
  /external/u-boot/arch/microblaze/cpu/
timer.c 18 ulong get_timer (ulong base) function
30 i = get_timer(0);
31 while ((get_timer(0) - i) < (usec / 1000))
104 return get_timer(0);
  /external/u-boot/cmd/
gettime.c 20 unsigned long int val = get_timer(0);
misc.c 16 ulong start = get_timer(0);
42 while (get_timer(start) < delay) {
69 start = get_timer(0);
72 ulong msecs = get_timer(start) * 1000 / CONFIG_SYS_HZ;
  /external/u-boot/arch/m68k/lib/
time.c 104 ulong get_timer(ulong base) function
154 ulong get_timer(ulong base) function
169 u32 start = get_timer(0);
170 while (get_timer(start) < ticks) ;
180 return get_timer(0);
185 return get_timer(usec);
  /external/u-boot/arch/arm/cpu/arm920t/imx/
timer.c 39 ulong get_timer (ulong base) function
71 return get_timer(0);
  /external/u-boot/arch/arm/mach-omap2/omap3/
am35x_musb.c 26 unsigned long start = get_timer(0);
40 if (get_timer(start) > CONFIG_SYS_HZ / 10) {
  /external/u-boot/include/
wait_bit.h 44 unsigned long start = get_timer(0); \
55 if (get_timer(start) > timeout_ms) \
  /external/u-boot/drivers/power/regulator/
tps65090_regulator.c 95 start = get_timer(0);
101 if (get_timer(start) > 100)
110 __func__, fet_id, get_timer(start), loops);
113 __func__, fet_id, get_timer(start), loops);
  /external/u-boot/arch/arm/mach-bcm283x/
mbox.c 17 ulong endtime = get_timer(0) + TIMEOUT;
20 debug("time: %lu timeout: %lu\n", get_timer(0), endtime);
33 if (get_timer(0) >= endtime) {
46 if (get_timer(0) >= endtime) {
64 if (get_timer(0) >= endtime) {
  /external/u-boot/drivers/i2c/muxes/
i2c-arb-gpio-challenge.c 45 start = get_timer(0);
57 start_retry = get_timer(0);
58 while (get_timer(start_retry) < priv->wait_retry_ms) {
77 } while (get_timer(start) < priv->wait_free_ms);
80 printf("I2C: Could not claim bus, timeout %lu\n", get_timer(start));
  /external/u-boot/drivers/fpga/
spartan2.c 154 ts = get_timer (0); /* get current time */
158 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
181 ts = get_timer (0); /* get current time */
191 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
214 ts = get_timer (0); /* get current time */
223 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
340 ts = get_timer (0); /* get current time */
343 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
353 ts = get_timer (0); /* get current time */
357 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time *
    [all...]
spartan3.c 158 ts = get_timer (0); /* get current time */
162 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
185 ts = get_timer (0); /* get current time */
195 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
218 ts = get_timer (0); /* get current time */
229 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
346 ts = get_timer (0); /* get current time */
349 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
361 ts = get_timer (0); /* get current time */
365 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time *
    [all...]
virtex2.c 210 ts = get_timer (0);
212 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT_INIT) {
228 ts = get_timer (0);
231 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT_INIT) {
284 ts = get_timer (0);
286 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT_BUSY) {
317 ts = get_timer (0);
320 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT_CONFIG) {
  /external/u-boot/arch/arm/cpu/arm926ejs/lpc32xx/
timer.c 55 ulong get_timer(ulong base) function
75 return get_timer(0);
  /external/u-boot/arch/arm/cpu/armv7/s5p-common/
timer.c 64 unsigned long get_timer(unsigned long base) function
124 return get_timer(0);
  /external/u-boot/arch/arm/mach-omap2/
timer.c 49 ulong get_timer(ulong base) function
92 return get_timer(0);
  /external/u-boot/arch/xtensa/lib/
time.c 68 ulong get_timer(ulong base) function
97 return get_timer(0);
  /external/u-boot/board/armltd/integrator/
timer.c 96 ulong get_timer (ulong base_ticks) function
153 return get_timer(0);
  /external/u-boot/arch/arm/mach-at91/arm920t/
clock.c 165 start_time = get_timer(0);
168 tmp_time = get_timer(0);
183 start_time = get_timer(0);
186 tmp_time = get_timer(0);
  /external/u-boot/arch/powerpc/lib/
interrupts.c 101 ulong get_timer (ulong base) function

Completed in 1330 milliseconds

1 2 3 4 5 6 7 8