Home
last modified time | relevance | path

Searched refs:timebase_h (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/arch/arm/mach-rockchip/
H A Drk_timer.c15 uint64_t timebase_h, timebase_l; in rockchip_get_ticks() local
18 timebase_h = readl(&timer_ptr->timer_curr_value1); in rockchip_get_ticks()
20 return timebase_h << 32 | timebase_l; in rockchip_get_ticks()
/openbmc/u-boot/drivers/timer/
H A Drockchip_timer.c30 uint64_t timebase_h, timebase_l; in rockchip_timer_get_curr_value() local
34 timebase_h = readl(&timer->timer_curr_value1); in rockchip_timer_get_curr_value()
36 cntr = timebase_h << 32 | timebase_l; in rockchip_timer_get_curr_value()
H A Dtimer-uclass.c80 gd->timebase_h++; in timer_conv_64()
82 return ((u64)gd->timebase_h << 32) | gd->timebase_l; in timer_conv_64()
/openbmc/u-boot/board/broadcom/bcmstb/
H A Dbcmstb.c160 gd->timebase_h = readl(BCMSTB_TIMER_HIGH); in get_ticks()
163 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks()
/openbmc/u-boot/lib/
H A Dtime.c109 gd->timebase_h++; in get_ticks()
111 return ((uint64_t)gd->timebase_h << 32) | gd->timebase_l; in get_ticks()
/openbmc/u-boot/include/asm-generic/
H A Dglobal_data.h95 unsigned int timebase_h; member