cputable.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _UAPI__ASM_POWERPC_CPUTABLE_H
  3. #define _UAPI__ASM_POWERPC_CPUTABLE_H
  4. /* in AT_HWCAP */
  5. #define PPC_FEATURE_32 0x80000000
  6. #define PPC_FEATURE_64 0x40000000
  7. #define PPC_FEATURE_601_INSTR 0x20000000
  8. #define PPC_FEATURE_HAS_ALTIVEC 0x10000000
  9. #define PPC_FEATURE_HAS_FPU 0x08000000
  10. #define PPC_FEATURE_HAS_MMU 0x04000000
  11. #define PPC_FEATURE_HAS_4xxMAC 0x02000000
  12. #define PPC_FEATURE_UNIFIED_CACHE 0x01000000
  13. #define PPC_FEATURE_HAS_SPE 0x00800000
  14. #define PPC_FEATURE_HAS_EFP_SINGLE 0x00400000
  15. #define PPC_FEATURE_HAS_EFP_DOUBLE 0x00200000
  16. #define PPC_FEATURE_NO_TB 0x00100000
  17. #define PPC_FEATURE_POWER4 0x00080000
  18. #define PPC_FEATURE_POWER5 0x00040000
  19. #define PPC_FEATURE_POWER5_PLUS 0x00020000
  20. #define PPC_FEATURE_CELL 0x00010000
  21. #define PPC_FEATURE_BOOKE 0x00008000
  22. #define PPC_FEATURE_SMT 0x00004000
  23. #define PPC_FEATURE_ICACHE_SNOOP 0x00002000
  24. #define PPC_FEATURE_ARCH_2_05 0x00001000
  25. #define PPC_FEATURE_PA6T 0x00000800
  26. #define PPC_FEATURE_HAS_DFP 0x00000400
  27. #define PPC_FEATURE_POWER6_EXT 0x00000200
  28. #define PPC_FEATURE_ARCH_2_06 0x00000100
  29. #define PPC_FEATURE_HAS_VSX 0x00000080
  30. #define PPC_FEATURE_PSERIES_PERFMON_COMPAT \
  31. 0x00000040
  32. /* Reserved - do not use 0x00000004 */
  33. #define PPC_FEATURE_TRUE_LE 0x00000002
  34. #define PPC_FEATURE_PPC_LE 0x00000001
  35. /* in AT_HWCAP2 */
  36. #define PPC_FEATURE2_ARCH_2_07 0x80000000
  37. #define PPC_FEATURE2_HTM 0x40000000
  38. #define PPC_FEATURE2_DSCR 0x20000000
  39. #define PPC_FEATURE2_EBB 0x10000000
  40. #define PPC_FEATURE2_ISEL 0x08000000
  41. #define PPC_FEATURE2_TAR 0x04000000
  42. #define PPC_FEATURE2_VEC_CRYPTO 0x02000000
  43. #define PPC_FEATURE2_HTM_NOSC 0x01000000
  44. #define PPC_FEATURE2_ARCH_3_00 0x00800000 /* ISA 3.00 */
  45. #define PPC_FEATURE2_HAS_IEEE128 0x00400000 /* VSX IEEE Binary Float 128-bit */
  46. #define PPC_FEATURE2_DARN 0x00200000 /* darn random number insn */
  47. #define PPC_FEATURE2_SCV 0x00100000 /* scv syscall */
  48. #define PPC_FEATURE2_HTM_NO_SUSPEND 0x00080000 /* TM w/out suspended state */
  49. #define PPC_FEATURE2_ARCH_3_1 0x00040000 /* ISA 3.1 */
  50. #define PPC_FEATURE2_MMA 0x00020000 /* Matrix Multiply Assist */
  51. /*
  52. * IMPORTANT!
  53. * All future PPC_FEATURE definitions should be allocated in cooperation with
  54. * OPAL / skiboot firmware, in accordance with the ibm,powerpc-cpu-features
  55. * device tree binding.
  56. */
  57. #endif /* _UAPI__ASM_POWERPC_CPUTABLE_H */