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