Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
Stelian Pop | c9e798d | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 3 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 4 | * Lead Tech Design <www.leadtechdesign.com> |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | #include <common.h> |
Reinhard Meyer | 86592f6 | 2010-11-07 13:26:14 +0100 | [diff] [blame] | 26 | #include <asm/io.h> |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 27 | #include <asm/arch/hardware.h> |
Stelian Pop | 983c1db | 2008-03-26 20:52:32 +0100 | [diff] [blame] | 28 | #include <asm/arch/at91_pit.h> |
| 29 | #include <asm/arch/at91_pmc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 30 | #include <asm/arch/clk.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 31 | #include <div64.h> |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 32 | |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 33 | #if !defined(CONFIG_AT91FAMILY) |
| 34 | # error You need to define CONFIG_AT91FAMILY in your board config! |
| 35 | #endif |
| 36 | |
| 37 | DECLARE_GLOBAL_DATA_PTR; |
| 38 | |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 39 | /* |
Stelian Pop | a8a78f2 | 2008-03-26 20:52:28 +0100 | [diff] [blame] | 40 | * We're using the AT91CAP9/SAM9 PITC in 32 bit mode, by |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 41 | * setting the 20 bit counter period to its maximum (0xfffff). |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 42 | * (See the relevant data sheets to understand that this really works) |
| 43 | * |
| 44 | * We do also mimic the typical powerpc way of incrementing |
| 45 | * two 32 bit registers called tbl and tbu. |
| 46 | * |
| 47 | * Those registers increment at 1/16 the main clock rate. |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 48 | */ |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 49 | |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 50 | #define TIMER_LOAD_VAL 0xfffff |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 51 | |
| 52 | static inline unsigned long long tick_to_time(unsigned long long tick) |
| 53 | { |
| 54 | tick *= CONFIG_SYS_HZ; |
Simon Glass | b339051 | 2012-12-13 20:48:32 +0000 | [diff] [blame] | 55 | do_div(tick, gd->arch.timer_rate_hz); |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 56 | |
| 57 | return tick; |
| 58 | } |
| 59 | |
| 60 | static inline unsigned long long usec_to_tick(unsigned long long usec) |
| 61 | { |
Simon Glass | b339051 | 2012-12-13 20:48:32 +0000 | [diff] [blame] | 62 | usec *= gd->arch.timer_rate_hz; |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 63 | do_div(usec, 1000000); |
| 64 | |
| 65 | return usec; |
| 66 | } |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 67 | |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 68 | /* |
| 69 | * Use the PITC in full 32 bit incrementing mode |
| 70 | */ |
Stelian Pop | 61106a5 | 2008-03-26 21:52:27 +0100 | [diff] [blame] | 71 | int timer_init(void) |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 72 | { |
Reinhard Meyer | 9f3fe90 | 2010-11-03 15:39:55 +0100 | [diff] [blame] | 73 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
| 74 | at91_pit_t *pit = (at91_pit_t *) ATMEL_BASE_PIT; |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 75 | |
| 76 | /* Enable PITC Clock */ |
Reinhard Meyer | 9f3fe90 | 2010-11-03 15:39:55 +0100 | [diff] [blame] | 77 | writel(1 << ATMEL_ID_SYS, &pmc->pcer); |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 78 | |
| 79 | /* Enable PITC */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 80 | writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr); |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 81 | |
Simon Glass | b339051 | 2012-12-13 20:48:32 +0000 | [diff] [blame] | 82 | gd->arch.timer_rate_hz = gd->arch.mck_rate_hz / 16; |
Simon Glass | 66ee692 | 2012-12-13 20:48:34 +0000 | [diff] [blame] | 83 | gd->arch.tbu = gd->arch.tbl = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 84 | |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | /* |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 89 | * Get the current 64 bit timer tick count |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 90 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 91 | unsigned long long get_ticks(void) |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 92 | { |
Reinhard Meyer | 9f3fe90 | 2010-11-03 15:39:55 +0100 | [diff] [blame] | 93 | at91_pit_t *pit = (at91_pit_t *) ATMEL_BASE_PIT; |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 94 | |
| 95 | ulong now = readl(&pit->piir); |
Stelian Pop | 983c1db | 2008-03-26 20:52:32 +0100 | [diff] [blame] | 96 | |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 97 | /* increment tbu if tbl has rolled over */ |
Simon Glass | 66ee692 | 2012-12-13 20:48:34 +0000 | [diff] [blame] | 98 | if (now < gd->arch.tbl) |
Simon Glass | 8ff43b0 | 2012-12-13 20:48:33 +0000 | [diff] [blame] | 99 | gd->arch.tbu++; |
Simon Glass | 66ee692 | 2012-12-13 20:48:34 +0000 | [diff] [blame] | 100 | gd->arch.tbl = now; |
| 101 | return (((unsigned long long)gd->arch.tbu) << 32) | gd->arch.tbl; |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Ingo van Lil | 3eb90ba | 2009-11-24 14:09:21 +0100 | [diff] [blame] | 104 | void __udelay(unsigned long usec) |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 105 | { |
Reinhard Meyer | cfff263 | 2010-11-10 18:07:56 +0100 | [diff] [blame] | 106 | unsigned long long start; |
Jean-Christophe PLAGNIOL-VILLARD | 6ebff36 | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 107 | ulong tmo; |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 108 | |
Reinhard Meyer | cfff263 | 2010-11-10 18:07:56 +0100 | [diff] [blame] | 109 | start = get_ticks(); /* get current timestamp */ |
| 110 | tmo = usec_to_tick(usec); /* convert usecs to ticks */ |
| 111 | while ((get_ticks() - start) < tmo) |
| 112 | ; /* loop till time has passed */ |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 115 | /* |
Reinhard Meyer | cfff263 | 2010-11-10 18:07:56 +0100 | [diff] [blame] | 116 | * get_timer(base) can be used to check for timeouts or |
| 117 | * to measure elasped time relative to an event: |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 118 | * |
Reinhard Meyer | cfff263 | 2010-11-10 18:07:56 +0100 | [diff] [blame] | 119 | * ulong start_time = get_timer(0) sets start_time to the current |
| 120 | * time value. |
| 121 | * get_timer(start_time) returns the time elapsed since then. |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 122 | * |
| 123 | * The time is used in CONFIG_SYS_HZ units! |
| 124 | */ |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 125 | ulong get_timer(ulong base) |
| 126 | { |
Reinhard Meyer | cfff263 | 2010-11-10 18:07:56 +0100 | [diff] [blame] | 127 | return tick_to_time(get_ticks()) - base; |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /* |
Reinhard Meyer | 5dca710 | 2010-10-05 16:54:35 +0200 | [diff] [blame] | 131 | * Return the number of timer ticks per second. |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 132 | */ |
| 133 | ulong get_tbclk(void) |
| 134 | { |
Simon Glass | b339051 | 2012-12-13 20:48:32 +0000 | [diff] [blame] | 135 | return gd->arch.timer_rate_hz; |
Stelian Pop | fefb6c1 | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 136 | } |