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