Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/drivers/timer/
H A Dtimer-uclass.c80 if (count < gd->timebase_l) in timer_conv_64()
82 gd->timebase_l = count; in timer_conv_64()
83 return ((u64)gd->timebase_h << 32) | gd->timebase_l; in timer_conv_64()
H A Drockchip_timer.c31 uint64_t timebase_h, timebase_l; in rockchip_timer_get_curr_value() local
34 timebase_l = readl(&timer->timer_curr_value0); in rockchip_timer_get_curr_value()
37 cntr = timebase_h << 32 | timebase_l; in rockchip_timer_get_curr_value()
/OK3568_Linux_fs/u-boot/lib/
H A Dtime.c109 if (now < gd->timebase_l) in get_ticks()
111 gd->timebase_l = now; in get_ticks()
112 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks()
/OK3568_Linux_fs/u-boot/board/broadcom/bcmstb/
H A Dbcmstb.c161 gd->timebase_l = readl(BCMSTB_TIMER_LOW); in get_ticks()
163 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks()
/OK3568_Linux_fs/u-boot/include/asm-generic/
H A Dglobal_data.h108 unsigned int timebase_l; member