Home
last modified time | relevance | path

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

/u-boot/drivers/timer/
A Dtimer-uclass.c119 if (count < gd->timebase_l) in timer_conv_64()
121 gd->timebase_l = count; in timer_conv_64()
122 return ((u64)gd->timebase_h << 32) | gd->timebase_l; in timer_conv_64()
A Drockchip_timer.c34 uint64_t timebase_h, timebase_l; in rockchip_timer_get_curr_value() local
37 timebase_l = readl(&timer->timer_curr_value0); in rockchip_timer_get_curr_value()
40 cntr = timebase_h << 32 | timebase_l; in rockchip_timer_get_curr_value()
/u-boot/board/broadcom/bcmstb/
A Dbcmstb.c104 gd->timebase_l = readl(BCMSTB_TIMER_LOW); in get_ticks()
106 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks()
/u-boot/lib/
A Dtime.c119 if (now < gd->timebase_l) in get_ticks()
121 gd->timebase_l = now; in get_ticks()
122 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks()
/u-boot/include/asm-generic/
A Dglobal_data.h287 unsigned int timebase_l; member

Completed in 7 milliseconds