Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Common time prototypes and such for all ppc machines. |
| 3 | * |
| 4 | * Written by Cort Dougan (cort@cs.nmt.edu) to merge |
| 5 | * Paul Mackerras' version and mine for PReP and Pmac. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #ifndef __POWERPC_TIME_H |
| 14 | #define __POWERPC_TIME_H |
| 15 | |
| 16 | #ifdef __KERNEL__ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 17 | #include <linux/types.h> |
| 18 | #include <linux/percpu.h> |
| 19 | |
| 20 | #include <asm/processor.h> |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 21 | |
| 22 | /* time.c */ |
| 23 | extern unsigned long tb_ticks_per_jiffy; |
| 24 | extern unsigned long tb_ticks_per_usec; |
| 25 | extern unsigned long tb_ticks_per_sec; |
Bharat Bhushan | 6e35994 | 2012-04-18 06:01:19 +0000 | [diff] [blame] | 26 | extern struct clock_event_device decrementer_clockevent; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 27 | |
| 28 | struct rtc_time; |
| 29 | extern void to_tm(int tim, struct rtc_time * tm); |
Srivatsa S. Bhat | 1b67bee | 2014-02-26 05:37:43 +0530 | [diff] [blame] | 30 | extern void tick_broadcast_ipi_handler(void); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 31 | |
| 32 | extern void generic_calibrate_decr(void); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 33 | |
| 34 | /* Some sane defaults: 125 MHz timebase, 1GHz processor */ |
| 35 | extern unsigned long ppc_proc_freq; |
| 36 | #define DEFAULT_PROC_FREQ (DEFAULT_TB_FREQ * 8) |
| 37 | extern unsigned long ppc_tb_freq; |
| 38 | #define DEFAULT_TB_FREQ 125000000UL |
| 39 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 40 | struct div_result { |
| 41 | u64 result_high; |
| 42 | u64 result_low; |
| 43 | }; |
| 44 | |
| 45 | /* Accessor functions for the timebase (RTC on 601) registers. */ |
| 46 | /* If one day CONFIG_POWER is added just define __USE_RTC as 1 */ |
| 47 | #ifdef CONFIG_6xx |
Paul Mackerras | 5d14a18 | 2005-10-20 22:33:06 +1000 | [diff] [blame] | 48 | #define __USE_RTC() (!cpu_has_feature(CPU_FTR_USE_TB)) |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 49 | #else |
| 50 | #define __USE_RTC() 0 |
| 51 | #endif |
| 52 | |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 53 | #ifdef CONFIG_PPC64 |
| 54 | |
| 55 | /* For compatibility, get_tbl() is defined as get_tb() on ppc64 */ |
| 56 | #define get_tbl get_tb |
| 57 | |
| 58 | #else |
| 59 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 60 | static inline unsigned long get_tbl(void) |
| 61 | { |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 62 | #if defined(CONFIG_403GCX) |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 63 | unsigned long tbl; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 64 | asm volatile("mfspr %0, 0x3dd" : "=r" (tbl)); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 65 | return tbl; |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 66 | #else |
| 67 | return mftbl(); |
| 68 | #endif |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | static inline unsigned int get_tbu(void) |
| 72 | { |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 73 | #ifdef CONFIG_403GCX |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 74 | unsigned int tbu; |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 75 | asm volatile("mfspr %0, 0x3dc" : "=r" (tbu)); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 76 | return tbu; |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 77 | #else |
| 78 | return mftbu(); |
| 79 | #endif |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 80 | } |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 81 | #endif /* !CONFIG_PPC64 */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 82 | |
| 83 | static inline unsigned int get_rtcl(void) |
| 84 | { |
| 85 | unsigned int rtcl; |
| 86 | |
| 87 | asm volatile("mfrtcl %0" : "=r" (rtcl)); |
| 88 | return rtcl; |
| 89 | } |
| 90 | |
Paul Mackerras | 96c4450 | 2005-10-23 17:14:56 +1000 | [diff] [blame] | 91 | static inline u64 get_rtc(void) |
| 92 | { |
| 93 | unsigned int hi, lo, hi2; |
| 94 | |
| 95 | do { |
| 96 | asm volatile("mfrtcu %0; mfrtcl %1; mfrtcu %2" |
| 97 | : "=r" (hi), "=r" (lo), "=r" (hi2)); |
| 98 | } while (hi2 != hi); |
| 99 | return (u64)hi * 1000000000 + lo; |
| 100 | } |
| 101 | |
Aneesh Kumar K.V | 8f42ab2 | 2014-06-05 17:38:02 +0530 | [diff] [blame] | 102 | static inline u64 get_vtb(void) |
| 103 | { |
| 104 | #ifdef CONFIG_PPC_BOOK3S_64 |
| 105 | if (cpu_has_feature(CPU_FTR_ARCH_207S)) |
| 106 | return mfvtb(); |
| 107 | #endif |
| 108 | return 0; |
| 109 | } |
| 110 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 111 | #ifdef CONFIG_PPC64 |
| 112 | static inline u64 get_tb(void) |
| 113 | { |
| 114 | return mftb(); |
| 115 | } |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 116 | #else /* CONFIG_PPC64 */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 117 | static inline u64 get_tb(void) |
| 118 | { |
| 119 | unsigned int tbhi, tblo, tbhi2; |
| 120 | |
| 121 | do { |
| 122 | tbhi = get_tbu(); |
| 123 | tblo = get_tbl(); |
| 124 | tbhi2 = get_tbu(); |
| 125 | } while (tbhi != tbhi2); |
| 126 | |
| 127 | return ((u64)tbhi << 32) | tblo; |
| 128 | } |
Benjamin Herrenschmidt | 859deea | 2006-10-20 14:37:05 +1000 | [diff] [blame] | 129 | #endif /* !CONFIG_PPC64 */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 130 | |
Benjamin Herrenschmidt | c27da339 | 2007-09-19 14:21:56 +1000 | [diff] [blame] | 131 | static inline u64 get_tb_or_rtc(void) |
| 132 | { |
| 133 | return __USE_RTC() ? get_rtc() : get_tb(); |
| 134 | } |
| 135 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 136 | static inline void set_tb(unsigned int upper, unsigned int lower) |
| 137 | { |
| 138 | mtspr(SPRN_TBWL, 0); |
| 139 | mtspr(SPRN_TBWU, upper); |
| 140 | mtspr(SPRN_TBWL, lower); |
| 141 | } |
| 142 | |
| 143 | /* Accessor functions for the decrementer register. |
| 144 | * The 4xx doesn't even have a decrementer. I tried to use the |
| 145 | * generic timer interrupt code, which seems OK, with the 4xx PIT |
| 146 | * in auto-reload mode. The problem is PIT stops counting when it |
| 147 | * hits zero. If it would wrap, we could use it just like a decrementer. |
| 148 | */ |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame^] | 149 | static inline u64 get_dec(void) |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 150 | { |
| 151 | #if defined(CONFIG_40x) |
| 152 | return (mfspr(SPRN_PIT)); |
| 153 | #else |
| 154 | return (mfspr(SPRN_DEC)); |
| 155 | #endif |
| 156 | } |
| 157 | |
Paul Mackerras | 43875cc | 2007-10-31 22:25:35 +1100 | [diff] [blame] | 158 | /* |
| 159 | * Note: Book E and 4xx processors differ from other PowerPC processors |
| 160 | * in when the decrementer generates its interrupt: on the 1 to 0 |
| 161 | * transition for Book E/4xx, but on the 0 to -1 transition for others. |
| 162 | */ |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame^] | 163 | static inline void set_dec(u64 val) |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 164 | { |
| 165 | #if defined(CONFIG_40x) |
Oliver O'Halloran | 79901024 | 2016-07-01 16:20:39 +1000 | [diff] [blame^] | 166 | mtspr(SPRN_PIT, (u32) val); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 167 | #else |
Paul Mackerras | 43875cc | 2007-10-31 22:25:35 +1100 | [diff] [blame] | 168 | #ifndef CONFIG_BOOKE |
| 169 | --val; |
| 170 | #endif |
Paul Mackerras | 43875cc | 2007-10-31 22:25:35 +1100 | [diff] [blame] | 171 | mtspr(SPRN_DEC, val); |
Christophe Leroy | 63e9e1c | 2016-02-09 17:08:16 +0100 | [diff] [blame] | 172 | #endif /* not 40x */ |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | static inline unsigned long tb_ticks_since(unsigned long tstamp) |
| 176 | { |
| 177 | if (__USE_RTC()) { |
| 178 | int delta = get_rtcl() - (unsigned int) tstamp; |
| 179 | return delta < 0 ? delta + 1000000000 : delta; |
| 180 | } |
| 181 | return get_tbl() - tstamp; |
| 182 | } |
| 183 | |
| 184 | #define mulhwu(x,y) \ |
| 185 | ({unsigned z; asm ("mulhwu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;}) |
| 186 | |
| 187 | #ifdef CONFIG_PPC64 |
| 188 | #define mulhdu(x,y) \ |
| 189 | ({unsigned long z; asm ("mulhdu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;}) |
| 190 | #else |
| 191 | extern u64 mulhdu(u64, u64); |
| 192 | #endif |
| 193 | |
Paul Mackerras | a5b518e | 2005-10-22 14:55:23 +1000 | [diff] [blame] | 194 | extern void div128_by_32(u64 dividend_high, u64 dividend_low, |
| 195 | unsigned divisor, struct div_result *dr); |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 196 | |
| 197 | /* Used to store Processor Utilization register (purr) values */ |
| 198 | |
| 199 | struct cpu_usage { |
| 200 | u64 current_tb; /* Holds the current purr register values */ |
| 201 | }; |
| 202 | |
| 203 | DECLARE_PER_CPU(struct cpu_usage, cpu_usage_array); |
| 204 | |
Tony Breeds | d831d0b | 2007-09-21 13:26:03 +1000 | [diff] [blame] | 205 | extern void secondary_cpu_time_init(void); |
Tony Breeds | 71712b4 | 2007-06-22 16:54:30 +1000 | [diff] [blame] | 206 | |
Anton Blanchard | 7df1027 | 2011-11-23 20:07:22 +0000 | [diff] [blame] | 207 | DECLARE_PER_CPU(u64, decrementers_next_tb); |
Anton Blanchard | 37fb9a0 | 2011-11-23 20:07:17 +0000 | [diff] [blame] | 208 | |
Paul Mackerras | b6c295d | 2015-03-28 14:21:02 +1100 | [diff] [blame] | 209 | /* Convert timebase ticks to nanoseconds */ |
| 210 | unsigned long long tb_to_ns(unsigned long long tb_ticks); |
| 211 | |
Paul Mackerras | f2783c1 | 2005-10-20 09:23:26 +1000 | [diff] [blame] | 212 | #endif /* __KERNEL__ */ |
Kim Phillips | 7a69af6 | 2006-09-26 17:46:37 -0500 | [diff] [blame] | 213 | #endif /* __POWERPC_TIME_H */ |