diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-19 19:23:26 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-19 19:23:26 -0400 |
commit | f2783c15007468c14972e2617db51e9affc7fad9 (patch) | |
tree | 6c8f57ee8e5cdaeb810a3ccf7f697576a7df7615 /include/asm-powerpc | |
parent | 03f88e9f7145b03fd0d855918d54a3bf5342ac5e (diff) |
powerpc: Merge time.c and asm/time.h.
We now use the merged time.c for both 32-bit and 64-bit compilation
with ARCH=powerpc, and for ARCH=ppc64, but not for ARCH=ppc32.
This removes setup_default_decr (folds its function into time_init)
and moves wakeup_decrementer into time.c. This also makes an
asm-powerpc/rtc.h.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r-- | include/asm-powerpc/irq.h | 2 | ||||
-rw-r--r-- | include/asm-powerpc/rtc.h | 80 | ||||
-rw-r--r-- | include/asm-powerpc/time.h | 212 |
3 files changed, 294 insertions, 0 deletions
diff --git a/include/asm-powerpc/irq.h b/include/asm-powerpc/irq.h index 980393a16be2..07c2b3fc4c66 100644 --- a/include/asm-powerpc/irq.h +++ b/include/asm-powerpc/irq.h | |||
@@ -496,5 +496,7 @@ extern int call_handle_IRQ_event(int irq, struct pt_regs *regs, | |||
496 | 496 | ||
497 | #endif /* CONFIG_IRQSTACKS */ | 497 | #endif /* CONFIG_IRQSTACKS */ |
498 | 498 | ||
499 | extern void do_IRQ(struct pt_regs *regs); | ||
500 | |||
499 | #endif /* _ASM_IRQ_H */ | 501 | #endif /* _ASM_IRQ_H */ |
500 | #endif /* __KERNEL__ */ | 502 | #endif /* __KERNEL__ */ |
diff --git a/include/asm-powerpc/rtc.h b/include/asm-powerpc/rtc.h new file mode 100644 index 000000000000..d38f2a077db2 --- /dev/null +++ b/include/asm-powerpc/rtc.h | |||
@@ -0,0 +1,80 @@ | |||
1 | /* | ||
2 | * Real-time clock definitions and interfaces | ||
3 | * | ||
4 | * Author: Tom Rini <trini@mvista.com> | ||
5 | * | ||
6 | * 2002 (c) MontaVista, Software, Inc. This file is licensed under | ||
7 | * the terms of the GNU General Public License version 2. This program | ||
8 | * is licensed "as is" without any warranty of any kind, whether express | ||
9 | * or implied. | ||
10 | * | ||
11 | * Based on: | ||
12 | * include/asm-m68k/rtc.h | ||
13 | * | ||
14 | * Copyright Richard Zidlicky | ||
15 | * implementation details for genrtc/q40rtc driver | ||
16 | * | ||
17 | * And the old drivers/macintosh/rtc.c which was heavily based on: | ||
18 | * Linux/SPARC Real Time Clock Driver | ||
19 | * Copyright (C) 1996 Thomas K. Dyas (tdyas@eden.rutgers.edu) | ||
20 | * | ||
21 | * With additional work by Paul Mackerras and Franz Sirl. | ||
22 | */ | ||
23 | |||
24 | #ifndef __ASM_POWERPC_RTC_H__ | ||
25 | #define __ASM_POWERPC_RTC_H__ | ||
26 | |||
27 | #ifdef __KERNEL__ | ||
28 | |||
29 | #include <linux/rtc.h> | ||
30 | |||
31 | #include <asm/machdep.h> | ||
32 | #include <asm/time.h> | ||
33 | |||
34 | #define RTC_PIE 0x40 /* periodic interrupt enable */ | ||
35 | #define RTC_AIE 0x20 /* alarm interrupt enable */ | ||
36 | #define RTC_UIE 0x10 /* update-finished interrupt enable */ | ||
37 | |||
38 | /* some dummy definitions */ | ||
39 | #define RTC_BATT_BAD 0x100 /* battery bad */ | ||
40 | #define RTC_SQWE 0x08 /* enable square-wave output */ | ||
41 | #define RTC_DM_BINARY 0x04 /* all time/date values are BCD if clear */ | ||
42 | #define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */ | ||
43 | #define RTC_DST_EN 0x01 /* auto switch DST - works f. USA only */ | ||
44 | |||
45 | static inline unsigned int get_rtc_time(struct rtc_time *time) | ||
46 | { | ||
47 | if (ppc_md.get_rtc_time) | ||
48 | ppc_md.get_rtc_time(time); | ||
49 | return RTC_24H; | ||
50 | } | ||
51 | |||
52 | /* Set the current date and time in the real time clock. */ | ||
53 | static inline int set_rtc_time(struct rtc_time *time) | ||
54 | { | ||
55 | if (ppc_md.get_rtc_time) { | ||
56 | ppc_md.set_rtc_time(time); | ||
57 | return 0; | ||
58 | } | ||
59 | return -EINVAL; | ||
60 | } | ||
61 | |||
62 | static inline unsigned int get_rtc_ss(void) | ||
63 | { | ||
64 | struct rtc_time h; | ||
65 | |||
66 | get_rtc_time(&h); | ||
67 | return h.tm_sec; | ||
68 | } | ||
69 | |||
70 | static inline int get_rtc_pll(struct rtc_pll_info *pll) | ||
71 | { | ||
72 | return -EINVAL; | ||
73 | } | ||
74 | static inline int set_rtc_pll(struct rtc_pll_info *pll) | ||
75 | { | ||
76 | return -EINVAL; | ||
77 | } | ||
78 | |||
79 | #endif /* __KERNEL__ */ | ||
80 | #endif /* __ASM_POWERPC_RTC_H__ */ | ||
diff --git a/include/asm-powerpc/time.h b/include/asm-powerpc/time.h new file mode 100644 index 000000000000..4eecc38f7092 --- /dev/null +++ b/include/asm-powerpc/time.h | |||
@@ -0,0 +1,212 @@ | |||
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__ | ||
17 | #include <linux/config.h> | ||
18 | #include <linux/types.h> | ||
19 | #include <linux/percpu.h> | ||
20 | |||
21 | #include <asm/processor.h> | ||
22 | #ifdef CONFIG_PPC64 | ||
23 | #include <asm/paca.h> | ||
24 | #include <asm/iSeries/HvCall.h> | ||
25 | #endif | ||
26 | |||
27 | /* time.c */ | ||
28 | extern unsigned long tb_ticks_per_jiffy; | ||
29 | extern unsigned long tb_ticks_per_usec; | ||
30 | extern unsigned long tb_ticks_per_sec; | ||
31 | extern u64 tb_to_xs; | ||
32 | extern unsigned tb_to_us; | ||
33 | extern u64 tb_last_stamp; | ||
34 | |||
35 | DECLARE_PER_CPU(unsigned long, last_jiffy); | ||
36 | |||
37 | struct rtc_time; | ||
38 | extern void to_tm(int tim, struct rtc_time * tm); | ||
39 | extern time_t last_rtc_update; | ||
40 | |||
41 | extern void generic_calibrate_decr(void); | ||
42 | extern void wakeup_decrementer(void); | ||
43 | |||
44 | /* Some sane defaults: 125 MHz timebase, 1GHz processor */ | ||
45 | extern unsigned long ppc_proc_freq; | ||
46 | #define DEFAULT_PROC_FREQ (DEFAULT_TB_FREQ * 8) | ||
47 | extern unsigned long ppc_tb_freq; | ||
48 | #define DEFAULT_TB_FREQ 125000000UL | ||
49 | |||
50 | /* | ||
51 | * By putting all of this stuff into a single struct we | ||
52 | * reduce the number of cache lines touched by do_gettimeofday. | ||
53 | * Both by collecting all of the data in one cache line and | ||
54 | * by touching only one TOC entry on ppc64. | ||
55 | */ | ||
56 | struct gettimeofday_vars { | ||
57 | u64 tb_to_xs; | ||
58 | u64 stamp_xsec; | ||
59 | u64 tb_orig_stamp; | ||
60 | }; | ||
61 | |||
62 | struct gettimeofday_struct { | ||
63 | unsigned long tb_ticks_per_sec; | ||
64 | struct gettimeofday_vars vars[2]; | ||
65 | struct gettimeofday_vars * volatile varp; | ||
66 | unsigned var_idx; | ||
67 | unsigned tb_to_us; | ||
68 | }; | ||
69 | |||
70 | struct div_result { | ||
71 | u64 result_high; | ||
72 | u64 result_low; | ||
73 | }; | ||
74 | |||
75 | /* Accessor functions for the timebase (RTC on 601) registers. */ | ||
76 | /* If one day CONFIG_POWER is added just define __USE_RTC as 1 */ | ||
77 | #ifdef CONFIG_6xx | ||
78 | #define __USE_RTC() cpu_has_feature(CPU_FTR_USE_TB) | ||
79 | #else | ||
80 | #define __USE_RTC() 0 | ||
81 | #endif | ||
82 | |||
83 | /* On ppc64 this gets us the whole timebase; on ppc32 just the lower half */ | ||
84 | static inline unsigned long get_tbl(void) | ||
85 | { | ||
86 | unsigned long tbl; | ||
87 | |||
88 | #if defined(CONFIG_403GCX) | ||
89 | asm volatile("mfspr %0, 0x3dd" : "=r" (tbl)); | ||
90 | #else | ||
91 | asm volatile("mftb %0" : "=r" (tbl)); | ||
92 | #endif | ||
93 | return tbl; | ||
94 | } | ||
95 | |||
96 | static inline unsigned int get_tbu(void) | ||
97 | { | ||
98 | unsigned int tbu; | ||
99 | |||
100 | #if defined(CONFIG_403GCX) | ||
101 | asm volatile("mfspr %0, 0x3dc" : "=r" (tbu)); | ||
102 | #else | ||
103 | asm volatile("mftbu %0" : "=r" (tbu)); | ||
104 | #endif | ||
105 | return tbu; | ||
106 | } | ||
107 | |||
108 | static inline unsigned int get_rtcl(void) | ||
109 | { | ||
110 | unsigned int rtcl; | ||
111 | |||
112 | asm volatile("mfrtcl %0" : "=r" (rtcl)); | ||
113 | return rtcl; | ||
114 | } | ||
115 | |||
116 | #ifdef CONFIG_PPC64 | ||
117 | static inline u64 get_tb(void) | ||
118 | { | ||
119 | return mftb(); | ||
120 | } | ||
121 | #else | ||
122 | static inline u64 get_tb(void) | ||
123 | { | ||
124 | unsigned int tbhi, tblo, tbhi2; | ||
125 | |||
126 | do { | ||
127 | tbhi = get_tbu(); | ||
128 | tblo = get_tbl(); | ||
129 | tbhi2 = get_tbu(); | ||
130 | } while (tbhi != tbhi2); | ||
131 | |||
132 | return ((u64)tbhi << 32) | tblo; | ||
133 | } | ||
134 | #endif | ||
135 | |||
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 | */ | ||
149 | static inline unsigned int get_dec(void) | ||
150 | { | ||
151 | #if defined(CONFIG_40x) | ||
152 | return (mfspr(SPRN_PIT)); | ||
153 | #else | ||
154 | return (mfspr(SPRN_DEC)); | ||
155 | #endif | ||
156 | } | ||
157 | |||
158 | static inline void set_dec(int val) | ||
159 | { | ||
160 | #if defined(CONFIG_40x) | ||
161 | return; /* Have to let it auto-reload */ | ||
162 | #elif defined(CONFIG_8xx_CPU6) | ||
163 | set_dec_cpu6(val); | ||
164 | #else | ||
165 | #ifdef CONFIG_PPC_ISERIES | ||
166 | struct paca_struct *lpaca = get_paca(); | ||
167 | int cur_dec; | ||
168 | |||
169 | if (lpaca->lppaca.shared_proc) { | ||
170 | lpaca->lppaca.virtual_decr = val; | ||
171 | cur_dec = get_dec(); | ||
172 | if (cur_dec > val) | ||
173 | HvCall_setVirtualDecr(); | ||
174 | } else | ||
175 | #endif | ||
176 | mtspr(SPRN_DEC, val); | ||
177 | #endif /* not 40x or 8xx_CPU6 */ | ||
178 | } | ||
179 | |||
180 | static inline unsigned long tb_ticks_since(unsigned long tstamp) | ||
181 | { | ||
182 | if (__USE_RTC()) { | ||
183 | int delta = get_rtcl() - (unsigned int) tstamp; | ||
184 | return delta < 0 ? delta + 1000000000 : delta; | ||
185 | } | ||
186 | return get_tbl() - tstamp; | ||
187 | } | ||
188 | |||
189 | #define mulhwu(x,y) \ | ||
190 | ({unsigned z; asm ("mulhwu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;}) | ||
191 | |||
192 | #ifdef CONFIG_PPC64 | ||
193 | #define mulhdu(x,y) \ | ||
194 | ({unsigned long z; asm ("mulhdu %0,%1,%2" : "=r" (z) : "r" (x), "r" (y)); z;}) | ||
195 | #else | ||
196 | extern u64 mulhdu(u64, u64); | ||
197 | #endif | ||
198 | |||
199 | unsigned mulhwu_scale_factor(unsigned, unsigned); | ||
200 | void div128_by_32(u64 dividend_high, u64 dividend_low, | ||
201 | unsigned divisor, struct div_result *dr); | ||
202 | |||
203 | /* Used to store Processor Utilization register (purr) values */ | ||
204 | |||
205 | struct cpu_usage { | ||
206 | u64 current_tb; /* Holds the current purr register values */ | ||
207 | }; | ||
208 | |||
209 | DECLARE_PER_CPU(struct cpu_usage, cpu_usage_array); | ||
210 | |||
211 | #endif /* __KERNEL__ */ | ||
212 | #endif /* __PPC64_TIME_H */ | ||