diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-10 00:19:43 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-10 00:19:43 -0400 |
commit | 9f04b9e327c495f8ddbf89c08da6cbe626e1b1b3 (patch) | |
tree | 381e9786b837085bd555c705542047f54cd2beab /include/asm-powerpc | |
parent | b60fc8bbd2d0ea2a9b1fc7271d521fcf47f27bfd (diff) |
powerpc: Merged processor.h.
This adds register definitions from the ppc64 processor.h to reg.h,
and makes a single merged processor.h. I moved __is_processor from
the ppc64 system.h to the merged reg.h along with the PVR register
constants.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r-- | include/asm-powerpc/processor.h | 280 | ||||
-rw-r--r-- | include/asm-powerpc/reg.h | 281 |
2 files changed, 501 insertions, 60 deletions
diff --git a/include/asm-powerpc/processor.h b/include/asm-powerpc/processor.h new file mode 100644 index 000000000000..9592f533e058 --- /dev/null +++ b/include/asm-powerpc/processor.h | |||
@@ -0,0 +1,280 @@ | |||
1 | #ifndef _ASM_POWERPC_PROCESSOR_H | ||
2 | #define _ASM_POWERPC_PROCESSOR_H | ||
3 | |||
4 | /* | ||
5 | * Copyright (C) 2001 PPC 64 Team, IBM Corp | ||
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 | #include <linux/config.h> | ||
14 | #include <asm/reg.h> | ||
15 | |||
16 | #ifndef __ASSEMBLY__ | ||
17 | #include <linux/compiler.h> | ||
18 | #include <asm/ptrace.h> | ||
19 | #include <asm/types.h> | ||
20 | #ifdef CONFIG_PPC64 | ||
21 | #include <asm/systemcfg.h> | ||
22 | #endif | ||
23 | |||
24 | #ifdef CONFIG_PPC32 | ||
25 | /* 32-bit platform types */ | ||
26 | /* We only need to define a new _MACH_xxx for machines which are part of | ||
27 | * a configuration which supports more than one type of different machine. | ||
28 | * This is currently limited to CONFIG_PPC_MULTIPLATFORM and CHRP/PReP/PMac. | ||
29 | * -- Tom | ||
30 | */ | ||
31 | #define _MACH_prep 0x00000001 | ||
32 | #define _MACH_Pmac 0x00000002 /* pmac or pmac clone (non-chrp) */ | ||
33 | #define _MACH_chrp 0x00000004 /* chrp machine */ | ||
34 | |||
35 | /* see residual.h for these */ | ||
36 | #define _PREP_Motorola 0x01 /* motorola prep */ | ||
37 | #define _PREP_Firm 0x02 /* firmworks prep */ | ||
38 | #define _PREP_IBM 0x00 /* ibm prep */ | ||
39 | #define _PREP_Bull 0x03 /* bull prep */ | ||
40 | |||
41 | /* these are arbitrary */ | ||
42 | #define _CHRP_Motorola 0x04 /* motorola chrp, the cobra */ | ||
43 | #define _CHRP_IBM 0x05 /* IBM chrp, the longtrail and longtrail 2 */ | ||
44 | #define _CHRP_Pegasos 0x06 /* Genesi/bplan's Pegasos and Pegasos2 */ | ||
45 | |||
46 | #ifdef CONFIG_PPC_MULTIPLATFORM | ||
47 | extern int _machine; | ||
48 | |||
49 | /* what kind of prep workstation we are */ | ||
50 | extern int _prep_type; | ||
51 | extern int _chrp_type; | ||
52 | |||
53 | /* | ||
54 | * This is used to identify the board type from a given PReP board | ||
55 | * vendor. Board revision is also made available. | ||
56 | */ | ||
57 | extern unsigned char ucSystemType; | ||
58 | extern unsigned char ucBoardRev; | ||
59 | extern unsigned char ucBoardRevMaj, ucBoardRevMin; | ||
60 | #else | ||
61 | #define _machine 0 | ||
62 | #endif /* CONFIG_PPC_MULTIPLATFORM */ | ||
63 | #endif /* CONFIG_PPC32 */ | ||
64 | |||
65 | #ifdef CONFIG_PPC64 | ||
66 | /* Platforms supported by PPC64 */ | ||
67 | #define PLATFORM_PSERIES 0x0100 | ||
68 | #define PLATFORM_PSERIES_LPAR 0x0101 | ||
69 | #define PLATFORM_ISERIES_LPAR 0x0201 | ||
70 | #define PLATFORM_LPAR 0x0001 | ||
71 | #define PLATFORM_POWERMAC 0x0400 | ||
72 | #define PLATFORM_MAPLE 0x0500 | ||
73 | #define PLATFORM_BPA 0x1000 | ||
74 | |||
75 | /* Compatibility with drivers coming from PPC32 world */ | ||
76 | #define _machine (systemcfg->platform) | ||
77 | #define _MACH_Pmac PLATFORM_POWERMAC | ||
78 | #endif | ||
79 | |||
80 | /* | ||
81 | * Default implementation of macro that returns current | ||
82 | * instruction pointer ("program counter"). | ||
83 | */ | ||
84 | #define current_text_addr() ({ __label__ _l; _l: &&_l;}) | ||
85 | |||
86 | /* Macros for adjusting thread priority (hardware multi-threading) */ | ||
87 | #define HMT_very_low() asm volatile("or 31,31,31 # very low priority") | ||
88 | #define HMT_low() asm volatile("or 1,1,1 # low priority") | ||
89 | #define HMT_medium_low() asm volatile("or 6,6,6 # medium low priority") | ||
90 | #define HMT_medium() asm volatile("or 2,2,2 # medium priority") | ||
91 | #define HMT_medium_high() asm volatile("or 5,5,5 # medium high priority") | ||
92 | #define HMT_high() asm volatile("or 3,3,3 # high priority") | ||
93 | |||
94 | #ifdef __KERNEL__ | ||
95 | |||
96 | extern int have_of; | ||
97 | |||
98 | struct task_struct; | ||
99 | void start_thread(struct pt_regs *regs, unsigned long fdptr, unsigned long sp); | ||
100 | void release_thread(struct task_struct *); | ||
101 | |||
102 | /* Prepare to copy thread state - unlazy all lazy status */ | ||
103 | extern void prepare_to_copy(struct task_struct *tsk); | ||
104 | |||
105 | /* Create a new kernel thread. */ | ||
106 | extern long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); | ||
107 | |||
108 | /* Lazy FPU handling on uni-processor */ | ||
109 | extern struct task_struct *last_task_used_math; | ||
110 | extern struct task_struct *last_task_used_altivec; | ||
111 | extern struct task_struct *last_task_used_spe; | ||
112 | |||
113 | #ifdef CONFIG_PPC32 | ||
114 | #define TASK_SIZE (CONFIG_TASK_SIZE) | ||
115 | |||
116 | /* This decides where the kernel will search for a free chunk of vm | ||
117 | * space during mmap's. | ||
118 | */ | ||
119 | #define TASK_UNMAPPED_BASE (TASK_SIZE / 8 * 3) | ||
120 | #endif | ||
121 | |||
122 | #ifdef CONFIG_PPC64 | ||
123 | /* 64-bit user address space is 44-bits (16TB user VM) */ | ||
124 | #define TASK_SIZE_USER64 (0x0000100000000000UL) | ||
125 | |||
126 | /* | ||
127 | * 32-bit user address space is 4GB - 1 page | ||
128 | * (this 1 page is needed so referencing of 0xFFFFFFFF generates EFAULT | ||
129 | */ | ||
130 | #define TASK_SIZE_USER32 (0x0000000100000000UL - (1*PAGE_SIZE)) | ||
131 | |||
132 | #define TASK_SIZE (test_thread_flag(TIF_32BIT) ? \ | ||
133 | TASK_SIZE_USER32 : TASK_SIZE_USER64) | ||
134 | |||
135 | /* This decides where the kernel will search for a free chunk of vm | ||
136 | * space during mmap's. | ||
137 | */ | ||
138 | #define TASK_UNMAPPED_BASE_USER32 (PAGE_ALIGN(TASK_SIZE_USER32 / 4)) | ||
139 | #define TASK_UNMAPPED_BASE_USER64 (PAGE_ALIGN(TASK_SIZE_USER64 / 4)) | ||
140 | |||
141 | #define TASK_UNMAPPED_BASE ((test_thread_flag(TIF_32BIT)) ? \ | ||
142 | TASK_UNMAPPED_BASE_USER32 : TASK_UNMAPPED_BASE_USER64 ) | ||
143 | #endif | ||
144 | |||
145 | typedef struct { | ||
146 | unsigned long seg; | ||
147 | } mm_segment_t; | ||
148 | |||
149 | struct thread_struct { | ||
150 | unsigned long ksp; /* Kernel stack pointer */ | ||
151 | #ifdef CONFIG_PPC64 | ||
152 | unsigned long ksp_vsid; | ||
153 | #endif | ||
154 | struct pt_regs *regs; /* Pointer to saved register state */ | ||
155 | mm_segment_t fs; /* for get_fs() validation */ | ||
156 | #ifdef CONFIG_PPC32 | ||
157 | void *pgdir; /* root of page-table tree */ | ||
158 | signed long last_syscall; | ||
159 | #endif | ||
160 | #if defined(CONFIG_4xx) || defined (CONFIG_BOOKE) | ||
161 | unsigned long dbcr0; /* debug control register values */ | ||
162 | unsigned long dbcr1; | ||
163 | #endif | ||
164 | double fpr[32]; /* Complete floating point set */ | ||
165 | #ifdef CONFIG_PPC32 | ||
166 | unsigned long fpscr_pad; /* fpr ... fpscr must be contiguous */ | ||
167 | #endif | ||
168 | unsigned long fpscr; /* Floating point status */ | ||
169 | int fpexc_mode; /* floating-point exception mode */ | ||
170 | #ifdef CONFIG_PPC64 | ||
171 | unsigned long start_tb; /* Start purr when proc switched in */ | ||
172 | unsigned long accum_tb; /* Total accumilated purr for process */ | ||
173 | unsigned long vdso_base; /* base of the vDSO library */ | ||
174 | #endif | ||
175 | unsigned long dabr; /* Data address breakpoint register */ | ||
176 | #ifdef CONFIG_ALTIVEC | ||
177 | /* Complete AltiVec register set */ | ||
178 | vector128 vr[32] __attribute((aligned(16))); | ||
179 | /* AltiVec status */ | ||
180 | vector128 vscr __attribute((aligned(16))); | ||
181 | unsigned long vrsave; | ||
182 | int used_vr; /* set if process has used altivec */ | ||
183 | #endif /* CONFIG_ALTIVEC */ | ||
184 | #ifdef CONFIG_SPE | ||
185 | unsigned long evr[32]; /* upper 32-bits of SPE regs */ | ||
186 | u64 acc; /* Accumulator */ | ||
187 | unsigned long spefscr; /* SPE & eFP status */ | ||
188 | int used_spe; /* set if process has used spe */ | ||
189 | #endif /* CONFIG_SPE */ | ||
190 | }; | ||
191 | |||
192 | #define ARCH_MIN_TASKALIGN 16 | ||
193 | |||
194 | #define INIT_SP (sizeof(init_stack) + (unsigned long) &init_stack) | ||
195 | |||
196 | |||
197 | #ifdef CONFIG_PPC32 | ||
198 | #define INIT_THREAD { \ | ||
199 | .ksp = INIT_SP, \ | ||
200 | .fs = KERNEL_DS, \ | ||
201 | .pgdir = swapper_pg_dir, \ | ||
202 | .fpexc_mode = MSR_FE0 | MSR_FE1, \ | ||
203 | } | ||
204 | #else | ||
205 | #define INIT_THREAD { \ | ||
206 | .ksp = INIT_SP, \ | ||
207 | .regs = (struct pt_regs *)INIT_SP - 1, /* XXX bogus, I think */ \ | ||
208 | .fs = KERNEL_DS, \ | ||
209 | .fpr = {0}, \ | ||
210 | .fpscr = 0, \ | ||
211 | .fpexc_mode = MSR_FE0|MSR_FE1, \ | ||
212 | } | ||
213 | #endif | ||
214 | |||
215 | /* | ||
216 | * Return saved PC of a blocked thread. For now, this is the "user" PC | ||
217 | */ | ||
218 | #define thread_saved_pc(tsk) \ | ||
219 | ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0) | ||
220 | |||
221 | unsigned long get_wchan(struct task_struct *p); | ||
222 | |||
223 | #define KSTK_EIP(tsk) ((tsk)->thread.regs? (tsk)->thread.regs->nip: 0) | ||
224 | #define KSTK_ESP(tsk) ((tsk)->thread.regs? (tsk)->thread.regs->gpr[1]: 0) | ||
225 | |||
226 | /* Get/set floating-point exception mode */ | ||
227 | #define GET_FPEXC_CTL(tsk, adr) get_fpexc_mode((tsk), (adr)) | ||
228 | #define SET_FPEXC_CTL(tsk, val) set_fpexc_mode((tsk), (val)) | ||
229 | |||
230 | extern int get_fpexc_mode(struct task_struct *tsk, unsigned long adr); | ||
231 | extern int set_fpexc_mode(struct task_struct *tsk, unsigned int val); | ||
232 | |||
233 | static inline unsigned int __unpack_fe01(unsigned long msr_bits) | ||
234 | { | ||
235 | return ((msr_bits & MSR_FE0) >> 10) | ((msr_bits & MSR_FE1) >> 8); | ||
236 | } | ||
237 | |||
238 | static inline unsigned long __pack_fe01(unsigned int fpmode) | ||
239 | { | ||
240 | return ((fpmode << 10) & MSR_FE0) | ((fpmode << 8) & MSR_FE1); | ||
241 | } | ||
242 | |||
243 | #ifdef CONFIG_PPC64 | ||
244 | #define cpu_relax() do { HMT_low(); HMT_medium(); barrier(); } while (0) | ||
245 | #else | ||
246 | #define cpu_relax() barrier() | ||
247 | #endif | ||
248 | |||
249 | /* | ||
250 | * Prefetch macros. | ||
251 | */ | ||
252 | #define ARCH_HAS_PREFETCH | ||
253 | #define ARCH_HAS_PREFETCHW | ||
254 | #define ARCH_HAS_SPINLOCK_PREFETCH | ||
255 | |||
256 | static inline void prefetch(const void *x) | ||
257 | { | ||
258 | if (unlikely(!x)) | ||
259 | return; | ||
260 | |||
261 | __asm__ __volatile__ ("dcbt 0,%0" : : "r" (x)); | ||
262 | } | ||
263 | |||
264 | static inline void prefetchw(const void *x) | ||
265 | { | ||
266 | if (unlikely(!x)) | ||
267 | return; | ||
268 | |||
269 | __asm__ __volatile__ ("dcbtst 0,%0" : : "r" (x)); | ||
270 | } | ||
271 | |||
272 | #define spin_lock_prefetch(x) prefetchw(x) | ||
273 | |||
274 | #ifdef CONFIG_PPC64 | ||
275 | #define HAVE_ARCH_PICK_MMAP_LAYOUT | ||
276 | #endif | ||
277 | |||
278 | #endif /* __KERNEL__ */ | ||
279 | #endif /* __ASSEMBLY__ */ | ||
280 | #endif /* _ASM_POWERPC_PROCESSOR_H */ | ||
diff --git a/include/asm-powerpc/reg.h b/include/asm-powerpc/reg.h index 1402a2dedffb..ff619630dff9 100644 --- a/include/asm-powerpc/reg.h +++ b/include/asm-powerpc/reg.h | |||
@@ -6,53 +6,95 @@ | |||
6 | * Implementations of the PowerPC Architecture (a.k.a. Green Book) here. | 6 | * Implementations of the PowerPC Architecture (a.k.a. Green Book) here. |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #ifndef _ASM_POWERPC_REGS_H | 9 | #ifndef _ASM_POWERPC_REG_H |
10 | #define _ASM_POWERPC_REGS_H | 10 | #define _ASM_POWERPC_REG_H |
11 | #ifdef __KERNEL__ | 11 | #ifdef __KERNEL__ |
12 | 12 | ||
13 | #include <linux/stringify.h> | 13 | #include <linux/stringify.h> |
14 | #include <asm/cputable.h> | ||
14 | 15 | ||
15 | /* Pickup Book E specific registers. */ | 16 | /* Pickup Book E specific registers. */ |
16 | #if defined(CONFIG_BOOKE) || defined(CONFIG_40x) | 17 | #if defined(CONFIG_BOOKE) || defined(CONFIG_40x) |
17 | #include <asm/reg_booke.h> | 18 | #include <asm/reg_booke.h> |
18 | #endif | 19 | #endif |
19 | 20 | ||
20 | /* Machine State Register (MSR) Fields */ | 21 | #define MSR_SF_LG 63 /* Enable 64 bit mode */ |
21 | #define MSR_SF (1<<63) | 22 | #define MSR_ISF_LG 61 /* Interrupt 64b mode valid on 630 */ |
22 | #define MSR_ISF (1<<61) | 23 | #define MSR_HV_LG 60 /* Hypervisor state */ |
23 | #define MSR_VEC (1<<25) /* Enable AltiVec */ | 24 | #define MSR_VEC_LG 25 /* Enable AltiVec */ |
24 | #define MSR_POW (1<<18) /* Enable Power Management */ | 25 | #define MSR_POW_LG 18 /* Enable Power Management */ |
25 | #define MSR_WE (1<<18) /* Wait State Enable */ | 26 | #define MSR_WE_LG 18 /* Wait State Enable */ |
26 | #define MSR_TGPR (1<<17) /* TLB Update registers in use */ | 27 | #define MSR_TGPR_LG 17 /* TLB Update registers in use */ |
27 | #define MSR_CE (1<<17) /* Critical Interrupt Enable */ | 28 | #define MSR_CE_LG 17 /* Critical Interrupt Enable */ |
28 | #define MSR_ILE (1<<16) /* Interrupt Little Endian */ | 29 | #define MSR_ILE_LG 16 /* Interrupt Little Endian */ |
29 | #define MSR_EE (1<<15) /* External Interrupt Enable */ | 30 | #define MSR_EE_LG 15 /* External Interrupt Enable */ |
30 | #define MSR_PR (1<<14) /* Problem State / Privilege Level */ | 31 | #define MSR_PR_LG 14 /* Problem State / Privilege Level */ |
31 | #define MSR_FP (1<<13) /* Floating Point enable */ | 32 | #define MSR_FP_LG 13 /* Floating Point enable */ |
32 | #define MSR_ME (1<<12) /* Machine Check Enable */ | 33 | #define MSR_ME_LG 12 /* Machine Check Enable */ |
33 | #define MSR_FE0 (1<<11) /* Floating Exception mode 0 */ | 34 | #define MSR_FE0_LG 11 /* Floating Exception mode 0 */ |
34 | #define MSR_SE (1<<10) /* Single Step */ | 35 | #define MSR_SE_LG 10 /* Single Step */ |
35 | #define MSR_BE (1<<9) /* Branch Trace */ | 36 | #define MSR_BE_LG 9 /* Branch Trace */ |
36 | #define MSR_DE (1<<9) /* Debug Exception Enable */ | 37 | #define MSR_DE_LG 9 /* Debug Exception Enable */ |
37 | #define MSR_FE1 (1<<8) /* Floating Exception mode 1 */ | 38 | #define MSR_FE1_LG 8 /* Floating Exception mode 1 */ |
38 | #define MSR_IP (1<<6) /* Exception prefix 0x000/0xFFF */ | 39 | #define MSR_IP_LG 6 /* Exception prefix 0x000/0xFFF */ |
39 | #define MSR_IR (1<<5) /* Instruction Relocate */ | 40 | #define MSR_IR_LG 5 /* Instruction Relocate */ |
40 | #define MSR_DR (1<<4) /* Data Relocate */ | 41 | #define MSR_DR_LG 4 /* Data Relocate */ |
41 | #define MSR_PE (1<<3) /* Protection Enable */ | 42 | #define MSR_PE_LG 3 /* Protection Enable */ |
42 | #define MSR_PX (1<<2) /* Protection Exclusive Mode */ | 43 | #define MSR_PX_LG 2 /* Protection Exclusive Mode */ |
43 | #define MSR_RI (1<<1) /* Recoverable Exception */ | 44 | #define MSR_PMM_LG 2 /* Performance monitor */ |
44 | #define MSR_LE (1<<0) /* Little Endian */ | 45 | #define MSR_RI_LG 1 /* Recoverable Exception */ |
46 | #define MSR_LE_LG 0 /* Little Endian */ | ||
45 | 47 | ||
48 | #ifdef __ASSEMBLY__ | ||
49 | #define __MASK(X) (1<<(X)) | ||
50 | #else | ||
51 | #define __MASK(X) (1UL<<(X)) | ||
52 | #endif | ||
53 | |||
54 | #define MSR_SF __MASK(MSR_SF_LG) /* Enable 64 bit mode */ | ||
55 | #define MSR_ISF __MASK(MSR_ISF_LG) /* Interrupt 64b mode valid on 630 */ | ||
56 | #define MSR_HV __MASK(MSR_HV_LG) /* Hypervisor state */ | ||
57 | #define MSR_VEC __MASK(MSR_VEC_LG) /* Enable AltiVec */ | ||
58 | #define MSR_POW __MASK(MSR_POW_LG) /* Enable Power Management */ | ||
59 | #define MSR_WE __MASK(MSR_WE_LG) /* Wait State Enable */ | ||
60 | #define MSR_TGPR __MASK(MSR_TGPR_LG) /* TLB Update registers in use */ | ||
61 | #define MSR_CE __MASK(MSR_CE_LG) /* Critical Interrupt Enable */ | ||
62 | #define MSR_ILE __MASK(MSR_ILE_LG) /* Interrupt Little Endian */ | ||
63 | #define MSR_EE __MASK(MSR_EE_LG) /* External Interrupt Enable */ | ||
64 | #define MSR_PR __MASK(MSR_PR_LG) /* Problem State / Privilege Level */ | ||
65 | #define MSR_FP __MASK(MSR_FP_LG) /* Floating Point enable */ | ||
66 | #define MSR_ME __MASK(MSR_ME_LG) /* Machine Check Enable */ | ||
67 | #define MSR_FE0 __MASK(MSR_FE0_LG) /* Floating Exception mode 0 */ | ||
68 | #define MSR_SE __MASK(MSR_SE_LG) /* Single Step */ | ||
69 | #define MSR_BE __MASK(MSR_BE_LG) /* Branch Trace */ | ||
70 | #define MSR_DE __MASK(MSR_DE_LG) /* Debug Exception Enable */ | ||
71 | #define MSR_FE1 __MASK(MSR_FE1_LG) /* Floating Exception mode 1 */ | ||
72 | #define MSR_IP __MASK(MSR_IP_LG) /* Exception prefix 0x000/0xFFF */ | ||
73 | #define MSR_IR __MASK(MSR_IR_LG) /* Instruction Relocate */ | ||
74 | #define MSR_DR __MASK(MSR_DR_LG) /* Data Relocate */ | ||
75 | #define MSR_PE __MASK(MSR_PE_LG) /* Protection Enable */ | ||
76 | #define MSR_PX __MASK(MSR_PX_LG) /* Protection Exclusive Mode */ | ||
77 | #define MSR_PMM __MASK(MSR_PMM_LG) /* Performance monitor */ | ||
78 | #define MSR_RI __MASK(MSR_RI_LG) /* Recoverable Exception */ | ||
79 | #define MSR_LE __MASK(MSR_LE_LG) /* Little Endian */ | ||
80 | |||
81 | #ifdef CONFIG_PPC64 | ||
82 | #define MSR_ MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_ISF | ||
83 | #define MSR_KERNEL MSR_ | MSR_SF | MSR_HV | ||
84 | |||
85 | #define MSR_USER32 MSR_ | MSR_PR | MSR_EE | ||
86 | #define MSR_USER64 MSR_USER32 | MSR_SF | ||
87 | |||
88 | #else /* 32-bit */ | ||
46 | /* Default MSR for kernel mode. */ | 89 | /* Default MSR for kernel mode. */ |
47 | #ifdef CONFIG_APUS_FAST_EXCEPT | 90 | #ifdef CONFIG_APUS_FAST_EXCEPT |
48 | #define MSR_KERNEL (MSR_ME|MSR_IP|MSR_RI|MSR_IR|MSR_DR) | 91 | #define MSR_KERNEL (MSR_ME|MSR_IP|MSR_RI|MSR_IR|MSR_DR) |
49 | #endif | 92 | #else |
50 | |||
51 | #ifndef MSR_KERNEL | ||
52 | #define MSR_KERNEL (MSR_ME|MSR_RI|MSR_IR|MSR_DR) | 93 | #define MSR_KERNEL (MSR_ME|MSR_RI|MSR_IR|MSR_DR) |
53 | #endif | 94 | #endif |
54 | 95 | ||
55 | #define MSR_USER (MSR_KERNEL|MSR_PR|MSR_EE) | 96 | #define MSR_USER (MSR_KERNEL|MSR_PR|MSR_EE) |
97 | #endif | ||
56 | 98 | ||
57 | /* Floating Point Status and Control Register (FPSCR) Fields */ | 99 | /* Floating Point Status and Control Register (FPSCR) Fields */ |
58 | #define FPSCR_FX 0x80000000 /* FPU exception summary */ | 100 | #define FPSCR_FX 0x80000000 /* FPU exception summary */ |
@@ -85,6 +127,9 @@ | |||
85 | 127 | ||
86 | /* Special Purpose Registers (SPRNs)*/ | 128 | /* Special Purpose Registers (SPRNs)*/ |
87 | #define SPRN_CTR 0x009 /* Count Register */ | 129 | #define SPRN_CTR 0x009 /* Count Register */ |
130 | #define SPRN_CTRLF 0x088 | ||
131 | #define SPRN_CTRLT 0x098 | ||
132 | #define CTRL_RUNLATCH 0x1 | ||
88 | #define SPRN_DABR 0x3F5 /* Data Address Breakpoint Register */ | 133 | #define SPRN_DABR 0x3F5 /* Data Address Breakpoint Register */ |
89 | #define DABR_TRANSLATION (1UL << 2) | 134 | #define DABR_TRANSLATION (1UL << 2) |
90 | #define SPRN_DAR 0x013 /* Data Address Register */ | 135 | #define SPRN_DAR 0x013 /* Data Address Register */ |
@@ -193,6 +238,16 @@ | |||
193 | #define SPRN_IABR 0x3F2 /* Instruction Address Breakpoint Register */ | 238 | #define SPRN_IABR 0x3F2 /* Instruction Address Breakpoint Register */ |
194 | #define SPRN_HID4 0x3F4 /* 970 HID4 */ | 239 | #define SPRN_HID4 0x3F4 /* 970 HID4 */ |
195 | #define SPRN_HID5 0x3F6 /* 970 HID5 */ | 240 | #define SPRN_HID5 0x3F6 /* 970 HID5 */ |
241 | #define SPRN_HID6 0x3F9 /* BE HID 6 */ | ||
242 | #define HID6_LB (0x0F<<12) /* Concurrent Large Page Modes */ | ||
243 | #define HID6_DLP (1<<20) /* Disable all large page modes (4K only) */ | ||
244 | #define SPRN_TSCR 0x399 /* Thread switch control on BE */ | ||
245 | #define SPRN_TTR 0x39A /* Thread switch timeout on BE */ | ||
246 | #define TSCR_DEC_ENABLE 0x200000 /* Decrementer Interrupt */ | ||
247 | #define TSCR_EE_ENABLE 0x100000 /* External Interrupt */ | ||
248 | #define TSCR_EE_BOOST 0x080000 /* External Interrupt Boost */ | ||
249 | #define SPRN_TSC 0x3FD /* Thread switch control on others */ | ||
250 | #define SPRN_TST 0x3FC /* Thread switch timeout on others */ | ||
196 | #if !defined(SPRN_IAC1) && !defined(SPRN_IAC2) | 251 | #if !defined(SPRN_IAC1) && !defined(SPRN_IAC2) |
197 | #define SPRN_IAC1 0x3F4 /* Instruction Address Compare 1 */ | 252 | #define SPRN_IAC1 0x3F4 /* Instruction Address Compare 1 */ |
198 | #define SPRN_IAC2 0x3F5 /* Instruction Address Compare 2 */ | 253 | #define SPRN_IAC2 0x3F5 /* Instruction Address Compare 2 */ |
@@ -276,22 +331,18 @@ | |||
276 | #define L3CR_L3DO 0x00000040 /* L3 data only mode */ | 331 | #define L3CR_L3DO 0x00000040 /* L3 data only mode */ |
277 | #define L3CR_PMEN 0x00000004 /* L3 private memory enable */ | 332 | #define L3CR_PMEN 0x00000004 /* L3 private memory enable */ |
278 | #define L3CR_PMSIZ 0x00000001 /* L3 private memory size */ | 333 | #define L3CR_PMSIZ 0x00000001 /* L3 private memory size */ |
334 | |||
279 | #define SPRN_MSSCR0 0x3f6 /* Memory Subsystem Control Register 0 */ | 335 | #define SPRN_MSSCR0 0x3f6 /* Memory Subsystem Control Register 0 */ |
280 | #define SPRN_MSSSR0 0x3f7 /* Memory Subsystem Status Register 1 */ | 336 | #define SPRN_MSSSR0 0x3f7 /* Memory Subsystem Status Register 1 */ |
281 | #define SPRN_LDSTCR 0x3f8 /* Load/Store control register */ | 337 | #define SPRN_LDSTCR 0x3f8 /* Load/Store control register */ |
282 | #define SPRN_LDSTDB 0x3f4 /* */ | 338 | #define SPRN_LDSTDB 0x3f4 /* */ |
283 | #define SPRN_LR 0x008 /* Link Register */ | 339 | #define SPRN_LR 0x008 /* Link Register */ |
284 | #define SPRN_MMCR0 0x3B8 /* Monitor Mode Control Register 0 */ | ||
285 | #define SPRN_MMCR1 0x3BC /* Monitor Mode Control Register 1 */ | ||
286 | #ifndef SPRN_PIR | 340 | #ifndef SPRN_PIR |
287 | #define SPRN_PIR 0x3FF /* Processor Identification Register */ | 341 | #define SPRN_PIR 0x3FF /* Processor Identification Register */ |
288 | #endif | 342 | #endif |
289 | #define SPRN_PMC1 0x3B9 /* Performance Counter Register 1 */ | ||
290 | #define SPRN_PMC2 0x3BA /* Performance Counter Register 2 */ | ||
291 | #define SPRN_PMC3 0x3BD /* Performance Counter Register 3 */ | ||
292 | #define SPRN_PMC4 0x3BE /* Performance Counter Register 4 */ | ||
293 | #define SPRN_PTEHI 0x3D5 /* 981 7450 PTE HI word (S/W TLB load) */ | 343 | #define SPRN_PTEHI 0x3D5 /* 981 7450 PTE HI word (S/W TLB load) */ |
294 | #define SPRN_PTELO 0x3D6 /* 982 7450 PTE LO word (S/W TLB load) */ | 344 | #define SPRN_PTELO 0x3D6 /* 982 7450 PTE LO word (S/W TLB load) */ |
345 | #define SPRN_PURR 0x135 /* Processor Utilization of Resources Reg */ | ||
295 | #define SPRN_PVR 0x11F /* Processor Version Register */ | 346 | #define SPRN_PVR 0x11F /* Processor Version Register */ |
296 | #define SPRN_RPA 0x3D6 /* Required Physical Address Register */ | 347 | #define SPRN_RPA 0x3D6 /* Required Physical Address Register */ |
297 | #define SPRN_SDA 0x3BF /* Sampled Data Address Register */ | 348 | #define SPRN_SDA 0x3BF /* Sampled Data Address Register */ |
@@ -333,6 +384,52 @@ | |||
333 | #define SPRN_VRSAVE 0x100 /* Vector Register Save Register */ | 384 | #define SPRN_VRSAVE 0x100 /* Vector Register Save Register */ |
334 | #define SPRN_XER 0x001 /* Fixed Point Exception Register */ | 385 | #define SPRN_XER 0x001 /* Fixed Point Exception Register */ |
335 | 386 | ||
387 | /* Performance monitor SPRs */ | ||
388 | #ifdef CONFIG_PPC64 | ||
389 | #define SPRN_MMCR0 795 | ||
390 | #define MMCR0_FC 0x80000000UL /* freeze counters */ | ||
391 | #define MMCR0_FCS 0x40000000UL /* freeze in supervisor state */ | ||
392 | #define MMCR0_KERNEL_DISABLE MMCR0_FCS | ||
393 | #define MMCR0_FCP 0x20000000UL /* freeze in problem state */ | ||
394 | #define MMCR0_PROBLEM_DISABLE MMCR0_FCP | ||
395 | #define MMCR0_FCM1 0x10000000UL /* freeze counters while MSR mark = 1 */ | ||
396 | #define MMCR0_FCM0 0x08000000UL /* freeze counters while MSR mark = 0 */ | ||
397 | #define MMCR0_PMXE 0x04000000UL /* performance monitor exception enable */ | ||
398 | #define MMCR0_FCECE 0x02000000UL /* freeze ctrs on enabled cond or event */ | ||
399 | #define MMCR0_TBEE 0x00400000UL /* time base exception enable */ | ||
400 | #define MMCR0_PMC1CE 0x00008000UL /* PMC1 count enable*/ | ||
401 | #define MMCR0_PMCjCE 0x00004000UL /* PMCj count enable*/ | ||
402 | #define MMCR0_TRIGGER 0x00002000UL /* TRIGGER enable */ | ||
403 | #define MMCR0_PMAO 0x00000080UL /* performance monitor alert has occurred, set to 0 after handling exception */ | ||
404 | #define MMCR0_SHRFC 0x00000040UL /* SHRre freeze conditions between threads */ | ||
405 | #define MMCR0_FCTI 0x00000008UL /* freeze counters in tags inactive mode */ | ||
406 | #define MMCR0_FCTA 0x00000004UL /* freeze counters in tags active mode */ | ||
407 | #define MMCR0_FCWAIT 0x00000002UL /* freeze counter in WAIT state */ | ||
408 | #define MMCR0_FCHV 0x00000001UL /* freeze conditions in hypervisor mode */ | ||
409 | #define SPRN_MMCR1 798 | ||
410 | #define SPRN_MMCRA 0x312 | ||
411 | #define MMCRA_SIHV 0x10000000UL /* state of MSR HV when SIAR set */ | ||
412 | #define MMCRA_SIPR 0x08000000UL /* state of MSR PR when SIAR set */ | ||
413 | #define MMCRA_SAMPLE_ENABLE 0x00000001UL /* enable sampling */ | ||
414 | #define SPRN_PMC1 787 | ||
415 | #define SPRN_PMC2 788 | ||
416 | #define SPRN_PMC3 789 | ||
417 | #define SPRN_PMC4 790 | ||
418 | #define SPRN_PMC5 791 | ||
419 | #define SPRN_PMC6 792 | ||
420 | #define SPRN_PMC7 793 | ||
421 | #define SPRN_PMC8 794 | ||
422 | #define SPRN_SIAR 780 | ||
423 | #define SPRN_SDAR 781 | ||
424 | |||
425 | #else /* 32-bit */ | ||
426 | #define SPRN_MMCR0 0x3B8 /* Monitor Mode Control Register 0 */ | ||
427 | #define SPRN_MMCR1 0x3BC /* Monitor Mode Control Register 1 */ | ||
428 | #define SPRN_PMC1 0x3B9 /* Performance Counter Register 1 */ | ||
429 | #define SPRN_PMC2 0x3BA /* Performance Counter Register 2 */ | ||
430 | #define SPRN_PMC3 0x3BD /* Performance Counter Register 3 */ | ||
431 | #define SPRN_PMC4 0x3BE /* Performance Counter Register 4 */ | ||
432 | |||
336 | /* Bit definitions for MMCR0 and PMC1 / PMC2. */ | 433 | /* Bit definitions for MMCR0 and PMC1 / PMC2. */ |
337 | #define MMCR0_PMC1_CYCLES (1 << 7) | 434 | #define MMCR0_PMC1_CYCLES (1 << 7) |
338 | #define MMCR0_PMC1_ICACHEMISS (5 << 7) | 435 | #define MMCR0_PMC1_ICACHEMISS (5 << 7) |
@@ -342,14 +439,15 @@ | |||
342 | #define MMCR0_PMC2_ITLB 0x7 | 439 | #define MMCR0_PMC2_ITLB 0x7 |
343 | #define MMCR0_PMC2_LOADMISSTIME 0x5 | 440 | #define MMCR0_PMC2_LOADMISSTIME 0x5 |
344 | #define MMCR0_PMXE (1 << 26) | 441 | #define MMCR0_PMXE (1 << 26) |
345 | 442 | #endif | |
346 | /* Processor Version Register */ | ||
347 | 443 | ||
348 | /* Processor Version Register (PVR) field extraction */ | 444 | /* Processor Version Register (PVR) field extraction */ |
349 | 445 | ||
350 | #define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */ | 446 | #define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */ |
351 | #define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */ | 447 | #define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */ |
352 | 448 | ||
449 | #define __is_processor(pv) (PVR_VER(mfspr(SPRN_PVR)) == (pv)) | ||
450 | |||
353 | /* | 451 | /* |
354 | * IBM has further subdivided the standard PowerPC 16-bit version and | 452 | * IBM has further subdivided the standard PowerPC 16-bit version and |
355 | * revision subfields of the PVR for the PowerPC 403s into the following: | 453 | * revision subfields of the PVR for the PowerPC 403s into the following: |
@@ -405,42 +503,105 @@ | |||
405 | #define PVR_8245 0x80811014 | 503 | #define PVR_8245 0x80811014 |
406 | #define PVR_8260 PVR_8240 | 504 | #define PVR_8260 PVR_8240 |
407 | 505 | ||
408 | #if 0 | 506 | /* 64-bit processors */ |
409 | /* Segment Registers */ | 507 | /* XXX the prefix should be PVR_, we'll do a global sweep to fix it one day */ |
410 | #define SR0 0 | 508 | #define PV_NORTHSTAR 0x0033 |
411 | #define SR1 1 | 509 | #define PV_PULSAR 0x0034 |
412 | #define SR2 2 | 510 | #define PV_POWER4 0x0035 |
413 | #define SR3 3 | 511 | #define PV_ICESTAR 0x0036 |
414 | #define SR4 4 | 512 | #define PV_SSTAR 0x0037 |
415 | #define SR5 5 | 513 | #define PV_POWER4p 0x0038 |
416 | #define SR6 6 | 514 | #define PV_970 0x0039 |
417 | #define SR7 7 | 515 | #define PV_POWER5 0x003A |
418 | #define SR8 8 | 516 | #define PV_POWER5p 0x003B |
419 | #define SR9 9 | 517 | #define PV_970FX 0x003C |
420 | #define SR10 10 | 518 | #define PV_630 0x0040 |
421 | #define SR11 11 | 519 | #define PV_630p 0x0041 |
422 | #define SR12 12 | 520 | #define PV_970MP 0x0044 |
423 | #define SR13 13 | 521 | #define PV_BE 0x0070 |
424 | #define SR14 14 | 522 | |
425 | #define SR15 15 | 523 | /* |
426 | #endif | 524 | * Number of entries in the SLB. If this ever changes we should handle |
525 | * it with a use a cpu feature fixup. | ||
526 | */ | ||
527 | #define SLB_NUM_ENTRIES 64 | ||
427 | 528 | ||
428 | /* Macros for setting and retrieving special purpose registers */ | 529 | /* Macros for setting and retrieving special purpose registers */ |
429 | #ifndef __ASSEMBLY__ | 530 | #ifndef __ASSEMBLY__ |
430 | #define mfmsr() ({unsigned int rval; \ | 531 | #define mfmsr() ({unsigned long rval; \ |
431 | asm volatile("mfmsr %0" : "=r" (rval)); rval;}) | 532 | asm volatile("mfmsr %0" : "=r" (rval)); rval;}) |
533 | #ifdef CONFIG_PPC64 | ||
534 | #define __mtmsrd(v, l) asm volatile("mtmsrd %0," __stringify(l) \ | ||
535 | : : "r" (v)) | ||
536 | #define mtmsrd(v) __mtmsrd((v), 0) | ||
537 | #else | ||
432 | #define mtmsr(v) asm volatile("mtmsr %0" : : "r" (v)) | 538 | #define mtmsr(v) asm volatile("mtmsr %0" : : "r" (v)) |
539 | #endif | ||
433 | 540 | ||
434 | #define mfspr(rn) ({unsigned int rval; \ | 541 | #define mfspr(rn) ({unsigned long rval; \ |
435 | asm volatile("mfspr %0," __stringify(rn) \ | 542 | asm volatile("mfspr %0," __stringify(rn) \ |
436 | : "=r" (rval)); rval;}) | 543 | : "=r" (rval)); rval;}) |
437 | #define mtspr(rn, v) asm volatile("mtspr " __stringify(rn) ",%0" : : "r" (v)) | 544 | #define mtspr(rn, v) asm volatile("mtspr " __stringify(rn) ",%0" : : "r" (v)) |
438 | 545 | ||
546 | #define mftb() ({unsigned long rval; \ | ||
547 | asm volatile("mftb %0" : "=r" (rval)); rval;}) | ||
548 | #define mftbl() ({unsigned long rval; \ | ||
549 | asm volatile("mftbl %0" : "=r" (rval)); rval;}) | ||
550 | |||
551 | #define mttbl(v) asm volatile("mttbl %0":: "r"(v)) | ||
552 | #define mttbu(v) asm volatile("mttbu %0":: "r"(v)) | ||
553 | |||
554 | #ifdef CONFIG_PPC32 | ||
439 | #define mfsrin(v) ({unsigned int rval; \ | 555 | #define mfsrin(v) ({unsigned int rval; \ |
440 | asm volatile("mfsrin %0,%1" : "=r" (rval) : "r" (v)); \ | 556 | asm volatile("mfsrin %0,%1" : "=r" (rval) : "r" (v)); \ |
441 | rval;}) | 557 | rval;}) |
558 | #endif | ||
442 | 559 | ||
443 | #define proc_trap() asm volatile("trap") | 560 | #define proc_trap() asm volatile("trap") |
561 | |||
562 | #ifdef CONFIG_PPC64 | ||
563 | static inline void ppc64_runlatch_on(void) | ||
564 | { | ||
565 | unsigned long ctrl; | ||
566 | |||
567 | if (cpu_has_feature(CPU_FTR_CTRL)) { | ||
568 | ctrl = mfspr(SPRN_CTRLF); | ||
569 | ctrl |= CTRL_RUNLATCH; | ||
570 | mtspr(SPRN_CTRLT, ctrl); | ||
571 | } | ||
572 | } | ||
573 | |||
574 | static inline void ppc64_runlatch_off(void) | ||
575 | { | ||
576 | unsigned long ctrl; | ||
577 | |||
578 | if (cpu_has_feature(CPU_FTR_CTRL)) { | ||
579 | ctrl = mfspr(SPRN_CTRLF); | ||
580 | ctrl &= ~CTRL_RUNLATCH; | ||
581 | mtspr(SPRN_CTRLT, ctrl); | ||
582 | } | ||
583 | } | ||
584 | |||
585 | static inline void set_tb(unsigned int upper, unsigned int lower) | ||
586 | { | ||
587 | mttbl(0); | ||
588 | mttbu(upper); | ||
589 | mttbl(lower); | ||
590 | } | ||
591 | #endif | ||
592 | |||
593 | #define __get_SP() ({unsigned long sp; \ | ||
594 | asm volatile("mr %0,1": "=r" (sp)); sp;}) | ||
595 | |||
596 | #else /* __ASSEMBLY__ */ | ||
597 | |||
598 | #define RUNLATCH_ON(REG) \ | ||
599 | BEGIN_FTR_SECTION \ | ||
600 | mfspr (REG),SPRN_CTRLF; \ | ||
601 | ori (REG),(REG),CTRL_RUNLATCH; \ | ||
602 | mtspr SPRN_CTRLT,(REG); \ | ||
603 | END_FTR_SECTION_IFSET(CPU_FTR_CTRL) | ||
604 | |||
444 | #endif /* __ASSEMBLY__ */ | 605 | #endif /* __ASSEMBLY__ */ |
445 | #endif /* __KERNEL__ */ | 606 | #endif /* __KERNEL__ */ |
446 | #endif /* _ASM_POWERPC_REGS_H */ | 607 | #endif /* _ASM_POWERPC_REG_H */ |