cputable.h 20 KB

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