Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * Lineo, Inc. <www.lineo.com> |
| 5 | * Bernhard Kuhn <bkuhn@lineo.com> |
| 6 | * |
| 7 | * (C) Copyright 2002 |
| 8 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 9 | * Marius Groeger <mgroeger@sysgo.de> |
| 10 | * |
| 11 | * (C) Copyright 2002 |
| 12 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 13 | * Alex Zuepke <azu@sysgo.de> |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <common.h> |
| 17 | |
Jens Scharsig | 58aa563 | 2011-02-19 06:17:02 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
Andreas Bießmann | 20e3029 | 2010-11-30 09:45:06 +0000 | [diff] [blame] | 19 | #include <asm/arch/hardware.h> |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 20 | #include <asm/arch/at91_tc.h> |
Wenyou Yang | 57b7f29 | 2016-02-03 10:16:49 +0800 | [diff] [blame] | 21 | #include <asm/arch/clk.h> |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 22 | |
Andreas Bießmann | 20e3029 | 2010-11-30 09:45:06 +0000 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 25 | /* the number of clocks per CONFIG_SYS_HZ */ |
| 26 | #define TIMER_LOAD_VAL (CONFIG_SYS_HZ_CLOCK/CONFIG_SYS_HZ) |
| 27 | |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 28 | int timer_init(void) |
| 29 | { |
Jens Scharsig | 58aa563 | 2011-02-19 06:17:02 +0000 | [diff] [blame] | 30 | at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC; |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 31 | |
Wenyou Yang | 57b7f29 | 2016-02-03 10:16:49 +0800 | [diff] [blame] | 32 | at91_periph_clk_enable(ATMEL_ID_TC0); |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 33 | |
| 34 | writel(0, &tc->bcr); |
| 35 | writel(AT91_TC_BMR_TC0XC0S_NONE | AT91_TC_BMR_TC1XC1S_NONE | |
| 36 | AT91_TC_BMR_TC2XC2S_NONE , &tc->bmr); |
| 37 | |
| 38 | writel(AT91_TC_CCR_CLKDIS, &tc->tc[0].ccr); |
| 39 | /* set to MCLK/2 and restart the timer |
| 40 | when the value in TC_RC is reached */ |
| 41 | writel(AT91_TC_CMR_TCCLKS_CLOCK1 | AT91_TC_CMR_CPCTRG, &tc->tc[0].cmr); |
| 42 | |
Mike Williams | bf895ad | 2011-07-22 04:01:30 +0000 | [diff] [blame] | 43 | writel(0xFFFFFFFF, &tc->tc[0].idr); /* disable interrupts */ |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 44 | writel(TIMER_LOAD_VAL, &tc->tc[0].rc); |
| 45 | |
| 46 | writel(AT91_TC_CCR_SWTRG | AT91_TC_CCR_CLKEN, &tc->tc[0].ccr); |
Simon Glass | a848da5 | 2012-12-13 20:48:35 +0000 | [diff] [blame] | 47 | gd->arch.lastinc = 0; |
Simon Glass | 2655ee1 | 2012-12-13 20:48:34 +0000 | [diff] [blame] | 48 | gd->arch.tbl = 0; |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | /* |
| 54 | * timer without interrupts |
| 55 | */ |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 56 | ulong get_timer(ulong base) |
| 57 | { |
| 58 | return get_timer_masked() - base; |
| 59 | } |
| 60 | |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 61 | void __udelay(unsigned long usec) |
| 62 | { |
| 63 | udelay_masked(usec); |
| 64 | } |
| 65 | |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 66 | ulong get_timer_raw(void) |
| 67 | { |
Jens Scharsig | 58aa563 | 2011-02-19 06:17:02 +0000 | [diff] [blame] | 68 | at91_tc_t *tc = (at91_tc_t *) ATMEL_BASE_TC; |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 69 | u32 now; |
| 70 | |
| 71 | now = readl(&tc->tc[0].cv) & 0x0000ffff; |
| 72 | |
Simon Glass | a848da5 | 2012-12-13 20:48:35 +0000 | [diff] [blame] | 73 | if (now >= gd->arch.lastinc) { |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 74 | /* normal mode */ |
Simon Glass | a848da5 | 2012-12-13 20:48:35 +0000 | [diff] [blame] | 75 | gd->arch.tbl += now - gd->arch.lastinc; |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 76 | } else { |
| 77 | /* we have an overflow ... */ |
Simon Glass | a848da5 | 2012-12-13 20:48:35 +0000 | [diff] [blame] | 78 | gd->arch.tbl += now + TIMER_LOAD_VAL - gd->arch.lastinc; |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 79 | } |
Simon Glass | a848da5 | 2012-12-13 20:48:35 +0000 | [diff] [blame] | 80 | gd->arch.lastinc = now; |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 81 | |
Simon Glass | 2655ee1 | 2012-12-13 20:48:34 +0000 | [diff] [blame] | 82 | return gd->arch.tbl; |
Jens Scharsig | 9bbaae3 | 2010-02-03 22:47:35 +0100 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | ulong get_timer_masked(void) |
| 86 | { |
| 87 | return get_timer_raw()/TIMER_LOAD_VAL; |
| 88 | } |
| 89 | |
| 90 | void udelay_masked(unsigned long usec) |
| 91 | { |
| 92 | u32 tmo; |
| 93 | u32 endtime; |
| 94 | signed long diff; |
| 95 | |
| 96 | tmo = CONFIG_SYS_HZ_CLOCK / 1000; |
| 97 | tmo *= usec; |
| 98 | tmo /= 1000; |
| 99 | |
| 100 | endtime = get_timer_raw() + tmo; |
| 101 | |
| 102 | do { |
| 103 | u32 now = get_timer_raw(); |
| 104 | diff = endtime - now; |
| 105 | } while (diff >= 0); |
| 106 | } |
| 107 | |
| 108 | /* |
| 109 | * This function is derived from PowerPC code (read timebase as long long). |
| 110 | * On ARM it just returns the timer value. |
| 111 | */ |
| 112 | unsigned long long get_ticks(void) |
| 113 | { |
| 114 | return get_timer(0); |
| 115 | } |
| 116 | |
| 117 | /* |
| 118 | * This function is derived from PowerPC code (timebase clock frequency). |
| 119 | * On ARM it returns the number of timer ticks per second. |
| 120 | */ |
| 121 | ulong get_tbclk(void) |
| 122 | { |
| 123 | return CONFIG_SYS_HZ; |
| 124 | } |