blob: 12994ecc843ee0b6dbc205f6bd4dd38116c7b1b8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Minkyu Kang87649982009-10-01 17:20:01 +09002/*
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 Kang87649982009-10-01 17:20:01 +09007 */
8
Simon Glassc34c0ed2013-04-13 04:26:41 +00009#include <div64.h>
Simon Glass97589732020-05-10 11:40:02 -060010#include <init.h>
Simon Glass495a5dc2019-11-14 12:57:30 -070011#include <time.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Minkyu Kang87649982009-10-01 17:20:01 +090013#include <asm/io.h>
14#include <asm/arch/pwm.h>
15#include <asm/arch/clk.h>
Simon Glassdbd79542020-05-10 11:40:11 -060016#include <linux/delay.h>
Simon Glass636bf172016-02-21 21:08:49 -070017
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +090018DECLARE_GLOBAL_DATA_PTR;
Minkyu Kang87649982009-10-01 17:20:01 +090019
Zhong Hongboe7c50c22012-07-02 13:50:49 +000020unsigned long get_current_tick(void);
Patrick Delaunaye60765f2018-10-05 11:33:50 +020021static void reset_timer_masked(void);
Zhong Hongboe7c50c22012-07-02 13:50:49 +000022
Minkyu Kang87649982009-10-01 17:20:01 +090023/* macro to read the 16 bit timer */
Minkyu Kang2917c0a2010-08-19 20:41:50 +090024static inline struct s5p_timer *s5p_get_base_timer(void)
Minkyu Kang87649982009-10-01 17:20:01 +090025{
Minkyu Kang2917c0a2010-08-19 20:41:50 +090026 return (struct s5p_timer *)samsung_get_base_timer();
Minkyu Kang87649982009-10-01 17:20:01 +090027}
28
Simon Glassa9e9abb2013-03-28 04:32:16 +000029/**
30 * Read the countdown timer.
31 *
32 * This operates at 1MHz and counts downwards. It will wrap about every
33 * hour (2^32 microseconds).
34 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010035 * Return: current value of timer
Simon Glassa9e9abb2013-03-28 04:32:16 +000036 */
37static unsigned long timer_get_us_down(void)
38{
39 struct s5p_timer *const timer = s5p_get_base_timer();
40
41 return readl(&timer->tcnto4);
42}
43
Minkyu Kang87649982009-10-01 17:20:01 +090044int timer_init(void)
45{
Minkyu Kangda0bff82011-03-10 20:05:58 +090046 /* PWM Timer 4 */
Tom Rini66faa432022-12-04 10:03:26 -050047 s5p_pwm_init(4, MUX_DIV_4, 0);
48 s5p_pwm_config(4, 100000, 100000);
49 s5p_pwm_enable(4);
Minkyu Kang87649982009-10-01 17:20:01 +090050
Simon Glassa9e9abb2013-03-28 04:32:16 +000051 /* Use this as the current monotonic time in us */
52 gd->arch.timer_reset_value = 0;
53
54 /* Use this as the last timer value we saw */
55 gd->arch.lastinc = timer_get_us_down();
Zhong Hongboe7c50c22012-07-02 13:50:49 +000056 reset_timer_masked();
57
Minkyu Kang87649982009-10-01 17:20:01 +090058 return 0;
59}
60
61/*
62 * timer without interrupts
63 */
Minkyu Kang87649982009-10-01 17:20:01 +090064unsigned long get_timer(unsigned long base)
65{
Simon Glassc34c0ed2013-04-13 04:26:41 +000066 unsigned long long time_ms;
67
Simon Glassa9e9abb2013-03-28 04:32:16 +000068 ulong now = timer_get_us_down();
69
70 /*
71 * Increment the time by the amount elapsed since the last read.
72 * The timer may have wrapped around, but it makes no difference to
73 * our arithmetic here.
74 */
75 gd->arch.timer_reset_value += gd->arch.lastinc - now;
76 gd->arch.lastinc = now;
77
78 /* Divide by 1000 to convert from us to ms */
Simon Glassc34c0ed2013-04-13 04:26:41 +000079 time_ms = gd->arch.timer_reset_value;
80 do_div(time_ms, 1000);
81 return time_ms - base;
Minkyu Kang87649982009-10-01 17:20:01 +090082}
83
Simon Glass56da76d2022-12-21 16:08:15 -070084unsigned long notrace timer_get_us(void)
Che-Liang Chiou94f61a32013-03-28 04:32:17 +000085{
86 static unsigned long base_time_us;
87
88 struct s5p_timer *const timer =
89 (struct s5p_timer *)samsung_get_base_timer();
90 unsigned long now_downward_us = readl(&timer->tcnto4);
91
92 if (!base_time_us)
93 base_time_us = now_downward_us;
94
95 /* Note that this timer counts downward. */
96 return base_time_us - now_downward_us;
97}
98
Minkyu Kang87649982009-10-01 17:20:01 +090099/* delay x useconds */
Ingo van Lilf0f778a2009-11-24 14:09:21 +0100100void __udelay(unsigned long usec)
Minkyu Kang87649982009-10-01 17:20:01 +0900101{
Simon Glassa9e9abb2013-03-28 04:32:16 +0000102 unsigned long count_value;
Minkyu Kang87649982009-10-01 17:20:01 +0900103
Simon Glassa9e9abb2013-03-28 04:32:16 +0000104 count_value = timer_get_us_down();
105 while ((int)(count_value - timer_get_us_down()) < (int)usec)
106 ;
Minkyu Kang87649982009-10-01 17:20:01 +0900107}
108
Patrick Delaunaye60765f2018-10-05 11:33:50 +0200109static void reset_timer_masked(void)
Minkyu Kang87649982009-10-01 17:20:01 +0900110{
Minkyu Kang2917c0a2010-08-19 20:41:50 +0900111 struct s5p_timer *const timer = s5p_get_base_timer();
Minkyu Kang87649982009-10-01 17:20:01 +0900112
113 /* reset time */
Simon Glassa848da52012-12-13 20:48:35 +0000114 gd->arch.lastinc = readl(&timer->tcnto4);
Simon Glass2655ee12012-12-13 20:48:34 +0000115 gd->arch.tbl = 0;
Minkyu Kang87649982009-10-01 17:20:01 +0900116}
117
Minkyu Kang87649982009-10-01 17:20:01 +0900118/*
119 * This function is derived from PowerPC code (read timebase as long long).
120 * On ARM it just returns the timer value.
121 */
122unsigned long long get_ticks(void)
123{
124 return get_timer(0);
125}
126
127/*
128 * This function is derived from PowerPC code (timebase clock frequency).
129 * On ARM it returns the number of timer ticks per second.
130 */
131unsigned long get_tbclk(void)
132{
133 return CONFIG_SYS_HZ;
134}