Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 1 | /* |
| 2 | * asm-blackfin/time.h: |
| 3 | * |
| 4 | * Copyright 2004-2008 Analog Devices Inc. |
| 5 | * |
| 6 | * Licensed under the GPL-2 or later. |
| 7 | */ |
| 8 | |
| 9 | #ifndef _ASM_BLACKFIN_TIME_H |
| 10 | #define _ASM_BLACKFIN_TIME_H |
| 11 | |
| 12 | /* |
| 13 | * The way that the Blackfin core timer works is: |
| 14 | * - CCLK is divided by a programmable 8-bit pre-scaler (TSCALE) |
| 15 | * - Every time TSCALE ticks, a 32bit is counted down (TCOUNT) |
| 16 | * |
| 17 | * If you take the fastest clock (1ns, or 1GHz to make the math work easier) |
| 18 | * 10ms is 10,000,000 clock ticks, which fits easy into a 32-bit counter |
| 19 | * (32 bit counter is 4,294,967,296ns or 4.2 seconds) so, we don't need |
| 20 | * to use TSCALE, and program it to zero (which is pass CCLK through). |
| 21 | * If you feel like using it, try to keep HZ * TIMESCALE to some |
| 22 | * value that divides easy (like power of 2). |
| 23 | */ |
| 24 | |
| 25 | #ifndef CONFIG_CPU_FREQ |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 26 | # define TIME_SCALE 1 |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 27 | #else |
| 28 | /* |
| 29 | * Blackfin CPU frequency scaling supports max Core Clock 1, 1/2 and 1/4 . |
| 30 | * Whenever we change the Core Clock frequency changes we immediately |
| 31 | * adjust the Core Timer Presale Register. This way we don't lose time. |
| 32 | */ |
| 33 | #define TIME_SCALE 4 |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 34 | |
| 35 | # ifdef CONFIG_CYCLES_CLOCKSOURCE |
Vitja Makarov | 1bfb4b2 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 36 | extern unsigned long long __bfin_cycles_off; |
| 37 | extern unsigned int __bfin_cycles_mod; |
Graf Yang | 6c2b707 | 2010-01-27 11:16:32 +0000 | [diff] [blame] | 38 | # endif |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 39 | #endif |
| 40 | |
Yi Li | 0d152c2 | 2009-12-28 10:21:49 +0000 | [diff] [blame] | 41 | #if defined(CONFIG_TICKSOURCE_CORETMR) |
| 42 | extern void bfin_coretmr_init(void); |
| 43 | extern void bfin_coretmr_clockevent_init(void); |
| 44 | #endif |
| 45 | |
Michael Hennerich | e6c91b6 | 2008-04-25 04:58:29 +0800 | [diff] [blame] | 46 | #endif |