cputable.h 19 KB

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