Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Cirrus Logic EP93xx timer support. |
| 4 | * |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 5 | * Copyright (C) 2009, 2010 Matthias Kaehlcke <matthias@kaehlcke.net> |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 6 | * |
| 7 | * Copyright (C) 2004, 2005 |
| 8 | * Cory T. Tusar, Videon Central, Inc., <ctusar@videon-central.com> |
| 9 | * |
| 10 | * Based on the original intr.c Cirrus Logic EP93xx Rev D. interrupt support, |
| 11 | * author unknown. |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <common.h> |
| 15 | #include <linux/types.h> |
| 16 | #include <asm/arch/ep93xx.h> |
| 17 | #include <asm/io.h> |
Matthias Kaehlcke | f56e70f | 2010-02-24 00:22:00 +0100 | [diff] [blame] | 18 | #include <div64.h> |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 19 | |
| 20 | #define TIMER_CLKSEL (1 << 3) |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 21 | #define TIMER_ENABLE (1 << 7) |
| 22 | |
Matthias Kaehlcke | 64d667b | 2010-03-09 22:13:20 +0100 | [diff] [blame] | 23 | #define TIMER_FREQ 508469 /* ticks / second */ |
Matthias Kaehlcke | 8df23b7 | 2010-02-24 00:22:09 +0100 | [diff] [blame] | 24 | #define TIMER_MAX_VAL 0xFFFFFFFF |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 25 | |
Matthias Kaehlcke | 8df23b7 | 2010-02-24 00:22:09 +0100 | [diff] [blame] | 26 | static struct ep93xx_timer |
| 27 | { |
| 28 | unsigned long long ticks; |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 29 | unsigned long last_read; |
Matthias Kaehlcke | 8df23b7 | 2010-02-24 00:22:09 +0100 | [diff] [blame] | 30 | } timer; |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 31 | |
Matthias Kaehlcke | 64d667b | 2010-03-09 22:13:20 +0100 | [diff] [blame] | 32 | static inline unsigned long long usecs_to_ticks(unsigned long usecs) |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 33 | { |
Matthias Kaehlcke | 64d667b | 2010-03-09 22:13:20 +0100 | [diff] [blame] | 34 | unsigned long long ticks = (unsigned long long)usecs * TIMER_FREQ; |
| 35 | do_div(ticks, 1000 * 1000); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 36 | |
| 37 | return ticks; |
| 38 | } |
| 39 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 40 | static inline void read_timer(void) |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 41 | { |
Matthias Kaehlcke | 9d46656 | 2010-03-09 22:13:47 +0100 | [diff] [blame] | 42 | struct timer_regs *timer_regs = (struct timer_regs *)TIMER_BASE; |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 43 | const unsigned long now = TIMER_MAX_VAL - readl(&timer_regs->timer3.value); |
| 44 | |
| 45 | if (now >= timer.last_read) |
| 46 | timer.ticks += now - timer.last_read; |
| 47 | else |
| 48 | /* an overflow occurred */ |
| 49 | timer.ticks += TIMER_MAX_VAL - timer.last_read + now; |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 50 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 51 | timer.last_read = now; |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | /* |
Matthias Kaehlcke | 957f7b5 | 2010-03-09 22:13:33 +0100 | [diff] [blame] | 55 | * Get the number of ticks (in CONFIG_SYS_HZ resolution) |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 56 | */ |
| 57 | unsigned long long get_ticks(void) |
| 58 | { |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 59 | unsigned long long sys_ticks; |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 60 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 61 | read_timer(); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 62 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 63 | sys_ticks = timer.ticks * CONFIG_SYS_HZ; |
| 64 | do_div(sys_ticks, TIMER_FREQ); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 65 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 66 | return sys_ticks; |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | unsigned long get_timer_masked(void) |
| 70 | { |
Matthias Kaehlcke | 957f7b5 | 2010-03-09 22:13:33 +0100 | [diff] [blame] | 71 | return get_ticks(); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | unsigned long get_timer(unsigned long base) |
| 75 | { |
| 76 | return get_timer_masked() - base; |
| 77 | } |
| 78 | |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 79 | void __udelay(unsigned long usec) |
| 80 | { |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 81 | unsigned long long target; |
Matthias Kaehlcke | 957f7b5 | 2010-03-09 22:13:33 +0100 | [diff] [blame] | 82 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 83 | read_timer(); |
| 84 | |
| 85 | target = timer.ticks + usecs_to_ticks(usec); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 86 | |
Matthias Kaehlcke | 957f7b5 | 2010-03-09 22:13:33 +0100 | [diff] [blame] | 87 | while (timer.ticks < target) |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 88 | read_timer(); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | int timer_init(void) |
| 92 | { |
Matthias Kaehlcke | 9d46656 | 2010-03-09 22:13:47 +0100 | [diff] [blame] | 93 | struct timer_regs *timer_regs = (struct timer_regs *)TIMER_BASE; |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 94 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 95 | /* use timer 3 with 508KHz and free running, not enabled now */ |
Matthias Kaehlcke | 9d46656 | 2010-03-09 22:13:47 +0100 | [diff] [blame] | 96 | writel(TIMER_CLKSEL, &timer_regs->timer3.control); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 97 | |
Matthias Kaehlcke | 37911ae | 2010-03-09 22:13:56 +0100 | [diff] [blame] | 98 | /* set initial timer value */ |
Matthias Kaehlcke | 9d46656 | 2010-03-09 22:13:47 +0100 | [diff] [blame] | 99 | writel(TIMER_MAX_VAL, &timer_regs->timer3.load); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 100 | |
Matthias Kaehlcke | 8df23b7 | 2010-02-24 00:22:09 +0100 | [diff] [blame] | 101 | /* Enable the timer */ |
| 102 | writel(TIMER_ENABLE | TIMER_CLKSEL, |
Matthias Kaehlcke | 9d46656 | 2010-03-09 22:13:47 +0100 | [diff] [blame] | 103 | &timer_regs->timer3.control); |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 104 | |
Graeme Russ | 944a7fe | 2011-07-15 02:21:14 +0000 | [diff] [blame] | 105 | /* Reset the timer */ |
| 106 | read_timer(); |
| 107 | timer.ticks = 0; |
Matthias Kaehlcke | 195dbd1 | 2010-02-01 21:29:39 +0100 | [diff] [blame] | 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | /* |
| 113 | * This function is derived from PowerPC code (timebase clock frequency). |
| 114 | * On ARM it returns the number of timer ticks per second. |
| 115 | */ |
| 116 | unsigned long get_tbclk(void) |
| 117 | { |
| 118 | return CONFIG_SYS_HZ; |
| 119 | } |