blob: a78285010d62f852674327f09a73fda3b7a69a8b [file] [log] [blame]
Paul Mackerrasf2783c12005-10-20 09:23:26 +10001/*
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 Mackerrasf2783c12005-10-20 09:23:26 +100017#include <linux/types.h>
18#include <linux/percpu.h>
19
20#include <asm/processor.h>
Stephen Rothwell9b475692006-06-28 11:51:41 +100021#ifdef CONFIG_PPC_ISERIES
Paul Mackerrasf2783c12005-10-20 09:23:26 +100022#include <asm/paca.h>
Stephen Rothwell9b475692006-06-28 11:51:41 +100023#include <asm/firmware.h>
Kelly Daly1da44032005-11-01 16:59:20 +110024#include <asm/iseries/hv_call.h>
Paul Mackerrasf2783c12005-10-20 09:23:26 +100025#endif
26
27/* time.c */
28extern unsigned long tb_ticks_per_jiffy;
29extern unsigned long tb_ticks_per_usec;
30extern unsigned long tb_ticks_per_sec;
31extern u64 tb_to_xs;
32extern unsigned tb_to_us;
Paul Mackerrasf2783c12005-10-20 09:23:26 +100033
34struct rtc_time;
35extern void to_tm(int tim, struct rtc_time * tm);
36extern time_t last_rtc_update;
37
38extern void generic_calibrate_decr(void);
39extern void wakeup_decrementer(void);
Paul Mackerrasc6622f62006-02-24 10:06:59 +110040extern void snapshot_timebase(void);
Paul Mackerrasf2783c12005-10-20 09:23:26 +100041
Kim Phillips7a69af62006-09-26 17:46:37 -050042#ifdef CONFIG_RTC_CLASS
43extern int __init rtc_class_hookup(void);
44#endif
45
Paul Mackerrasf2783c12005-10-20 09:23:26 +100046/* Some sane defaults: 125 MHz timebase, 1GHz processor */
47extern unsigned long ppc_proc_freq;
48#define DEFAULT_PROC_FREQ (DEFAULT_TB_FREQ * 8)
49extern unsigned long ppc_tb_freq;
50#define DEFAULT_TB_FREQ 125000000UL
51
52/*
53 * By putting all of this stuff into a single struct we
54 * reduce the number of cache lines touched by do_gettimeofday.
55 * Both by collecting all of the data in one cache line and
56 * by touching only one TOC entry on ppc64.
57 */
58struct gettimeofday_vars {
59 u64 tb_to_xs;
60 u64 stamp_xsec;
61 u64 tb_orig_stamp;
62};
63
64struct gettimeofday_struct {
65 unsigned long tb_ticks_per_sec;
66 struct gettimeofday_vars vars[2];
67 struct gettimeofday_vars * volatile varp;
68 unsigned var_idx;
69 unsigned tb_to_us;
70};
71
72struct div_result {
73 u64 result_high;
74 u64 result_low;
75};
76
77/* Accessor functions for the timebase (RTC on 601) registers. */
78/* If one day CONFIG_POWER is added just define __USE_RTC as 1 */
79#ifdef CONFIG_6xx
Paul Mackerras5d14a182005-10-20 22:33:06 +100080#define __USE_RTC() (!cpu_has_feature(CPU_FTR_USE_TB))
Paul Mackerrasf2783c12005-10-20 09:23:26 +100081#else
82#define __USE_RTC() 0
83#endif
84
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +100085#ifdef CONFIG_PPC64
86
87/* For compatibility, get_tbl() is defined as get_tb() on ppc64 */
88#define get_tbl get_tb
89
90#else
91
Paul Mackerrasf2783c12005-10-20 09:23:26 +100092static inline unsigned long get_tbl(void)
93{
Paul Mackerrasf2783c12005-10-20 09:23:26 +100094#if defined(CONFIG_403GCX)
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +100095 unsigned long tbl;
Paul Mackerrasf2783c12005-10-20 09:23:26 +100096 asm volatile("mfspr %0, 0x3dd" : "=r" (tbl));
Paul Mackerrasf2783c12005-10-20 09:23:26 +100097 return tbl;
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +100098#else
99 return mftbl();
100#endif
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000101}
102
103static inline unsigned int get_tbu(void)
104{
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +1000105#ifdef CONFIG_403GCX
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000106 unsigned int tbu;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000107 asm volatile("mfspr %0, 0x3dc" : "=r" (tbu));
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000108 return tbu;
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +1000109#else
110 return mftbu();
111#endif
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000112}
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +1000113#endif /* !CONFIG_PPC64 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000114
115static inline unsigned int get_rtcl(void)
116{
117 unsigned int rtcl;
118
119 asm volatile("mfrtcl %0" : "=r" (rtcl));
120 return rtcl;
121}
122
Paul Mackerras96c44502005-10-23 17:14:56 +1000123static inline u64 get_rtc(void)
124{
125 unsigned int hi, lo, hi2;
126
127 do {
128 asm volatile("mfrtcu %0; mfrtcl %1; mfrtcu %2"
129 : "=r" (hi), "=r" (lo), "=r" (hi2));
130 } while (hi2 != hi);
131 return (u64)hi * 1000000000 + lo;
132}
133
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000134#ifdef CONFIG_PPC64
135static inline u64 get_tb(void)
136{
137 return mftb();
138}
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +1000139#else /* CONFIG_PPC64 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000140static inline u64 get_tb(void)
141{
142 unsigned int tbhi, tblo, tbhi2;
143
144 do {
145 tbhi = get_tbu();
146 tblo = get_tbl();
147 tbhi2 = get_tbu();
148 } while (tbhi != tbhi2);
149
150 return ((u64)tbhi << 32) | tblo;
151}
Benjamin Herrenschmidt859deea2006-10-20 14:37:05 +1000152#endif /* !CONFIG_PPC64 */
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000153
154static inline void set_tb(unsigned int upper, unsigned int lower)
155{
156 mtspr(SPRN_TBWL, 0);
157 mtspr(SPRN_TBWU, upper);
158 mtspr(SPRN_TBWL, lower);
159}
160
161/* Accessor functions for the decrementer register.
162 * The 4xx doesn't even have a decrementer. I tried to use the
163 * generic timer interrupt code, which seems OK, with the 4xx PIT
164 * in auto-reload mode. The problem is PIT stops counting when it
165 * hits zero. If it would wrap, we could use it just like a decrementer.
166 */
167static inline unsigned int get_dec(void)
168{
169#if defined(CONFIG_40x)
170 return (mfspr(SPRN_PIT));
171#else
172 return (mfspr(SPRN_DEC));
173#endif
174}
175
176static inline void set_dec(int val)
177{
178#if defined(CONFIG_40x)
179 return; /* Have to let it auto-reload */
180#elif defined(CONFIG_8xx_CPU6)
181 set_dec_cpu6(val);
182#else
183#ifdef CONFIG_PPC_ISERIES
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000184 int cur_dec;
185
Stephen Rothwell9b475692006-06-28 11:51:41 +1000186 if (firmware_has_feature(FW_FEATURE_ISERIES) &&
187 get_lppaca()->shared_proc) {
David Gibson3356bb9f72006-01-13 10:26:42 +1100188 get_lppaca()->virtual_decr = val;
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000189 cur_dec = get_dec();
190 if (cur_dec > val)
191 HvCall_setVirtualDecr();
192 } else
193#endif
194 mtspr(SPRN_DEC, val);
195#endif /* not 40x or 8xx_CPU6 */
196}
197
198static inline unsigned long tb_ticks_since(unsigned long tstamp)
199{
200 if (__USE_RTC()) {
201 int delta = get_rtcl() - (unsigned int) tstamp;
202 return delta < 0 ? delta + 1000000000 : delta;
203 }
204 return get_tbl() - tstamp;
205}
206
207#define mulhwu(x,y) \
208({unsigned z; asm ("mulhwu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
209
210#ifdef CONFIG_PPC64
211#define mulhdu(x,y) \
212({unsigned long z; asm ("mulhdu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;})
213#else
214extern u64 mulhdu(u64, u64);
215#endif
216
Paul Mackerrasa5b518e2005-10-22 14:55:23 +1000217extern void smp_space_timers(unsigned int);
218
219extern unsigned mulhwu_scale_factor(unsigned, unsigned);
220extern void div128_by_32(u64 dividend_high, u64 dividend_low,
221 unsigned divisor, struct div_result *dr);
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000222
223/* Used to store Processor Utilization register (purr) values */
224
225struct cpu_usage {
226 u64 current_tb; /* Holds the current purr register values */
227};
228
229DECLARE_PER_CPU(struct cpu_usage, cpu_usage_array);
230
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100231#ifdef CONFIG_VIRT_CPU_ACCOUNTING
232extern void account_process_vtime(struct task_struct *tsk);
233#else
234#define account_process_vtime(tsk) do { } while (0)
235#endif
236
237#if defined(CONFIG_VIRT_CPU_ACCOUNTING) && defined(CONFIG_PPC_SPLPAR)
238extern void calculate_steal_time(void);
239extern void snapshot_timebases(void);
240#else
241#define calculate_steal_time() do { } while (0)
242#define snapshot_timebases() do { } while (0)
243#endif
244
Paul Mackerrasf2783c12005-10-20 09:23:26 +1000245#endif /* __KERNEL__ */
Kim Phillips7a69af62006-09-26 17:46:37 -0500246#endif /* __POWERPC_TIME_H */