blob: fdddb822d564b0267403e4cdc06b7536c65e4f2b [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)
Nicholas Piggin5c9fa162020-07-03 11:19:57 +1000194// Free LONG_ASM_CONST(0x0000000008000000)
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100195#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)
Aneesh Kumar K.Va24204c2020-07-09 08:59:31 +0530201/* LONG_ASM_CONST(0x0000000400000000) Free */
Paul Mackerras9bbf0b52018-03-20 08:46:13 +1100202#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)
Aneesh Kumar K.V09ce98c2019-09-24 09:22:52 +0530212#define CPU_FTR_P9_TLBIE_STQ_BUG LONG_ASM_CONST(0x0000400000000000)
Alastair D'Silva81984422018-05-11 16:12:57 +1000213#define CPU_FTR_P9_TIDR LONG_ASM_CONST(0x0000800000000000)
Aneesh Kumar K.V047e6572019-09-24 09:22:53 +0530214#define CPU_FTR_P9_TLBIE_ERAT_BUG LONG_ASM_CONST(0x0001000000000000)
Jordan Niethe736bcdd2019-12-06 14:17:22 +1100215#define CPU_FTR_P9_RADIX_PREFETCH_BUG LONG_ASM_CONST(0x0002000000000000)
Alistair Popple3fd58362020-05-21 11:43:36 +1000216#define CPU_FTR_ARCH_31 LONG_ASM_CONST(0x0004000000000000)
Ravi Bangoriadc1cedc2020-07-23 14:38:08 +0530217#define CPU_FTR_DAWR1 LONG_ASM_CONST(0x0008000000000000)
Paul Mackerras3965f8c2006-06-28 13:50:39 +1000218
Kumar Gala10b35d92005-09-23 14:08:58 -0500219#ifndef __ASSEMBLY__
220
Matt Evans44ae3ab2011-04-06 19:48:50 +0000221#define CPU_FTR_PPCAS_ARCH_V2 (CPU_FTR_NOEXECUTE | CPU_FTR_NODSISRALIGN)
222
Michael Ellerman13b3d132014-07-10 12:29:20 +1000223#define MMU_FTR_PPCAS_ARCH_V2 (MMU_FTR_TLBIEL | MMU_FTR_16M_PAGE)
Kumar Gala10b35d92005-09-23 14:08:58 -0500224
225/* We only set the altivec features if the kernel was compiled with altivec
226 * support
227 */
228#ifdef CONFIG_ALTIVEC
229#define CPU_FTR_ALTIVEC_COMP CPU_FTR_ALTIVEC
230#define PPC_FEATURE_HAS_ALTIVEC_COMP PPC_FEATURE_HAS_ALTIVEC
231#else
232#define CPU_FTR_ALTIVEC_COMP 0
233#define PPC_FEATURE_HAS_ALTIVEC_COMP 0
234#endif
235
Michael Neulingb962ce92008-06-25 14:07:18 +1000236/* We only set the VSX features if the kernel was compiled with VSX
237 * support
238 */
239#ifdef CONFIG_VSX
240#define CPU_FTR_VSX_COMP CPU_FTR_VSX
241#define PPC_FEATURE_HAS_VSX_COMP PPC_FEATURE_HAS_VSX
242#else
243#define CPU_FTR_VSX_COMP 0
244#define PPC_FEATURE_HAS_VSX_COMP 0
245#endif
246
Kumar Gala5e14d212007-09-13 01:44:20 -0500247/* We only set the spe features if the kernel was compiled with spe
248 * support
249 */
250#ifdef CONFIG_SPE
251#define CPU_FTR_SPE_COMP CPU_FTR_SPE
252#define PPC_FEATURE_HAS_SPE_COMP PPC_FEATURE_HAS_SPE
253#define PPC_FEATURE_HAS_EFP_SINGLE_COMP PPC_FEATURE_HAS_EFP_SINGLE
254#define PPC_FEATURE_HAS_EFP_DOUBLE_COMP PPC_FEATURE_HAS_EFP_DOUBLE
255#else
256#define CPU_FTR_SPE_COMP 0
257#define PPC_FEATURE_HAS_SPE_COMP 0
258#define PPC_FEATURE_HAS_EFP_SINGLE_COMP 0
259#define PPC_FEATURE_HAS_EFP_DOUBLE_COMP 0
260#endif
261
Michael Neuling6a6d5412013-02-13 16:21:29 +0000262/* We only set the TM feature if the kernel was compiled with TM supprt */
263#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
Sam bobroffb4b56f92015-06-12 11:06:32 +1000264#define CPU_FTR_TM_COMP CPU_FTR_TM
265#define PPC_FEATURE2_HTM_COMP PPC_FEATURE2_HTM
266#define PPC_FEATURE2_HTM_NOSC_COMP PPC_FEATURE2_HTM_NOSC
Michael Neuling6a6d5412013-02-13 16:21:29 +0000267#else
Sam bobroffb4b56f92015-06-12 11:06:32 +1000268#define CPU_FTR_TM_COMP 0
269#define PPC_FEATURE2_HTM_COMP 0
270#define PPC_FEATURE2_HTM_NOSC_COMP 0
Michael Neuling6a6d5412013-02-13 16:21:29 +0000271#endif
272
Scott Wood11af1192007-09-14 15:32:14 -0500273/* We need to mark all pages as being coherent if we're SMP or we have a
274 * 74[45]x and an MPC107 host bridge. Also 83xx and PowerQUICC II
275 * require it for PCI "streaming/prefetch" to work properly.
Piotr Ziecikc9310922009-03-17 09:17:50 -0600276 * This is also required by 52xx family.
Kumar Gala10b35d92005-09-23 14:08:58 -0500277 */
Kumar Gala1775dbb2006-02-22 09:46:02 -0600278#if defined(CONFIG_SMP) || defined(CONFIG_MPC10X_BRIDGE) \
Piotr Ziecikc9310922009-03-17 09:17:50 -0600279 || defined(CONFIG_PPC_83xx) || defined(CONFIG_8260) \
280 || defined(CONFIG_PPC_MPC52xx)
Kumar Gala10b35d92005-09-23 14:08:58 -0500281#define CPU_FTR_COMMON CPU_FTR_NEED_COHERENT
282#else
283#define CPU_FTR_COMMON 0
284#endif
285
286/* The powersave features NAP & DOZE seems to confuse BDI when
287 debugging. So if a BDI is used, disable theses
288 */
289#ifndef CONFIG_BDI_SWITCH
290#define CPU_FTR_MAYBE_CAN_DOZE CPU_FTR_CAN_DOZE
291#define CPU_FTR_MAYBE_CAN_NAP CPU_FTR_CAN_NAP
292#else
293#define CPU_FTR_MAYBE_CAN_DOZE 0
294#define CPU_FTR_MAYBE_CAN_NAP 0
295#endif
296
Christophe Leroy12c3f1f2019-08-26 15:52:14 +0000297#define CPU_FTRS_PPC601 (CPU_FTR_COMMON | \
Christophe Leroye0291f12019-08-26 15:52:18 +0000298 CPU_FTR_COHERENT_ICACHE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100299#define CPU_FTRS_603 (CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | \
Christophe Leroy385e89d2018-11-28 17:21:10 +0000300 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE | CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100301#define CPU_FTRS_604 (CPU_FTR_COMMON | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000302#define CPU_FTRS_740_NOTAU (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100303 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000304 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000305#define CPU_FTRS_740 (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)
David Gibson4508dc22007-06-13 14:52:57 +1000309#define CPU_FTRS_750 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100310 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000311 CPU_FTR_TAU | CPU_FTR_MAYBE_CAN_NAP | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000312 CPU_FTR_PPC_LE)
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000313#define CPU_FTRS_750CL (CPU_FTRS_750)
Josh Boyerb6f41cc2007-07-03 02:06:53 +1000314#define CPU_FTRS_750FX1 (CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX | CPU_FTR_NO_DPM)
315#define CPU_FTRS_750FX2 (CPU_FTRS_750 | CPU_FTR_NO_DPM)
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000316#define CPU_FTRS_750FX (CPU_FTRS_750 | CPU_FTR_DUAL_PLL_750FX)
Josh Boyerb6f41cc2007-07-03 02:06:53 +1000317#define CPU_FTRS_750GX (CPU_FTRS_750FX)
David Gibson4508dc22007-06-13 14:52:57 +1000318#define CPU_FTRS_7400_NOTAU (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_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_7400 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100323 CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_L2CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000324 CPU_FTR_TAU | CPU_FTR_ALTIVEC_COMP | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000325 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000326#define CPU_FTRS_7450_20 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100327 CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000328 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100329 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000330#define CPU_FTRS_7450_21 (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100331 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000332 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100333 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100334 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000335#define CPU_FTRS_7450_23 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100336 CPU_FTR_NEED_PAIRED_STWCX | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100337 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000338 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000339 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000340#define CPU_FTRS_7455_1 (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_L2CR | CPU_FTR_ALTIVEC_COMP | CPU_FTR_L3CR | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000343 CPU_FTR_SPEC7450 | CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000344#define CPU_FTRS_7455_20 (CPU_FTR_COMMON | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100345 CPU_FTR_NEED_PAIRED_STWCX | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100346 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000347 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100348 CPU_FTR_NAP_DISABLE_L2_PR | CPU_FTR_L3_DISABLE_NAP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000349 CPU_FTR_NEED_COHERENT | CPU_FTR_PPC_LE)
David Gibson4508dc22007-06-13 14:52:57 +1000350#define CPU_FTRS_7455 (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_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000354#define CPU_FTRS_7447_10 (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100355 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000356 CPU_FTR_L3CR | CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100357 CPU_FTR_NEED_COHERENT | CPU_FTR_NO_BTIC | CPU_FTR_PPC_LE | \
358 CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000359#define CPU_FTRS_7447 (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_L3CR | 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_7447A (CPU_FTR_COMMON | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100364 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_NEED_COHERENT | CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
David Gibson4508dc22007-06-13 14:52:57 +1000367#define CPU_FTRS_7448 (CPU_FTR_COMMON | \
James.Yang3d372542007-05-02 16:34:43 -0500368 CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_L2CR | CPU_FTR_ALTIVEC_COMP | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000369 CPU_FTR_SPEC7450 | CPU_FTR_NAP_DISABLE_L2_PR | \
Becky Bruceb64f87c2007-11-10 09:17:49 +1100370 CPU_FTR_PPC_LE | CPU_FTR_NEED_PAIRED_STWCX)
Christophe Leroy385e89d2018-11-28 17:21:10 +0000371#define CPU_FTRS_82XX (CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | CPU_FTR_NOEXECUTE)
Scott Wood11af1192007-09-14 15:32:14 -0500372#define CPU_FTRS_G2_LE (CPU_FTR_COMMON | CPU_FTR_MAYBE_CAN_DOZE | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100373 CPU_FTR_MAYBE_CAN_NAP)
David Gibson4508dc22007-06-13 14:52:57 +1000374#define CPU_FTRS_E300 (CPU_FTR_MAYBE_CAN_DOZE | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100375 CPU_FTR_MAYBE_CAN_NAP | \
Christophe Leroy385e89d2018-11-28 17:21:10 +0000376 CPU_FTR_COMMON | CPU_FTR_NOEXECUTE)
David Gibson4508dc22007-06-13 14:52:57 +1000377#define CPU_FTRS_E300C2 (CPU_FTR_MAYBE_CAN_DOZE | \
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100378 CPU_FTR_MAYBE_CAN_NAP | \
Christophe Leroy385e89d2018-11-28 17:21:10 +0000379 CPU_FTR_COMMON | CPU_FTR_FPU_UNAVAILABLE | CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100380#define CPU_FTRS_CLASSIC32 (CPU_FTR_COMMON)
381#define CPU_FTRS_8XX (CPU_FTR_NOEXECUTE)
382#define CPU_FTRS_40X (CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
383#define CPU_FTRS_44X (CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
384#define CPU_FTRS_440x6 (CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE | \
Benjamin Herrenschmidt6d2170b2008-12-18 19:13:22 +0000385 CPU_FTR_INDEXED_DCR)
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000386#define CPU_FTRS_47X (CPU_FTRS_440x6)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100387#define CPU_FTRS_E200 (CPU_FTR_SPE_COMP | \
Kumar Gala5e14d212007-09-13 01:44:20 -0500388 CPU_FTR_NODSISRALIGN | CPU_FTR_COHERENT_ICACHE | \
Christophe Leroye0291f12019-08-26 15:52:18 +0000389 CPU_FTR_NOEXECUTE | \
Scott Wood52b066f2011-12-20 15:34:12 +0000390 CPU_FTR_DEBUG_LVL_EXC)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100391#define CPU_FTRS_E500 (CPU_FTR_MAYBE_CAN_DOZE | \
Benjamin Herrenschmidt8309ce722008-12-12 17:33:25 +1100392 CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | CPU_FTR_NODSISRALIGN | \
393 CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100394#define CPU_FTRS_E500_2 (CPU_FTR_MAYBE_CAN_DOZE | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000395 CPU_FTR_SPE_COMP | CPU_FTR_MAYBE_CAN_NAP | \
Benjamin Herrenschmidt8309ce722008-12-12 17:33:25 +1100396 CPU_FTR_NODSISRALIGN | CPU_FTR_NOEXECUTE)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100397#define CPU_FTRS_E500MC (CPU_FTR_NODSISRALIGN | \
Paul Mackerrasdd0efb32018-03-20 08:46:12 +1100398 CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
Scott Wood73196cd32011-12-20 15:34:47 +0000399 CPU_FTR_DBELL | CPU_FTR_DEBUG_LVL_EXC | CPU_FTR_EMB_HV)
Scott Woodd52459c2013-07-23 20:21:11 -0500400/*
401 * e5500/e6500 erratum A-006958 is a timebase bug that can use the
402 * same workaround as CPU_FTR_CELL_TB_BUG.
403 */
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100404#define CPU_FTRS_E5500 (CPU_FTR_NODSISRALIGN | \
Paul Mackerrasdd0efb32018-03-20 08:46:12 +1100405 CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
Kumar Galad36b4c42011-04-06 00:18:48 -0500406 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_CELL_TB_BUG)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100408#define CPU_FTRS_E6500 (CPU_FTR_NODSISRALIGN | \
Paul Mackerrasdd0efb32018-03-20 08:46:12 +1100409 CPU_FTR_LWSYNC | CPU_FTR_NOEXECUTE | \
Kumar Gala10241842011-11-06 11:51:07 -0600410 CPU_FTR_DBELL | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Scott Woodd52459c2013-07-23 20:21:11 -0500411 CPU_FTR_DEBUG_LVL_EXC | CPU_FTR_EMB_HV | CPU_FTR_ALTIVEC_COMP | \
Andy Fleminge16c8762011-12-08 01:20:27 -0600412 CPU_FTR_CELL_TB_BUG | CPU_FTR_SMT)
Stephen Rothwell7c929432006-03-23 17:36:59 +1100413#define CPU_FTRS_GENERIC_32 (CPU_FTR_COMMON | CPU_FTR_NODSISRALIGN)
Michael Ellerman0b8e2e12006-11-23 00:46:46 +0100414
415/* 64-bit CPUs */
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100416#define CPU_FTRS_PPC970 (CPU_FTR_LWSYNC | \
Nicholas Piggin3735eb82018-02-21 05:08:28 +1000417 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Mark Nelson2a929432008-08-22 14:36:19 +1000418 CPU_FTR_ALTIVEC_COMP | CPU_FTR_CAN_NAP | CPU_FTR_MMCRA | \
Paul Mackerras969391c2011-06-29 00:26:11 +0000419 CPU_FTR_CP_USE_DCBTZ | CPU_FTR_STCX_CHECKS_ADDRESS | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000420 CPU_FTR_HVMODE | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100421#define CPU_FTRS_POWER5 (CPU_FTR_LWSYNC | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000422 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100423 CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000424 CPU_FTR_COHERENT_ICACHE | CPU_FTR_PURR | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000425 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100426#define CPU_FTRS_POWER6 (CPU_FTR_LWSYNC | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000427 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Anton Blanchard03054d52006-04-29 09:51:06 +1000428 CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000429 CPU_FTR_COHERENT_ICACHE | \
Anton Blanchard4c1985572006-12-08 17:46:58 +1100430 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
Anton Blanchardf89451f2010-08-11 01:40:27 +0000431 CPU_FTR_DSCR | CPU_FTR_UNALIGNED_LD_STD | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000432 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_CFAR | \
433 CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100434#define CPU_FTRS_POWER7 (CPU_FTR_LWSYNC | \
Paul Mackerras969391c2011-06-29 00:26:11 +0000435 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
Michael Neulinge952e6c2008-06-18 10:47:26 +1000436 CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000437 CPU_FTR_COHERENT_ICACHE | \
Michael Neulinge952e6c2008-06-18 10:47:26 +1000438 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
Nicholas Piggin5c9fa162020-07-03 11:19:57 +1000439 CPU_FTR_DSCR | CPU_FTR_ASYM_SMT | \
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000440 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Michael Ellermanc1807e32017-10-19 15:08:19 +1100441 CPU_FTR_CFAR | CPU_FTR_HVMODE | \
Aneesh Kumar K.Va24204c2020-07-09 08:59:31 +0530442 CPU_FTR_VMX_COPY | CPU_FTR_HAS_PPR | CPU_FTR_DABRX )
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100443#define CPU_FTRS_POWER8 (CPU_FTR_LWSYNC | \
Michael Neuling71e18492012-10-30 19:34:15 +0000444 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
445 CPU_FTR_MMCRA | CPU_FTR_SMT | \
446 CPU_FTR_COHERENT_ICACHE | \
447 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
Nicholas Piggin5c9fa162020-07-03 11:19:57 +1000448 CPU_FTR_DSCR | \
Michael Neuling71e18492012-10-30 19:34:15 +0000449 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Michael Ellermanc1807e32017-10-19 15:08:19 +1100450 CPU_FTR_CFAR | CPU_FTR_HVMODE | CPU_FTR_VMX_COPY | \
Michael Ellerman1de2bd42013-04-30 20:17:02 +0000451 CPU_FTR_DBELL | CPU_FTR_HAS_PPR | CPU_FTR_DAWR | \
Aneesh Kumar K.Va24204c2020-07-09 08:59:31 +0530452 CPU_FTR_ARCH_207S | CPU_FTR_TM_COMP )
Michael Ellerman68f2f0d2014-03-14 16:00:28 +1100453#define CPU_FTRS_POWER8E (CPU_FTRS_POWER8 | CPU_FTR_PMAO_BUG)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100454#define CPU_FTRS_POWER9 (CPU_FTR_LWSYNC | \
Michael Neulingc3ab3002016-02-19 11:16:24 +1100455 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
456 CPU_FTR_MMCRA | CPU_FTR_SMT | \
457 CPU_FTR_COHERENT_ICACHE | \
458 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
Nicholas Piggin5c9fa162020-07-03 11:19:57 +1000459 CPU_FTR_DSCR | \
Michael Neulingc3ab3002016-02-19 11:16:24 +1100460 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
Nicholas Piggin2384d2d2017-04-19 12:27:37 +1000461 CPU_FTR_CFAR | CPU_FTR_HVMODE | CPU_FTR_VMX_COPY | \
Michael Neuling96541532018-03-27 15:37:24 +1100462 CPU_FTR_DBELL | CPU_FTR_HAS_PPR | CPU_FTR_ARCH_207S | \
Aneesh Kumar K.Va24204c2020-07-09 08:59:31 +0530463 CPU_FTR_TM_COMP | CPU_FTR_ARCH_300 | CPU_FTR_P9_TLBIE_STQ_BUG | \
464 CPU_FTR_P9_TLBIE_ERAT_BUG | CPU_FTR_P9_TIDR)
Jordan Niethe736bcdd2019-12-06 14:17:22 +1100465#define CPU_FTRS_POWER9_DD2_0 (CPU_FTRS_POWER9 | CPU_FTR_P9_RADIX_PREFETCH_BUG)
466#define CPU_FTRS_POWER9_DD2_1 (CPU_FTRS_POWER9 | \
467 CPU_FTR_P9_RADIX_PREFETCH_BUG | \
468 CPU_FTR_POWER9_DD2_1)
Nicholas Piggin3a52f602018-04-05 15:57:55 +1000469#define CPU_FTRS_POWER9_DD2_2 (CPU_FTRS_POWER9 | CPU_FTR_POWER9_DD2_1 | \
470 CPU_FTR_P9_TM_HV_ASSIST | \
Paul Mackerrasb5af4f22018-03-21 21:31:59 +1100471 CPU_FTR_P9_TM_XER_SO_BUG)
Alistair Popplea3ea40d2020-05-21 11:43:41 +1000472#define CPU_FTRS_POWER10 (CPU_FTR_LWSYNC | \
473 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | CPU_FTR_ARCH_206 |\
474 CPU_FTR_MMCRA | CPU_FTR_SMT | \
475 CPU_FTR_COHERENT_ICACHE | \
476 CPU_FTR_PURR | CPU_FTR_SPURR | CPU_FTR_REAL_LE | \
Nicholas Piggin5c9fa162020-07-03 11:19:57 +1000477 CPU_FTR_DSCR | \
Alistair Popplea3ea40d2020-05-21 11:43:41 +1000478 CPU_FTR_STCX_CHECKS_ADDRESS | CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
479 CPU_FTR_CFAR | CPU_FTR_HVMODE | CPU_FTR_VMX_COPY | \
480 CPU_FTR_DBELL | CPU_FTR_HAS_PPR | CPU_FTR_ARCH_207S | \
Ravi Bangoria8f460a82020-07-23 14:38:07 +0530481 CPU_FTR_TM_COMP | CPU_FTR_ARCH_300 | CPU_FTR_ARCH_31 | \
Ravi Bangoriadc1cedc2020-07-23 14:38:08 +0530482 CPU_FTR_DAWR | CPU_FTR_DAWR1)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100483#define CPU_FTRS_CELL (CPU_FTR_LWSYNC | \
Benjamin Herrenschmidt7c03d652008-12-18 19:13:32 +0000484 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_CTRL | \
Stephen Rothwell7c929432006-03-23 17:36:59 +1100485 CPU_FTR_ALTIVEC_COMP | CPU_FTR_MMCRA | CPU_FTR_SMT | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000486 CPU_FTR_PAUSE_ZERO | CPU_FTR_CELL_TB_BUG | CPU_FTR_CP_USE_DCBTZ | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000487 CPU_FTR_UNALIGNED_LD_STD | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100488#define CPU_FTRS_PA6T (CPU_FTR_LWSYNC | \
Matt Evans44ae3ab2011-04-06 19:48:50 +0000489 CPU_FTR_PPCAS_ARCH_V2 | CPU_FTR_ALTIVEC_COMP | \
Michael Neuling82a9f162013-05-16 20:27:31 +0000490 CPU_FTR_PURR | CPU_FTR_REAL_LE | CPU_FTR_DABRX)
Paul Mackerrasc0d64cf2018-03-20 08:46:11 +1100491#define CPU_FTRS_COMPATIBLE (CPU_FTR_PPCAS_ARCH_V2)
Kumar Gala10b35d92005-09-23 14:08:58 -0500492
Anton Blanchard2406f602005-12-13 07:45:33 +1100493#ifdef __powerpc64__
Kumar Gala11ed0db2011-04-06 00:11:06 -0500494#ifdef CONFIG_PPC_BOOK3E
Michael Ellerman90029642014-08-06 18:26:28 +1000495#define CPU_FTRS_POSSIBLE (CPU_FTRS_E6500 | CPU_FTRS_E5500)
Kumar Gala11ed0db2011-04-06 00:11:06 -0500496#else
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000497#ifdef CONFIG_CPU_LITTLE_ENDIAN
498#define CPU_FTRS_POSSIBLE \
499 (CPU_FTRS_POWER7 | CPU_FTRS_POWER8E | CPU_FTRS_POWER8 | \
Joel Stanleye11b64b2018-07-11 16:02:58 +1000500 CPU_FTR_ALTIVEC_COMP | CPU_FTR_VSX_COMP | CPU_FTRS_POWER9 | \
Alistair Popplea3ea40d2020-05-21 11:43:41 +1000501 CPU_FTRS_POWER9_DD2_1 | CPU_FTRS_POWER9_DD2_2 | CPU_FTRS_POWER10)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000502#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100503#define CPU_FTRS_POSSIBLE \
Nicholas Piggin471d7ff2018-02-21 05:08:29 +1000504 (CPU_FTRS_PPC970 | CPU_FTRS_POWER5 | \
Michael Ellerman468a3302014-07-10 12:29:18 +1000505 CPU_FTRS_POWER6 | CPU_FTRS_POWER7 | CPU_FTRS_POWER8E | \
Joel Stanleye11b64b2018-07-11 16:02:58 +1000506 CPU_FTRS_POWER8 | CPU_FTRS_CELL | CPU_FTRS_PA6T | \
507 CPU_FTR_VSX_COMP | CPU_FTR_ALTIVEC_COMP | CPU_FTRS_POWER9 | \
Alistair Popplea3ea40d2020-05-21 11:43:41 +1000508 CPU_FTRS_POWER9_DD2_1 | CPU_FTRS_POWER9_DD2_2 | CPU_FTRS_POWER10)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000509#endif /* CONFIG_CPU_LITTLE_ENDIAN */
Kumar Gala11ed0db2011-04-06 00:11:06 -0500510#endif
Anton Blanchard2406f602005-12-13 07:45:33 +1100511#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100512enum {
513 CPU_FTRS_POSSIBLE =
Christophe Leroy12c3f1f2019-08-26 15:52:14 +0000514#ifdef CONFIG_PPC_BOOK3S_601
515 CPU_FTRS_PPC601 |
516#elif defined(CONFIG_PPC_BOOK3S_32)
Kumar Gala10b35d92005-09-23 14:08:58 -0500517 CPU_FTRS_PPC601 | CPU_FTRS_603 | CPU_FTRS_604 | CPU_FTRS_740_NOTAU |
518 CPU_FTRS_740 | CPU_FTRS_750 | CPU_FTRS_750FX1 |
519 CPU_FTRS_750FX2 | CPU_FTRS_750FX | CPU_FTRS_750GX |
520 CPU_FTRS_7400_NOTAU | CPU_FTRS_7400 | CPU_FTRS_7450_20 |
521 CPU_FTRS_7450_21 | CPU_FTRS_7450_23 | CPU_FTRS_7455_1 |
522 CPU_FTRS_7455_20 | CPU_FTRS_7455 | CPU_FTRS_7447_10 |
523 CPU_FTRS_7447 | CPU_FTRS_7447A | CPU_FTRS_82XX |
Kim Phillipsaa42c692006-12-08 02:43:30 -0600524 CPU_FTRS_G2_LE | CPU_FTRS_E300 | CPU_FTRS_E300C2 |
525 CPU_FTRS_CLASSIC32 |
Kumar Gala10b35d92005-09-23 14:08:58 -0500526#else
527 CPU_FTRS_GENERIC_32 |
528#endif
Christophe Leroy968159c2017-08-08 13:58:54 +0200529#ifdef CONFIG_PPC_8xx
Kumar Gala10b35d92005-09-23 14:08:58 -0500530 CPU_FTRS_8XX |
531#endif
532#ifdef CONFIG_40x
533 CPU_FTRS_40X |
534#endif
535#ifdef CONFIG_44x
Benjamin Herrenschmidt6d2170b2008-12-18 19:13:22 +0000536 CPU_FTRS_44X | CPU_FTRS_440x6 |
Kumar Gala10b35d92005-09-23 14:08:58 -0500537#endif
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000538#ifdef CONFIG_PPC_47x
Dave Kleikampc48d0db2011-01-26 06:17:58 +0000539 CPU_FTRS_47X | CPU_FTR_476_DD2 |
Dave Kleikampe7f75ad2010-03-05 10:43:12 +0000540#endif
Kumar Gala10b35d92005-09-23 14:08:58 -0500541#ifdef CONFIG_E200
542 CPU_FTRS_E200 |
543#endif
544#ifdef CONFIG_E500
Scott Wood06aae862011-12-20 15:34:14 +0000545 CPU_FTRS_E500 | CPU_FTRS_E500_2 |
546#endif
547#ifdef CONFIG_PPC_E500MC
548 CPU_FTRS_E500MC | CPU_FTRS_E5500 | CPU_FTRS_E6500 |
Kumar Gala10b35d92005-09-23 14:08:58 -0500549#endif
Kumar Gala10b35d92005-09-23 14:08:58 -0500550 0,
Stephen Rothwell7c929432006-03-23 17:36:59 +1100551};
552#endif /* __powerpc64__ */
Kumar Gala10b35d92005-09-23 14:08:58 -0500553
Anton Blanchard2406f602005-12-13 07:45:33 +1100554#ifdef __powerpc64__
Kumar Gala11ed0db2011-04-06 00:11:06 -0500555#ifdef CONFIG_PPC_BOOK3E
Michael Ellerman90029642014-08-06 18:26:28 +1000556#define CPU_FTRS_ALWAYS (CPU_FTRS_E6500 & CPU_FTRS_E5500)
Kumar Gala11ed0db2011-04-06 00:11:06 -0500557#else
Michael Ellerman81b654c2018-04-12 22:24:45 +1000558
559#ifdef CONFIG_PPC_DT_CPU_FTRS
560#define CPU_FTRS_DT_CPU_BASE \
561 (CPU_FTR_LWSYNC | \
562 CPU_FTR_FPU_UNAVAILABLE | \
563 CPU_FTR_NODSISRALIGN | \
564 CPU_FTR_NOEXECUTE | \
565 CPU_FTR_COHERENT_ICACHE | \
566 CPU_FTR_STCX_CHECKS_ADDRESS | \
567 CPU_FTR_POPCNTB | CPU_FTR_POPCNTD | \
568 CPU_FTR_DAWR | \
569 CPU_FTR_ARCH_206 | \
570 CPU_FTR_ARCH_207S)
571#else
572#define CPU_FTRS_DT_CPU_BASE (~0ul)
573#endif
574
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000575#ifdef CONFIG_CPU_LITTLE_ENDIAN
576#define CPU_FTRS_ALWAYS \
577 (CPU_FTRS_POSSIBLE & ~CPU_FTR_HVMODE & CPU_FTRS_POWER7 & \
Michael Ellermance57c662018-07-19 14:37:57 +1000578 CPU_FTRS_POWER8E & CPU_FTRS_POWER8 & CPU_FTRS_POWER9 & \
579 CPU_FTRS_POWER9_DD2_1 & CPU_FTRS_DT_CPU_BASE)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000580#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100581#define CPU_FTRS_ALWAYS \
Nicholas Piggin471d7ff2018-02-21 05:08:29 +1000582 (CPU_FTRS_PPC970 & CPU_FTRS_POWER5 & \
Michael Ellerman468a3302014-07-10 12:29:18 +1000583 CPU_FTRS_POWER6 & CPU_FTRS_POWER7 & CPU_FTRS_CELL & \
Michael Ellerman3609e092014-08-06 15:42:17 +1000584 CPU_FTRS_PA6T & CPU_FTRS_POWER8 & CPU_FTRS_POWER8E & \
Michael Ellermance57c662018-07-19 14:37:57 +1000585 ~CPU_FTR_HVMODE & CPU_FTRS_POSSIBLE & CPU_FTRS_POWER9 & \
586 CPU_FTRS_POWER9_DD2_1 & CPU_FTRS_DT_CPU_BASE)
Nicholas Piggindb5ae1c2018-02-21 05:08:31 +1000587#endif /* CONFIG_CPU_LITTLE_ENDIAN */
Kumar Gala11ed0db2011-04-06 00:11:06 -0500588#endif
Anton Blanchard2406f602005-12-13 07:45:33 +1100589#else
Stephen Rothwell7c929432006-03-23 17:36:59 +1100590enum {
591 CPU_FTRS_ALWAYS =
Christophe Leroy12c3f1f2019-08-26 15:52:14 +0000592#ifdef CONFIG_PPC_BOOK3S_601
593 CPU_FTRS_PPC601 &
594#elif defined(CONFIG_PPC_BOOK3S_32)
595 CPU_FTRS_603 & CPU_FTRS_604 & CPU_FTRS_740_NOTAU &
Kumar Gala10b35d92005-09-23 14:08:58 -0500596 CPU_FTRS_740 & CPU_FTRS_750 & CPU_FTRS_750FX1 &
597 CPU_FTRS_750FX2 & CPU_FTRS_750FX & CPU_FTRS_750GX &
598 CPU_FTRS_7400_NOTAU & CPU_FTRS_7400 & CPU_FTRS_7450_20 &
599 CPU_FTRS_7450_21 & CPU_FTRS_7450_23 & CPU_FTRS_7455_1 &
600 CPU_FTRS_7455_20 & CPU_FTRS_7455 & CPU_FTRS_7447_10 &
601 CPU_FTRS_7447 & CPU_FTRS_7447A & CPU_FTRS_82XX &
Kim Phillipsaa42c692006-12-08 02:43:30 -0600602 CPU_FTRS_G2_LE & CPU_FTRS_E300 & CPU_FTRS_E300C2 &
603 CPU_FTRS_CLASSIC32 &
Kumar Gala10b35d92005-09-23 14:08:58 -0500604#else
605 CPU_FTRS_GENERIC_32 &
606#endif
Christophe Leroy968159c2017-08-08 13:58:54 +0200607#ifdef CONFIG_PPC_8xx
Kumar Gala10b35d92005-09-23 14:08:58 -0500608 CPU_FTRS_8XX &
609#endif
610#ifdef CONFIG_40x
611 CPU_FTRS_40X &
612#endif
613#ifdef CONFIG_44x
Benjamin Herrenschmidt6d2170b2008-12-18 19:13:22 +0000614 CPU_FTRS_44X & CPU_FTRS_440x6 &
Kumar Gala10b35d92005-09-23 14:08:58 -0500615#endif
616#ifdef CONFIG_E200
617 CPU_FTRS_E200 &
618#endif
619#ifdef CONFIG_E500
Scott Wood06aae862011-12-20 15:34:14 +0000620 CPU_FTRS_E500 & CPU_FTRS_E500_2 &
621#endif
622#ifdef CONFIG_PPC_E500MC
623 CPU_FTRS_E500MC & CPU_FTRS_E5500 & CPU_FTRS_E6500 &
Kumar Gala10b35d92005-09-23 14:08:58 -0500624#endif
Scott Wood73196cd32011-12-20 15:34:47 +0000625 ~CPU_FTR_EMB_HV & /* can be removed at runtime */
Kumar Gala10b35d92005-09-23 14:08:58 -0500626 CPU_FTRS_POSSIBLE,
627};
Stephen Rothwell7c929432006-03-23 17:36:59 +1100628#endif /* __powerpc64__ */
Kumar Gala10b35d92005-09-23 14:08:58 -0500629
Ravi Bangoriaa6ba44e2020-05-14 16:47:28 +0530630/*
631 * Maximum number of hw breakpoint supported on powerpc. Number of
Ravi Bangoriadeb2bd92020-07-23 14:38:12 +0530632 * breakpoints supported by actual hw might be less than this, which
633 * is decided at run time in nr_wp_slots().
Ravi Bangoriaa6ba44e2020-05-14 16:47:28 +0530634 */
Ravi Bangoriadeb2bd92020-07-23 14:38:12 +0530635#define HBP_NUM_MAX 2
K.Prasad5aae8a52010-06-15 11:35:19 +0530636
Kumar Gala10b35d92005-09-23 14:08:58 -0500637#endif /* !__ASSEMBLY__ */
638
Kumar Gala10b35d92005-09-23 14:08:58 -0500639#endif /* __ASM_POWERPC_CPUTABLE_H */