blob: bb0e795e66823d4963acd309ebbdd3e67bf7d4a4 [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 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <asm/io.h>
28#include <asm/arch/pwm.h>
29#include <asm/arch/clk.h>
Minkyu Kang70fc52d2011-03-10 20:05:58 +090030#include <pwm.h>
Minkyu Kang399e5ae2009-10-01 17:20:01 +090031
Minkyu Kang9aca34d2011-03-16 20:09:20 +090032DECLARE_GLOBAL_DATA_PTR;
Minkyu Kang399e5ae2009-10-01 17:20:01 +090033
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000034unsigned long get_current_tick(void);
35
Minkyu Kang399e5ae2009-10-01 17:20:01 +090036/* macro to read the 16 bit timer */
Minkyu Kang37168da2010-08-19 20:41:50 +090037static inline struct s5p_timer *s5p_get_base_timer(void)
Minkyu Kang399e5ae2009-10-01 17:20:01 +090038{
Minkyu Kang37168da2010-08-19 20:41:50 +090039 return (struct s5p_timer *)samsung_get_base_timer();
Minkyu Kang399e5ae2009-10-01 17:20:01 +090040}
41
42int timer_init(void)
43{
Minkyu Kang70fc52d2011-03-10 20:05:58 +090044 /* PWM Timer 4 */
45 pwm_init(4, MUX_DIV_2, 0);
46 pwm_config(4, 0, 0);
47 pwm_enable(4);
Minkyu Kang399e5ae2009-10-01 17:20:01 +090048
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000049 reset_timer_masked();
50
Minkyu Kang399e5ae2009-10-01 17:20:01 +090051 return 0;
52}
53
54/*
55 * timer without interrupts
56 */
Minkyu Kang399e5ae2009-10-01 17:20:01 +090057unsigned long get_timer(unsigned long base)
58{
59 return get_timer_masked() - base;
60}
61
Minkyu Kang399e5ae2009-10-01 17:20:01 +090062/* delay x useconds */
Ingo van Lil3eb90ba2009-11-24 14:09:21 +010063void __udelay(unsigned long usec)
Minkyu Kang399e5ae2009-10-01 17:20:01 +090064{
Minkyu Kangd3b0d622010-11-19 17:00:26 +090065 struct s5p_timer *const timer = s5p_get_base_timer();
Minkyu Kang9aca34d2011-03-16 20:09:20 +090066 unsigned long tmo, tmp, count_value;
Minkyu Kang399e5ae2009-10-01 17:20:01 +090067
Minkyu Kangd3b0d622010-11-19 17:00:26 +090068 count_value = readl(&timer->tcntb4);
69
Minkyu Kang399e5ae2009-10-01 17:20:01 +090070 if (usec >= 1000) {
71 /*
72 * if "big" number, spread normalization
73 * to seconds
74 * 1. start to normalize for usec to ticks per sec
75 * 2. find number of "ticks" to wait to achieve target
76 * 3. finish normalize.
77 */
78 tmo = usec / 1000;
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000079 tmo *= (CONFIG_SYS_HZ * count_value);
Minkyu Kang399e5ae2009-10-01 17:20:01 +090080 tmo /= 1000;
81 } else {
82 /* else small number, don't kill it prior to HZ multiply */
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000083 tmo = usec * CONFIG_SYS_HZ * count_value;
Minkyu Kang399e5ae2009-10-01 17:20:01 +090084 tmo /= (1000 * 1000);
85 }
86
87 /* get current timestamp */
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000088 tmp = get_current_tick();
Minkyu Kang399e5ae2009-10-01 17:20:01 +090089
90 /* if setting this fordward will roll time stamp */
Minkyu Kang9aca34d2011-03-16 20:09:20 +090091 /* reset "advancing" timestamp to 0, set lastinc value */
Minkyu Kang399e5ae2009-10-01 17:20:01 +090092 /* else, set advancing stamp wake up time */
93 if ((tmo + tmp + 1) < tmp)
94 reset_timer_masked();
95 else
96 tmo += tmp;
97
98 /* loop till event */
Zhong Hongbo3936b4f2012-07-02 13:50:49 +000099 while (get_current_tick() < tmo)
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900100 ; /* nop */
101}
102
103void reset_timer_masked(void)
104{
Minkyu Kang37168da2010-08-19 20:41:50 +0900105 struct s5p_timer *const timer = s5p_get_base_timer();
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900106
107 /* reset time */
Minkyu Kang9aca34d2011-03-16 20:09:20 +0900108 gd->lastinc = readl(&timer->tcnto4);
109 gd->tbl = 0;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900110}
111
112unsigned long get_timer_masked(void)
113{
Minkyu Kang37168da2010-08-19 20:41:50 +0900114 struct s5p_timer *const timer = s5p_get_base_timer();
Zhong Hongbo3936b4f2012-07-02 13:50:49 +0000115 unsigned long count_value = readl(&timer->tcntb4);
116
117 return get_current_tick() / count_value;
118}
119
120unsigned long get_current_tick(void)
121{
122 struct s5p_timer *const timer = s5p_get_base_timer();
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900123 unsigned long now = readl(&timer->tcnto4);
Minkyu Kang9aca34d2011-03-16 20:09:20 +0900124 unsigned long count_value = readl(&timer->tcntb4);
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900125
Minkyu Kang9aca34d2011-03-16 20:09:20 +0900126 if (gd->lastinc >= now)
127 gd->tbl += gd->lastinc - now;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900128 else
Minkyu Kang9aca34d2011-03-16 20:09:20 +0900129 gd->tbl += gd->lastinc + count_value - now;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900130
Minkyu Kang9aca34d2011-03-16 20:09:20 +0900131 gd->lastinc = now;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900132
Minkyu Kang9aca34d2011-03-16 20:09:20 +0900133 return gd->tbl;
Minkyu Kang399e5ae2009-10-01 17:20:01 +0900134}
135
136/*
137 * This function is derived from PowerPC code (read timebase as long long).
138 * On ARM it just returns the timer value.
139 */
140unsigned long long get_ticks(void)
141{
142 return get_timer(0);
143}
144
145/*
146 * This function is derived from PowerPC code (timebase clock frequency).
147 * On ARM it returns the number of timer ticks per second.
148 */
149unsigned long get_tbclk(void)
150{
151 return CONFIG_SYS_HZ;
152}