blob: b750d161417bb891a641aee19afceb4dec078e2a [file] [log] [blame]
Minkyu Kang87649982009-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 Kangda0bff82011-03-10 20:05:58 +090030#include <pwm.h>
Minkyu Kang87649982009-10-01 17:20:01 +090031
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +090032DECLARE_GLOBAL_DATA_PTR;
Minkyu Kang87649982009-10-01 17:20:01 +090033
34/* macro to read the 16 bit timer */
Minkyu Kang2917c0a2010-08-19 20:41:50 +090035static inline struct s5p_timer *s5p_get_base_timer(void)
Minkyu Kang87649982009-10-01 17:20:01 +090036{
Minkyu Kang2917c0a2010-08-19 20:41:50 +090037 return (struct s5p_timer *)samsung_get_base_timer();
Minkyu Kang87649982009-10-01 17:20:01 +090038}
39
40int timer_init(void)
41{
Minkyu Kangda0bff82011-03-10 20:05:58 +090042 /* PWM Timer 4 */
43 pwm_init(4, MUX_DIV_2, 0);
44 pwm_config(4, 0, 0);
45 pwm_enable(4);
Minkyu Kang87649982009-10-01 17:20:01 +090046
47 return 0;
48}
49
50/*
51 * timer without interrupts
52 */
53void reset_timer(void)
54{
55 reset_timer_masked();
56}
57
58unsigned long get_timer(unsigned long base)
59{
60 return get_timer_masked() - base;
61}
62
63void set_timer(unsigned long t)
64{
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +090065 gd->tbl = t;
Minkyu Kang87649982009-10-01 17:20:01 +090066}
67
68/* delay x useconds */
Ingo van Lilf0f778a2009-11-24 14:09:21 +010069void __udelay(unsigned long usec)
Minkyu Kang87649982009-10-01 17:20:01 +090070{
Minkyu Kangc396ee12010-11-19 17:00:26 +090071 struct s5p_timer *const timer = s5p_get_base_timer();
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +090072 unsigned long tmo, tmp, count_value;
Minkyu Kang87649982009-10-01 17:20:01 +090073
Minkyu Kangc396ee12010-11-19 17:00:26 +090074 count_value = readl(&timer->tcntb4);
75
Minkyu Kang87649982009-10-01 17:20:01 +090076 if (usec >= 1000) {
77 /*
78 * if "big" number, spread normalization
79 * to seconds
80 * 1. start to normalize for usec to ticks per sec
81 * 2. find number of "ticks" to wait to achieve target
82 * 3. finish normalize.
83 */
84 tmo = usec / 1000;
85 tmo *= (CONFIG_SYS_HZ * count_value / 10);
86 tmo /= 1000;
87 } else {
88 /* else small number, don't kill it prior to HZ multiply */
89 tmo = usec * CONFIG_SYS_HZ * count_value / 10;
90 tmo /= (1000 * 1000);
91 }
92
93 /* get current timestamp */
94 tmp = get_timer(0);
95
96 /* if setting this fordward will roll time stamp */
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +090097 /* reset "advancing" timestamp to 0, set lastinc value */
Minkyu Kang87649982009-10-01 17:20:01 +090098 /* else, set advancing stamp wake up time */
99 if ((tmo + tmp + 1) < tmp)
100 reset_timer_masked();
101 else
102 tmo += tmp;
103
104 /* loop till event */
105 while (get_timer_masked() < tmo)
106 ; /* nop */
107}
108
109void reset_timer_masked(void)
110{
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 */
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +0900114 gd->lastinc = readl(&timer->tcnto4);
115 gd->tbl = 0;
Minkyu Kang87649982009-10-01 17:20:01 +0900116}
117
118unsigned long get_timer_masked(void)
119{
Minkyu Kang2917c0a2010-08-19 20:41:50 +0900120 struct s5p_timer *const timer = s5p_get_base_timer();
Minkyu Kang87649982009-10-01 17:20:01 +0900121 unsigned long now = readl(&timer->tcnto4);
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +0900122 unsigned long count_value = readl(&timer->tcntb4);
Minkyu Kang87649982009-10-01 17:20:01 +0900123
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +0900124 if (gd->lastinc >= now)
125 gd->tbl += gd->lastinc - now;
Minkyu Kang87649982009-10-01 17:20:01 +0900126 else
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +0900127 gd->tbl += gd->lastinc + count_value - now;
Minkyu Kang87649982009-10-01 17:20:01 +0900128
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +0900129 gd->lastinc = now;
Minkyu Kang87649982009-10-01 17:20:01 +0900130
Minkyu Kang4cb7fbf2011-03-16 20:09:20 +0900131 return gd->tbl;
Minkyu Kang87649982009-10-01 17:20:01 +0900132}
133
134/*
135 * This function is derived from PowerPC code (read timebase as long long).
136 * On ARM it just returns the timer value.
137 */
138unsigned long long get_ticks(void)
139{
140 return get_timer(0);
141}
142
143/*
144 * This function is derived from PowerPC code (timebase clock frequency).
145 * On ARM it returns the number of timer ticks per second.
146 */
147unsigned long get_tbclk(void)
148{
149 return CONFIG_SYS_HZ;
150}