powerpc: Call jump_label_init() in apply_feature_fixups()
[deliverable/linux.git] / arch / powerpc / include / asm / time.h
CommitLineData
f2783c15
PM
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__
f2783c15
PM
17#include <linux/types.h>
18#include <linux/percpu.h>
19
20#include <asm/processor.h>
f2783c15
PM
21
22/* time.c */
23extern unsigned long tb_ticks_per_jiffy;
24extern unsigned long tb_ticks_per_usec;
25extern unsigned long tb_ticks_per_sec;
6e35994d 26extern struct clock_event_device decrementer_clockevent;
f2783c15
PM
27
28struct rtc_time;
29extern void to_tm(int tim, struct rtc_time * tm);
1b67bee1 30extern void tick_broadcast_ipi_handler(void);
f2783c15
PM
31
32extern void generic_calibrate_decr(void);
f2783c15
PM
33
34/* Some sane defaults: 125 MHz timebase, 1GHz processor */
35extern unsigned long ppc_proc_freq;
36#define DEFAULT_PROC_FREQ (DEFAULT_TB_FREQ * 8)
37extern unsigned long ppc_tb_freq;
38#define DEFAULT_TB_FREQ 125000000UL
39
f2783c15
PM
40struct 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
5d14a18d 48#define __USE_RTC() (!cpu_has_feature(CPU_FTR_USE_TB))
f2783c15
PM
49#else
50#define __USE_RTC() 0
51#endif
52
859deea9
BH
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
f2783c15
PM
60static inline unsigned long get_tbl(void)
61{
f2783c15 62#if defined(CONFIG_403GCX)
859deea9 63 unsigned long tbl;
f2783c15 64 asm volatile("mfspr %0, 0x3dd" : "=r" (tbl));
859deea9 65 return tbl;
f2783c15 66#else
859deea9 67 return mftbl();
f2783c15 68#endif
f2783c15
PM
69}
70
71static inline unsigned int get_tbu(void)
72{
859deea9 73#ifdef CONFIG_403GCX
f2783c15 74 unsigned int tbu;
f2783c15 75 asm volatile("mfspr %0, 0x3dc" : "=r" (tbu));
859deea9 76 return tbu;
f2783c15 77#else
859deea9 78 return mftbu();
f2783c15 79#endif
f2783c15 80}
859deea9 81#endif /* !CONFIG_PPC64 */
f2783c15
PM
82
83static inline unsigned int get_rtcl(void)
84{
85 unsigned int rtcl;
86
87 asm volatile("mfrtcl %0" : "=r" (rtcl));
88 return rtcl;
89}
90
96c44507
PM
91static 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
8f42ab27
AK
102static 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
f2783c15
PM
111#ifdef CONFIG_PPC64
112static inline u64 get_tb(void)
113{
114 return mftb();
115}
859deea9 116#else /* CONFIG_PPC64 */
f2783c15
PM
117static 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}
859deea9 129#endif /* !CONFIG_PPC64 */
f2783c15 130
c27da339
BH
131static inline u64 get_tb_or_rtc(void)
132{
133 return __USE_RTC() ? get_rtc() : get_tb();
134}
135
f2783c15
PM
136static 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 */
79901024 149static inline u64 get_dec(void)
f2783c15
PM
150{
151#if defined(CONFIG_40x)
152 return (mfspr(SPRN_PIT));
153#else
154 return (mfspr(SPRN_DEC));
155#endif
156}
157
43875cc0
PM
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 */
79901024 163static inline void set_dec(u64 val)
f2783c15
PM
164{
165#if defined(CONFIG_40x)
79901024 166 mtspr(SPRN_PIT, (u32) val);
f2783c15 167#else
43875cc0
PM
168#ifndef CONFIG_BOOKE
169 --val;
f2783c15 170#endif
43875cc0 171 mtspr(SPRN_DEC, val);
63e9e1c2 172#endif /* not 40x */
f2783c15
PM
173}
174
175static 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
191extern u64 mulhdu(u64, u64);
192#endif
193
a5b518ed
PM
194extern void div128_by_32(u64 dividend_high, u64 dividend_low,
195 unsigned divisor, struct div_result *dr);
f2783c15
PM
196
197/* Used to store Processor Utilization register (purr) values */
198
199struct cpu_usage {
200 u64 current_tb; /* Holds the current purr register values */
201};
202
203DECLARE_PER_CPU(struct cpu_usage, cpu_usage_array);
204
d831d0b8 205extern void secondary_cpu_time_init(void);
71712b45 206
7df10275 207DECLARE_PER_CPU(u64, decrementers_next_tb);
37fb9a02 208
b6c295df
PM
209/* Convert timebase ticks to nanoseconds */
210unsigned long long tb_to_ns(unsigned long long tb_ticks);
211
f2783c15 212#endif /* __KERNEL__ */
7a69af63 213#endif /* __POWERPC_TIME_H */
This page took 0.767597 seconds and 5 git commands to generate.