cputable.h 19.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef __ASM_POWERPC_CPUTABLE_H
#define __ASM_POWERPC_CPUTABLE_H

#define PPC_FEATURE_32			0x80000000
#define PPC_FEATURE_64			0x40000000
#define PPC_FEATURE_601_INSTR		0x20000000
#define PPC_FEATURE_HAS_ALTIVEC		0x10000000
#define PPC_FEATURE_HAS_FPU		0x08000000
#define PPC_FEATURE_HAS_MMU		0x04000000
#define PPC_FEATURE_HAS_4xxMAC		0x02000000
#define PPC_FEATURE_UNIFIED_CACHE	0x01000000
#define PPC_FEATURE_HAS_SPE		0x00800000
#define PPC_FEATURE_HAS_EFP_SINGLE	0x00400000
#define PPC_FEATURE_HAS_EFP_DOUBLE	0x00200000
15
#define PPC_FEATURE_NO_TB		0x00100000
16 17 18 19
#define PPC_FEATURE_POWER4		0x00080000
#define PPC_FEATURE_POWER5		0x00040000
#define PPC_FEATURE_POWER5_PLUS		0x00020000
#define PPC_FEATURE_CELL		0x00010000
20
#define PPC_FEATURE_BOOKE		0x00008000
21 22
#define PPC_FEATURE_SMT			0x00004000
#define PPC_FEATURE_ICACHE_SNOOP	0x00002000
23
#define PPC_FEATURE_ARCH_2_05		0x00001000
24
#define PPC_FEATURE_PA6T		0x00000800
25 26
#define PPC_FEATURE_HAS_DFP		0x00000400
#define PPC_FEATURE_POWER6_EXT		0x00000200
27
#define PPC_FEATURE_ARCH_2_06		0x00000100
M
Michael Neuling 已提交
28
#define PPC_FEATURE_HAS_VSX		0x00000080
29

30 31 32
#define PPC_FEATURE_PSERIES_PERFMON_COMPAT \
					0x00000040

33 34 35
#define PPC_FEATURE_TRUE_LE		0x00000002
#define PPC_FEATURE_PPC_LE		0x00000001

36
#ifdef __KERNEL__
37 38

#include <asm/asm-compat.h>
39
#include <asm/feature-fixups.h>
40

41 42 43 44 45 46 47 48
#ifndef __ASSEMBLY__

/* This structure can grow, it's real size is used by head.S code
 * via the mkdefs mechanism.
 */
struct cpu_spec;

typedef	void (*cpu_setup_t)(unsigned long offset, struct cpu_spec* spec);
O
Olof Johansson 已提交
49
typedef	void (*cpu_restore_t)(void);
50

51
enum powerpc_oprofile_type {
52 53 54 55
	PPC_OPROFILE_INVALID = 0,
	PPC_OPROFILE_RS64 = 1,
	PPC_OPROFILE_POWER4 = 2,
	PPC_OPROFILE_G4 = 3,
56
	PPC_OPROFILE_FSL_EMB = 4,
57
	PPC_OPROFILE_CELL = 5,
58
	PPC_OPROFILE_PA6T = 6,
59 60
};

61 62 63 64
enum powerpc_pmc_type {
	PPC_PMC_DEFAULT = 0,
	PPC_PMC_IBM = 1,
	PPC_PMC_PA6T = 2,
65
	PPC_PMC_G4 = 3,
66 67
};

68 69 70 71 72
struct pt_regs;

extern int machine_check_generic(struct pt_regs *regs);
extern int machine_check_4xx(struct pt_regs *regs);
extern int machine_check_440A(struct pt_regs *regs);
73
extern int machine_check_e500mc(struct pt_regs *regs);
74 75
extern int machine_check_e500(struct pt_regs *regs);
extern int machine_check_e200(struct pt_regs *regs);
76
extern int machine_check_47x(struct pt_regs *regs);
77

78
/* NOTE WELL: Update identify_cpu() if fields are added or removed! */
79 80 81 82 83 84 85 86
struct cpu_spec {
	/* CPU is matched via (PVR & pvr_mask) == pvr_value */
	unsigned int	pvr_mask;
	unsigned int	pvr_value;

	char		*cpu_name;
	unsigned long	cpu_features;		/* Kernel features */
	unsigned int	cpu_user_features;	/* Userland features */
87
	unsigned int	mmu_features;		/* MMU features */
88 89 90 91 92 93 94

	/* cache line sizes */
	unsigned int	icache_bsize;
	unsigned int	dcache_bsize;

	/* number of performance monitor counters */
	unsigned int	num_pmcs;
95
	enum powerpc_pmc_type pmc_type;
96 97 98 99 100

	/* this is called to initialize various CPU bits like L1 cache,
	 * BHT, SPD, etc... from head.S before branching to identify_machine
	 */
	cpu_setup_t	cpu_setup;
O
Olof Johansson 已提交
101 102
	/* Used to restore cpu setup on secondary processors and at resume */
	cpu_restore_t	cpu_restore;
103 104 105 106 107

	/* Used by oprofile userspace to select the right counters */
	char		*oprofile_cpu_type;

	/* Processor specific oprofile operations */
108
	enum powerpc_oprofile_type oprofile_type;
109

110 111 112 113 114 115 116
	/* Bit locations inside the mmcra change */
	unsigned long	oprofile_mmcra_sihv;
	unsigned long	oprofile_mmcra_sipr;

	/* Bits to clear during an oprofile exception */
	unsigned long	oprofile_mmcra_clear;

117 118
	/* Name of processor class, for the ELF AT_PLATFORM entry */
	char		*platform;
119 120 121 122 123

	/* Processor specific machine check handling. Return negative
	 * if the error is fatal, 1 if it was fully recovered and 0 to
	 * pass up (not CPU originated) */
	int		(*machine_check)(struct pt_regs *regs);
124 125 126 127
};

extern struct cpu_spec		*cur_cpu_spec;

128 129
extern unsigned int __start___ftr_fixup, __stop___ftr_fixup;

130
extern struct cpu_spec *identify_cpu(unsigned long offset, unsigned int pvr);
131 132
extern void do_feature_fixups(unsigned long value, void *fixup_start,
			      void *fixup_end);
133

134 135
extern const char *powerpc_base_platform;

136 137 138 139 140
#endif /* __ASSEMBLY__ */

/* CPU kernel features */

/* Retain the 32b definitions all use bottom half of word */
141
#define CPU_FTR_COHERENT_ICACHE		ASM_CONST(0x0000000000000001)
142 143 144 145 146 147
#define CPU_FTR_L2CR			ASM_CONST(0x0000000000000002)
#define CPU_FTR_SPEC7450		ASM_CONST(0x0000000000000004)
#define CPU_FTR_ALTIVEC			ASM_CONST(0x0000000000000008)
#define CPU_FTR_TAU			ASM_CONST(0x0000000000000010)
#define CPU_FTR_CAN_DOZE		ASM_CONST(0x0000000000000020)
#define CPU_FTR_USE_TB			ASM_CONST(0x0000000000000040)
148
#define CPU_FTR_L2CSR			ASM_CONST(0x0000000000000080)
149
#define CPU_FTR_601			ASM_CONST(0x0000000000000100)
150
#define CPU_FTR_DBELL			ASM_CONST(0x0000000000000200)
151 152 153 154 155 156 157 158
#define CPU_FTR_CAN_NAP			ASM_CONST(0x0000000000000400)
#define CPU_FTR_L3CR			ASM_CONST(0x0000000000000800)
#define CPU_FTR_L3_DISABLE_NAP		ASM_CONST(0x0000000000001000)
#define CPU_FTR_NAP_DISABLE_L2_PR	ASM_CONST(0x0000000000002000)
#define CPU_FTR_DUAL_PLL_750FX		ASM_CONST(0x0000000000004000)
#define CPU_FTR_NO_DPM			ASM_CONST(0x0000000000008000)
#define CPU_FTR_NEED_COHERENT		ASM_CONST(0x0000000000020000)
#define CPU_FTR_NO_BTIC			ASM_CONST(0x0000000000040000)
159
#define CPU_FTR_NODSISRALIGN		ASM_CONST(0x0000000000100000)
160 161
#define CPU_FTR_PPC_LE			ASM_CONST(0x0000000000200000)
#define CPU_FTR_REAL_LE			ASM_CONST(0x0000000000400000)
162
#define CPU_FTR_FPU_UNAVAILABLE		ASM_CONST(0x0000000000800000)
163
#define CPU_FTR_UNIFIED_ID_CACHE	ASM_CONST(0x0000000001000000)
164
#define CPU_FTR_SPE			ASM_CONST(0x0000000002000000)
165
#define CPU_FTR_NEED_PAIRED_STWCX	ASM_CONST(0x0000000004000000)
K
Kumar Gala 已提交
166
#define CPU_FTR_LWSYNC			ASM_CONST(0x0000000008000000)
167
#define CPU_FTR_NOEXECUTE		ASM_CONST(0x0000000010000000)
168
#define CPU_FTR_INDEXED_DCR		ASM_CONST(0x0000000020000000)
169

170 171 172 173
/*
 * Add the 64-bit processor unique features in the top half of the word;
 * on 32-bit, make the names available but defined to be 0.
 */
174
#ifdef __powerpc64__
175
#define LONG_ASM_CONST(x)		ASM_CONST(x)
176
#else
177
#define LONG_ASM_CONST(x)		0
178 179
#endif

180 181 182 183 184 185 186 187 188 189 190
#define CPU_FTR_SLB			LONG_ASM_CONST(0x0000000100000000)
#define CPU_FTR_16M_PAGE		LONG_ASM_CONST(0x0000000200000000)
#define CPU_FTR_TLBIEL			LONG_ASM_CONST(0x0000000400000000)
#define CPU_FTR_IABR			LONG_ASM_CONST(0x0000002000000000)
#define CPU_FTR_MMCRA			LONG_ASM_CONST(0x0000004000000000)
#define CPU_FTR_CTRL			LONG_ASM_CONST(0x0000008000000000)
#define CPU_FTR_SMT			LONG_ASM_CONST(0x0000010000000000)
#define CPU_FTR_LOCKLESS_TLBIE		LONG_ASM_CONST(0x0000040000000000)
#define CPU_FTR_CI_LARGE_PAGE		LONG_ASM_CONST(0x0000100000000000)
#define CPU_FTR_PAUSE_ZERO		LONG_ASM_CONST(0x0000200000000000)
#define CPU_FTR_PURR			LONG_ASM_CONST(0x0000400000000000)
191
#define CPU_FTR_CELL_TB_BUG		LONG_ASM_CONST(0x0000800000000000)
192
#define CPU_FTR_SPURR			LONG_ASM_CONST(0x0001000000000000)
A
Anton Blanchard 已提交
193
#define CPU_FTR_DSCR			LONG_ASM_CONST(0x0002000000000000)
P
Paul Mackerras 已提交
194
#define CPU_FTR_1T_SEGMENT		LONG_ASM_CONST(0x0004000000000000)
195
#define CPU_FTR_NO_SLBIE_B		LONG_ASM_CONST(0x0008000000000000)
M
Michael Neuling 已提交
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

201 202
#ifndef __ASSEMBLY__

203 204 205
#define CPU_FTR_PPCAS_ARCH_V2	(CPU_FTR_SLB | \
				 CPU_FTR_TLBIEL | CPU_FTR_NOEXECUTE | \
				 CPU_FTR_NODSISRALIGN | CPU_FTR_16M_PAGE)
206 207 208 209 210 211 212 213 214 215 216 217

/* We only set the altivec features if the kernel was compiled with altivec
 * support
 */
#ifdef CONFIG_ALTIVEC
#define CPU_FTR_ALTIVEC_COMP	CPU_FTR_ALTIVEC
#define PPC_FEATURE_HAS_ALTIVEC_COMP PPC_FEATURE_HAS_ALTIVEC
#else
#define CPU_FTR_ALTIVEC_COMP	0
#define PPC_FEATURE_HAS_ALTIVEC_COMP    0
#endif

M
Michael Neuling 已提交
218 219 220 221 222 223 224 225 226 227 228
/* We only set the VSX features if the kernel was compiled with VSX
 * support
 */
#ifdef CONFIG_VSX
#define CPU_FTR_VSX_COMP	CPU_FTR_VSX
#define PPC_FEATURE_HAS_VSX_COMP PPC_FEATURE_HAS_VSX
#else
#define CPU_FTR_VSX_COMP	0
#define PPC_FEATURE_HAS_VSX_COMP    0
#endif

229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
/* We only set the spe features if the kernel was compiled with spe
 * support
 */
#ifdef CONFIG_SPE
#define CPU_FTR_SPE_COMP	CPU_FTR_SPE
#define PPC_FEATURE_HAS_SPE_COMP PPC_FEATURE_HAS_SPE
#define PPC_FEATURE_HAS_EFP_SINGLE_COMP PPC_FEATURE_HAS_EFP_SINGLE
#define PPC_FEATURE_HAS_EFP_DOUBLE_COMP PPC_FEATURE_HAS_EFP_DOUBLE
#else
#define CPU_FTR_SPE_COMP	0
#define PPC_FEATURE_HAS_SPE_COMP    0
#define PPC_FEATURE_HAS_EFP_SINGLE_COMP 0
#define PPC_FEATURE_HAS_EFP_DOUBLE_COMP 0
#endif

244 245 246
/* We need to mark all pages as being coherent if we're SMP or we have a
 * 74[45]x and an MPC107 host bridge. Also 83xx and PowerQUICC II
 * require it for PCI "streaming/prefetch" to work properly.
247
 * This is also required by 52xx family.
248
 */
249
#if defined(CONFIG_SMP) || defined(CONFIG_MPC10X_BRIDGE) \
250 251
	|| defined(CONFIG_PPC_83xx) || defined(CONFIG_8260) \
	|| defined(CONFIG_PPC_MPC52xx)
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
#define CPU_FTR_COMMON                  CPU_FTR_NEED_COHERENT
#else
#define CPU_FTR_COMMON                  0
#endif

/* The powersave features NAP & DOZE seems to confuse BDI when
   debugging. So if a BDI is used, disable theses
 */
#ifndef CONFIG_BDI_SWITCH
#define CPU_FTR_MAYBE_CAN_DOZE	CPU_FTR_CAN_DOZE
#define CPU_FTR_MAYBE_CAN_NAP	CPU_FTR_CAN_NAP
#else
#define CPU_FTR_MAYBE_CAN_DOZE	0
#define CPU_FTR_MAYBE_CAN_NAP	0
#endif

#define CLASSIC_PPC (!defined(CONFIG_8xx) && !defined(CONFIG_4xx) && \
		     !defined(CONFIG_POWER3) && !defined(CONFIG_POWER4) && \
		     !defined(CONFIG_BOOKE))

272
#define CPU_FTRS_PPC601	(CPU_FTR_COMMON | CPU_FTR_601 | \
273 274
	CPU_FTR_COHERENT_ICACHE | CPU_FTR_UNIFIED_ID_CACHE)
#define CPU_FTRS_603	(CPU_FTR_COMMON | \
275
	    CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
276
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
277
#define CPU_FTRS_604	(CPU_FTR_COMMON | \
278
	    CPU_FTR_USE_TB | CPU_FTR_PPC_LE)
279
#define CPU_FTRS_740_NOTAU	(CPU_FTR_COMMON | \
280
	    CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
281
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
282
#define CPU_FTRS_740	(CPU_FTR_COMMON | \
283
	    CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
284
	    CPU_FTR_TAU | CPU_FTR_MAYBE_CAN_NAP | \
285
	    CPU_FTR_PPC_LE)
286
#define CPU_FTRS_750	(CPU_FTR_COMMON | \
287
	    CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
288
	    CPU_FTR_TAU | CPU_FTR_MAYBE_CAN_NAP | \
289
	    CPU_FTR_PPC_LE)
290
#define CPU_FTRS_750CL	(CPU_FTRS_750)
291 292
#define CPU_FTRS_750FX1	(CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX | CPU_FTR_NO_DPM)
#define CPU_FTRS_750FX2	(CPU_FTRS_750 | CPU_FTR_NO_DPM)
293
#define CPU_FTRS_750FX	(CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX)
294
#define CPU_FTRS_750GX	(CPU_FTRS_750FX)
295
#define CPU_FTRS_7400_NOTAU	(CPU_FTR_COMMON | \
296
	    CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
297
	    CPU_FTR_ALTIVEC_COMP | \
298
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
299
#define CPU_FTRS_7400	(CPU_FTR_COMMON | \
300
	    CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | CPU_FTR_L2CR | \
301
	    CPU_FTR_TAU | CPU_FTR_ALTIVEC_COMP | \
302
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
303
#define CPU_FTRS_7450_20	(CPU_FTR_COMMON | \
304
	    CPU_FTR_USE_TB | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
305
	    CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
306
	    CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
307
#define CPU_FTRS_7450_21	(CPU_FTR_COMMON | \
308 309
	    CPU_FTR_USE_TB | \
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
310
	    CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
311
	    CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
312
	    CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
313
#define CPU_FTRS_7450_23	(CPU_FTR_COMMON | \
314
	    CPU_FTR_USE_TB | CPU_FTR_NEED_PAIRED_STWCX | \
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_NEED_COHERENT | CPU_FTR_PPC_LE)
318
#define CPU_FTRS_7455_1	(CPU_FTR_COMMON | \
319
	    CPU_FTR_USE_TB | CPU_FTR_NEED_PAIRED_STWCX | \
320
	    CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | CPU_FTR_L3CR | \
321
	    CPU_FTR_SPEC7450 | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
322
#define CPU_FTRS_7455_20	(CPU_FTR_COMMON | \
323
	    CPU_FTR_USE_TB | CPU_FTR_NEED_PAIRED_STWCX | \
324
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
325
	    CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
326
	    CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
327
	    CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
328
#define CPU_FTRS_7455	(CPU_FTR_COMMON | \
329 330
	    CPU_FTR_USE_TB | \
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
331
	    CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
332
	    CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
333
#define CPU_FTRS_7447_10	(CPU_FTR_COMMON | \
334 335
	    CPU_FTR_USE_TB | \
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
336
	    CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
337 338
	    CPU_FTR_NEED_COHERENT | CPU_FTR_NO_BTIC | CPU_FTR_PPC_LE | \
	    CPU_FTR_NEED_PAIRED_STWCX)
339
#define CPU_FTRS_7447	(CPU_FTR_COMMON | \
340 341
	    CPU_FTR_USE_TB | \
	    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_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
344
#define CPU_FTRS_7447A	(CPU_FTR_COMMON | \
345 346
	    CPU_FTR_USE_TB | \
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
347
	    CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
348
	    CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
349
#define CPU_FTRS_7448	(CPU_FTR_COMMON | \
350 351
	    CPU_FTR_USE_TB | \
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
352
	    CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
353
	    CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
354
#define CPU_FTRS_82XX	(CPU_FTR_COMMON | \
355
	    CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB)
356
#define CPU_FTRS_G2_LE	(CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | \
357
	    CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP)
358
#define CPU_FTRS_E300	(CPU_FTR_MAYBE_CAN_DOZE | \
359
	    CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP | \
360
	    CPU_FTR_COMMON)
361
#define CPU_FTRS_E300C2	(CPU_FTR_MAYBE_CAN_DOZE | \
362
	    CPU_FTR_USE_TB | CPU_FTR_MAYBE_CAN_NAP | \
363
	    CPU_FTR_COMMON | CPU_FTR_FPU_UNAVAILABLE)
364
#define CPU_FTRS_CLASSIC32	(CPU_FTR_COMMON | CPU_FTR_USE_TB)
365
#define CPU_FTRS_8XX	(CPU_FTR_USE_TB)
366 367
#define CPU_FTRS_40X	(CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
#define CPU_FTRS_44X	(CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
368 369
#define CPU_FTRS_440x6	(CPU_FTR_USE_TB | CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE | \
	    CPU_FTR_INDEXED_DCR)
D
Dave Kleikamp 已提交
370
#define CPU_FTRS_47X	(CPU_FTRS_440x6)
371 372
#define CPU_FTRS_E200	(CPU_FTR_USE_TB | CPU_FTR_SPE_COMP | \
	    CPU_FTR_NODSISRALIGN | CPU_FTR_COHERENT_ICACHE | \
373
	    CPU_FTR_UNIFIED_ID_CACHE | CPU_FTR_NOEXECUTE)
374
#define CPU_FTRS_E500	(CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
375 376
	    CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_NODSISRALIGN | \
	    CPU_FTR_NOEXECUTE)
377
#define CPU_FTRS_E500_2	(CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
378
	    CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | \
379
	    CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
380
#define CPU_FTRS_E500MC	(CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_USE_TB | \
381
	    CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_NODSISRALIGN | \
382 383
	    CPU_FTR_L2CSR | CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
	    CPU_FTR_DBELL)
384
#define CPU_FTRS_GENERIC_32	(CPU_FTR_COMMON | CPU_FTR_NODSISRALIGN)
385 386

/* 64-bit CPUs */
387
#define CPU_FTRS_POWER3	(CPU_FTR_USE_TB | \
388
	    CPU_FTR_IABR | CPU_FTR_PPC_LE)
389
#define CPU_FTRS_RS64	(CPU_FTR_USE_TB | \
390
	    CPU_FTR_IABR | \
391
	    CPU_FTR_MMCRA | CPU_FTR_CTRL)
K
Kumar Gala 已提交
392
#define CPU_FTRS_POWER4	(CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
393
	    CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
394
	    CPU_FTR_MMCRA | CPU_FTR_CP_USE_DCBTZ)
K
Kumar Gala 已提交
395
#define CPU_FTRS_PPC970	(CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
396
	    CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
397 398
	    CPU_FTR_ALTIVEC_COMP | CPU_FTR_CAN_NAP | CPU_FTR_MMCRA | \
	    CPU_FTR_CP_USE_DCBTZ)
K
Kumar Gala 已提交
399
#define CPU_FTRS_POWER5	(CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
400
	    CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
401 402
	    CPU_FTR_MMCRA | CPU_FTR_SMT | \
	    CPU_FTR_COHERENT_ICACHE | CPU_FTR_LOCKLESS_TLBIE | \
403
	    CPU_FTR_PURR)
K
Kumar Gala 已提交
404
#define CPU_FTRS_POWER6 (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
405
	    CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
406 407
	    CPU_FTR_MMCRA | CPU_FTR_SMT | \
	    CPU_FTR_COHERENT_ICACHE | CPU_FTR_LOCKLESS_TLBIE | \
A
Anton Blanchard 已提交
408
	    CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
409
	    CPU_FTR_DSCR | CPU_FTR_UNALIGNED_LD_STD)
K
Kumar Gala 已提交
410
#define CPU_FTRS_POWER7 (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
411
	    CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
412 413 414
	    CPU_FTR_MMCRA | CPU_FTR_SMT | \
	    CPU_FTR_COHERENT_ICACHE | CPU_FTR_LOCKLESS_TLBIE | \
	    CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
415
	    CPU_FTR_DSCR | CPU_FTR_SAO)
K
Kumar Gala 已提交
416
#define CPU_FTRS_CELL	(CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
417
	    CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
418
	    CPU_FTR_ALTIVEC_COMP | CPU_FTR_MMCRA | CPU_FTR_SMT | \
419
	    CPU_FTR_PAUSE_ZERO | CPU_FTR_CI_LARGE_PAGE | \
420 421
	    CPU_FTR_CELL_TB_BUG | CPU_FTR_CP_USE_DCBTZ | \
	    CPU_FTR_UNALIGNED_LD_STD)
K
Kumar Gala 已提交
422
#define CPU_FTRS_PA6T (CPU_FTR_USE_TB | CPU_FTR_LWSYNC | \
423
	    CPU_FTR_PPCAS_ARCH_V2 | \
424
	    CPU_FTR_ALTIVEC_COMP | CPU_FTR_CI_LARGE_PAGE | \
425
	    CPU_FTR_PURR | CPU_FTR_REAL_LE | CPU_FTR_NO_SLBIE_B)
426
#define CPU_FTRS_COMPATIBLE	(CPU_FTR_USE_TB | CPU_FTR_PPCAS_ARCH_V2)
427

428
#ifdef __powerpc64__
429 430
#define CPU_FTRS_POSSIBLE	\
	    (CPU_FTRS_POWER3 | CPU_FTRS_RS64 | CPU_FTRS_POWER4 |	\
431
	    CPU_FTRS_PPC970 | CPU_FTRS_POWER5 | CPU_FTRS_POWER6 |	\
432
	    CPU_FTRS_POWER7 | CPU_FTRS_CELL | CPU_FTRS_PA6T |		\
M
Michael Neuling 已提交
433
	    CPU_FTR_1T_SEGMENT | CPU_FTR_VSX)
434
#else
435 436
enum {
	CPU_FTRS_POSSIBLE =
437 438 439 440 441 442 443 444
#if CLASSIC_PPC
	    CPU_FTRS_PPC601 | CPU_FTRS_603 | CPU_FTRS_604 | CPU_FTRS_740_NOTAU |
	    CPU_FTRS_740 | CPU_FTRS_750 | CPU_FTRS_750FX1 |
	    CPU_FTRS_750FX2 | CPU_FTRS_750FX | CPU_FTRS_750GX |
	    CPU_FTRS_7400_NOTAU | CPU_FTRS_7400 | CPU_FTRS_7450_20 |
	    CPU_FTRS_7450_21 | CPU_FTRS_7450_23 | CPU_FTRS_7455_1 |
	    CPU_FTRS_7455_20 | CPU_FTRS_7455 | CPU_FTRS_7447_10 |
	    CPU_FTRS_7447 | CPU_FTRS_7447A | CPU_FTRS_82XX |
445 446
	    CPU_FTRS_G2_LE | CPU_FTRS_E300 | CPU_FTRS_E300C2 |
	    CPU_FTRS_CLASSIC32 |
447 448 449 450 451 452 453 454 455 456
#else
	    CPU_FTRS_GENERIC_32 |
#endif
#ifdef CONFIG_8xx
	    CPU_FTRS_8XX |
#endif
#ifdef CONFIG_40x
	    CPU_FTRS_40X |
#endif
#ifdef CONFIG_44x
457
	    CPU_FTRS_44X | CPU_FTRS_440x6 |
458
#endif
D
Dave Kleikamp 已提交
459 460 461
#ifdef CONFIG_PPC_47x
	    CPU_FTRS_47X |
#endif
462 463 464 465
#ifdef CONFIG_E200
	    CPU_FTRS_E200 |
#endif
#ifdef CONFIG_E500
466
	    CPU_FTRS_E500 | CPU_FTRS_E500_2 | CPU_FTRS_E500MC |
467 468
#endif
	    0,
469 470
};
#endif /* __powerpc64__ */
471

472
#ifdef __powerpc64__
473 474
#define CPU_FTRS_ALWAYS		\
	    (CPU_FTRS_POWER3 & CPU_FTRS_RS64 & CPU_FTRS_POWER4 &	\
475
	    CPU_FTRS_PPC970 & CPU_FTRS_POWER5 & CPU_FTRS_POWER6 &	\
476
	    CPU_FTRS_POWER7 & CPU_FTRS_CELL & CPU_FTRS_PA6T & CPU_FTRS_POSSIBLE)
477
#else
478 479
enum {
	CPU_FTRS_ALWAYS =
480 481 482 483 484 485 486 487
#if CLASSIC_PPC
	    CPU_FTRS_PPC601 & CPU_FTRS_603 & CPU_FTRS_604 & CPU_FTRS_740_NOTAU &
	    CPU_FTRS_740 & CPU_FTRS_750 & CPU_FTRS_750FX1 &
	    CPU_FTRS_750FX2 & CPU_FTRS_750FX & CPU_FTRS_750GX &
	    CPU_FTRS_7400_NOTAU & CPU_FTRS_7400 & CPU_FTRS_7450_20 &
	    CPU_FTRS_7450_21 & CPU_FTRS_7450_23 & CPU_FTRS_7455_1 &
	    CPU_FTRS_7455_20 & CPU_FTRS_7455 & CPU_FTRS_7447_10 &
	    CPU_FTRS_7447 & CPU_FTRS_7447A & CPU_FTRS_82XX &
488 489
	    CPU_FTRS_G2_LE & CPU_FTRS_E300 & CPU_FTRS_E300C2 &
	    CPU_FTRS_CLASSIC32 &
490 491 492 493 494 495 496 497 498 499
#else
	    CPU_FTRS_GENERIC_32 &
#endif
#ifdef CONFIG_8xx
	    CPU_FTRS_8XX &
#endif
#ifdef CONFIG_40x
	    CPU_FTRS_40X &
#endif
#ifdef CONFIG_44x
500
	    CPU_FTRS_44X & CPU_FTRS_440x6 &
501 502 503 504 505
#endif
#ifdef CONFIG_E200
	    CPU_FTRS_E200 &
#endif
#ifdef CONFIG_E500
506
	    CPU_FTRS_E500 & CPU_FTRS_E500_2 & CPU_FTRS_E500MC &
507 508 509
#endif
	    CPU_FTRS_POSSIBLE,
};
510
#endif /* __powerpc64__ */
511 512 513 514 515 516 517 518 519 520 521 522 523

static inline int cpu_has_feature(unsigned long feature)
{
	return (CPU_FTRS_ALWAYS & feature) ||
	       (CPU_FTRS_POSSIBLE
		& cur_cpu_spec->cpu_features
		& feature);
}

#endif /* !__ASSEMBLY__ */

#endif /* __KERNEL__ */
#endif /* __ASM_POWERPC_CPUTABLE_H */