Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 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> |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | c34c0ed | 2013-04-13 04:26:41 +0000 | [diff] [blame] | 10 | #include <div64.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 495a5dc | 2019-11-14 12:57:30 -0700 | [diff] [blame] | 12 | #include <time.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | #include <asm/arch/pwm.h> |
| 16 | #include <asm/arch/clk.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 17 | #include <linux/delay.h> |
Simon Glass | 636bf17 | 2016-02-21 21:08:49 -0700 | [diff] [blame] | 18 | |
Minkyu Kang | 4cb7fbf | 2011-03-16 20:09:20 +0900 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 20 | |
Zhong Hongbo | e7c50c2 | 2012-07-02 13:50:49 +0000 | [diff] [blame] | 21 | unsigned long get_current_tick(void); |
Patrick Delaunay | e60765f | 2018-10-05 11:33:50 +0200 | [diff] [blame] | 22 | static void reset_timer_masked(void); |
Zhong Hongbo | e7c50c2 | 2012-07-02 13:50:49 +0000 | [diff] [blame] | 23 | |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 24 | /* macro to read the 16 bit timer */ |
Minkyu Kang | 2917c0a | 2010-08-19 20:41:50 +0900 | [diff] [blame] | 25 | static inline struct s5p_timer *s5p_get_base_timer(void) |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 26 | { |
Minkyu Kang | 2917c0a | 2010-08-19 20:41:50 +0900 | [diff] [blame] | 27 | return (struct s5p_timer *)samsung_get_base_timer(); |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 28 | } |
| 29 | |
Simon Glass | a9e9abb | 2013-03-28 04:32:16 +0000 | [diff] [blame] | 30 | /** |
| 31 | * Read the countdown timer. |
| 32 | * |
| 33 | * This operates at 1MHz and counts downwards. It will wrap about every |
| 34 | * hour (2^32 microseconds). |
| 35 | * |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 36 | * Return: current value of timer |
Simon Glass | a9e9abb | 2013-03-28 04:32:16 +0000 | [diff] [blame] | 37 | */ |
| 38 | static unsigned long timer_get_us_down(void) |
| 39 | { |
| 40 | struct s5p_timer *const timer = s5p_get_base_timer(); |
| 41 | |
| 42 | return readl(&timer->tcnto4); |
| 43 | } |
| 44 | |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 45 | int timer_init(void) |
| 46 | { |
Minkyu Kang | da0bff8 | 2011-03-10 20:05:58 +0900 | [diff] [blame] | 47 | /* PWM Timer 4 */ |
Tom Rini | 66faa43 | 2022-12-04 10:03:26 -0500 | [diff] [blame] | 48 | s5p_pwm_init(4, MUX_DIV_4, 0); |
| 49 | s5p_pwm_config(4, 100000, 100000); |
| 50 | s5p_pwm_enable(4); |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 51 | |
Simon Glass | a9e9abb | 2013-03-28 04:32:16 +0000 | [diff] [blame] | 52 | /* Use this as the current monotonic time in us */ |
| 53 | gd->arch.timer_reset_value = 0; |
| 54 | |
| 55 | /* Use this as the last timer value we saw */ |
| 56 | gd->arch.lastinc = timer_get_us_down(); |
Zhong Hongbo | e7c50c2 | 2012-07-02 13:50:49 +0000 | [diff] [blame] | 57 | reset_timer_masked(); |
| 58 | |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * timer without interrupts |
| 64 | */ |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 65 | unsigned long get_timer(unsigned long base) |
| 66 | { |
Simon Glass | c34c0ed | 2013-04-13 04:26:41 +0000 | [diff] [blame] | 67 | unsigned long long time_ms; |
| 68 | |
Simon Glass | a9e9abb | 2013-03-28 04:32:16 +0000 | [diff] [blame] | 69 | ulong now = timer_get_us_down(); |
| 70 | |
| 71 | /* |
| 72 | * Increment the time by the amount elapsed since the last read. |
| 73 | * The timer may have wrapped around, but it makes no difference to |
| 74 | * our arithmetic here. |
| 75 | */ |
| 76 | gd->arch.timer_reset_value += gd->arch.lastinc - now; |
| 77 | gd->arch.lastinc = now; |
| 78 | |
| 79 | /* Divide by 1000 to convert from us to ms */ |
Simon Glass | c34c0ed | 2013-04-13 04:26:41 +0000 | [diff] [blame] | 80 | time_ms = gd->arch.timer_reset_value; |
| 81 | do_div(time_ms, 1000); |
| 82 | return time_ms - base; |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 83 | } |
| 84 | |
Simon Glass | 56da76d | 2022-12-21 16:08:15 -0700 | [diff] [blame] | 85 | unsigned long notrace timer_get_us(void) |
Che-Liang Chiou | 94f61a3 | 2013-03-28 04:32:17 +0000 | [diff] [blame] | 86 | { |
| 87 | static unsigned long base_time_us; |
| 88 | |
| 89 | struct s5p_timer *const timer = |
| 90 | (struct s5p_timer *)samsung_get_base_timer(); |
| 91 | unsigned long now_downward_us = readl(&timer->tcnto4); |
| 92 | |
| 93 | if (!base_time_us) |
| 94 | base_time_us = now_downward_us; |
| 95 | |
| 96 | /* Note that this timer counts downward. */ |
| 97 | return base_time_us - now_downward_us; |
| 98 | } |
| 99 | |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 100 | /* delay x useconds */ |
Ingo van Lil | f0f778a | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 101 | void __udelay(unsigned long usec) |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 102 | { |
Simon Glass | a9e9abb | 2013-03-28 04:32:16 +0000 | [diff] [blame] | 103 | unsigned long count_value; |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 104 | |
Simon Glass | a9e9abb | 2013-03-28 04:32:16 +0000 | [diff] [blame] | 105 | count_value = timer_get_us_down(); |
| 106 | while ((int)(count_value - timer_get_us_down()) < (int)usec) |
| 107 | ; |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 108 | } |
| 109 | |
Patrick Delaunay | e60765f | 2018-10-05 11:33:50 +0200 | [diff] [blame] | 110 | static void reset_timer_masked(void) |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 111 | { |
Minkyu Kang | 2917c0a | 2010-08-19 20:41:50 +0900 | [diff] [blame] | 112 | struct s5p_timer *const timer = s5p_get_base_timer(); |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 113 | |
| 114 | /* reset time */ |
Simon Glass | a848da5 | 2012-12-13 20:48:35 +0000 | [diff] [blame] | 115 | gd->arch.lastinc = readl(&timer->tcnto4); |
Simon Glass | 2655ee1 | 2012-12-13 20:48:34 +0000 | [diff] [blame] | 116 | gd->arch.tbl = 0; |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 117 | } |
| 118 | |
Minkyu Kang | 8764998 | 2009-10-01 17:20:01 +0900 | [diff] [blame] | 119 | /* |
| 120 | * This function is derived from PowerPC code (read timebase as long long). |
| 121 | * On ARM it just returns the timer value. |
| 122 | */ |
| 123 | unsigned long long get_ticks(void) |
| 124 | { |
| 125 | return get_timer(0); |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * This function is derived from PowerPC code (timebase clock frequency). |
| 130 | * On ARM it returns the number of timer ticks per second. |
| 131 | */ |
| 132 | unsigned long get_tbclk(void) |
| 133 | { |
| 134 | return CONFIG_SYS_HZ; |
| 135 | } |