Home
last modified time | relevance | path

Searched refs:timebase_l (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/arch/arm/mach-rockchip/
Drk_timer.c15 uint64_t timebase_h, timebase_l; in rockchip_get_ticks() local
17 timebase_l = readl(&timer_ptr->timer_curr_value0); in rockchip_get_ticks()
20 return timebase_h << 32 | timebase_l; in rockchip_get_ticks()
/external/u-boot/drivers/timer/
Dtimer-uclass.c79 if (count < gd->timebase_l) in timer_conv_64()
81 gd->timebase_l = count; in timer_conv_64()
82 return ((u64)gd->timebase_h << 32) | gd->timebase_l; in timer_conv_64()
Drockchip_timer.c30 uint64_t timebase_h, timebase_l; in rockchip_timer_get_curr_value() local
33 timebase_l = readl(&timer->timer_curr_value0); in rockchip_timer_get_curr_value()
36 cntr = timebase_h << 32 | timebase_l; in rockchip_timer_get_curr_value()
/external/u-boot/lib/
Dtime.c108 if (now < gd->timebase_l) in get_ticks()
110 gd->timebase_l = now; in get_ticks()
111 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks()
/external/u-boot/include/asm-generic/
Dglobal_data.h91 unsigned int timebase_l; member