powerpc: scan_features() updates incorrect bits for REAL_LE
[pandora-kernel.git] / arch / powerpc / include / asm / cputable.h
1 #ifndef __ASM_POWERPC_CPUTABLE_H
2 #define __ASM_POWERPC_CPUTABLE_H
3
4 #define PPC_FEATURE_32                  0x80000000
5 #define PPC_FEATURE_64                  0x40000000
6 #define PPC_FEATURE_601_INSTR           0x20000000
7 #define PPC_FEATURE_HAS_ALTIVEC         0x10000000
8 #define PPC_FEATURE_HAS_FPU             0x08000000
9 #define PPC_FEATURE_HAS_MMU             0x04000000
10 #define PPC_FEATURE_HAS_4xxMAC          0x02000000
11 #define PPC_FEATURE_UNIFIED_CACHE       0x01000000
12 #define PPC_FEATURE_HAS_SPE             0x00800000
13 #define PPC_FEATURE_HAS_EFP_SINGLE      0x00400000
14 #define PPC_FEATURE_HAS_EFP_DOUBLE      0x00200000
15 #define PPC_FEATURE_NO_TB               0x00100000
16 #define PPC_FEATURE_POWER4              0x00080000
17 #define PPC_FEATURE_POWER5              0x00040000
18 #define PPC_FEATURE_POWER5_PLUS         0x00020000
19 #define PPC_FEATURE_CELL                0x00010000
20 #define PPC_FEATURE_BOOKE               0x00008000
21 #define PPC_FEATURE_SMT                 0x00004000
22 #define PPC_FEATURE_ICACHE_SNOOP        0x00002000
23 #define PPC_FEATURE_ARCH_2_05           0x00001000
24 #define PPC_FEATURE_PA6T                0x00000800
25 #define PPC_FEATURE_HAS_DFP             0x00000400
26 #define PPC_FEATURE_POWER6_EXT          0x00000200
27 #define PPC_FEATURE_ARCH_2_06           0x00000100
28 #define PPC_FEATURE_HAS_VSX             0x00000080
29
30 #define PPC_FEATURE_PSERIES_PERFMON_COMPAT \
31                                         0x00000040
32
33 /* Reserved - do not use                0x00000004 */
34 #define PPC_FEATURE_TRUE_LE             0x00000002
35 #define PPC_FEATURE_PPC_LE              0x00000001
36
37 #ifdef __KERNEL__
38
39 #include <asm/asm-compat.h>
40 #include <asm/feature-fixups.h>
41
42 #ifndef __ASSEMBLY__
43
44 /* This structure can grow, it's real size is used by head.S code
45  * via the mkdefs mechanism.
46  */
47 struct cpu_spec;
48
49 typedef void (*cpu_setup_t)(unsigned long offset, struct cpu_spec* spec);
50 typedef void (*cpu_restore_t)(void);
51
52 enum powerpc_oprofile_type {
53         PPC_OPROFILE_INVALID = 0,
54         PPC_OPROFILE_RS64 = 1,
55         PPC_OPROFILE_POWER4 = 2,
56         PPC_OPROFILE_G4 = 3,
57         PPC_OPROFILE_FSL_EMB = 4,
58         PPC_OPROFILE_CELL = 5,
59         PPC_OPROFILE_PA6T = 6,
60 };
61
62 enum powerpc_pmc_type {
63         PPC_PMC_DEFAULT = 0,
64         PPC_PMC_IBM = 1,
65         PPC_PMC_PA6T = 2,
66         PPC_PMC_G4 = 3,
67 };
68
69 struct pt_regs;
70
71 extern int machine_check_generic(struct pt_regs *regs);
72 extern int machine_check_4xx(struct pt_regs *regs);
73 extern int machine_check_440A(struct pt_regs *regs);
74 extern int machine_check_e500mc(struct pt_regs *regs);
75 extern int machine_check_e500(struct pt_regs *regs);
76 extern int machine_check_e200(struct pt_regs *regs);
77 extern int machine_check_47x(struct pt_regs *regs);
78
79 /* NOTE WELL: Update identify_cpu() if fields are added or removed! */
80 struct cpu_spec {
81         /* CPU is matched via (PVR & pvr_mask) == pvr_value */
82         unsigned int    pvr_mask;
83         unsigned int    pvr_value;
84
85         char            *cpu_name;
86         unsigned long   cpu_features;           /* Kernel features */
87         unsigned int    cpu_user_features;      /* Userland features */
88         unsigned int    mmu_features;           /* MMU features */
89
90         /* cache line sizes */
91         unsigned int    icache_bsize;
92         unsigned int    dcache_bsize;
93
94         /* number of performance monitor counters */
95         unsigned int    num_pmcs;
96         enum powerpc_pmc_type pmc_type;
97
98         /* this is called to initialize various CPU bits like L1 cache,
99          * BHT, SPD, etc... from head.S before branching to identify_machine
100          */
101         cpu_setup_t     cpu_setup;
102         /* Used to restore cpu setup on secondary processors and at resume */
103         cpu_restore_t   cpu_restore;
104
105         /* Used by oprofile userspace to select the right counters */
106         char            *oprofile_cpu_type;
107
108         /* Processor specific oprofile operations */
109         enum powerpc_oprofile_type oprofile_type;
110
111         /* Bit locations inside the mmcra change */
112         unsigned long   oprofile_mmcra_sihv;
113         unsigned long   oprofile_mmcra_sipr;
114
115         /* Bits to clear during an oprofile exception */
116         unsigned long   oprofile_mmcra_clear;
117
118         /* Name of processor class, for the ELF AT_PLATFORM entry */
119         char            *platform;
120
121         /* Processor specific machine check handling. Return negative
122          * if the error is fatal, 1 if it was fully recovered and 0 to
123          * pass up (not CPU originated) */
124         int             (*machine_check)(struct pt_regs *regs);
125 };
126
127 extern struct cpu_spec          *cur_cpu_spec;
128
129 extern unsigned int __start___ftr_fixup, __stop___ftr_fixup;
130
131 extern struct cpu_spec *identify_cpu(unsigned long offset, unsigned int pvr);
132 extern void do_feature_fixups(unsigned long value, void *fixup_start,
133                               void *fixup_end);
134
135 extern const char *powerpc_base_platform;
136
137 #endif /* __ASSEMBLY__ */
138
139 /* CPU kernel features */
140
141 /* Retain the 32b definitions all use bottom half of word */
142 #define CPU_FTR_COHERENT_ICACHE         ASM_CONST(0x0000000000000001)
143 #define CPU_FTR_L2CR                    ASM_CONST(0x0000000000000002)
144 #define CPU_FTR_SPEC7450                ASM_CONST(0x0000000000000004)
145 #define CPU_FTR_ALTIVEC                 ASM_CONST(0x0000000000000008)
146 #define CPU_FTR_TAU                     ASM_CONST(0x0000000000000010)
147 #define CPU_FTR_CAN_DOZE                ASM_CONST(0x0000000000000020)
148 #define CPU_FTR_USE_TB                  ASM_CONST(0x0000000000000040)
149 #define CPU_FTR_L2CSR                   ASM_CONST(0x0000000000000080)
150 #define CPU_FTR_601                     ASM_CONST(0x0000000000000100)
151 #define CPU_FTR_DBELL                   ASM_CONST(0x0000000000000200)
152 #define CPU_FTR_CAN_NAP                 ASM_CONST(0x0000000000000400)
153 #define CPU_FTR_L3CR                    ASM_CONST(0x0000000000000800)
154 #define CPU_FTR_L3_DISABLE_NAP          ASM_CONST(0x0000000000001000)
155 #define CPU_FTR_NAP_DISABLE_L2_PR       ASM_CONST(0x0000000000002000)
156 #define CPU_FTR_DUAL_PLL_750FX          ASM_CONST(0x0000000000004000)
157 #define CPU_FTR_NO_DPM                  ASM_CONST(0x0000000000008000)
158 #define CPU_FTR_476_DD2                 ASM_CONST(0x0000000000010000)
159 #define CPU_FTR_NEED_COHERENT           ASM_CONST(0x0000000000020000)
160 #define CPU_FTR_NO_BTIC                 ASM_CONST(0x0000000000040000)
161 #define CPU_FTR_DEBUG_LVL_EXC           ASM_CONST(0x0000000000080000)
162 #define CPU_FTR_NODSISRALIGN            ASM_CONST(0x0000000000100000)
163 #define CPU_FTR_PPC_LE                  ASM_CONST(0x0000000000200000)
164 #define CPU_FTR_REAL_LE                 ASM_CONST(0x0000000000400000)
165 #define CPU_FTR_FPU_UNAVAILABLE         ASM_CONST(0x0000000000800000)
166 #define CPU_FTR_UNIFIED_ID_CACHE        ASM_CONST(0x0000000001000000)
167 #define CPU_FTR_SPE                     ASM_CONST(0x0000000002000000)
168 #define CPU_FTR_NEED_PAIRED_STWCX       ASM_CONST(0x0000000004000000)
169 #define CPU_FTR_LWSYNC                  ASM_CONST(0x0000000008000000)
170 #define CPU_FTR_NOEXECUTE               ASM_CONST(0x0000000010000000)
171 #define CPU_FTR_INDEXED_DCR             ASM_CONST(0x0000000020000000)
172
173 /*
174  * Add the 64-bit processor unique features in the top half of the word;
175  * on 32-bit, make the names available but defined to be 0.
176  */
177 #ifdef __powerpc64__
178 #define LONG_ASM_CONST(x)               ASM_CONST(x)
179 #else
180 #define LONG_ASM_CONST(x)               0
181 #endif
182
183 #define CPU_FTR_HVMODE                  LONG_ASM_CONST(0x0000000200000000)
184 #define CPU_FTR_ARCH_201                LONG_ASM_CONST(0x0000000400000000)
185 #define CPU_FTR_ARCH_206                LONG_ASM_CONST(0x0000000800000000)
186 #define CPU_FTR_CFAR                    LONG_ASM_CONST(0x0000001000000000)
187 #define CPU_FTR_IABR                    LONG_ASM_CONST(0x0000002000000000)
188 #define CPU_FTR_MMCRA                   LONG_ASM_CONST(0x0000004000000000)
189 #define CPU_FTR_CTRL                    LONG_ASM_CONST(0x0000008000000000)
190 #define CPU_FTR_SMT                     LONG_ASM_CONST(0x0000010000000000)
191 #define CPU_FTR_PAUSE_ZERO              LONG_ASM_CONST(0x0000200000000000)
192 #define CPU_FTR_PURR                    LONG_ASM_CONST(0x0000400000000000)
193 #define CPU_FTR_CELL_TB_BUG             LONG_ASM_CONST(0x0000800000000000)
194 #define CPU_FTR_SPURR                   LONG_ASM_CONST(0x0001000000000000)
195 #define CPU_FTR_DSCR                    LONG_ASM_CONST(0x0002000000000000)
196 #define CPU_FTR_VSX                     LONG_ASM_CONST(0x0010000000000000)
197 #define CPU_FTR_SAO                     LONG_ASM_CONST(0x0020000000000000)
198 #define CPU_FTR_CP_USE_DCBTZ            LONG_ASM_CONST(0x0040000000000000)
199 #define CPU_FTR_UNALIGNED_LD_STD        LONG_ASM_CONST(0x0080000000000000)
200 #define CPU_FTR_ASYM_SMT                LONG_ASM_CONST(0x0100000000000000)
201 #define CPU_FTR_STCX_CHECKS_ADDRESS     LONG_ASM_CONST(0x0200000000000000)
202 #define CPU_FTR_POPCNTB                 LONG_ASM_CONST(0x0400000000000000)
203 #define CPU_FTR_POPCNTD                 LONG_ASM_CONST(0x0800000000000000)
204 #define CPU_FTR_ICSWX                   LONG_ASM_CONST(0x1000000000000000)
205
206 #ifndef __ASSEMBLY__
207
208 #define CPU_FTR_PPCAS_ARCH_V2   (CPU_FTR_NOEXECUTE | CPU_FTR_NODSISRALIGN)
209
210 #define MMU_FTR_PPCAS_ARCH_V2   (MMU_FTR_SLB | MMU_FTR_TLBIEL | \
211                                  MMU_FTR_16M_PAGE)
212
213 /* We only set the altivec features if the kernel was compiled with altivec
214  * support
215  */
216 #ifdef CONFIG_ALTIVEC
217 #define CPU_FTR_ALTIVEC_COMP    CPU_FTR_ALTIVEC
218 #define PPC_FEATURE_HAS_ALTIVEC_COMP PPC_FEATURE_HAS_ALTIVEC
219 #else
220 #define CPU_FTR_ALTIVEC_COMP    0
221 #define PPC_FEATURE_HAS_ALTIVEC_COMP    0
222 #endif
223
224 /* We only set the VSX features if the kernel was compiled with VSX
225  * support
226  */
227 #ifdef CONFIG_VSX
228 #define CPU_FTR_VSX_COMP        CPU_FTR_VSX
229 #define PPC_FEATURE_HAS_VSX_COMP PPC_FEATURE_HAS_VSX
230 #else
231 #define CPU_FTR_VSX_COMP        0
232 #define PPC_FEATURE_HAS_VSX_COMP    0
233 #endif
234
235 /* We only set the spe features if the kernel was compiled with spe
236  * support
237  */
238 #ifdef CONFIG_SPE
239 #define CPU_FTR_SPE_COMP        CPU_FTR_SPE
240 #define PPC_FEATURE_HAS_SPE_COMP PPC_FEATURE_HAS_SPE
241 #define PPC_FEATURE_HAS_EFP_SINGLE_COMP PPC_FEATURE_HAS_EFP_SINGLE
242 #define PPC_FEATURE_HAS_EFP_DOUBLE_COMP PPC_FEATURE_HAS_EFP_DOUBLE
243 #else
244 #define CPU_FTR_SPE_COMP        0
245 #define PPC_FEATURE_HAS_SPE_COMP    0
246 #define PPC_FEATURE_HAS_EFP_SINGLE_COMP 0
247 #define PPC_FEATURE_HAS_EFP_DOUBLE_COMP 0
248 #endif
249
250 /* We need to mark all pages as being coherent if we're SMP or we have a
251  * 74[45]x and an MPC107 host bridge. Also 83xx and PowerQUICC II
252  * require it for PCI "streaming/prefetch" to work properly.
253  * This is also required by 52xx family.
254  */
255 #if defined(CONFIG_SMP) || defined(CONFIG_MPC10X_BRIDGE) \
256         || defined(CONFIG_PPC_83xx) || defined(CONFIG_8260) \
257         || defined(CONFIG_PPC_MPC52xx)
258 #define CPU_FTR_COMMON                  CPU_FTR_NEED_COHERENT
259 #else
260 #define CPU_FTR_COMMON                  0
261 #endif
262
263 /* The powersave features NAP & DOZE seems to confuse BDI when
264    debugging. So if a BDI is used, disable theses
265  */
266 #ifndef CONFIG_BDI_SWITCH
267 #define CPU_FTR_MAYBE_CAN_DOZE  CPU_FTR_CAN_DOZE
268 #define CPU_FTR_MAYBE_CAN_NAP   CPU_FTR_CAN_NAP
269 #else
270 #define CPU_FTR_MAYBE_CAN_DOZE  0
271 #define CPU_FTR_MAYBE_CAN_NAP   0
272 #endif
273
274 #define CLASSIC_PPC (!defined(CONFIG_8xx) && !defined(CONFIG_4xx) && \
275                      !defined(CONFIG_POWER3) && !defined(CONFIG_POWER4) && \
276                      !defined(CONFIG_BOOKE))
277
278 #define CPU_FTRS_PPC601 (CPU_FTR_COMMON | CPU_FTR_601 | \
279         CPU_FTR_COHERENT_ICACHE | CPU_FTR_UNIFIED_ID_CACHE)
280 #define CPU_FTRS_603    (CPU_FTR_COMMON | \
281             CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
282             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
283 #define CPU_FTRS_604    (CPU_FTR_COMMON | \
284             CPU_FTR_USE_TB | CPU_FTR_PPC_LE)
285 #define CPU_FTRS_740_NOTAU      (CPU_FTR_COMMON | \
286             CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
287             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
288 #define CPU_FTRS_740    (CPU_FTR_COMMON | \
289             CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
290             CPU_FTR_TAU | CPU_FTR_MAYBE_CAN_NAP | \
291             CPU_FTR_PPC_LE)
292 #define CPU_FTRS_750    (CPU_FTR_COMMON | \
293             CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
294             CPU_FTR_TAU | CPU_FTR_MAYBE_CAN_NAP | \
295             CPU_FTR_PPC_LE)
296 #define CPU_FTRS_750CL  (CPU_FTRS_750)
297 #define CPU_FTRS_750FX1 (CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX | CPU_FTR_NO_DPM)
298 #define CPU_FTRS_750FX2 (CPU_FTRS_750 | CPU_FTR_NO_DPM)
299 #define CPU_FTRS_750FX  (CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX)
300 #define CPU_FTRS_750GX  (CPU_FTRS_750FX)
301 #define CPU_FTRS_7400_NOTAU     (CPU_FTR_COMMON | \
302             CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
303             CPU_FTR_ALTIVEC_COMP | \
304             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
305 #define CPU_FTRS_7400   (CPU_FTR_COMMON | \
306             CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
307             CPU_FTR_TAU | CPU_FTR_ALTIVEC_COMP | \
308             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
309 #define CPU_FTRS_7450_20        (CPU_FTR_COMMON | \
310             CPU_FTR_USE_TB | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
311             CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
312             CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
313 #define CPU_FTRS_7450_21        (CPU_FTR_COMMON | \
314             CPU_FTR_USE_TB | \
315             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
316             CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
317             CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
318             CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
319 #define CPU_FTRS_7450_23        (CPU_FTR_COMMON | \
320             CPU_FTR_USE_TB | CPU_FTR_NEED_PAIRED_STWCX | \
321             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
322             CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
323             CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
324 #define CPU_FTRS_7455_1 (CPU_FTR_COMMON | \
325             CPU_FTR_USE_TB | CPU_FTR_NEED_PAIRED_STWCX | \
326             CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | CPU_FTR_L3CR | \
327             CPU_FTR_SPEC7450 | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
328 #define CPU_FTRS_7455_20        (CPU_FTR_COMMON | \
329             CPU_FTR_USE_TB | CPU_FTR_NEED_PAIRED_STWCX | \
330             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
331             CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
332             CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
333             CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
334 #define CPU_FTRS_7455   (CPU_FTR_COMMON | \
335             CPU_FTR_USE_TB | \
336             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
337             CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
338             CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
339 #define CPU_FTRS_7447_10        (CPU_FTR_COMMON | \
340             CPU_FTR_USE_TB | \
341             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
342             CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
343             CPU_FTR_NEED_COHERENT | CPU_FTR_NO_BTIC | CPU_FTR_PPC_LE | \
344             CPU_FTR_NEED_PAIRED_STWCX)
345 #define CPU_FTRS_7447   (CPU_FTR_COMMON | \
346             CPU_FTR_USE_TB | \
347             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
348             CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
349             CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
350 #define CPU_FTRS_7447A  (CPU_FTR_COMMON | \
351             CPU_FTR_USE_TB | \
352             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
353             CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
354             CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
355 #define CPU_FTRS_7448   (CPU_FTR_COMMON | \
356             CPU_FTR_USE_TB | \
357             CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
358             CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
359             CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
360 #define CPU_FTRS_82XX   (CPU_FTR_COMMON | \
361             CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB)
362 #define CPU_FTRS_G2_LE  (CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | \
363             CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP)
364 #define CPU_FTRS_E300   (CPU_FTR_MAYBE_CAN_DOZE | \
365             CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP | \
366             CPU_FTR_COMMON)
367 #define CPU_FTRS_E300C2 (CPU_FTR_MAYBE_CAN_DOZE | \
368             CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP | \
369             CPU_FTR_COMMON | CPU_FTR_FPU_UNAVAILABLE)
370 #define CPU_FTRS_CLASSIC32      (CPU_FTR_COMMON | CPU_FTR_USE_TB)
371 #define CPU_FTRS_8XX    (CPU_FTR_USE_TB)
372 #define CPU_FTRS_40X    (CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
373 #define CPU_FTRS_44X    (CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
374 #define CPU_FTRS_440x6  (CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE | \
375             CPU_FTR_INDEXED_DCR)
376 #define CPU_FTRS_47X    (CPU_FTRS_440x6)
377 #define CPU_FTRS_E200   (CPU_FTR_USE_TB | CPU_FTR_SPE_COMP | \
378             CPU_FTR_NODSISRALIGN | CPU_FTR_COHERENT_ICACHE | \
379             CPU_FTR_UNIFIED_ID_CACHE | CPU_FTR_NOEXECUTE)
380 #define CPU_FTRS_E500   (CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
381             CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_NODSISRALIGN | \
382             CPU_FTR_NOEXECUTE)
383 #define CPU_FTRS_E500_2 (CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
384             CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | \
385             CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
386 #define CPU_FTRS_E500MC (CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | \
387             CPU_FTR_L2CSR | CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
388             CPU_FTR_DBELL)
389 #define CPU_FTRS_E5500  (CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | \
390             CPU_FTR_L2CSR | CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
391             CPU_FTR_DBELL | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
392             CPU_FTR_DEBUG_LVL_EXC)
393 #define CPU_FTRS_GENERIC_32     (CPU_FTR_COMMON | CPU_FTR_NODSISRALIGN)
394
395 /* 64-bit CPUs */
396 #define CPU_FTRS_POWER3 (CPU_FTR_USE_TB | \
397             CPU_FTR_IABR | CPU_FTR_PPC_LE)
398 #define CPU_FTRS_RS64   (CPU_FTR_USE_TB | \
399             CPU_FTR_IABR | \
400             CPU_FTR_MMCRA | CPU_FTR_CTRL)
401 #define CPU_FTRS_POWER4 (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
402             CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
403             CPU_FTR_MMCRA | CPU_FTR_CP_USE_DCBTZ | \
404             CPU_FTR_STCX_CHECKS_ADDRESS)
405 #define CPU_FTRS_PPC970 (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
406             CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_201 | \
407             CPU_FTR_ALTIVEC_COMP | CPU_FTR_CAN_NAP | CPU_FTR_MMCRA | \
408             CPU_FTR_CP_USE_DCBTZ | CPU_FTR_STCX_CHECKS_ADDRESS | \
409             CPU_FTR_HVMODE)
410 #define CPU_FTRS_POWER5 (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
411             CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
412             CPU_FTR_MMCRA | CPU_FTR_SMT | \
413             CPU_FTR_COHERENT_ICACHE | CPU_FTR_PURR | \
414             CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB)
415 #define CPU_FTRS_POWER6 (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
416             CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
417             CPU_FTR_MMCRA | CPU_FTR_SMT | \
418             CPU_FTR_COHERENT_ICACHE | \
419             CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
420             CPU_FTR_DSCR | CPU_FTR_UNALIGNED_LD_STD | \
421             CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_CFAR)
422 #define CPU_FTRS_POWER7 (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
423             CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
424             CPU_FTR_MMCRA | CPU_FTR_SMT | \
425             CPU_FTR_COHERENT_ICACHE | \
426             CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
427             CPU_FTR_DSCR | CPU_FTR_SAO  | CPU_FTR_ASYM_SMT | \
428             CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
429             CPU_FTR_ICSWX | CPU_FTR_CFAR | CPU_FTR_HVMODE)
430 #define CPU_FTRS_CELL   (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
431             CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
432             CPU_FTR_ALTIVEC_COMP | CPU_FTR_MMCRA | CPU_FTR_SMT | \
433             CPU_FTR_PAUSE_ZERO  | CPU_FTR_CELL_TB_BUG | CPU_FTR_CP_USE_DCBTZ | \
434             CPU_FTR_UNALIGNED_LD_STD)
435 #define CPU_FTRS_PA6T (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
436             CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_ALTIVEC_COMP | \
437             CPU_FTR_PURR | CPU_FTR_REAL_LE)
438 #define CPU_FTRS_COMPATIBLE     (CPU_FTR_USE_TB | CPU_FTR_PPCAS_ARCH_V2)
439
440 #define CPU_FTRS_A2 (CPU_FTR_USE_TB | CPU_FTR_SMT | CPU_FTR_DBELL | \
441                      CPU_FTR_NOEXECUTE | CPU_FTR_NODSISRALIGN)
442
443 #ifdef __powerpc64__
444 #ifdef CONFIG_PPC_BOOK3E
445 #define CPU_FTRS_POSSIBLE       (CPU_FTRS_E5500 | CPU_FTRS_A2)
446 #else
447 #define CPU_FTRS_POSSIBLE       \
448             (CPU_FTRS_POWER3 | CPU_FTRS_RS64 | CPU_FTRS_POWER4 |        \
449             CPU_FTRS_PPC970 | CPU_FTRS_POWER5 | CPU_FTRS_POWER6 |       \
450             CPU_FTRS_POWER7 | CPU_FTRS_CELL | CPU_FTRS_PA6T |           \
451             CPU_FTR_VSX)
452 #endif
453 #else
454 enum {
455         CPU_FTRS_POSSIBLE =
456 #if CLASSIC_PPC
457             CPU_FTRS_PPC601 | CPU_FTRS_603 | CPU_FTRS_604 | CPU_FTRS_740_NOTAU |
458             CPU_FTRS_740 | CPU_FTRS_750 | CPU_FTRS_750FX1 |
459             CPU_FTRS_750FX2 | CPU_FTRS_750FX | CPU_FTRS_750GX |
460             CPU_FTRS_7400_NOTAU | CPU_FTRS_7400 | CPU_FTRS_7450_20 |
461             CPU_FTRS_7450_21 | CPU_FTRS_7450_23 | CPU_FTRS_7455_1 |
462             CPU_FTRS_7455_20 | CPU_FTRS_7455 | CPU_FTRS_7447_10 |
463             CPU_FTRS_7447 | CPU_FTRS_7447A | CPU_FTRS_82XX |
464             CPU_FTRS_G2_LE | CPU_FTRS_E300 | CPU_FTRS_E300C2 |
465             CPU_FTRS_CLASSIC32 |
466 #else
467             CPU_FTRS_GENERIC_32 |
468 #endif
469 #ifdef CONFIG_8xx
470             CPU_FTRS_8XX |
471 #endif
472 #ifdef CONFIG_40x
473             CPU_FTRS_40X |
474 #endif
475 #ifdef CONFIG_44x
476             CPU_FTRS_44X | CPU_FTRS_440x6 |
477 #endif
478 #ifdef CONFIG_PPC_47x
479             CPU_FTRS_47X | CPU_FTR_476_DD2 |
480 #endif
481 #ifdef CONFIG_E200
482             CPU_FTRS_E200 |
483 #endif
484 #ifdef CONFIG_E500
485             CPU_FTRS_E500 | CPU_FTRS_E500_2 | CPU_FTRS_E500MC |
486             CPU_FTRS_E5500 |
487 #endif
488             0,
489 };
490 #endif /* __powerpc64__ */
491
492 #ifdef __powerpc64__
493 #ifdef CONFIG_PPC_BOOK3E
494 #define CPU_FTRS_ALWAYS         (CPU_FTRS_E5500 & CPU_FTRS_A2)
495 #else
496 #define CPU_FTRS_ALWAYS         \
497             (CPU_FTRS_POWER3 & CPU_FTRS_RS64 & CPU_FTRS_POWER4 &        \
498             CPU_FTRS_PPC970 & CPU_FTRS_POWER5 & CPU_FTRS_POWER6 &       \
499             CPU_FTRS_POWER7 & CPU_FTRS_CELL & CPU_FTRS_PA6T & CPU_FTRS_POSSIBLE)
500 #endif
501 #else
502 enum {
503         CPU_FTRS_ALWAYS =
504 #if CLASSIC_PPC
505             CPU_FTRS_PPC601 & CPU_FTRS_603 & CPU_FTRS_604 & CPU_FTRS_740_NOTAU &
506             CPU_FTRS_740 & CPU_FTRS_750 & CPU_FTRS_750FX1 &
507             CPU_FTRS_750FX2 & CPU_FTRS_750FX & CPU_FTRS_750GX &
508             CPU_FTRS_7400_NOTAU & CPU_FTRS_7400 & CPU_FTRS_7450_20 &
509             CPU_FTRS_7450_21 & CPU_FTRS_7450_23 & CPU_FTRS_7455_1 &
510             CPU_FTRS_7455_20 & CPU_FTRS_7455 & CPU_FTRS_7447_10 &
511             CPU_FTRS_7447 & CPU_FTRS_7447A & CPU_FTRS_82XX &
512             CPU_FTRS_G2_LE & CPU_FTRS_E300 & CPU_FTRS_E300C2 &
513             CPU_FTRS_CLASSIC32 &
514 #else
515             CPU_FTRS_GENERIC_32 &
516 #endif
517 #ifdef CONFIG_8xx
518             CPU_FTRS_8XX &
519 #endif
520 #ifdef CONFIG_40x
521             CPU_FTRS_40X &
522 #endif
523 #ifdef CONFIG_44x
524             CPU_FTRS_44X & CPU_FTRS_440x6 &
525 #endif
526 #ifdef CONFIG_E200
527             CPU_FTRS_E200 &
528 #endif
529 #ifdef CONFIG_E500
530             CPU_FTRS_E500 & CPU_FTRS_E500_2 & CPU_FTRS_E500MC &
531             CPU_FTRS_E5500 &
532 #endif
533             CPU_FTRS_POSSIBLE,
534 };
535 #endif /* __powerpc64__ */
536
537 static inline int cpu_has_feature(unsigned long feature)
538 {
539         return (CPU_FTRS_ALWAYS & feature) ||
540                (CPU_FTRS_POSSIBLE
541                 & cur_cpu_spec->cpu_features
542                 & feature);
543 }
544
545 #ifdef CONFIG_HAVE_HW_BREAKPOINT
546 #define HBP_NUM 1
547 #endif /* CONFIG_HAVE_HW_BREAKPOINT */
548
549 #endif /* !__ASSEMBLY__ */
550
551 #endif /* __KERNEL__ */
552 #endif /* __ASM_POWERPC_CPUTABLE_H */