Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
[deliverable/linux.git] / include / asm-powerpc / cputable.h
1 #ifndef __ASM_POWERPC_CPUTABLE_H
2 #define __ASM_POWERPC_CPUTABLE_H
3
4 #include <asm/asm-compat.h>
5
6 #define PPC_FEATURE_32 0x80000000
7 #define PPC_FEATURE_64 0x40000000
8 #define PPC_FEATURE_601_INSTR 0x20000000
9 #define PPC_FEATURE_HAS_ALTIVEC 0x10000000
10 #define PPC_FEATURE_HAS_FPU 0x08000000
11 #define PPC_FEATURE_HAS_MMU 0x04000000
12 #define PPC_FEATURE_HAS_4xxMAC 0x02000000
13 #define PPC_FEATURE_UNIFIED_CACHE 0x01000000
14 #define PPC_FEATURE_HAS_SPE 0x00800000
15 #define PPC_FEATURE_HAS_EFP_SINGLE 0x00400000
16 #define PPC_FEATURE_HAS_EFP_DOUBLE 0x00200000
17 #define PPC_FEATURE_NO_TB 0x00100000
18 #define PPC_FEATURE_POWER4 0x00080000
19 #define PPC_FEATURE_POWER5 0x00040000
20 #define PPC_FEATURE_POWER5_PLUS 0x00020000
21 #define PPC_FEATURE_CELL 0x00010000
22 #define PPC_FEATURE_BOOKE 0x00008000
23 #define PPC_FEATURE_SMT 0x00004000
24 #define PPC_FEATURE_ICACHE_SNOOP 0x00002000
25 #define PPC_FEATURE_ARCH_2_05 0x00001000
26
27 #define PPC_FEATURE_TRUE_LE 0x00000002
28 #define PPC_FEATURE_PPC_LE 0x00000001
29
30 #ifdef __KERNEL__
31 #ifndef __ASSEMBLY__
32
33 /* This structure can grow, it's real size is used by head.S code
34 * via the mkdefs mechanism.
35 */
36 struct cpu_spec;
37
38 typedef void (*cpu_setup_t)(unsigned long offset, struct cpu_spec* spec);
39
40 enum powerpc_oprofile_type {
41 PPC_OPROFILE_INVALID = 0,
42 PPC_OPROFILE_RS64 = 1,
43 PPC_OPROFILE_POWER4 = 2,
44 PPC_OPROFILE_G4 = 3,
45 PPC_OPROFILE_BOOKE = 4,
46 };
47
48 struct cpu_spec {
49 /* CPU is matched via (PVR & pvr_mask) == pvr_value */
50 unsigned int pvr_mask;
51 unsigned int pvr_value;
52
53 char *cpu_name;
54 unsigned long cpu_features; /* Kernel features */
55 unsigned int cpu_user_features; /* Userland features */
56
57 /* cache line sizes */
58 unsigned int icache_bsize;
59 unsigned int dcache_bsize;
60
61 /* number of performance monitor counters */
62 unsigned int num_pmcs;
63
64 /* this is called to initialize various CPU bits like L1 cache,
65 * BHT, SPD, etc... from head.S before branching to identify_machine
66 */
67 cpu_setup_t cpu_setup;
68
69 /* Used by oprofile userspace to select the right counters */
70 char *oprofile_cpu_type;
71
72 /* Processor specific oprofile operations */
73 enum powerpc_oprofile_type oprofile_type;
74
75 /* Bit locations inside the mmcra change */
76 unsigned long oprofile_mmcra_sihv;
77 unsigned long oprofile_mmcra_sipr;
78
79 /* Bits to clear during an oprofile exception */
80 unsigned long oprofile_mmcra_clear;
81
82 /* Name of processor class, for the ELF AT_PLATFORM entry */
83 char *platform;
84 };
85
86 extern struct cpu_spec *cur_cpu_spec;
87
88 extern void identify_cpu(unsigned long offset, unsigned long cpu);
89 extern void do_cpu_ftr_fixups(unsigned long offset);
90
91 #endif /* __ASSEMBLY__ */
92
93 /* CPU kernel features */
94
95 /* Retain the 32b definitions all use bottom half of word */
96 #define CPU_FTR_SPLIT_ID_CACHE ASM_CONST(0x0000000000000001)
97 #define CPU_FTR_L2CR ASM_CONST(0x0000000000000002)
98 #define CPU_FTR_SPEC7450 ASM_CONST(0x0000000000000004)
99 #define CPU_FTR_ALTIVEC ASM_CONST(0x0000000000000008)
100 #define CPU_FTR_TAU ASM_CONST(0x0000000000000010)
101 #define CPU_FTR_CAN_DOZE ASM_CONST(0x0000000000000020)
102 #define CPU_FTR_USE_TB ASM_CONST(0x0000000000000040)
103 #define CPU_FTR_604_PERF_MON ASM_CONST(0x0000000000000080)
104 #define CPU_FTR_601 ASM_CONST(0x0000000000000100)
105 #define CPU_FTR_HPTE_TABLE ASM_CONST(0x0000000000000200)
106 #define CPU_FTR_CAN_NAP ASM_CONST(0x0000000000000400)
107 #define CPU_FTR_L3CR ASM_CONST(0x0000000000000800)
108 #define CPU_FTR_L3_DISABLE_NAP ASM_CONST(0x0000000000001000)
109 #define CPU_FTR_NAP_DISABLE_L2_PR ASM_CONST(0x0000000000002000)
110 #define CPU_FTR_DUAL_PLL_750FX ASM_CONST(0x0000000000004000)
111 #define CPU_FTR_NO_DPM ASM_CONST(0x0000000000008000)
112 #define CPU_FTR_HAS_HIGH_BATS ASM_CONST(0x0000000000010000)
113 #define CPU_FTR_NEED_COHERENT ASM_CONST(0x0000000000020000)
114 #define CPU_FTR_NO_BTIC ASM_CONST(0x0000000000040000)
115 #define CPU_FTR_BIG_PHYS ASM_CONST(0x0000000000080000)
116 #define CPU_FTR_NODSISRALIGN ASM_CONST(0x0000000000100000)
117 #define CPU_FTR_PPC_LE ASM_CONST(0x0000000000200000)
118 #define CPU_FTR_REAL_LE ASM_CONST(0x0000000000400000)
119
120 #ifdef __powerpc64__
121 /* Add the 64b processor unique features in the top half of the word */
122 #define CPU_FTR_SLB ASM_CONST(0x0000000100000000)
123 #define CPU_FTR_16M_PAGE ASM_CONST(0x0000000200000000)
124 #define CPU_FTR_TLBIEL ASM_CONST(0x0000000400000000)
125 #define CPU_FTR_NOEXECUTE ASM_CONST(0x0000000800000000)
126 #define CPU_FTR_IABR ASM_CONST(0x0000002000000000)
127 #define CPU_FTR_MMCRA ASM_CONST(0x0000004000000000)
128 #define CPU_FTR_CTRL ASM_CONST(0x0000008000000000)
129 #define CPU_FTR_SMT ASM_CONST(0x0000010000000000)
130 #define CPU_FTR_COHERENT_ICACHE ASM_CONST(0x0000020000000000)
131 #define CPU_FTR_LOCKLESS_TLBIE ASM_CONST(0x0000040000000000)
132 #define CPU_FTR_CI_LARGE_PAGE ASM_CONST(0x0000100000000000)
133 #define CPU_FTR_PAUSE_ZERO ASM_CONST(0x0000200000000000)
134 #define CPU_FTR_PURR ASM_CONST(0x0000400000000000)
135 #else
136 /* ensure on 32b processors the flags are available for compiling but
137 * don't do anything */
138 #define CPU_FTR_SLB ASM_CONST(0x0)
139 #define CPU_FTR_16M_PAGE ASM_CONST(0x0)
140 #define CPU_FTR_TLBIEL ASM_CONST(0x0)
141 #define CPU_FTR_NOEXECUTE ASM_CONST(0x0)
142 #define CPU_FTR_IABR ASM_CONST(0x0)
143 #define CPU_FTR_MMCRA ASM_CONST(0x0)
144 #define CPU_FTR_CTRL ASM_CONST(0x0)
145 #define CPU_FTR_SMT ASM_CONST(0x0)
146 #define CPU_FTR_COHERENT_ICACHE ASM_CONST(0x0)
147 #define CPU_FTR_LOCKLESS_TLBIE ASM_CONST(0x0)
148 #define CPU_FTR_CI_LARGE_PAGE ASM_CONST(0x0)
149 #define CPU_FTR_PURR ASM_CONST(0x0)
150 #endif
151
152 #ifndef __ASSEMBLY__
153
154 #define CPU_FTR_PPCAS_ARCH_V2_BASE (CPU_FTR_SLB | \
155 CPU_FTR_TLBIEL | CPU_FTR_NOEXECUTE | \
156 CPU_FTR_NODSISRALIGN | CPU_FTR_CTRL)
157
158 /* iSeries doesn't support large pages */
159 #ifdef CONFIG_PPC_ISERIES
160 #define CPU_FTR_PPCAS_ARCH_V2 (CPU_FTR_PPCAS_ARCH_V2_BASE)
161 #else
162 #define CPU_FTR_PPCAS_ARCH_V2 (CPU_FTR_PPCAS_ARCH_V2_BASE | CPU_FTR_16M_PAGE)
163 #endif /* CONFIG_PPC_ISERIES */
164
165 /* We only set the altivec features if the kernel was compiled with altivec
166 * support
167 */
168 #ifdef CONFIG_ALTIVEC
169 #define CPU_FTR_ALTIVEC_COMP CPU_FTR_ALTIVEC
170 #define PPC_FEATURE_HAS_ALTIVEC_COMP PPC_FEATURE_HAS_ALTIVEC
171 #else
172 #define CPU_FTR_ALTIVEC_COMP 0
173 #define PPC_FEATURE_HAS_ALTIVEC_COMP 0
174 #endif
175
176 /* We need to mark all pages as being coherent if we're SMP or we
177 * have a 74[45]x and an MPC107 host bridge. Also 83xx requires
178 * it for PCI "streaming/prefetch" to work properly.
179 */
180 #if defined(CONFIG_SMP) || defined(CONFIG_MPC10X_BRIDGE) \
181 || defined(CONFIG_PPC_83xx)
182 #define CPU_FTR_COMMON CPU_FTR_NEED_COHERENT
183 #else
184 #define CPU_FTR_COMMON 0
185 #endif
186
187 /* The powersave features NAP & DOZE seems to confuse BDI when
188 debugging. So if a BDI is used, disable theses
189 */
190 #ifndef CONFIG_BDI_SWITCH
191 #define CPU_FTR_MAYBE_CAN_DOZE CPU_FTR_CAN_DOZE
192 #define CPU_FTR_MAYBE_CAN_NAP CPU_FTR_CAN_NAP
193 #else
194 #define CPU_FTR_MAYBE_CAN_DOZE 0
195 #define CPU_FTR_MAYBE_CAN_NAP 0
196 #endif
197
198 #define CLASSIC_PPC (!defined(CONFIG_8xx) && !defined(CONFIG_4xx) && \
199 !defined(CONFIG_POWER3) && !defined(CONFIG_POWER4) && \
200 !defined(CONFIG_BOOKE))
201
202 #define CPU_FTRS_PPC601 (CPU_FTR_COMMON | CPU_FTR_601 | CPU_FTR_HPTE_TABLE)
203 #define CPU_FTRS_603 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
204 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
205 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
206 #define CPU_FTRS_604 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
207 CPU_FTR_USE_TB | CPU_FTR_604_PERF_MON | CPU_FTR_HPTE_TABLE | \
208 CPU_FTR_PPC_LE)
209 #define CPU_FTRS_740_NOTAU (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
210 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
211 CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
212 #define CPU_FTRS_740 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
213 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
214 CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
215 CPU_FTR_PPC_LE)
216 #define CPU_FTRS_750 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
217 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
218 CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
219 CPU_FTR_PPC_LE)
220 #define CPU_FTRS_750FX1 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
221 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
222 CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
223 CPU_FTR_DUAL_PLL_750FX | CPU_FTR_NO_DPM | CPU_FTR_PPC_LE)
224 #define CPU_FTRS_750FX2 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
225 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
226 CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
227 CPU_FTR_NO_DPM | CPU_FTR_PPC_LE)
228 #define CPU_FTRS_750FX (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
229 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
230 CPU_FTR_TAU | CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
231 CPU_FTR_DUAL_PLL_750FX | CPU_FTR_HAS_HIGH_BATS | CPU_FTR_PPC_LE)
232 #define CPU_FTRS_750GX (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_MAYBE_CAN_DOZE | \
233 CPU_FTR_USE_TB | CPU_FTR_L2CR | CPU_FTR_TAU | \
234 CPU_FTR_HPTE_TABLE | CPU_FTR_MAYBE_CAN_NAP | \
235 CPU_FTR_DUAL_PLL_750FX | CPU_FTR_HAS_HIGH_BATS | CPU_FTR_PPC_LE)
236 #define CPU_FTRS_7400_NOTAU (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
237 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
238 CPU_FTR_ALTIVEC_COMP | CPU_FTR_HPTE_TABLE | \
239 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
240 #define CPU_FTRS_7400 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
241 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
242 CPU_FTR_TAU | CPU_FTR_ALTIVEC_COMP | CPU_FTR_HPTE_TABLE | \
243 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
244 #define CPU_FTRS_7450_20 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
245 CPU_FTR_USE_TB | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
246 CPU_FTR_L3CR | CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
247 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
248 #define CPU_FTRS_7450_21 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
249 CPU_FTR_USE_TB | \
250 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
251 CPU_FTR_L3CR | CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
252 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
253 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
254 #define CPU_FTRS_7450_23 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
255 CPU_FTR_USE_TB | \
256 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
257 CPU_FTR_L3CR | CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
258 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
259 #define CPU_FTRS_7455_1 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
260 CPU_FTR_USE_TB | \
261 CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | CPU_FTR_L3CR | \
262 CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | CPU_FTR_HAS_HIGH_BATS | \
263 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
264 #define CPU_FTRS_7455_20 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
265 CPU_FTR_USE_TB | \
266 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
267 CPU_FTR_L3CR | CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
268 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
269 CPU_FTR_NEED_COHERENT | CPU_FTR_HAS_HIGH_BATS | CPU_FTR_PPC_LE)
270 #define CPU_FTRS_7455 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
271 CPU_FTR_USE_TB | \
272 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
273 CPU_FTR_L3CR | CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
274 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_HAS_HIGH_BATS | \
275 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
276 #define CPU_FTRS_7447_10 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
277 CPU_FTR_USE_TB | \
278 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
279 CPU_FTR_L3CR | CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
280 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_HAS_HIGH_BATS | \
281 CPU_FTR_NEED_COHERENT | CPU_FTR_NO_BTIC | CPU_FTR_PPC_LE)
282 #define CPU_FTRS_7447 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
283 CPU_FTR_USE_TB | \
284 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
285 CPU_FTR_L3CR | CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
286 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_HAS_HIGH_BATS | \
287 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
288 #define CPU_FTRS_7447A (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
289 CPU_FTR_USE_TB | \
290 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
291 CPU_FTR_HPTE_TABLE | CPU_FTR_SPEC7450 | \
292 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_HAS_HIGH_BATS | \
293 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
294 #define CPU_FTRS_82XX (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
295 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB)
296 #define CPU_FTRS_G2_LE (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_MAYBE_CAN_DOZE | \
297 CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_HAS_HIGH_BATS)
298 #define CPU_FTRS_E300 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_MAYBE_CAN_DOZE | \
299 CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_HAS_HIGH_BATS | \
300 CPU_FTR_COMMON)
301 #define CPU_FTRS_CLASSIC32 (CPU_FTR_COMMON | CPU_FTR_SPLIT_ID_CACHE | \
302 CPU_FTR_USE_TB | CPU_FTR_HPTE_TABLE)
303 #define CPU_FTRS_8XX (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB)
304 #define CPU_FTRS_40X (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
305 CPU_FTR_NODSISRALIGN)
306 #define CPU_FTRS_44X (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
307 CPU_FTR_NODSISRALIGN)
308 #define CPU_FTRS_E200 (CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN)
309 #define CPU_FTRS_E500 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
310 CPU_FTR_NODSISRALIGN)
311 #define CPU_FTRS_E500_2 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
312 CPU_FTR_BIG_PHYS | CPU_FTR_NODSISRALIGN)
313 #define CPU_FTRS_GENERIC_32 (CPU_FTR_COMMON | CPU_FTR_NODSISRALIGN)
314 #ifdef __powerpc64__
315 #define CPU_FTRS_POWER3 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
316 CPU_FTR_HPTE_TABLE | CPU_FTR_IABR | CPU_FTR_PPC_LE)
317 #define CPU_FTRS_RS64 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
318 CPU_FTR_HPTE_TABLE | CPU_FTR_IABR | \
319 CPU_FTR_MMCRA | CPU_FTR_CTRL)
320 #define CPU_FTRS_POWER4 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
321 CPU_FTR_HPTE_TABLE | CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_MMCRA)
322 #define CPU_FTRS_PPC970 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
323 CPU_FTR_HPTE_TABLE | CPU_FTR_PPCAS_ARCH_V2 | \
324 CPU_FTR_ALTIVEC_COMP | CPU_FTR_CAN_NAP | CPU_FTR_MMCRA)
325 #define CPU_FTRS_POWER5 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
326 CPU_FTR_HPTE_TABLE | CPU_FTR_PPCAS_ARCH_V2 | \
327 CPU_FTR_MMCRA | CPU_FTR_SMT | \
328 CPU_FTR_COHERENT_ICACHE | CPU_FTR_LOCKLESS_TLBIE | \
329 CPU_FTR_PURR)
330 #define CPU_FTRS_POWER6 (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
331 CPU_FTR_HPTE_TABLE | CPU_FTR_PPCAS_ARCH_V2 | \
332 CPU_FTR_MMCRA | CPU_FTR_SMT | \
333 CPU_FTR_COHERENT_ICACHE | CPU_FTR_LOCKLESS_TLBIE | \
334 CPU_FTR_PURR | CPU_FTR_CI_LARGE_PAGE | CPU_FTR_REAL_LE)
335 #define CPU_FTRS_CELL (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
336 CPU_FTR_HPTE_TABLE | CPU_FTR_PPCAS_ARCH_V2 | \
337 CPU_FTR_ALTIVEC_COMP | CPU_FTR_MMCRA | CPU_FTR_SMT | \
338 CPU_FTR_CTRL | CPU_FTR_PAUSE_ZERO | CPU_FTR_CI_LARGE_PAGE)
339 #define CPU_FTRS_COMPATIBLE (CPU_FTR_SPLIT_ID_CACHE | CPU_FTR_USE_TB | \
340 CPU_FTR_HPTE_TABLE | CPU_FTR_PPCAS_ARCH_V2)
341 #endif
342
343 #ifdef __powerpc64__
344 #define CPU_FTRS_POSSIBLE \
345 (CPU_FTRS_POWER3 | CPU_FTRS_RS64 | CPU_FTRS_POWER4 | \
346 CPU_FTRS_PPC970 | CPU_FTRS_POWER5 | CPU_FTRS_POWER6 | \
347 CPU_FTRS_CELL | CPU_FTR_CI_LARGE_PAGE)
348 #else
349 enum {
350 CPU_FTRS_POSSIBLE =
351 #if CLASSIC_PPC
352 CPU_FTRS_PPC601 | CPU_FTRS_603 | CPU_FTRS_604 | CPU_FTRS_740_NOTAU |
353 CPU_FTRS_740 | CPU_FTRS_750 | CPU_FTRS_750FX1 |
354 CPU_FTRS_750FX2 | CPU_FTRS_750FX | CPU_FTRS_750GX |
355 CPU_FTRS_7400_NOTAU | CPU_FTRS_7400 | CPU_FTRS_7450_20 |
356 CPU_FTRS_7450_21 | CPU_FTRS_7450_23 | CPU_FTRS_7455_1 |
357 CPU_FTRS_7455_20 | CPU_FTRS_7455 | CPU_FTRS_7447_10 |
358 CPU_FTRS_7447 | CPU_FTRS_7447A | CPU_FTRS_82XX |
359 CPU_FTRS_G2_LE | CPU_FTRS_E300 | CPU_FTRS_CLASSIC32 |
360 #else
361 CPU_FTRS_GENERIC_32 |
362 #endif
363 #ifdef CONFIG_8xx
364 CPU_FTRS_8XX |
365 #endif
366 #ifdef CONFIG_40x
367 CPU_FTRS_40X |
368 #endif
369 #ifdef CONFIG_44x
370 CPU_FTRS_44X |
371 #endif
372 #ifdef CONFIG_E200
373 CPU_FTRS_E200 |
374 #endif
375 #ifdef CONFIG_E500
376 CPU_FTRS_E500 | CPU_FTRS_E500_2 |
377 #endif
378 0,
379 };
380 #endif /* __powerpc64__ */
381
382 #ifdef __powerpc64__
383 #define CPU_FTRS_ALWAYS \
384 (CPU_FTRS_POWER3 & CPU_FTRS_RS64 & CPU_FTRS_POWER4 & \
385 CPU_FTRS_PPC970 & CPU_FTRS_POWER5 & CPU_FTRS_POWER6 & \
386 CPU_FTRS_CELL & CPU_FTRS_POSSIBLE)
387 #else
388 enum {
389 CPU_FTRS_ALWAYS =
390 #if CLASSIC_PPC
391 CPU_FTRS_PPC601 & CPU_FTRS_603 & CPU_FTRS_604 & CPU_FTRS_740_NOTAU &
392 CPU_FTRS_740 & CPU_FTRS_750 & CPU_FTRS_750FX1 &
393 CPU_FTRS_750FX2 & CPU_FTRS_750FX & CPU_FTRS_750GX &
394 CPU_FTRS_7400_NOTAU & CPU_FTRS_7400 & CPU_FTRS_7450_20 &
395 CPU_FTRS_7450_21 & CPU_FTRS_7450_23 & CPU_FTRS_7455_1 &
396 CPU_FTRS_7455_20 & CPU_FTRS_7455 & CPU_FTRS_7447_10 &
397 CPU_FTRS_7447 & CPU_FTRS_7447A & CPU_FTRS_82XX &
398 CPU_FTRS_G2_LE & CPU_FTRS_E300 & CPU_FTRS_CLASSIC32 &
399 #else
400 CPU_FTRS_GENERIC_32 &
401 #endif
402 #ifdef CONFIG_8xx
403 CPU_FTRS_8XX &
404 #endif
405 #ifdef CONFIG_40x
406 CPU_FTRS_40X &
407 #endif
408 #ifdef CONFIG_44x
409 CPU_FTRS_44X &
410 #endif
411 #ifdef CONFIG_E200
412 CPU_FTRS_E200 &
413 #endif
414 #ifdef CONFIG_E500
415 CPU_FTRS_E500 & CPU_FTRS_E500_2 &
416 #endif
417 CPU_FTRS_POSSIBLE,
418 };
419 #endif /* __powerpc64__ */
420
421 static inline int cpu_has_feature(unsigned long feature)
422 {
423 return (CPU_FTRS_ALWAYS & feature) ||
424 (CPU_FTRS_POSSIBLE
425 & cur_cpu_spec->cpu_features
426 & feature);
427 }
428
429 #endif /* !__ASSEMBLY__ */
430
431 #ifdef __ASSEMBLY__
432
433 #define BEGIN_FTR_SECTION 98:
434
435 #ifndef __powerpc64__
436 #define END_FTR_SECTION(msk, val) \
437 99: \
438 .section __ftr_fixup,"a"; \
439 .align 2; \
440 .long msk; \
441 .long val; \
442 .long 98b; \
443 .long 99b; \
444 .previous
445 #else /* __powerpc64__ */
446 #define END_FTR_SECTION(msk, val) \
447 99: \
448 .section __ftr_fixup,"a"; \
449 .align 3; \
450 .llong msk; \
451 .llong val; \
452 .llong 98b; \
453 .llong 99b; \
454 .previous
455 #endif /* __powerpc64__ */
456
457 #define END_FTR_SECTION_IFSET(msk) END_FTR_SECTION((msk), (msk))
458 #define END_FTR_SECTION_IFCLR(msk) END_FTR_SECTION((msk), 0)
459 #endif /* __ASSEMBLY__ */
460
461 #endif /* __KERNEL__ */
462 #endif /* __ASM_POWERPC_CPUTABLE_H */
This page took 0.040264 seconds and 5 git commands to generate.