Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / arm / cpu / armv7 / s5p-common / timer.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2009 Samsung Electronics
4  * Heungjun Kim <riverful.kim@samsung.com>
5  * Inki Dae <inki.dae@samsung.com>
6  * Minkyu Kang <mk7.kang@samsung.com>
7  */
8
9 #include <common.h>
10 #include <div64.h>
11 #include <init.h>
12 #include <time.h>
13 #include <asm/io.h>
14 #include <asm/arch/pwm.h>
15 #include <asm/arch/clk.h>
16 #include <linux/delay.h>
17
18 /* Use the old PWM interface for now */
19 #undef CONFIG_DM_PWM
20 #include <pwm.h>
21
22 DECLARE_GLOBAL_DATA_PTR;
23
24 unsigned long get_current_tick(void);
25 static void reset_timer_masked(void);
26
27 /* macro to read the 16 bit timer */
28 static inline struct s5p_timer *s5p_get_base_timer(void)
29 {
30         return (struct s5p_timer *)samsung_get_base_timer();
31 }
32
33 /**
34  * Read the countdown timer.
35  *
36  * This operates at 1MHz and counts downwards. It will wrap about every
37  * hour (2^32 microseconds).
38  *
39  * @return current value of timer
40  */
41 static unsigned long timer_get_us_down(void)
42 {
43         struct s5p_timer *const timer = s5p_get_base_timer();
44
45         return readl(&timer->tcnto4);
46 }
47
48 int timer_init(void)
49 {
50         /* PWM Timer 4 */
51         pwm_init(4, MUX_DIV_4, 0);
52         pwm_config(4, 100000, 100000);
53         pwm_enable(4);
54
55         /* Use this as the current monotonic time in us */
56         gd->arch.timer_reset_value = 0;
57
58         /* Use this as the last timer value we saw */
59         gd->arch.lastinc = timer_get_us_down();
60         reset_timer_masked();
61
62         return 0;
63 }
64
65 /*
66  * timer without interrupts
67  */
68 unsigned long get_timer(unsigned long base)
69 {
70         unsigned long long time_ms;
71
72         ulong now = timer_get_us_down();
73
74         /*
75          * Increment the time by the amount elapsed since the last read.
76          * The timer may have wrapped around, but it makes no difference to
77          * our arithmetic here.
78          */
79         gd->arch.timer_reset_value += gd->arch.lastinc - now;
80         gd->arch.lastinc = now;
81
82         /* Divide by 1000 to convert from us to ms */
83         time_ms = gd->arch.timer_reset_value;
84         do_div(time_ms, 1000);
85         return time_ms - base;
86 }
87
88 unsigned long __attribute__((no_instrument_function)) timer_get_us(void)
89 {
90         static unsigned long base_time_us;
91
92         struct s5p_timer *const timer =
93                 (struct s5p_timer *)samsung_get_base_timer();
94         unsigned long now_downward_us = readl(&timer->tcnto4);
95
96         if (!base_time_us)
97                 base_time_us = now_downward_us;
98
99         /* Note that this timer counts downward. */
100         return base_time_us - now_downward_us;
101 }
102
103 /* delay x useconds */
104 void __udelay(unsigned long usec)
105 {
106         unsigned long count_value;
107
108         count_value = timer_get_us_down();
109         while ((int)(count_value - timer_get_us_down()) < (int)usec)
110                 ;
111 }
112
113 static void reset_timer_masked(void)
114 {
115         struct s5p_timer *const timer = s5p_get_base_timer();
116
117         /* reset time */
118         gd->arch.lastinc = readl(&timer->tcnto4);
119         gd->arch.tbl = 0;
120 }
121
122 /*
123  * This function is derived from PowerPC code (read timebase as long long).
124  * On ARM it just returns the timer value.
125  */
126 unsigned long long get_ticks(void)
127 {
128         return get_timer(0);
129 }
130
131 /*
132  * This function is derived from PowerPC code (timebase clock frequency).
133  * On ARM it returns the number of timer ticks per second.
134  */
135 unsigned long get_tbclk(void)
136 {
137         return CONFIG_SYS_HZ;
138 }