blob: 29d379fa0abc11ea3ef1b055cd448cb868393d73 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
huang lincc2244b2015-11-17 14:20:09 +08002/*
3 * (C) Copyright 2015 Rockchip Electronics Co., Ltd
huang lincc2244b2015-11-17 14:20:09 +08004 */
5
Philipp Tomsichcb911732017-07-14 18:09:25 +02006#include <common.h>
Kever Yang15f09a12019-03-28 11:01:23 +08007#include <asm/arch-rockchip/timer.h>
huang lincc2244b2015-11-17 14:20:09 +08008#include <asm/io.h>
huang lincc2244b2015-11-17 14:20:09 +08009#include <linux/types.h>
10
11struct rk_timer * const timer_ptr = (void *)CONFIG_SYS_TIMER_BASE;
12
13static uint64_t rockchip_get_ticks(void)
14{
15 uint64_t timebase_h, timebase_l;
16
17 timebase_l = readl(&timer_ptr->timer_curr_value0);
18 timebase_h = readl(&timer_ptr->timer_curr_value1);
19
20 return timebase_h << 32 | timebase_l;
21}
22
huang lincc2244b2015-11-17 14:20:09 +080023void rockchip_udelay(unsigned int usec)
24{
25 uint64_t tmp;
26
27 /* get timestamp */
28 tmp = rockchip_get_ticks() + usec_to_tick(usec);
29
30 /* loop till event */
31 while (rockchip_get_ticks() < tmp+1)
32 ;
33}
34
35void rockchip_timer_init(void)
36{
37 writel(0xffffffff, &timer_ptr->timer_load_count0);
38 writel(0xffffffff, &timer_ptr->timer_load_count1);
39 writel(1, &timer_ptr->timer_ctrl_reg);
40}