HomeSort by relevance Sort by last modified time
    Searched refs:timebase_h (Results 1 - 5 of 5) sorted by null

  /external/u-boot/arch/arm/mach-rockchip/
rk_timer.c 15 uint64_t timebase_h, timebase_l; local
18 timebase_h = readl(&timer_ptr->timer_curr_value1);
20 return timebase_h << 32 | timebase_l;
  /external/u-boot/drivers/timer/
timer-uclass.c 80 gd->timebase_h++;
82 return ((u64)gd->timebase_h << 32) | gd->timebase_l;
rockchip_timer.c 30 uint64_t timebase_h, timebase_l; local
34 timebase_h = readl(&timer->timer_curr_value1);
36 cntr = timebase_h << 32 | timebase_l;
  /external/u-boot/lib/
time.c 109 gd->timebase_h++;
111 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l;
  /external/u-boot/include/asm-generic/
global_data.h 90 unsigned int timebase_h; member in struct:global_data

Completed in 148 milliseconds