blob: a1ebcbc3931f2afe7dd6667e353d809303b1bfb0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Kumar Gala10b35d92005-09-23 14:08:58 -05002#ifndef __ASM_POWERPC_CPUTABLE_H
3#define __ASM_POWERPC_CPUTABLE_H
4
Adrian Bunkd1cdcf22008-06-24 03:48:21 +10005
Michael Ellerman6574ba92016-07-27 13:35:15 +10006#include <linux/types.h>
David Howellsc3617f72012-10-09 09:47:26 +01007#include <uapi/asm/cputable.h>
Christophe Leroyec0c4642018-07-05 16:24:57 +00008#include <asm/asm-const.h>
Adrian Bunkd1cdcf22008-06-24 03:48:21 +10009
Kumar Gala10b35d92005-09-23 14:08:58 -050010#ifndef __ASSEMBLY__
11
12/* This structure can grow, it's real size is used by head.S code
13 * via the mkdefs mechanism.
14 */
15struct cpu_spec;
Kumar Gala10b35d92005-09-23 14:08:58 -050016
Kumar Gala10b35d92005-09-23 14:08:58 -050017typedef void (*cpu_setup_t)(unsigned long offset, struct cpu_spec* spec);
Olof Johanssonf39b7a52006-08-11 00:07:08 -050018typedef void (*cpu_restore_t)(void);
Kumar Gala10b35d92005-09-23 14:08:58 -050019
Anton Blanchard32a33992006-01-09 15:41:31 +110020enum powerpc_oprofile_type {
Andy Whitcroft7a45fb12006-01-13 12:35:49 +000021 PPC_OPROFILE_INVALID = 0,
22 PPC_OPROFILE_RS64 = 1,
23 PPC_OPROFILE_POWER4 = 2,
24 PPC_OPROFILE_G4 = 3,
Andy Fleming39aef682008-02-04 18:27:55 -060025 PPC_OPROFILE_FSL_EMB = 4,
Maynard Johnson18f21902006-11-20 18:45:16 +010026 PPC_OPROFILE_CELL = 5,
Olof Johansson25fc5302007-04-18 16:38:21 +100027 PPC_OPROFILE_PA6T = 6,
Anton Blanchard32a33992006-01-09 15:41:31 +110028};
29
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060030enum powerpc_pmc_type {
31 PPC_PMC_DEFAULT = 0,
32 PPC_PMC_IBM = 1,
33 PPC_PMC_PA6T = 2,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +100034 PPC_PMC_G4 = 3,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060035};
36
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +110037struct pt_regs;
38
39extern int machine_check_generic(struct pt_regs *regs);
40extern int machine_check_4xx(struct pt_regs *regs);
41extern int machine_check_440A(struct pt_regs *regs);
Scott Woodfe04b112010-04-08 00:38:22 -050042extern int machine_check_e500mc(struct pt_regs *regs);
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +110043extern int machine_check_e500(struct pt_regs *regs);
44extern int machine_check_e200(struct pt_regs *regs);
Dave Kleikampfc5e7092010-03-05 03:43:18 +000045extern int machine_check_47x(struct pt_regs *regs);
Christophe Leroye627f8d2016-09-16 10:23:11 +020046int machine_check_8xx(struct pt_regs *regs);
Christophe Leroy0deae392018-12-10 11:41:29 +000047int machine_check_83xx(struct pt_regs *regs);
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +110048
chenhui zhaoe7affb12015-11-20 17:13:58 +080049extern void cpu_down_flush_e500v2(void);
50extern void cpu_down_flush_e500mc(void);
51extern void cpu_down_flush_e5500(void);
52extern void cpu_down_flush_e6500(void);
53
Paul Mackerras87a72f92007-10-04 14:18:01 +100054/* NOTE WELL: Update identify_cpu() if fields are added or removed! */
Kumar Gala10b35d92005-09-23 14:08:58 -050055struct cpu_spec {
56 /* CPU is matched via (PVR & pvr_mask) == pvr_value */
57 unsigned int pvr_mask;
58 unsigned int pvr_value;
59
60 char *cpu_name;
61 unsigned long cpu_features; /* Kernel features */
62 unsigned int cpu_user_features; /* Userland features */
Michael Neuling21713642013-04-17 17:33:11 +000063 unsigned int cpu_user_features2; /* Userland features v2 */
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +000064 unsigned int mmu_features; /* MMU features */
Kumar Gala10b35d92005-09-23 14:08:58 -050065
66 /* cache line sizes */
67 unsigned int icache_bsize;
68 unsigned int dcache_bsize;
69
chenhui zhaoe7affb12015-11-20 17:13:58 +080070 /* flush caches inside the current cpu */
71 void (*cpu_down_flush)(void);
72
Kumar Gala10b35d92005-09-23 14:08:58 -050073 /* number of performance monitor counters */
74 unsigned int num_pmcs;
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060075 enum powerpc_pmc_type pmc_type;
Kumar Gala10b35d92005-09-23 14:08:58 -050076
77 /* this is called to initialize various CPU bits like L1 cache,
78 * BHT, SPD, etc... from head.S before branching to identify_machine
79 */
80 cpu_setup_t cpu_setup;
Olof Johanssonf39b7a52006-08-11 00:07:08 -050081 /* Used to restore cpu setup on secondary processors and at resume */
82 cpu_restore_t cpu_restore;
Kumar Gala10b35d92005-09-23 14:08:58 -050083
84 /* Used by oprofile userspace to select the right counters */
85 char *oprofile_cpu_type;
86
87 /* Processor specific oprofile operations */
Anton Blanchard32a33992006-01-09 15:41:31 +110088 enum powerpc_oprofile_type oprofile_type;
Paul Mackerras80f15dc2006-01-14 10:11:39 +110089
Michael Neulinge78dbc82006-06-08 14:42:34 +100090 /* Bit locations inside the mmcra change */
91 unsigned long oprofile_mmcra_sihv;
92 unsigned long oprofile_mmcra_sipr;
93
94 /* Bits to clear during an oprofile exception */
95 unsigned long oprofile_mmcra_clear;
96
Paul Mackerras80f15dc2006-01-14 10:11:39 +110097 /* Name of processor class, for the ELF AT_PLATFORM entry */
98 char *platform;
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +110099
100 /* Processor specific machine check handling. Return negative
101 * if the error is fatal, 1 if it was fully recovered and 0 to
102 * pass up (not CPU originated) */
103 int (*machine_check)(struct pt_regs *regs);
Mahesh Salgaonkar4c703412013-10-30 20:04:40 +0530104
105 /*
106 * Processor specific early machine check handler which is
107 * called in real mode to handle SLB and TLB errors.
108 */
109 long (*machine_check_early)(struct pt_regs *regs);
Kumar Gala10b35d92005-09-23 14:08:58 -0500110};
111
Kumar Gala10b35d92005-09-23 14:08:58 -0500112extern struct cpu_spec *cur_cpu_spec;
Kumar Gala10b35d92005-09-23 14:08:58 -0500113
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +1000114extern unsigned int __start___ftr_fixup, __stop___ftr_fixup;
115
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000116extern void set_cur_cpu_spec(struct cpu_spec *s);
Paul Mackerras974a76f2006-11-10 20:38:53 +1100117extern struct cpu_spec *identify_cpu(unsigned long offset, unsigned int pvr);
Nicholas Piggin5a61ef72017-05-09 13:16:52 +1000118extern void identify_cpu_name(unsigned int pvr);
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +1000119extern void do_feature_fixups(unsigned long value, void *fixup_start,
120 void *fixup_end);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000121
Nathan Lynch9115d132008-07-16 09:58:51 +1000122extern const char *powerpc_base_platform;
123
Kevin Hao4db73272016-07-23 14:42:41 +0530124#ifdef CONFIG_JUMP_LABEL_FEATURE_CHECKS
125extern void cpu_feature_keys_init(void);
126#else
127static inline void cpu_feature_keys_init(void) { }
128#endif
129
Kumar Gala10b35d92005-09-23 14:08:58 -0500130#endif /* __ASSEMBLY__ */
131
132/* CPU kernel features */
133
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100134/* Definitions for features that we have on both 32-bit and 64-bit chips */
Michael Neulingcde4d492012-12-20 14:06:39 +0000135#define CPU_FTR_COHERENT_ICACHE ASM_CONST(0x00000001)
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100136#define CPU_FTR_ALTIVEC ASM_CONST(0x00000002)
137#define CPU_FTR_DBELL ASM_CONST(0x00000004)
138#define CPU_FTR_CAN_NAP ASM_CONST(0x00000008)
139#define CPU_FTR_DEBUG_LVL_EXC ASM_CONST(0x00000010)
140#define CPU_FTR_NODSISRALIGN ASM_CONST(0x00000020)
141#define CPU_FTR_FPU_UNAVAILABLE ASM_CONST(0x00000040)
142#define CPU_FTR_LWSYNC ASM_CONST(0x00000080)
143#define CPU_FTR_NOEXECUTE ASM_CONST(0x00000100)
144#define CPU_FTR_EMB_HV ASM_CONST(0x00000200)
145
146/* Definitions for features that only exist on 32-bit chips */
147#ifdef CONFIG_PPC32
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100148#define CPU_FTR_L2CR ASM_CONST(0x00002000)
149#define CPU_FTR_SPEC7450 ASM_CONST(0x00004000)
150#define CPU_FTR_TAU ASM_CONST(0x00008000)
151#define CPU_FTR_CAN_DOZE ASM_CONST(0x00010000)
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100152#define CPU_FTR_L3CR ASM_CONST(0x00040000)
153#define CPU_FTR_L3_DISABLE_NAP ASM_CONST(0x00080000)
154#define CPU_FTR_NAP_DISABLE_L2_PR ASM_CONST(0x00100000)
155#define CPU_FTR_DUAL_PLL_750FX ASM_CONST(0x00200000)
156#define CPU_FTR_NO_DPM ASM_CONST(0x00400000)
157#define CPU_FTR_476_DD2 ASM_CONST(0x00800000)
158#define CPU_FTR_NEED_COHERENT ASM_CONST(0x01000000)
159#define CPU_FTR_NO_BTIC ASM_CONST(0x02000000)
160#define CPU_FTR_PPC_LE ASM_CONST(0x04000000)
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100161#define CPU_FTR_SPE ASM_CONST(0x10000000)
162#define CPU_FTR_NEED_PAIRED_STWCX ASM_CONST(0x20000000)
163#define CPU_FTR_INDEXED_DCR ASM_CONST(0x40000000)
164
165#else /* CONFIG_PPC32 */
166/* Define these to 0 for the sake of tests in common code */
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100167#define CPU_FTR_PPC_LE (0)
168#endif
Kumar Gala10b35d92005-09-23 14:08:58 -0500169
Paul Mackerras3965f8c2006-06-28 13:50:39 +1000170/*
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100171 * Definitions for the 64-bit processor unique features;
Paul Mackerras3965f8c2006-06-28 13:50:39 +1000172 * on 32-bit, make the names available but defined to be 0.
173 */
Kumar Gala10b35d92005-09-23 14:08:58 -0500174#ifdef __powerpc64__
Paul Mackerras3965f8c2006-06-28 13:50:39 +1000175#define LONG_ASM_CONST(x) ASM_CONST(x)
Kumar Gala10b35d92005-09-23 14:08:58 -0500176#else
Paul Mackerras3965f8c2006-06-28 13:50:39 +1000177#define LONG_ASM_CONST(x) 0
Kumar Gala10b35d92005-09-23 14:08:58 -0500178#endif
179
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100180#define CPU_FTR_REAL_LE LONG_ASM_CONST(0x0000000000001000)
181#define CPU_FTR_HVMODE LONG_ASM_CONST(0x0000000000002000)
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100182#define CPU_FTR_ARCH_206 LONG_ASM_CONST(0x0000000000008000)
183#define CPU_FTR_ARCH_207S LONG_ASM_CONST(0x0000000000010000)
184#define CPU_FTR_ARCH_300 LONG_ASM_CONST(0x0000000000020000)
185#define CPU_FTR_MMCRA LONG_ASM_CONST(0x0000000000040000)
186#define CPU_FTR_CTRL LONG_ASM_CONST(0x0000000000080000)
187#define CPU_FTR_SMT LONG_ASM_CONST(0x0000000000100000)
188#define CPU_FTR_PAUSE_ZERO LONG_ASM_CONST(0x0000000000200000)
189#define CPU_FTR_PURR LONG_ASM_CONST(0x0000000000400000)
190#define CPU_FTR_CELL_TB_BUG LONG_ASM_CONST(0x0000000000800000)
191#define CPU_FTR_SPURR LONG_ASM_CONST(0x0000000001000000)
192#define CPU_FTR_DSCR LONG_ASM_CONST(0x0000000002000000)
193#define CPU_FTR_VSX LONG_ASM_CONST(0x0000000004000000)
194#define CPU_FTR_SAO LONG_ASM_CONST(0x0000000008000000)
195#define CPU_FTR_CP_USE_DCBTZ LONG_ASM_CONST(0x0000000010000000)
196#define CPU_FTR_UNALIGNED_LD_STD LONG_ASM_CONST(0x0000000020000000)
197#define CPU_FTR_ASYM_SMT LONG_ASM_CONST(0x0000000040000000)
198#define CPU_FTR_STCX_CHECKS_ADDRESS LONG_ASM_CONST(0x0000000080000000)
199#define CPU_FTR_POPCNTB LONG_ASM_CONST(0x0000000100000000)
200#define CPU_FTR_POPCNTD LONG_ASM_CONST(0x0000000200000000)
201#define CPU_FTR_PKEY LONG_ASM_CONST(0x0000000400000000)
202#define CPU_FTR_VMX_COPY LONG_ASM_CONST(0x0000000800000000)
203#define CPU_FTR_TM LONG_ASM_CONST(0x0000001000000000)
204#define CPU_FTR_CFAR LONG_ASM_CONST(0x0000002000000000)
205#define CPU_FTR_HAS_PPR LONG_ASM_CONST(0x0000004000000000)
206#define CPU_FTR_DAWR LONG_ASM_CONST(0x0000008000000000)
207#define CPU_FTR_DABRX LONG_ASM_CONST(0x0000010000000000)
208#define CPU_FTR_PMAO_BUG LONG_ASM_CONST(0x0000020000000000)
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100209#define CPU_FTR_POWER9_DD2_1 LONG_ASM_CONST(0x0000080000000000)
Paul Mackerrasb5af4f22018-03-21 21:31:59 +1100210#define CPU_FTR_P9_TM_HV_ASSIST LONG_ASM_CONST(0x0000100000000000)
211#define CPU_FTR_P9_TM_XER_SO_BUG LONG_ASM_CONST(0x0000200000000000)
Michael Ellerman95dff482018-03-28 22:59:50 +1100212#define CPU_FTR_P9_TLBIE_BUG LONG_ASM_CONST(0x0000400000000000)
Alastair D'Silva81984422018-05-11 16:12:57 +1000213#define CPU_FTR_P9_TIDR LONG_ASM_CONST(0x0000800000000000)
Paul Mackerras3965f8c2006-06-28 13:50:39 +1000214
Kumar Gala10b35d92005-09-23 14:08:58 -0500215#ifndef __ASSEMBLY__
216
Matt Evans44ae3ab2011-04-06 19:48:50 +0000217#define CPU_FTR_PPCAS_ARCH_V2 (CPU_FTR_NOEXECUTE | CPU_FTR_NODSISRALIGN)
218
Michael Ellerman13b3d132014-07-10 12:29:20 +1000219#define MMU_FTR_PPCAS_ARCH_V2 (MMU_FTR_TLBIEL | MMU_FTR_16M_PAGE)
Kumar Gala10b35d92005-09-23 14:08:58 -0500220
221/* We only set the altivec features if the kernel was compiled with altivec
222 * support
223 */
224#ifdef CONFIG_ALTIVEC
225#define CPU_FTR_ALTIVEC_COMP CPU_FTR_ALTIVEC
226#define PPC_FEATURE_HAS_ALTIVEC_COMP PPC_FEATURE_HAS_ALTIVEC
227#else
228#define CPU_FTR_ALTIVEC_COMP 0
229#define PPC_FEATURE_HAS_ALTIVEC_COMP 0
230#endif
231
Michael Neulingb962ce92008-06-25 14:07:18 +1000232/* We only set the VSX features if the kernel was compiled with VSX
233 * support
234 */
235#ifdef CONFIG_VSX
236#define CPU_FTR_VSX_COMP CPU_FTR_VSX
237#define PPC_FEATURE_HAS_VSX_COMP PPC_FEATURE_HAS_VSX
238#else
239#define CPU_FTR_VSX_COMP 0
240#define PPC_FEATURE_HAS_VSX_COMP 0
241#endif
242
Kumar Gala5e14d212007-09-13 01:44:20 -0500243/* We only set the spe features if the kernel was compiled with spe
244 * support
245 */
246#ifdef CONFIG_SPE
247#define CPU_FTR_SPE_COMP CPU_FTR_SPE
248#define PPC_FEATURE_HAS_SPE_COMP PPC_FEATURE_HAS_SPE
249#define PPC_FEATURE_HAS_EFP_SINGLE_COMP PPC_FEATURE_HAS_EFP_SINGLE
250#define PPC_FEATURE_HAS_EFP_DOUBLE_COMP PPC_FEATURE_HAS_EFP_DOUBLE
251#else
252#define CPU_FTR_SPE_COMP 0
253#define PPC_FEATURE_HAS_SPE_COMP 0
254#define PPC_FEATURE_HAS_EFP_SINGLE_COMP 0
255#define PPC_FEATURE_HAS_EFP_DOUBLE_COMP 0
256#endif
257
Michael Neuling6a6d5412013-02-13 16:21:29 +0000258/* We only set the TM feature if the kernel was compiled with TM supprt */
259#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Sam bobroffb4b56f92015-06-12 11:06:32 +1000260#define CPU_FTR_TM_COMP CPU_FTR_TM
261#define PPC_FEATURE2_HTM_COMP PPC_FEATURE2_HTM
262#define PPC_FEATURE2_HTM_NOSC_COMP PPC_FEATURE2_HTM_NOSC
Michael Neuling6a6d5412013-02-13 16:21:29 +0000263#else
Sam bobroffb4b56f92015-06-12 11:06:32 +1000264#define CPU_FTR_TM_COMP 0
265#define PPC_FEATURE2_HTM_COMP 0
266#define PPC_FEATURE2_HTM_NOSC_COMP 0
Michael Neuling6a6d5412013-02-13 16:21:29 +0000267#endif
268
Scott Wood11af1192007-09-14 15:32:14 -0500269/* We need to mark all pages as being coherent if we're SMP or we have a
270 * 74[45]x and an MPC107 host bridge. Also 83xx and PowerQUICC II
271 * require it for PCI "streaming/prefetch" to work properly.
Piotr Ziecikc9310922009-03-17 09:17:50 -0600272 * This is also required by 52xx family.
Kumar Gala10b35d92005-09-23 14:08:58 -0500273 */
Kumar Gala1775dbb2006-02-22 09:46:02 -0600274#if defined(CONFIG_SMP) || defined(CONFIG_MPC10X_BRIDGE) \
Piotr Ziecikc9310922009-03-17 09:17:50 -0600275 || defined(CONFIG_PPC_83xx) || defined(CONFIG_8260) \
276 || defined(CONFIG_PPC_MPC52xx)
Kumar Gala10b35d92005-09-23 14:08:58 -0500277#define CPU_FTR_COMMON CPU_FTR_NEED_COHERENT
278#else
279#define CPU_FTR_COMMON 0
280#endif
281
282/* The powersave features NAP & DOZE seems to confuse BDI when
283 debugging. So if a BDI is used, disable theses
284 */
285#ifndef CONFIG_BDI_SWITCH
286#define CPU_FTR_MAYBE_CAN_DOZE CPU_FTR_CAN_DOZE
287#define CPU_FTR_MAYBE_CAN_NAP CPU_FTR_CAN_NAP
288#else
289#define CPU_FTR_MAYBE_CAN_DOZE 0
290#define CPU_FTR_MAYBE_CAN_NAP 0
291#endif
292
Christophe Leroy12c3f1f2019-08-26 15:52:14 +0000293#define CPU_FTRS_PPC601 (CPU_FTR_COMMON | \
Christophe Leroye0291f12019-08-26 15:52:18 +0000294 CPU_FTR_COHERENT_ICACHE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100295#define CPU_FTRS_603 (CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | \
Christophe Leroy385e89d2018-11-28 17:21:10 +0000296 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE | CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100297#define CPU_FTRS_604 (CPU_FTR_COMMON | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000298#define CPU_FTRS_740_NOTAU (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100299 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000300 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000301#define CPU_FTRS_740 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100302 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000303 CPU_FTR_TAU | CPU_FTR_MAYBE_CAN_NAP | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000304 CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000305#define CPU_FTRS_750 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100306 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000307 CPU_FTR_TAU | CPU_FTR_MAYBE_CAN_NAP | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000308 CPU_FTR_PPC_LE)
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000309#define CPU_FTRS_750CL (CPU_FTRS_750)
Josh Boyerb6f41cc2007-07-03 02:06:53 +1000310#define CPU_FTRS_750FX1 (CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX | CPU_FTR_NO_DPM)
311#define CPU_FTRS_750FX2 (CPU_FTRS_750 | CPU_FTR_NO_DPM)
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000312#define CPU_FTRS_750FX (CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX)
Josh Boyerb6f41cc2007-07-03 02:06:53 +1000313#define CPU_FTRS_750GX (CPU_FTRS_750FX)
David Gibson4508dc22007-06-13 14:52:57 +1000314#define CPU_FTRS_7400_NOTAU (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100315 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000316 CPU_FTR_ALTIVEC_COMP | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000317 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000318#define CPU_FTRS_7400 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100319 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000320 CPU_FTR_TAU | CPU_FTR_ALTIVEC_COMP | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000321 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000322#define CPU_FTRS_7450_20 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100323 CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000324 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100325 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000326#define CPU_FTRS_7450_21 (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100327 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000328 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100329 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100330 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000331#define CPU_FTRS_7450_23 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100332 CPU_FTR_NEED_PAIRED_STWCX | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100333 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000334 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000335 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000336#define CPU_FTRS_7455_1 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100337 CPU_FTR_NEED_PAIRED_STWCX | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100338 CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | CPU_FTR_L3CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000339 CPU_FTR_SPEC7450 | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000340#define CPU_FTRS_7455_20 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100341 CPU_FTR_NEED_PAIRED_STWCX | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100342 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000343 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100344 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000345 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000346#define CPU_FTRS_7455 (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100347 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000348 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100349 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000350#define CPU_FTRS_7447_10 (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100351 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000352 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100353 CPU_FTR_NEED_COHERENT | CPU_FTR_NO_BTIC | CPU_FTR_PPC_LE | \
354 CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000355#define CPU_FTRS_7447 (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100356 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000357 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100358 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000359#define CPU_FTRS_7447A (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100360 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000361 CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100362 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000363#define CPU_FTRS_7448 (CPU_FTR_COMMON | \
James.Yang3d372542007-05-02 16:34:43 -0500364 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000365 CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100366 CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
Christophe Leroy385e89d2018-11-28 17:21:10 +0000367#define CPU_FTRS_82XX (CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_NOEXECUTE)
Scott Wood11af1192007-09-14 15:32:14 -0500368#define CPU_FTRS_G2_LE (CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100369 CPU_FTR_MAYBE_CAN_NAP)
David Gibson4508dc22007-06-13 14:52:57 +1000370#define CPU_FTRS_E300 (CPU_FTR_MAYBE_CAN_DOZE | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100371 CPU_FTR_MAYBE_CAN_NAP | \
Christophe Leroy385e89d2018-11-28 17:21:10 +0000372 CPU_FTR_COMMON | CPU_FTR_NOEXECUTE)
David Gibson4508dc22007-06-13 14:52:57 +1000373#define CPU_FTRS_E300C2 (CPU_FTR_MAYBE_CAN_DOZE | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100374 CPU_FTR_MAYBE_CAN_NAP | \
Christophe Leroy385e89d2018-11-28 17:21:10 +0000375 CPU_FTR_COMMON | CPU_FTR_FPU_UNAVAILABLE | CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100376#define CPU_FTRS_CLASSIC32 (CPU_FTR_COMMON)
377#define CPU_FTRS_8XX (CPU_FTR_NOEXECUTE)
378#define CPU_FTRS_40X (CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
379#define CPU_FTRS_44X (CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
380#define CPU_FTRS_440x6 (CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE | \
Benjamin Herrenschmidt6d2170b2008-12-18 19:13:22 +0000381 CPU_FTR_INDEXED_DCR)
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000382#define CPU_FTRS_47X (CPU_FTRS_440x6)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100383#define CPU_FTRS_E200 (CPU_FTR_SPE_COMP | \
Kumar Gala5e14d212007-09-13 01:44:20 -0500384 CPU_FTR_NODSISRALIGN | CPU_FTR_COHERENT_ICACHE | \
Christophe Leroye0291f12019-08-26 15:52:18 +0000385 CPU_FTR_NOEXECUTE | \
Scott Wood52b066f2011-12-20 15:34:12 +0000386 CPU_FTR_DEBUG_LVL_EXC)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100387#define CPU_FTRS_E500 (CPU_FTR_MAYBE_CAN_DOZE | \
Benjamin Herrenschmidt8309ce722008-12-12 17:33:25 +1100388 CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_NODSISRALIGN | \
389 CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100390#define CPU_FTRS_E500_2 (CPU_FTR_MAYBE_CAN_DOZE | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000391 CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | \
Benjamin Herrenschmidt8309ce722008-12-12 17:33:25 +1100392 CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100393#define CPU_FTRS_E500MC (CPU_FTR_NODSISRALIGN | \
Paul Mackerrasdd0efb32018-03-20 08:46:12 +1100394 CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
Scott Wood73196cd32011-12-20 15:34:47 +0000395 CPU_FTR_DBELL | CPU_FTR_DEBUG_LVL_EXC | CPU_FTR_EMB_HV)
Scott Woodd52459c2013-07-23 20:21:11 -0500396/*
397 * e5500/e6500 erratum A-006958 is a timebase bug that can use the
398 * same workaround as CPU_FTR_CELL_TB_BUG.
399 */
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100400#define CPU_FTRS_E5500 (CPU_FTR_NODSISRALIGN | \
Paul Mackerrasdd0efb32018-03-20 08:46:12 +1100401 CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
Kumar Galad36b4c42011-04-06 00:18:48 -0500402 CPU_FTR_DBELL | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Scott Woodd52459c2013-07-23 20:21:11 -0500403 CPU_FTR_DEBUG_LVL_EXC | CPU_FTR_EMB_HV | CPU_FTR_CELL_TB_BUG)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100404#define CPU_FTRS_E6500 (CPU_FTR_NODSISRALIGN | \
Paul Mackerrasdd0efb32018-03-20 08:46:12 +1100405 CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
Kumar Gala10241842011-11-06 11:51:07 -0600406 CPU_FTR_DBELL | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Scott Woodd52459c2013-07-23 20:21:11 -0500407 CPU_FTR_DEBUG_LVL_EXC | CPU_FTR_EMB_HV | CPU_FTR_ALTIVEC_COMP | \
Andy Fleminge16c8762011-12-08 01:20:27 -0600408 CPU_FTR_CELL_TB_BUG | CPU_FTR_SMT)
Stephen Rothwell7c929432006-03-23 17:36:59 +1100409#define CPU_FTRS_GENERIC_32 (CPU_FTR_COMMON | CPU_FTR_NODSISRALIGN)
Michael Ellerman0b8e2e12006-11-23 00:46:46 +0100410
411/* 64-bit CPUs */
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100412#define CPU_FTRS_PPC970 (CPU_FTR_LWSYNC | \
Nicholas Piggin3735eb82018-02-21 05:08:28 +1000413 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Mark Nelson2a929432008-08-22 14:36:19 +1000414 CPU_FTR_ALTIVEC_COMP | CPU_FTR_CAN_NAP | CPU_FTR_MMCRA | \
Paul Mackerras969391c2011-06-29 00:26:11 +0000415 CPU_FTR_CP_USE_DCBTZ | CPU_FTR_STCX_CHECKS_ADDRESS | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000416 CPU_FTR_HVMODE | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100417#define CPU_FTRS_POWER5 (CPU_FTR_LWSYNC | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000418 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100419 CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000420 CPU_FTR_COHERENT_ICACHE | CPU_FTR_PURR | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000421 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100422#define CPU_FTRS_POWER6 (CPU_FTR_LWSYNC | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000423 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Anton Blanchard03054d52006-04-29 09:51:06 +1000424 CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000425 CPU_FTR_COHERENT_ICACHE | \
Anton Blanchard4c1985572006-12-08 17:46:58 +1100426 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
Anton Blanchardf89451f2010-08-11 01:40:27 +0000427 CPU_FTR_DSCR | CPU_FTR_UNALIGNED_LD_STD | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000428 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_CFAR | \
429 CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100430#define CPU_FTRS_POWER7 (CPU_FTR_LWSYNC | \
Paul Mackerras969391c2011-06-29 00:26:11 +0000431 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
Michael Neulinge952e6c2008-06-18 10:47:26 +1000432 CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000433 CPU_FTR_COHERENT_ICACHE | \
Michael Neulinge952e6c2008-06-18 10:47:26 +1000434 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
Anton Blanchardf89451f2010-08-11 01:40:27 +0000435 CPU_FTR_DSCR | CPU_FTR_SAO | CPU_FTR_ASYM_SMT | \
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000436 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Michael Ellermanc1807e32017-10-19 15:08:19 +1100437 CPU_FTR_CFAR | CPU_FTR_HVMODE | \
Ram Paicf43d3b2018-01-18 17:50:44 -0800438 CPU_FTR_VMX_COPY | CPU_FTR_HAS_PPR | CPU_FTR_DABRX | CPU_FTR_PKEY)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100439#define CPU_FTRS_POWER8 (CPU_FTR_LWSYNC | \
Michael Neuling71e18492012-10-30 19:34:15 +0000440 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
441 CPU_FTR_MMCRA | CPU_FTR_SMT | \
442 CPU_FTR_COHERENT_ICACHE | \
443 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
444 CPU_FTR_DSCR | CPU_FTR_SAO | \
445 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Michael Ellermanc1807e32017-10-19 15:08:19 +1100446 CPU_FTR_CFAR | CPU_FTR_HVMODE | CPU_FTR_VMX_COPY | \
Michael Ellerman1de2bd42013-04-30 20:17:02 +0000447 CPU_FTR_DBELL | CPU_FTR_HAS_PPR | CPU_FTR_DAWR | \
Ram Paicf43d3b2018-01-18 17:50:44 -0800448 CPU_FTR_ARCH_207S | CPU_FTR_TM_COMP | CPU_FTR_PKEY)
Michael Ellerman68f2f0d2014-03-14 16:00:28 +1100449#define CPU_FTRS_POWER8E (CPU_FTRS_POWER8 | CPU_FTR_PMAO_BUG)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100450#define CPU_FTRS_POWER9 (CPU_FTR_LWSYNC | \
Michael Neulingc3ab3002016-02-19 11:16:24 +1100451 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
452 CPU_FTR_MMCRA | CPU_FTR_SMT | \
453 CPU_FTR_COHERENT_ICACHE | \
454 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
455 CPU_FTR_DSCR | CPU_FTR_SAO | \
456 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Nicholas Piggin2384d2d2017-04-19 12:27:37 +1000457 CPU_FTR_CFAR | CPU_FTR_HVMODE | CPU_FTR_VMX_COPY | \
Michael Neuling96541532018-03-27 15:37:24 +1100458 CPU_FTR_DBELL | CPU_FTR_HAS_PPR | CPU_FTR_ARCH_207S | \
Michael Ellerman95dff482018-03-28 22:59:50 +1100459 CPU_FTR_TM_COMP | CPU_FTR_ARCH_300 | CPU_FTR_PKEY | \
Alastair D'Silva81984422018-05-11 16:12:57 +1000460 CPU_FTR_P9_TLBIE_BUG | CPU_FTR_P9_TIDR)
Michael Ellerman3ffa9d92017-11-15 14:25:42 +1100461#define CPU_FTRS_POWER9_DD2_0 CPU_FTRS_POWER9
462#define CPU_FTRS_POWER9_DD2_1 (CPU_FTRS_POWER9 | CPU_FTR_POWER9_DD2_1)
Nicholas Piggin3a52f602018-04-05 15:57:55 +1000463#define CPU_FTRS_POWER9_DD2_2 (CPU_FTRS_POWER9 | CPU_FTR_POWER9_DD2_1 | \
464 CPU_FTR_P9_TM_HV_ASSIST | \
Paul Mackerrasb5af4f22018-03-21 21:31:59 +1100465 CPU_FTR_P9_TM_XER_SO_BUG)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100466#define CPU_FTRS_CELL (CPU_FTR_LWSYNC | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000467 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100468 CPU_FTR_ALTIVEC_COMP | CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000469 CPU_FTR_PAUSE_ZERO | CPU_FTR_CELL_TB_BUG | CPU_FTR_CP_USE_DCBTZ | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000470 CPU_FTR_UNALIGNED_LD_STD | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100471#define CPU_FTRS_PA6T (CPU_FTR_LWSYNC | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000472 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_ALTIVEC_COMP | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000473 CPU_FTR_PURR | CPU_FTR_REAL_LE | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100474#define CPU_FTRS_COMPATIBLE (CPU_FTR_PPCAS_ARCH_V2)
Kumar Gala10b35d92005-09-23 14:08:58 -0500475
Anton Blanchard2406f602005-12-13 07:45:33 +1100476#ifdef __powerpc64__
Kumar Gala11ed0db2011-04-06 00:11:06 -0500477#ifdef CONFIG_PPC_BOOK3E
Michael Ellerman90029642014-08-06 18:26:28 +1000478#define CPU_FTRS_POSSIBLE (CPU_FTRS_E6500 | CPU_FTRS_E5500)
Kumar Gala11ed0db2011-04-06 00:11:06 -0500479#else
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000480#ifdef CONFIG_CPU_LITTLE_ENDIAN
481#define CPU_FTRS_POSSIBLE \
482 (CPU_FTRS_POWER7 | CPU_FTRS_POWER8E | CPU_FTRS_POWER8 | \
Joel Stanleye11b64b2018-07-11 16:02:58 +1000483 CPU_FTR_ALTIVEC_COMP | CPU_FTR_VSX_COMP | CPU_FTRS_POWER9 | \
Michael Ellermance57c662018-07-19 14:37:57 +1000484 CPU_FTRS_POWER9_DD2_1 | CPU_FTRS_POWER9_DD2_2)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000485#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100486#define CPU_FTRS_POSSIBLE \
Nicholas Piggin471d7ff2018-02-21 05:08:29 +1000487 (CPU_FTRS_PPC970 | CPU_FTRS_POWER5 | \
Michael Ellerman468a3302014-07-10 12:29:18 +1000488 CPU_FTRS_POWER6 | CPU_FTRS_POWER7 | CPU_FTRS_POWER8E | \
Joel Stanleye11b64b2018-07-11 16:02:58 +1000489 CPU_FTRS_POWER8 | CPU_FTRS_CELL | CPU_FTRS_PA6T | \
490 CPU_FTR_VSX_COMP | CPU_FTR_ALTIVEC_COMP | CPU_FTRS_POWER9 | \
Michael Ellermance57c662018-07-19 14:37:57 +1000491 CPU_FTRS_POWER9_DD2_1 | CPU_FTRS_POWER9_DD2_2)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000492#endif /* CONFIG_CPU_LITTLE_ENDIAN */
Kumar Gala11ed0db2011-04-06 00:11:06 -0500493#endif
Anton Blanchard2406f602005-12-13 07:45:33 +1100494#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100495enum {
496 CPU_FTRS_POSSIBLE =
Christophe Leroy12c3f1f2019-08-26 15:52:14 +0000497#ifdef CONFIG_PPC_BOOK3S_601
498 CPU_FTRS_PPC601 |
499#elif defined(CONFIG_PPC_BOOK3S_32)
Kumar Gala10b35d92005-09-23 14:08:58 -0500500 CPU_FTRS_PPC601 | CPU_FTRS_603 | CPU_FTRS_604 | CPU_FTRS_740_NOTAU |
501 CPU_FTRS_740 | CPU_FTRS_750 | CPU_FTRS_750FX1 |
502 CPU_FTRS_750FX2 | CPU_FTRS_750FX | CPU_FTRS_750GX |
503 CPU_FTRS_7400_NOTAU | CPU_FTRS_7400 | CPU_FTRS_7450_20 |
504 CPU_FTRS_7450_21 | CPU_FTRS_7450_23 | CPU_FTRS_7455_1 |
505 CPU_FTRS_7455_20 | CPU_FTRS_7455 | CPU_FTRS_7447_10 |
506 CPU_FTRS_7447 | CPU_FTRS_7447A | CPU_FTRS_82XX |
Kim Phillipsaa42c692006-12-08 02:43:30 -0600507 CPU_FTRS_G2_LE | CPU_FTRS_E300 | CPU_FTRS_E300C2 |
508 CPU_FTRS_CLASSIC32 |
Kumar Gala10b35d92005-09-23 14:08:58 -0500509#else
510 CPU_FTRS_GENERIC_32 |
511#endif
Christophe Leroy968159c2017-08-08 13:58:54 +0200512#ifdef CONFIG_PPC_8xx
Kumar Gala10b35d92005-09-23 14:08:58 -0500513 CPU_FTRS_8XX |
514#endif
515#ifdef CONFIG_40x
516 CPU_FTRS_40X |
517#endif
518#ifdef CONFIG_44x
Benjamin Herrenschmidt6d2170b2008-12-18 19:13:22 +0000519 CPU_FTRS_44X | CPU_FTRS_440x6 |
Kumar Gala10b35d92005-09-23 14:08:58 -0500520#endif
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000521#ifdef CONFIG_PPC_47x
Dave Kleikampc48d0db2011-01-26 06:17:58 +0000522 CPU_FTRS_47X | CPU_FTR_476_DD2 |
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000523#endif
Kumar Gala10b35d92005-09-23 14:08:58 -0500524#ifdef CONFIG_E200
525 CPU_FTRS_E200 |
526#endif
527#ifdef CONFIG_E500
Scott Wood06aae862011-12-20 15:34:14 +0000528 CPU_FTRS_E500 | CPU_FTRS_E500_2 |
529#endif
530#ifdef CONFIG_PPC_E500MC
531 CPU_FTRS_E500MC | CPU_FTRS_E5500 | CPU_FTRS_E6500 |
Kumar Gala10b35d92005-09-23 14:08:58 -0500532#endif
Kumar Gala10b35d92005-09-23 14:08:58 -0500533 0,
Stephen Rothwell7c929432006-03-23 17:36:59 +1100534};
535#endif /* __powerpc64__ */
Kumar Gala10b35d92005-09-23 14:08:58 -0500536
Anton Blanchard2406f602005-12-13 07:45:33 +1100537#ifdef __powerpc64__
Kumar Gala11ed0db2011-04-06 00:11:06 -0500538#ifdef CONFIG_PPC_BOOK3E
Michael Ellerman90029642014-08-06 18:26:28 +1000539#define CPU_FTRS_ALWAYS (CPU_FTRS_E6500 & CPU_FTRS_E5500)
Kumar Gala11ed0db2011-04-06 00:11:06 -0500540#else
Michael Ellerman81b654c2018-04-12 22:24:45 +1000541
542#ifdef CONFIG_PPC_DT_CPU_FTRS
543#define CPU_FTRS_DT_CPU_BASE \
544 (CPU_FTR_LWSYNC | \
545 CPU_FTR_FPU_UNAVAILABLE | \
546 CPU_FTR_NODSISRALIGN | \
547 CPU_FTR_NOEXECUTE | \
548 CPU_FTR_COHERENT_ICACHE | \
549 CPU_FTR_STCX_CHECKS_ADDRESS | \
550 CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
551 CPU_FTR_DAWR | \
552 CPU_FTR_ARCH_206 | \
553 CPU_FTR_ARCH_207S)
554#else
555#define CPU_FTRS_DT_CPU_BASE (~0ul)
556#endif
557
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000558#ifdef CONFIG_CPU_LITTLE_ENDIAN
559#define CPU_FTRS_ALWAYS \
560 (CPU_FTRS_POSSIBLE & ~CPU_FTR_HVMODE & CPU_FTRS_POWER7 & \
Michael Ellermance57c662018-07-19 14:37:57 +1000561 CPU_FTRS_POWER8E & CPU_FTRS_POWER8 & CPU_FTRS_POWER9 & \
562 CPU_FTRS_POWER9_DD2_1 & CPU_FTRS_DT_CPU_BASE)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000563#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100564#define CPU_FTRS_ALWAYS \
Nicholas Piggin471d7ff2018-02-21 05:08:29 +1000565 (CPU_FTRS_PPC970 & CPU_FTRS_POWER5 & \
Michael Ellerman468a3302014-07-10 12:29:18 +1000566 CPU_FTRS_POWER6 & CPU_FTRS_POWER7 & CPU_FTRS_CELL & \
Michael Ellerman3609e092014-08-06 15:42:17 +1000567 CPU_FTRS_PA6T & CPU_FTRS_POWER8 & CPU_FTRS_POWER8E & \
Michael Ellermance57c662018-07-19 14:37:57 +1000568 ~CPU_FTR_HVMODE & CPU_FTRS_POSSIBLE & CPU_FTRS_POWER9 & \
569 CPU_FTRS_POWER9_DD2_1 & CPU_FTRS_DT_CPU_BASE)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000570#endif /* CONFIG_CPU_LITTLE_ENDIAN */
Kumar Gala11ed0db2011-04-06 00:11:06 -0500571#endif
Anton Blanchard2406f602005-12-13 07:45:33 +1100572#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100573enum {
574 CPU_FTRS_ALWAYS =
Christophe Leroy12c3f1f2019-08-26 15:52:14 +0000575#ifdef CONFIG_PPC_BOOK3S_601
576 CPU_FTRS_PPC601 &
577#elif defined(CONFIG_PPC_BOOK3S_32)
578 CPU_FTRS_603 & CPU_FTRS_604 & CPU_FTRS_740_NOTAU &
Kumar Gala10b35d92005-09-23 14:08:58 -0500579 CPU_FTRS_740 & CPU_FTRS_750 & CPU_FTRS_750FX1 &
580 CPU_FTRS_750FX2 & CPU_FTRS_750FX & CPU_FTRS_750GX &
581 CPU_FTRS_7400_NOTAU & CPU_FTRS_7400 & CPU_FTRS_7450_20 &
582 CPU_FTRS_7450_21 & CPU_FTRS_7450_23 & CPU_FTRS_7455_1 &
583 CPU_FTRS_7455_20 & CPU_FTRS_7455 & CPU_FTRS_7447_10 &
584 CPU_FTRS_7447 & CPU_FTRS_7447A & CPU_FTRS_82XX &
Kim Phillipsaa42c692006-12-08 02:43:30 -0600585 CPU_FTRS_G2_LE & CPU_FTRS_E300 & CPU_FTRS_E300C2 &
586 CPU_FTRS_CLASSIC32 &
Kumar Gala10b35d92005-09-23 14:08:58 -0500587#else
588 CPU_FTRS_GENERIC_32 &
589#endif
Christophe Leroy968159c2017-08-08 13:58:54 +0200590#ifdef CONFIG_PPC_8xx
Kumar Gala10b35d92005-09-23 14:08:58 -0500591 CPU_FTRS_8XX &
592#endif
593#ifdef CONFIG_40x
594 CPU_FTRS_40X &
595#endif
596#ifdef CONFIG_44x
Benjamin Herrenschmidt6d2170b2008-12-18 19:13:22 +0000597 CPU_FTRS_44X & CPU_FTRS_440x6 &
Kumar Gala10b35d92005-09-23 14:08:58 -0500598#endif
599#ifdef CONFIG_E200
600 CPU_FTRS_E200 &
601#endif
602#ifdef CONFIG_E500
Scott Wood06aae862011-12-20 15:34:14 +0000603 CPU_FTRS_E500 & CPU_FTRS_E500_2 &
604#endif
605#ifdef CONFIG_PPC_E500MC
606 CPU_FTRS_E500MC & CPU_FTRS_E5500 & CPU_FTRS_E6500 &
Kumar Gala10b35d92005-09-23 14:08:58 -0500607#endif
Scott Wood73196cd32011-12-20 15:34:47 +0000608 ~CPU_FTR_EMB_HV & /* can be removed at runtime */
Kumar Gala10b35d92005-09-23 14:08:58 -0500609 CPU_FTRS_POSSIBLE,
610};
Stephen Rothwell7c929432006-03-23 17:36:59 +1100611#endif /* __powerpc64__ */
Kumar Gala10b35d92005-09-23 14:08:58 -0500612
K.Prasad5aae8a52010-06-15 11:35:19 +0530613#define HBP_NUM 1
K.Prasad5aae8a52010-06-15 11:35:19 +0530614
Kumar Gala10b35d92005-09-23 14:08:58 -0500615#endif /* !__ASSEMBLY__ */
616
Kumar Gala10b35d92005-09-23 14:08:58 -0500617#endif /* __ASM_POWERPC_CPUTABLE_H */