blob: 949abb1c8fe58fa980e1f3830dca615419003b6c [file] [log] [blame]
Minkyu Kang399e5ae2009-10-01 17:20:01 +09001/*
2 * Copyright (C) 2009 Samsung Electronics
3 * Heungjun Kim <riverful.kim@samsung.com>
4 * Inki Dae <inki.dae@samsung.com>
5 * Minkyu Kang <mk7.kang@samsung.com>
6 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
Minkyu Kang399e5ae2009-10-01 17:20:01 +09008 */
9
10#include <common.h>
Simon Glassdc47e2b2013-04-13 04:26:41 +000011#include <div64.h>
Minkyu Kang399e5ae2009-10-01 17:20:01 +090012#include <asm/io.h>
13#include <asm/arch/pwm.h>
14#include <asm/arch/clk.h>
Minkyu Kang70fc52d2011-03-10 20:05:58 +090015#include <pwm.h>
Minkyu Kang399e5ae2009-10-01 17:20:01 +090016
Minkyu Kang9aca34d2011-03-16 20:09:20 +090017DECLARE_GLOBAL_DATA_PTR;
Minkyu Kang399e5ae2009-10-01 17:20:01 +090018
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000019unsigned long get_current_tick(void);
20
Minkyu Kang399e5ae2009-10-01 17:20:01 +090021/* macro to read the 16 bit timer */
Minkyu Kang37168da2010-08-19 20:41:50 +090022static inline struct s5p_timer *s5p_get_base_timer(void)
Minkyu Kang399e5ae2009-10-01 17:20:01 +090023{
Minkyu Kang37168da2010-08-19 20:41:50 +090024 return (struct s5p_timer *)samsung_get_base_timer();
Minkyu Kang399e5ae2009-10-01 17:20:01 +090025}
26
Simon Glass3d00c0c2013-03-28 04:32:16 +000027/**
28 * Read the countdown timer.
29 *
30 * This operates at 1MHz and counts downwards. It will wrap about every
31 * hour (2^32 microseconds).
32 *
33 * @return current value of timer
34 */
35static unsigned long timer_get_us_down(void)
36{
37 struct s5p_timer *const timer = s5p_get_base_timer();
38
39 return readl(&timer->tcnto4);
40}
41
Minkyu Kang399e5ae2009-10-01 17:20:01 +090042int timer_init(void)
43{
Minkyu Kang70fc52d2011-03-10 20:05:58 +090044 /* PWM Timer 4 */
Simon Glass3d00c0c2013-03-28 04:32:16 +000045 pwm_init(4, MUX_DIV_4, 0);
Gabe Black34b5ee12013-03-28 04:32:19 +000046 pwm_config(4, 100000, 100000);
Minkyu Kang70fc52d2011-03-10 20:05:58 +090047 pwm_enable(4);
Minkyu Kang399e5ae2009-10-01 17:20:01 +090048
Simon Glass3d00c0c2013-03-28 04:32:16 +000049 /* Use this as the current monotonic time in us */
50 gd->arch.timer_reset_value = 0;
51
52 /* Use this as the last timer value we saw */
53 gd->arch.lastinc = timer_get_us_down();
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000054 reset_timer_masked();
55
Minkyu Kang399e5ae2009-10-01 17:20:01 +090056 return 0;
57}
58
59/*
60 * timer without interrupts
61 */
Minkyu Kang399e5ae2009-10-01 17:20:01 +090062unsigned long get_timer(unsigned long base)
63{
Simon Glassdc47e2b2013-04-13 04:26:41 +000064 unsigned long long time_ms;
65
Simon Glass3d00c0c2013-03-28 04:32:16 +000066 ulong now = timer_get_us_down();
67
68 /*
69 * Increment the time by the amount elapsed since the last read.
70 * The timer may have wrapped around, but it makes no difference to
71 * our arithmetic here.
72 */
73 gd->arch.timer_reset_value += gd->arch.lastinc - now;
74 gd->arch.lastinc = now;
75
76 /* Divide by 1000 to convert from us to ms */
Simon Glassdc47e2b2013-04-13 04:26:41 +000077 time_ms = gd->arch.timer_reset_value;
78 do_div(time_ms, 1000);
79 return time_ms - base;
Minkyu Kang399e5ae2009-10-01 17:20:01 +090080}
81
Simon Glassca35a0c2013-06-11 11:14:50 -070082unsigned long __attribute__((no_instrument_function)) timer_get_us(void)
Che-Liang Chiouf24869d2013-03-28 04:32:17 +000083{
84 static unsigned long base_time_us;
85
86 struct s5p_timer *const timer =
87 (struct s5p_timer *)samsung_get_base_timer();
88 unsigned long now_downward_us = readl(&timer->tcnto4);
89
90 if (!base_time_us)
91 base_time_us = now_downward_us;
92
93 /* Note that this timer counts downward. */
94 return base_time_us - now_downward_us;
95}
96
Minkyu Kang399e5ae2009-10-01 17:20:01 +090097/* delay x useconds */
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010098void __udelay(unsigned long usec)
Minkyu Kang399e5ae2009-10-01 17:20:01 +090099{
Simon Glass3d00c0c2013-03-28 04:32:16 +0000100 unsigned long count_value;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900101
Simon Glass3d00c0c2013-03-28 04:32:16 +0000102 count_value = timer_get_us_down();
103 while ((int)(count_value - timer_get_us_down()) < (int)usec)
104 ;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900105}
106
107void reset_timer_masked(void)
108{
Minkyu Kang37168da2010-08-19 20:41:50 +0900109 struct s5p_timer *const timer = s5p_get_base_timer();
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900110
111 /* reset time */
Simon Glass582601d2012-12-13 20:48:35 +0000112 gd->arch.lastinc = readl(&timer->tcnto4);
Simon Glass66ee6922012-12-13 20:48:34 +0000113 gd->arch.tbl = 0;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900114}
115
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900116/*
117 * This function is derived from PowerPC code (read timebase as long long).
118 * On ARM it just returns the timer value.
119 */
120unsigned long long get_ticks(void)
121{
122 return get_timer(0);
123}
124
125/*
126 * This function is derived from PowerPC code (timebase clock frequency).
127 * On ARM it returns the number of timer ticks per second.
128 */
129unsigned long get_tbclk(void)
130{
131 return CONFIG_SYS_HZ;
132}