ARM: uniphier: make boot_is_swapped() code optional
[oweals/u-boot.git] / arch / arm / mach-rockchip / rk_timer.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2015 Rockchip Electronics Co., Ltd
4  */
5
6 #include <common.h>
7 #include <asm/arch-rockchip/timer.h>
8 #include <asm/io.h>
9 #include <linux/types.h>
10
11 struct rk_timer * const timer_ptr = (void *)CONFIG_SYS_TIMER_BASE;
12
13 static 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
23 void 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
35 void 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 }